Home
last modified time | relevance | path

Searched refs:ValID (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLParser.h47 struct ValID { struct
69 ValID() = default; argument
70 ValID(const ValID &RHS) in ValID() function
77 bool operator<(const ValID &RHS) const {
134 std::map<ValID, std::map<ValID, GlobalValue *>> ForwardRefBlockAddresses;
456 bool ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
510 bool ParseValID(ValID &ID, PerFunctionState *PFS = nullptr);
DLLParser.cpp911 ValID ID; in parseIndirectSymbol()
914 if (ID.Kind != ValID::t_Constant) in parseIndirectSymbol()
3074 bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) { in ParseValID()
3080 ID.Kind = ValID::t_GlobalID; in ParseValID()
3084 ID.Kind = ValID::t_GlobalName; in ParseValID()
3088 ID.Kind = ValID::t_LocalID; in ParseValID()
3092 ID.Kind = ValID::t_LocalName; in ParseValID()
3096 ID.Kind = ValID::t_APSInt; in ParseValID()
3100 ID.Kind = ValID::t_APFloat; in ParseValID()
3104 ID.Kind = ValID::t_Constant; in ParseValID()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2246 unsigned ValID = GlobalInitWorklist.back().second; in resolveGlobalAndIndirectSymbolInits() local
2247 if (ValID >= ValueList.size()) { in resolveGlobalAndIndirectSymbolInits()
2251 if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID])) in resolveGlobalAndIndirectSymbolInits()
2260 unsigned ValID = IndirectSymbolInitWorklist.back().second; in resolveGlobalAndIndirectSymbolInits() local
2261 if (ValID >= ValueList.size()) { in resolveGlobalAndIndirectSymbolInits()
2264 Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]); in resolveGlobalAndIndirectSymbolInits()
2276 unsigned ValID = FunctionPrefixWorklist.back().second; in resolveGlobalAndIndirectSymbolInits() local
2277 if (ValID >= ValueList.size()) { in resolveGlobalAndIndirectSymbolInits()
2280 if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID])) in resolveGlobalAndIndirectSymbolInits()
2289 unsigned ValID = FunctionPrologueWorklist.back().second; in resolveGlobalAndIndirectSymbolInits() local
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp2559 unsigned ValID = VE.getValueID(V); in pushValueAndType() local
2561 Vals.push_back(InstID - ValID); in pushValueAndType()
2562 if (ValID >= InstID) { in pushValueAndType()
2590 unsigned ValID = VE.getValueID(V); in pushValue() local
2591 Vals.push_back(InstID - ValID); in pushValue()
2596 unsigned ValID = VE.getValueID(V); in pushValueSigned() local
2597 int64_t diff = ((int32_t)InstID - (int32_t)ValID); in pushValueSigned()