Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DLLVMContextImpl.h1257 unsigned MIType;
1262 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value)
1263 : MIType(MIType), Line(Line), Name(Name), Value(Value) {}
1265 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()),
1269 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
1274 return hash_combine(MIType, Line, Name, Value);
1279 unsigned MIType;
1284 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File,
1286 : MIType(MIType), Line(Line), File(File), Elements(Elements) {}
1288 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()),
[all …]
H A DDebugInfoMetadata.cpp1987 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, in getImpl() argument
1991 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl()
1993 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl()
1996 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument
2000 DEFINE_GETIMPL_LOOKUP(DIMacroFile, (MIType, Line, File, Elements)); in getImpl()
2002 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h3514 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType,
3518 assert(MIType < 1u << 16);
3519 SubclassData16 = MIType;
3559 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line,
3561 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {}
3564 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line,
3567 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name),
3570 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line,
3581 (unsigned MIType, unsigned Line, StringRef Name,
3583 (MIType, Line, Name, Value))
[all …]