Searched refs:parseTypeAndValue (Results 1 – 2 of 2) sorted by relevance
| /openbsd/src/gnu/llvm/llvm/include/llvm/AsmParser/ |
| D | LLParser.h | 501 bool parseTypeAndValue(Value *&V, PerFunctionState *PFS); 502 bool parseTypeAndValue(Value *&V, PerFunctionState &PFS) { in parseTypeAndValue() function 503 return parseTypeAndValue(V, &PFS); in parseTypeAndValue() 505 bool parseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) { in parseTypeAndValue() function 507 return parseTypeAndValue(V, PFS); in parseTypeAndValue()
|
| /openbsd/src/gnu/llvm/llvm/lib/AsmParser/ |
| D | LLParser.cpp | 5833 bool LLParser::parseTypeAndValue(Value *&V, PerFunctionState *PFS) { in parseTypeAndValue() function in LLParser 5842 if (parseTypeAndValue(V, PFS)) in parseTypeAndBasicBlock() 6538 if (parseTypeAndValue(Op0, Loc, PFS)) in parseBr() 6568 if (parseTypeAndValue(Cond, CondLoc, PFS) || in parseSwitch() 6584 if (parseTypeAndValue(Constant, CondLoc, PFS) || in parseSwitch() 6612 if (parseTypeAndValue(Address, AddrLoc, PFS) || in parseIndirectBr() 6756 if (parseTypeAndValue(Exn, ExnLoc, PFS)) in parseResume() 6951 if (parseTypeAndValue(LHS, Loc, PFS)) in parseUnaryOp() 7078 if (parseTypeAndValue(LHS, Loc, PFS) || in parseArithmetic() 7098 if (parseTypeAndValue(LHS, Loc, PFS) || in parseLogical() [all …]
|