Searched refs:parseValue (Results 1 – 3 of 3) sorted by relevance
| /llvm-project/llvm/include/llvm/AsmParser/ |
| H A D | LLParser.h | 524 bool parseValue(Type *Ty, Value *&V, PerFunctionState *PFS); in parseValue() 525 bool parseValue(Type *Ty, Value *&V, PerFunctionState &PFS) { in parseValue() 526 return parseValue(Ty, V, &PFS); 529 bool parseValue(Type *Ty, Value *&V, LocTy &Loc, PerFunctionState &PFS) { in parseTypeAndValue() 531 return parseValue(Ty, V, &PFS); in parseTypeAndValue() 518 bool parseValue(Type *Ty, Value *&V, PerFunctionState &PFS) { parseValue() function 522 bool parseValue(Type *Ty, Value *&V, LocTy &Loc, PerFunctionState &PFS) { parseValue() function
|
| /llvm-project/llvm/lib/Support/ |
| H A D | JSON.cpp | 376 bool parseValue(Value &Out); 415 bool Parser::parseValue(Value &Out) { in parseValue() function in llvm::json::Parser 451 if (!parseValue(A.back())) in parseValue() 483 if (!parseValue(O[std::move(K)])) in parseValue() 686 if (P.parseValue(E)) in parse()
|
| /llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 3056 if (parseOptionalParamAttrs(ArgAttrs) || parseValue(ArgTy, V, PFS)) in parseRequiredTypeAttr() 3277 } else if (parseValue(Ty, Input, PFS)) { in parseArgumentList() 6096 if (parseValue(Ty, V, PFS)) in convertValIDToValue() 6352 bool LLParser::parseValue(Type *Ty, Value *&V, PerFunctionState *PFS) { in parseFunctionHeader() 6361 return parseType(Ty) || parseValue(Ty, V, PFS); in parseFunctionHeader() 7231 if (parseValue(Ty, RV, PFS)) in parseIndirectBr() 7497 if (parseValue(ArgTy, V, PFS)) in parseCatchPad() 7515 if (parseValue(Type::getTokenTy(Context), CleanupPad, PFS)) in parseCleanupPad() 7544 if (parseValue(Type::getTokenTy(Context), CatchPad, PFS)) in parseUnaryOp() 7568 if (parseValue(Typ in parseCallBr() 6247 bool LLParser::parseValue(Type *Ty, Value *&V, PerFunctionState *PFS) { parseValue() function in LLParser [all...] |