Searched refs:MIType (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 1209 unsigned MIType; 1215 : MIType(MIType), Line(Line), Name(Name), Value(Value) {} 1217 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()), 1221 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && 1226 return hash_combine(MIType, Line, Name, Value); 1231 unsigned MIType; 1236 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File, 1238 : MIType(MIType), Line(Line), File(File), Elements(Elements) {} 1240 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()), 1244 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && [all …]
|
| H A D | DebugInfoMetadata.cpp | 1775 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, in getImpl() argument 1779 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl() 1781 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl() 1784 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 1788 DEFINE_GETIMPL_LOOKUP(DIMacroFile, (MIType, Line, File, Elements)); in getImpl() 1790 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 3413 assert(MIType < 1u << 16); 3414 SubclassData16 = MIType; 3476 (unsigned MIType, unsigned Line, StringRef Name, 3478 (MIType, Line, Name, Value)) 3480 (unsigned MIType, unsigned Line, MDString *Name, 3482 (MIType, Line, Name, Value)) 3505 DIMacroFile(LLVMContext &C, StorageType Storage, unsigned MIType, 3510 static DIMacroFile *getImpl(LLVMContext &Context, unsigned MIType, 3529 (unsigned MIType, unsigned Line, DIFile *File, 3531 (MIType, Line, File, Elements)) [all …]
|