Searched refs:MIType (Results 1 – 3 of 3) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 1179 unsigned MIType; 1184 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value) 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()), [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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 3392 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType, 3395 assert(MIType < 1u << 16); 3396 SubclassData16 = MIType; 3436 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line, 3438 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {} 3441 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 3444 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name), 3447 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 3457 DEFINE_MDNODE_GET(DIMacro, (unsigned MIType, unsigned Line, StringRef Name, 3459 (MIType, Line, Name, Value)) [all …]
|