Searched refs:MIType (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 1458 unsigned MIType; 1463 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value) 1464 : MIType(MIType), Line(Line), Name(Name), Value(Value) {} 1466 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()), 1470 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && 1475 return hash_combine(MIType, Line, Name, Value); 1480 unsigned MIType; 1485 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File, 1487 : MIType(MIType), Line(Line), File(File), Elements(Elements) {} 1489 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()), [all …]
|
| H A D | DebugInfoMetadata.cpp | 2571 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, in getImpl() argument 2575 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl() 2577 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl() 2580 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 2584 DEFINE_GETIMPL_LOOKUP(DIMacroFile, (MIType, Line, File, Elements)); in getImpl() 2586 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 4392 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType, 4395 assert(MIType < 1u << 16); 4396 SubclassData16 = MIType; 4437 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line, 4439 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops) { 4444 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 4447 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name), 4450 LLVM_ABI static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, 4462 (unsigned MIType, unsigned Line, StringRef Name, 4464 (MIType, Line, Name, Value)) [all …]
|