Searched refs:ParseTypeAndValue (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/AsmParser/ |
D | LLParser.h | 353 bool ParseTypeAndValue(Value *&V, PerFunctionState *PFS); 354 bool ParseTypeAndValue(Value *&V, PerFunctionState &PFS) { in ParseTypeAndValue() function 355 return ParseTypeAndValue(V, &PFS); in ParseTypeAndValue() 357 bool ParseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) { in ParseTypeAndValue() function 359 return ParseTypeAndValue(V, PFS); in ParseTypeAndValue()
|
D | LLParser.cpp | 4014 bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) { in ParseTypeAndValue() function in LLParser 4024 if (ParseTypeAndValue(V, PFS)) return true; in ParseTypeAndBasicBlock() 4606 if (ParseTypeAndValue(Op0, Loc, PFS)) return true; in ParseBr() 4635 if (ParseTypeAndValue(Cond, CondLoc, PFS) || in ParseSwitch() 4651 if (ParseTypeAndValue(Constant, CondLoc, PFS) || in ParseSwitch() 4679 if (ParseTypeAndValue(Address, AddrLoc, PFS) || in ParseIndirectBr() 4823 if (ParseTypeAndValue(Exn, ExnLoc, PFS)) in ParseResume() 4843 if (ParseTypeAndValue(LHS, Loc, PFS) || in ParseArithmetic() 4871 if (ParseTypeAndValue(LHS, Loc, PFS) || in ParseLogical() 4894 ParseTypeAndValue(LHS, Loc, PFS) || in ParseCompare() [all …]
|