HomeSort by: relevance | last modified time | path
    Searched refs:MIType (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMContextImpl.h 1179 unsigned MIType;
1184 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value)
1185 : MIType(MIType), Line(Line), Name(Name), Value(Value) {}
1187 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()),
1191 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
1196 return hash_combine(MIType, Line, Name, Value);
1201 unsigned MIType;
1206 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File,
1208 : MIType(MIType), Line(Line), File(File), Elements(Elements) {
    [all...]
DebugInfoMetadata.cpp 1564 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType,
1568 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value));
1570 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops);
1573 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType,
1578 (MIType, Line, File, Elements));
1580 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugInfoMetadata.h 3392 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType,
3395 assert(MIType < 1u << 16);
3396 SubclassData16 = MIType;
3436 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line,
3438 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {}
3441 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line,
3444 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name),
3447 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line,
3457 DEFINE_MDNODE_GET(DIMacro, (unsigned MIType, unsigned Line, StringRef Name,
3459 (MIType, Line, Name, Value)
    [all...]

Completed in 43 milliseconds