Searched refs:parseTypeAndValue (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/ |
H A D | LLParser.h | 530 bool parseTypeAndValue(Value *&V, PerFunctionState *PFS); 531 bool parseTypeAndValue(Value *&V, PerFunctionState &PFS) { in parseTypeAndValue() function 532 return parseTypeAndValue(V, &PFS); in parseTypeAndValue() 534 bool parseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) { in parseTypeAndValue() function 536 return parseTypeAndValue(V, PFS); in parseTypeAndValue()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 6276 bool LLParser::parseTypeAndValue(Value *&V, PerFunctionState *PFS) { in parseTypeAndValue() function in LLParser 6285 if (parseTypeAndValue(V, PFS)) in parseTypeAndBasicBlock() 7152 if (parseTypeAndValue(Op0, Loc, PFS)) in parseBr() 7182 if (parseTypeAndValue(Cond, CondLoc, PFS) || in parseSwitch() 7198 if (parseTypeAndValue(Constant, CondLoc, PFS) || in parseSwitch() 7226 if (parseTypeAndValue(Address, AddrLoc, PFS) || in parseIndirectBr() 7370 if (parseTypeAndValue(Exn, ExnLoc, PFS)) in parseResume() 7565 if (parseTypeAndValue(LHS, Loc, PFS)) in parseUnaryOp() 7692 if (parseTypeAndValue(LHS, Loc, PFS) || in parseArithmetic() 7712 if (parseTypeAndValue(LHS, Loc, PFS) || in parseLogical() [all …]
|