Home
last modified time | relevance | path

Searched refs:PFS (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp118 bool parseRegisterInfo(PerFunctionMIParsingState &PFS,
121 bool setupRegisterInfo(const PerFunctionMIParsingState &PFS,
124 bool initializeFrameInfo(PerFunctionMIParsingState &PFS,
127 bool initializeCallSiteInfo(PerFunctionMIParsingState &PFS,
130 bool parseCalleeSavedRegister(PerFunctionMIParsingState &PFS,
141 std::optional<VarExprLoc> parseVarExprLoc(PerFunctionMIParsingState &PFS,
146 bool parseStackObjectsDebugInfo(PerFunctionMIParsingState &PFS,
150 bool initializeConstantPool(PerFunctionMIParsingState &PFS,
154 bool initializeJumpTableInfo(PerFunctionMIParsingState &PFS,
157 bool parseMachineMetadataNodes(PerFunctionMIParsingState &PFS,
[all …]
H A DMIParser.cpp397 PerFunctionMIParsingState &PFS; member in __anoneabaa95b0111::MIParser
402 MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error,
404 MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error,
571 MIParser::MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error, in MIParser() argument
573 : MF(PFS.MF), Error(Error), Source(Source), CurrentSource(Source), PFS(PFS) in MIParser()
576 MIParser::MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error, in MIParser() argument
578 : MF(PFS.MF), Error(Error), Source(Source), CurrentSource(Source), in MIParser()
579 SourceRange(SourceRange), PFS(PFS) {} in MIParser()
590 const SourceMgr &SM = *PFS.SM; in error()
1310 auto FI = PFS.MachineForwardRefMDNodes.find(ID); in parseMachineMetadata()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h514 PerFunctionState *PFS);
520 bool parseValue(Type *Ty, Value *&V, PerFunctionState *PFS);
521 bool parseValue(Type *Ty, Value *&V, PerFunctionState &PFS) { in parseValue() argument
522 return parseValue(Ty, V, &PFS); in parseValue()
525 bool parseValue(Type *Ty, Value *&V, LocTy &Loc, PerFunctionState &PFS) { in parseValue() argument
527 return parseValue(Ty, V, &PFS); in parseValue()
530 bool parseTypeAndValue(Value *&V, PerFunctionState *PFS);
531 bool parseTypeAndValue(Value *&V, PerFunctionState &PFS) { in parseTypeAndValue() argument
532 return parseTypeAndValue(V, &PFS); in parseTypeAndValue()
534 bool parseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) { in parseTypeAndValue() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/
H A DMIParser.h206 bool parseMachineBasicBlockDefinitions(PerFunctionMIParsingState &PFS,
219 bool parseMachineInstructions(PerFunctionMIParsingState &PFS, StringRef Src,
222 bool parseMBBReference(PerFunctionMIParsingState &PFS,
226 bool parseRegisterReference(PerFunctionMIParsingState &PFS,
230 bool parseNamedRegisterReference(PerFunctionMIParsingState &PFS, Register &Reg,
233 bool parseVirtualRegisterReference(PerFunctionMIParsingState &PFS,
237 bool parseStackObjectReference(PerFunctionMIParsingState &PFS, int &FI,
240 bool parseMDNode(PerFunctionMIParsingState &PFS, MDNode *&Node, StringRef Src,
243 bool parseMachineMetadata(PerFunctionMIParsingState &PFS, StringRef Src,
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp3012 PerFunctionState &PFS, bool IsMustTailCall, in parseParameterList() argument
3044 if (parseMetadataAsValue(V, PFS)) in parseParameterList()
3048 if (parseOptionalParamAttrs(ArgAttrs) || parseValue(ArgTy, V, PFS)) in parseParameterList()
3178 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) { in parseOptionalOperandBundles() argument
3205 if (parseType(Ty) || parseValue(Ty, Input, PFS)) in parseOptionalOperandBundles()
3794 bool LLParser::parseValID(ValID &ID, PerFunctionState *PFS, Type *ExpectedTy) { in parseValID() argument
3966 parseValID(Fn, PFS) || in parseValID()
3969 parseValID(Label, PFS) || in parseValID()
4013 } else if (PFS) { in parseValID()
4015 FwdDeclAS = PFS->getFunction().getAddressSpace(); in parseValID()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMIRFormatter.h67 StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS, in parseCustomPseudoSourceValue() argument
83 PerFunctionMIParsingState &PFS, const Value *&V,
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMIRFormatter.h47 PerFunctionMIParsingState &PFS,
H A DAMDGPUTargetMachine.cpp1536 const yaml::MachineFunctionInfo &MFI_, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
1540 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
1544 if (MFI->initializeBaseYamlFields(YamlMFI, MF, PFS, Error, SourceRange)) in parseMachineFunctionInfo()
1554 if (parseNamedRegisterReference(PFS, TempReg, RegName.Value, Error)) { in parseMachineFunctionInfo()
1581 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID()); in parseMachineFunctionInfo()
1582 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1, in parseMachineFunctionInfo()
1628 if (parseNamedRegisterReference(PFS, Reg, A->RegisterName.Value, Error)) { in parseMachineFunctionInfo()
H A DSIMachineFunctionInfo.cpp715 PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange) { in initializeBaseYamlFields() argument
739 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID()); in initializeBaseYamlFields()
741 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1, 1, in initializeBaseYamlFields()
H A DAMDGPUMIRFormatter.cpp172 StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS, in parseCustomPseudoSourceValue() argument
H A DAMDGPUTargetMachine.h116 PerFunctionMIParsingState &PFS,
H A DSIMachineFunctionInfo.h579 PerFunctionMIParsingState &PFS,
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetMachine.h59 PerFunctionMIParsingState &PFS,
H A DRISCVTargetMachine.cpp598 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
602 PFS.MF.getInfo<RISCVMachineFunctionInfo>()->initializeBaseYamlFields(YamlMFI); in parseMachineFunctionInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.h63 PerFunctionMIParsingState &PFS,
H A DWebAssemblyTargetMachine.cpp647 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
650 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetMachine.h65 PerFunctionMIParsingState &PFS,
H A DX86TargetMachine.cpp360 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
363 PFS.MF.getInfo<X86MachineFunctionInfo>()->initializeBaseYamlFields(YamlMFI); in parseMachineFunctionInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.h62 PerFunctionMIParsingState &PFS,
H A DAArch64TargetMachine.cpp907 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
910 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetMachine.h92 PerFunctionMIParsingState &PFS,
H A DARMTargetMachine.cpp638 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
641 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h162 PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
/freebsd/contrib/wpa/hostapd/
H A Ddefconfig379 # FILS shared key authentication with PFS
/freebsd/contrib/wpa/wpa_supplicant/
H A Ddefconfig614 # FILS shared key authentication with PFS

12