Searched refs:PFS (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/AsmParser/
H A DLLParser.h341 PerFunctionState *PFS);
343 bool ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS);
344 bool ParseValue(Type *Ty, Value *&V, PerFunctionState &PFS) { argument
345 return ParseValue(Ty, V, &PFS);
348 PerFunctionState &PFS) {
350 return ParseValue(Ty, V, &PFS);
353 bool ParseTypeAndValue(Value *&V, PerFunctionState *PFS);
354 bool ParseTypeAndValue(Value *&V, PerFunctionState &PFS) { argument
355 return ParseTypeAndValue(V, &PFS);
357 bool ParseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) { argument
347 ParseValue(Type *Ty, Value *&V, LocTy &Loc, PerFunctionState &PFS) argument
363 ParseTypeAndBasicBlock(BasicBlock *&BB, PerFunctionState &PFS) argument
[all...]
H A DLLParser.cpp1496 PerFunctionState *PFS) {
1791 PerFunctionState &PFS, bool IsMustTailCall,
1823 if (ParseMetadataAsValue(V, PFS))
1827 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
2339 /// sanity. PFS is used to convert function-local operands of metadata (since
2341 /// PFS can be null when we are not parsing metadata values inside a function.
2342 bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
2551 // We found the function; now find the basic block. Don't use PFS, since we
3814 bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
3817 if (ParseMetadata(MD, &PFS))
[all...]

Completed in 80 milliseconds