Searched refs:MIType (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | LLVMContextImpl.h | 1279 unsigned MIType; 1284 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value) 1285 : MIType(MIType), Line(Line), Name(Name), Value(Value) {} 1287 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()), 1291 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && 1296 return hash_combine(MIType, Line, Name, Value); 1301 unsigned MIType; 1306 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File, 1308 : MIType(MIType), Line(Line), File(File), Elements(Elements) {} 1310 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()), [all …]
|
H A D | DebugInfoMetadata.cpp | 2293 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, in getImpl() argument 2297 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl() 2299 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl() 2302 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 2306 DEFINE_GETIMPL_LOOKUP(DIMacroFile, (MIType, Line, File, Elements)); in getImpl() 2308 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DebugInfoMetadata.h | 3778 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType, 3782 assert(MIType < 1u << 16); 3783 SubclassData16 = MIType; 3824 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line, 3826 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops) { 3831 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 3834 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name), 3837 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 3848 (unsigned MIType, unsigned Line, StringRef Name, 3850 (MIType, Line, Name, Value)) [all …]
|