Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DLLVMContextImpl.h796 unsigned MIType;
801 MDNodeKeyImpl(unsigned MIType, unsigned Line, StringRef Name, StringRef Value)
802 : MIType(MIType), Line(Line), Name(Name), Value(Value) {}
804 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getName()),
808 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
812 return hash_combine(MIType, Line, Name, Value);
817 unsigned MIType;
822 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File,
824 : MIType(MIType), Line(Line), File(File), Elements(Elements) {}
826 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()),
[all …]
DDebugInfoMetadata.cpp561 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument
566 (MIType, Line, getString(Name), getString(Value))); in getImpl()
568 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl()
571 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument
576 (MIType, Line, File, Elements)); in getImpl()
578 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
/external/llvm/include/llvm/IR/
DDebugInfoMetadata.h2220 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType,
2223 assert(MIType < 1u << 16);
2224 SubclassData16 = MIType;
2264 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line,
2266 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {}
2269 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line,
2272 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name),
2275 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line,
2285 DEFINE_MDNODE_GET(DIMacro, (unsigned MIType, unsigned Line, StringRef Name,
2287 (MIType, Line, Name, Value))
[all …]