Home
last modified time | relevance | path

Searched refs:MIType (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/IR/
DLLVMContextImpl.h896 unsigned MIType;
901 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value)
902 : MIType(MIType), Line(Line), Name(Name), Value(Value) {}
904 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()),
908 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
912 return hash_combine(MIType, Line, Name, Value);
917 unsigned MIType;
922 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File,
924 : MIType(MIType), Line(Line), File(File), Elements(Elements) {}
926 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()),
[all …]
DDebugInfoMetadata.cpp627 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument
631 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl()
633 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl()
636 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument
641 (MIType, Line, File, Elements)); in getImpl()
643 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
/external/llvm/include/llvm/IR/
DDebugInfoMetadata.h2308 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType,
2311 assert(MIType < 1u << 16);
2312 SubclassData16 = MIType;
2352 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line,
2354 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {}
2357 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line,
2360 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name),
2363 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line,
2373 DEFINE_MDNODE_GET(DIMacro, (unsigned MIType, unsigned Line, StringRef Name,
2375 (MIType, Line, Name, Value))
[all …]