Searched refs:MIType (Results 1 – 3 of 3) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 1068 unsigned MIType; 1074 : MIType(MIType), Line(Line), Name(Name), Value(Value) {} 1076 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()), 1080 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && 1085 return hash_combine(MIType, Line, Name, Value); 1090 unsigned MIType; 1095 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File, 1097 : MIType(MIType), Line(Line), File(File), Elements(Elements) {} 1099 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()), 1103 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && [all …]
|
| H A D | DebugInfoMetadata.cpp | 1108 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 1112 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl() 1114 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl() 1117 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 1122 (MIType, Line, File, Elements)); in getImpl() 1124 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 3020 assert(MIType < 1u << 16); 3021 SubclassData16 = MIType; 3063 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {} 3084 (MIType, Line, Name, Value)) 3087 (MIType, Line, Name, Value)) 3110 DIMacroFile(LLVMContext &C, StorageType Storage, unsigned MIType, 3115 static DIMacroFile *getImpl(LLVMContext &Context, unsigned MIType, 3123 static DIMacroFile *getImpl(LLVMContext &Context, unsigned MIType, 3135 (MIType, Line, File, Elements)) 3136 DEFINE_MDNODE_GET(DIMacroFile, (unsigned MIType, unsigned Line, [all …]
|