Searched refs:parseTypeAndValue (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/ |
| H A D | LLParser.h | 534 bool parseTypeAndValue(Value *&V, PerFunctionState *PFS); 535 bool parseTypeAndValue(Value *&V, PerFunctionState &PFS) { in parseTypeAndValue() function 536 return parseTypeAndValue(V, &PFS); in parseTypeAndValue() 538 bool parseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) { in parseTypeAndValue() function 540 return parseTypeAndValue(V, PFS); in parseTypeAndValue()
|
| /freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 6578 bool LLParser::parseTypeAndValue(Value *&V, PerFunctionState *PFS) { in parseTypeAndValue() function in LLParser 6587 if (parseTypeAndValue(V, PFS)) in parseTypeAndBasicBlock() 7466 if (parseTypeAndValue(Op0, Loc, PFS)) in parseBr() 7496 if (parseTypeAndValue(Cond, CondLoc, PFS) || in parseSwitch() 7512 if (parseTypeAndValue(Constant, CondLoc, PFS) || in parseSwitch() 7540 if (parseTypeAndValue(Address, AddrLoc, PFS) || in parseIndirectBr() 7684 if (parseTypeAndValue(Exn, ExnLoc, PFS)) in parseResume() 7879 if (parseTypeAndValue(LHS, Loc, PFS)) in parseUnaryOp() 8007 if (parseTypeAndValue(LHS, Loc, PFS) || in parseArithmetic() 8027 if (parseTypeAndValue(LHS, Loc, PFS) || in parseLogical() [all …]
|