/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 896 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 …]
|
D | DebugInfoMetadata.cpp | 627 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/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | LLVMContextImpl.h | 1066 unsigned MIType; 1071 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value) 1072 : MIType(MIType), Line(Line), Name(Name), Value(Value) {} 1074 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()), 1078 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && 1083 return hash_combine(MIType, Line, Name, Value); 1088 unsigned MIType; 1093 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File, 1095 : MIType(MIType), Line(Line), File(File), Elements(Elements) {} 1097 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()), [all …]
|
D | DebugInfoMetadata.cpp | 981 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 985 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl() 987 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl() 990 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 995 (MIType, Line, File, Elements)); in getImpl() 997 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 2308 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 …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 2931 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType, 2934 assert(MIType < 1u << 16); 2935 SubclassData16 = MIType; 2975 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line, 2977 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {} 2980 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 2983 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name), 2986 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 2996 DEFINE_MDNODE_GET(DIMacro, (unsigned MIType, unsigned Line, StringRef Name, 2998 (MIType, Line, Name, Value)) [all …]
|