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

References

include/llvm/IR/DebugInfoMetadata.h
 3161     return getTemporary(getContext(), getMacinfoType(), getLine(), getName(),
 3212     return getTemporary(getContext(), getMacinfoType(), getLine(), getFile(),
lib/Bitcode/Writer/BitcodeWriter.cpp
 1749   Record.push_back(N->getMacinfoType());
 1762   Record.push_back(N->getMacinfoType());
lib/CodeGen/AsmPrinter/DwarfDebug.cpp
 2726   Asm->EmitULEB128(M.getMacinfoType());
 2740   assert(F.getMacinfoType() == dwarf::DW_MACINFO_start_file);
lib/IR/AsmWriter.cpp
 1638   auto Type = dwarf::MacinfoString(N->getMacinfoType());
 1642     Out << N->getMacinfoType();
lib/IR/LLVMContextImpl.h
 1101       : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()),
 1105     return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
 1124       : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()),
 1128     return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
lib/IR/Verifier.cpp
 1189   AssertDI(N.getMacinfoType() == dwarf::DW_MACINFO_define ||
 1190                N.getMacinfoType() == dwarf::DW_MACINFO_undef,
 1199   AssertDI(N.getMacinfoType() == dwarf::DW_MACINFO_start_file,
unittests/IR/IRBuilderTest.cpp
  871   EXPECT_EQ(dwarf::DW_MACINFO_define, MDef1->getMacinfoType());
  876   EXPECT_EQ(dwarf::DW_MACINFO_undef, MUndef1->getMacinfoType());
  881   EXPECT_EQ(dwarf::DW_MACINFO_start_file, TMF2->getMacinfoType());