|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/IR/DebugLoc.h 94 unsigned getCol() const;
References
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp 511 ColumnInfo CI(DL.getCol(), /*EndColumn=*/0);
512 if (CI.getStartColumn() != DL.getCol())
546 OS.EmitCVLocDirective(FuncId, FileId, DL.getLine(), DL.getCol(),
lib/CodeGen/AsmPrinter/DwarfDebug.cpp 1666 recordSourceLine(DL.getLine(), DL.getCol(), Scope, /*Flags=*/0);
1695 Column = PrevInstLoc.getCol();
1719 recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
lib/CodeGen/LiveDebugVariables.cpp 490 if (DL.getCol() != 0)
491 CommentOS << ':' << DL.getCol();
lib/IR/DebugInfo.cpp 645 return DebugLoc::get(DL.getLine(), DL.getCol(), Scope, InlinedAt);
lib/IR/DebugLoc.cpp 126 if (getCol() != 0)
127 OS << ':' << getCol();
lib/IR/DiagnosticInfo.cpp 219 Twine(Loc.getCol())).str();
lib/Target/BPF/BTFDebug.cpp 1048 constructLineInfo(SP, LineSym, DL.getLine(), DL.getCol());
lib/Transforms/Utils/InlineFunction.cpp 1354 return DebugLoc::get(OrigDL.getLine(), OrigDL.getCol(), OrigDL.getScope(),
tools/llvm-dis/llvm-dis.cpp 73 OS << DL.getLine() << ":" << DL.getCol();
tools/polly/lib/Analysis/ScopDetectionDiagnostic.cpp 102 (LHS.getLine() == RHS.getLine() && LHS.getCol() < RHS.getCol());
102 (LHS.getLine() == RHS.getLine() && LHS.getCol() < RHS.getCol());
unittests/IR/IRBuilderTest.cpp 758 auto NewDL = DebugLoc::get(DL.getLine(), DL.getCol(), DL.getScope(), IA);
unittests/Transforms/Utils/CloningTest.cpp 585 EXPECT_EQ(OldDL.getCol(), NewDL.getCol());
585 EXPECT_EQ(OldDL.getCol(), NewDL.getCol());