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

/external/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h2308 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType, argument
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, Lin
2401 DIMacroFile(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line, ArrayRef<Metadata *> Ops) argument
2406 getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, DIFile *File, DIMacroNodeArray Elements, StorageType Storage, bool ShouldCreate = true) argument
[all...]
/external/llvm/lib/IR/
H A DLLVMContextImpl.h896 unsigned MIType; member in struct:llvm::MDNodeKeyImpl
901 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value) argument
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; member in struct:llvm::MDNodeKeyImpl
922 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File, argument
924 : MIType(MITyp
[all...]
H A DDebugInfoMetadata.cpp627 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, argument
631 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value));
633 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops);
636 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, argument
641 (MIType, Line, File, Elements));
643 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops);

Completed in 588 milliseconds