Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp969 ValID ID; in parseIndirectSymbol()
3262 ValID Fn; in parseValID()
3652 ValID ID; in parseGlobalValue()
5396 ValID ID; in parseConstantValue()
5424 ValID ID; in parseValue()
5676 ValID ID; in parseFunctionHeader()
5692 ValID ID; in resolveForwardRefBlockAddresses()
6251 ValID CalleeID; in parseInvoke()
6560 ValID CalleeID; in parseCallBr()
6979 ValID CalleeID; in parseCall()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h44 struct ValID { struct
66 ValID() = default; argument
67 ValID(const ValID &RHS) in ValID() argument
74 bool operator<(const ValID &RHS) const {
116 std::map<ValID, std::map<ValID, GlobalValue *>> ForwardRefBlockAddresses;
449 bool convertValIDToValue(Type *Ty, ValID &ID, Value *&V,
500 bool parseValID(ValID &ID, PerFunctionState *PFS,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2256 unsigned ValID = GlobalInitWorklist.back().second; in resolveGlobalAndIndirectSymbolInits() local
2257 if (ValID >= ValueList.size()) { in resolveGlobalAndIndirectSymbolInits()
2270 unsigned ValID = IndirectSymbolInitWorklist.back().second; in resolveGlobalAndIndirectSymbolInits() local
2271 if (ValID >= ValueList.size()) { in resolveGlobalAndIndirectSymbolInits()
2274 Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]); in resolveGlobalAndIndirectSymbolInits()
2286 unsigned ValID = FunctionPrefixWorklist.back().second; in resolveGlobalAndIndirectSymbolInits() local
2287 if (ValID >= ValueList.size()) { in resolveGlobalAndIndirectSymbolInits()
2299 unsigned ValID = FunctionPrologueWorklist.back().second; in resolveGlobalAndIndirectSymbolInits() local
2300 if (ValID >= ValueList.size()) { in resolveGlobalAndIndirectSymbolInits()
2312 unsigned ValID = FunctionPersonalityFnWorklist.back().second; in resolveGlobalAndIndirectSymbolInits() local
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2688 unsigned ValID = VE.getValueID(V); in pushValueAndType() local
2690 Vals.push_back(InstID - ValID); in pushValueAndType()
2691 if (ValID >= InstID) { in pushValueAndType()
2719 unsigned ValID = VE.getValueID(V); in pushValue() local
2720 Vals.push_back(InstID - ValID); in pushValue()
2725 unsigned ValID = VE.getValueID(V); in pushValueSigned() local
2726 int64_t diff = ((int32_t)InstID - (int32_t)ValID); in pushValueSigned()