reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/IR/DebugInfoMetadata.h
 2245   DIScope *getScope() const { return cast_or_null<DIScope>(getRawScope()); }
lib/IR/AsmWriter.cpp
 2096   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
 2115   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
lib/IR/LLVMContextImpl.h
  905       : Scope(N->getRawScope()), Name(N->getRawName()),
  914     return Scope == RHS->getRawScope() && Name == RHS->getRawName() &&
  955       : Scope(N->getRawScope()), Name(N->getRawName()), File(N->getRawFile()),
  960     return Scope == RHS->getRawScope() && Name == RHS->getRawName() &&
lib/IR/Verifier.cpp
 1239   if (auto *S = N.getRawScope())
 1264   AssertDI(N.getRawScope() && isa<DILocalScope>(N.getRawScope()),
 1264   AssertDI(N.getRawScope() && isa<DILocalScope>(N.getRawScope()),
 1265            "local variable requires a valid scope", &N, N.getRawScope());
 4942   DISubprogram *VarSP = getSubprogram(Var->getRawScope());