Home
last modified time | relevance | path

Searched refs:MIType (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h1265 unsigned MIType;
1271 : MIType(MIType), Line(Line), Name(Name), Value(Value) {}
1273 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()),
1277 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
1282 return hash_combine(MIType, Line, Name, Value);
1287 unsigned MIType;
1292 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File,
1294 : MIType(MIType), Line(Line), File(File), Elements(Elements) {}
1296 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()),
1300 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
[all …]
H A DDebugInfoMetadata.cpp2106 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, in getImpl() argument
2110 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl()
2112 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl()
2115 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument
2119 DEFINE_GETIMPL_LOOKUP(DIMacroFile, (MIType, Line, File, Elements)); in getImpl()
2121 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h3603 assert(MIType < 1u << 16);
3604 SubclassData16 = MIType;
3647 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops) {
3669 (unsigned MIType, unsigned Line, StringRef Name,
3671 (MIType, Line, Name, Value))
3675 (MIType, Line, Name, Value))
3699 DIMacroFile(LLVMContext &C, StorageType Storage, unsigned MIType,
3701 : DIMacroNode(C, DIMacroFileKind, Storage, MIType, Ops) {
3725 (unsigned MIType, unsigned Line, DIFile *File,
3727 (MIType, Line, File, Elements))
[all …]