Lines Matching refs:PFS
139 PerFunctionMIParsingState &PFS; member in __anon7ed225c00111::MIParser
162 MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error,
364 MIParser::MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error, in MIParser() argument
366 : MF(PFS.MF), Error(Error), Source(Source), CurrentSource(Source), PFS(PFS) in MIParser()
378 const SourceMgr &SM = *PFS.SM; in error()
1032 Info = &PFS.getVRegInfoNamed(Name); in parseNamedVirtualRegister()
1043 Info = &PFS.getVRegInfo(ID); in parseVirtualRegister()
1073 auto RCNameI = PFS.Names2RegClasses.find(Name); in parseRegisterClassOrBank()
1074 if (RCNameI != PFS.Names2RegClasses.end()) { in parseRegisterClassOrBank()
1101 auto RBNameI = PFS.Names2RegBanks.find(Name); in parseRegisterClassOrBank()
1102 if (RBNameI == PFS.Names2RegBanks.end()) in parseRegisterClassOrBank()
1331 &PFS.IRSlots); in parseIRConstant()
1467 auto MBBInfo = PFS.MBBSlots.find(Number); in parseMBBReference()
1468 if (MBBInfo == PFS.MBBSlots.end()) in parseMBBReference()
1494 auto ObjectInfo = PFS.StackObjectSlots.find(ID); in parseStackFrameIndex()
1495 if (ObjectInfo == PFS.StackObjectSlots.end()) in parseStackFrameIndex()
1523 auto ObjectInfo = PFS.FixedStackObjectSlots.find(ID); in parseFixedStackFrameIndex()
1524 if (ObjectInfo == PFS.FixedStackObjectSlots.end()) in parseFixedStackFrameIndex()
1554 if (GVIdx >= PFS.IRSlots.GlobalValues.size()) in parseGlobalValue()
1557 GV = PFS.IRSlots.GlobalValues[GVIdx]; in parseGlobalValue()
1582 auto ConstantInfo = PFS.ConstantPoolSlots.find(ID); in parseConstantPoolIndexOperand()
1583 if (ConstantInfo == PFS.ConstantPoolSlots.end()) in parseConstantPoolIndexOperand()
1597 auto JumpTableEntryInfo = PFS.JumpTableSlots.find(ID); in parseJumpTableIndexOperand()
1598 if (JumpTableEntryInfo == PFS.JumpTableSlots.end()) in parseJumpTableIndexOperand()
1646 auto NodeInfo = PFS.IRSlots.MetadataNodes.find(ID); in parseMDNode()
1647 if (NodeInfo == PFS.IRSlots.MetadataNodes.end()) in parseMDNode()
2961 bool llvm::parseMachineBasicBlockDefinitions(PerFunctionMIParsingState &PFS, in parseMachineBasicBlockDefinitions() argument
2964 return MIParser(PFS, Error, Src).parseBasicBlockDefinitions(PFS.MBBSlots); in parseMachineBasicBlockDefinitions()
2967 bool llvm::parseMachineInstructions(PerFunctionMIParsingState &PFS, in parseMachineInstructions() argument
2969 return MIParser(PFS, Error, Src).parseBasicBlocks(); in parseMachineInstructions()
2972 bool llvm::parseMBBReference(PerFunctionMIParsingState &PFS, in parseMBBReference() argument
2975 return MIParser(PFS, Error, Src).parseStandaloneMBB(MBB); in parseMBBReference()
2978 bool llvm::parseRegisterReference(PerFunctionMIParsingState &PFS, in parseRegisterReference() argument
2981 return MIParser(PFS, Error, Src).parseStandaloneRegister(Reg); in parseRegisterReference()
2984 bool llvm::parseNamedRegisterReference(PerFunctionMIParsingState &PFS, in parseNamedRegisterReference() argument
2987 return MIParser(PFS, Error, Src).parseStandaloneNamedRegister(Reg); in parseNamedRegisterReference()
2990 bool llvm::parseVirtualRegisterReference(PerFunctionMIParsingState &PFS, in parseVirtualRegisterReference() argument
2993 return MIParser(PFS, Error, Src).parseStandaloneVirtualRegister(Info); in parseVirtualRegisterReference()
2996 bool llvm::parseStackObjectReference(PerFunctionMIParsingState &PFS, in parseStackObjectReference() argument
2999 return MIParser(PFS, Error, Src).parseStandaloneStackObject(FI); in parseStackObjectReference()
3002 bool llvm::parseMDNode(PerFunctionMIParsingState &PFS, in parseMDNode() argument
3004 return MIParser(PFS, Error, Src).parseStandaloneMDNode(Node); in parseMDNode()