Searched refs:MIType (Results 1 – 3 of 3) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 1179 unsigned MIType; 1185 : MIType(MIType), Line(Line), Name(Name), Value(Value) {} 1187 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()), 1191 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && 1196 return hash_combine(MIType, Line, Name, Value); 1201 unsigned MIType; 1206 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File, 1208 : MIType(MIType), Line(Line), File(File), Elements(Elements) {} 1210 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()), 1214 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && [all …]
|
| H A D | DebugInfoMetadata.cpp | 1564 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 1568 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl() 1570 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl() 1573 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 1578 (MIType, Line, File, Elements)); in getImpl() 1580 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 3398 assert(MIType < 1u << 16); 3399 SubclassData16 = MIType; 3441 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {} 3462 (MIType, Line, Name, Value)) 3465 (MIType, Line, Name, Value)) 3488 DIMacroFile(LLVMContext &C, StorageType Storage, unsigned MIType, 3493 static DIMacroFile *getImpl(LLVMContext &Context, unsigned MIType, 3501 static DIMacroFile *getImpl(LLVMContext &Context, unsigned MIType, 3513 (MIType, Line, File, Elements)) 3514 DEFINE_MDNODE_GET(DIMacroFile, (unsigned MIType, unsigned Line, [all …]
|