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

References

include/llvm/IR/DebugInfoMetadata.h
 1848   DILocalScope *getScope() const { return cast<DILocalScope>(getRawScope()); }
lib/IR/AsmWriter.cpp
 1980   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
 1994   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
lib/IR/LLVMContextImpl.h
  737       : Scope(N->getRawScope()), File(N->getRawFile()), Line(N->getLine()),
  741     return Scope == RHS->getRawScope() && File == RHS->getRawFile() &&
  758       : Scope(N->getRawScope()), File(N->getRawFile()),
  762     return Scope == RHS->getRawScope() && File == RHS->getRawFile() &&
lib/IR/Verifier.cpp
 1157   AssertDI(N.getRawScope() && isa<DILocalScope>(N.getRawScope()),
 1157   AssertDI(N.getRawScope() && isa<DILocalScope>(N.getRawScope()),
 1158            "invalid local scope", &N, N.getRawScope());
 1159   if (auto *SP = dyn_cast<DISubprogram>(N.getRawScope()))
 4750     return getSubprogram(LB->getRawScope());