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

Declarations

include/llvm/IR/DebugLoc.h
   54     DILocation *get() const;

References

include/llvm/IR/DebugLoc.h
   55     operator DILocation *() const { return get(); }
   56     DILocation *operator->() const { return get(); }
   57     DILocation &operator*() const { return *get(); }
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  501   const DIScope *Scope = DL.get()->getScope();
  518   if (PrevInstLoc.get() && PrevInstLoc->getFile() == DL->getFile())
  526     const DILocation *Loc = DL.get();
lib/CodeGen/MachineInstrBundle.cpp
  113     if (MII->getDebugLoc().get())
lib/IR/DebugInfo.cpp
  114     processLocation(M, DbgLoc.get());
lib/IR/DebugLoc.cpp
   26   assert(get() && "Expected valid DebugLoc");
   27   return get()->getLine();
   31   assert(get() && "Expected valid DebugLoc");
   32   return get()->getColumn();
   36   assert(get() && "Expected valid DebugLoc");
   37   return get()->getScope();
   41   assert(get() && "Expected valid DebugLoc");
   42   return get()->getInlinedAt();
   59   if (DILocation *Loc = get()) {
   66   if (DILocation *Loc = get()) {
lib/Target/BPF/BTFDebug.cpp
 1047   auto SP = DL.get()->getScope()->getSubprogram();
lib/Transforms/Instrumentation/AddressSanitizer.cpp
 3044     if (const DILocation *FnLoc = EntryDebugLocation.get()) {
 3045       if (const DILocation *LifetimeLoc = APC.InsBefore->getDebugLoc().get()) {
tools/opt/Debugify.cpp
  137         const DILocation *Loc = I->getDebugLoc().get();