Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h458 return parseValue(Ty, V, &PFS); in parseValue()
463 return parseValue(Ty, V, &PFS); in parseValue()
468 return parseTypeAndValue(V, &PFS); in parseTypeAndValue()
472 return parseTypeAndValue(V, PFS); in parseTypeAndValue()
478 return parseTypeAndBasicBlock(BB, Loc, PFS); in parseTypeAndBasicBlock()
497 PerFunctionState &PFS);
500 bool parseValID(ValID &ID, PerFunctionState *PFS,
509 PerFunctionState *PFS);
532 PerFunctionState *PFS);
546 bool parseBasicBlock(PerFunctionState &PFS);
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp377 MachineFunction &MF = PFS.MF; in initializeCallSiteInfo()
459 if (parseRegisterInfo(PFS, YamlMF)) in initializeMachineFunction()
477 PFS.SM = &BlockSM; in initializeMachineFunction()
489 PFS.SM = &SM; in initializeMachineFunction()
507 PFS.SM = &InsnSM; in initializeMachineFunction()
513 PFS.SM = &SM; in initializeMachineFunction()
515 if (setupRegisterInfo(PFS, YamlMF)) in initializeMachineFunction()
554 MachineFunction &MF = PFS.MF; in parseRegisterInfo()
635 MachineFunction &MF = PFS.MF; in setupRegisterInfo()
665 for (auto P : PFS.VRegInfos) { in setupRegisterInfo()
[all …]
H A DMIParser.cpp400 PerFunctionMIParsingState &PFS; member in __anond099e40f0111::MIParser
570 : MF(PFS.MF), Error(Error), Source(Source), CurrentSource(Source), PFS(PFS) in MIParser()
576 SourceRange(SourceRange), PFS(PFS) {} in MIParser()
587 const SourceMgr &SM = *PFS.SM; in error()
1440 Info = &PFS.getVRegInfoNamed(Name); in parseNamedVirtualRegister()
1451 Info = &PFS.getVRegInfo(ID); in parseVirtualRegister()
1783 Loc, StringValue, PFS, C, in parseIRConstant()
1974 if (MBBInfo == PFS.MBBSlots.end()) in parseMBBReference()
2076 Token, PFS, GV, in parseGlobalValue()
2946 V = PFS.getIRValue(SlotNumber); in parseIRValue()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/
H A DMIParser.h204 bool parseMachineBasicBlockDefinitions(PerFunctionMIParsingState &PFS,
217 bool parseMachineInstructions(PerFunctionMIParsingState &PFS, StringRef Src,
220 bool parseMBBReference(PerFunctionMIParsingState &PFS,
224 bool parseRegisterReference(PerFunctionMIParsingState &PFS,
228 bool parseNamedRegisterReference(PerFunctionMIParsingState &PFS, Register &Reg,
231 bool parseVirtualRegisterReference(PerFunctionMIParsingState &PFS,
235 bool parseStackObjectReference(PerFunctionMIParsingState &PFS, int &FI,
238 bool parseMDNode(PerFunctionMIParsingState &PFS, MDNode *&Node, StringRef Src,
241 bool parseMachineMetadata(PerFunctionMIParsingState &PFS, StringRef Src,
/freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp3169 parseValID(Fn, PFS) || in parseValID()
3217 } else if (PFS) { in parseValID()
3264 if (parseValID(Fn, PFS)) in parseValID()
5172 if (parseMetadata(MD, &PFS)) in parseMetadataAsValue()
5193 if (parseValue(Ty, V, PFS)) in parseValueAsMetadata()
5263 if (!PFS) in convertValIDToValue()
5268 if (!PFS) in convertValIDToValue()
5756 if (parseBasicBlock(PFS)) in parseFunctionBody()
5767 return PFS.finishFunction(); in parseFunctionBody()
6259 parseValID(CalleeID, &PFS) || parseParameterList(ArgList, PFS) || in parseInvoke()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMIRFormatter.h65 StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS, in parseCustomPseudoSourceValue() argument
81 PerFunctionMIParsingState &PFS, const Value *&V,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMIRFormatter.h40 PerFunctionMIParsingState &PFS,
H A DAMDGPUMIRFormatter.cpp21 StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS, in parseCustomPseudoSourceValue() argument
H A DAMDGPUTargetMachine.cpp1489 const yaml::MachineFunctionInfo &MFI_, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
1493 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
1496 if (MFI->initializeBaseYamlFields(YamlMFI, MF, PFS, Error, SourceRange)) in parseMachineFunctionInfo()
1507 if (parseNamedRegisterReference(PFS, TempReg, RegName.Value, Error)) { in parseMachineFunctionInfo()
1519 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID()); in parseMachineFunctionInfo()
1520 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1, in parseMachineFunctionInfo()
1558 if (parseNamedRegisterReference(PFS, Reg, A->RegisterName.Value, Error)) { in parseMachineFunctionInfo()
H A DSIMachineFunctionInfo.cpp602 PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange) { in initializeBaseYamlFields() argument
621 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID()); in initializeBaseYamlFields()
623 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1, 1, in initializeBaseYamlFields()
H A DAMDGPUTargetMachine.h119 PerFunctionMIParsingState &PFS,
H A DSIMachineFunctionInfo.h510 PerFunctionMIParsingState &PFS,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.h57 PerFunctionMIParsingState &PFS,
H A DWebAssemblyTargetMachine.cpp533 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
537 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.h56 PerFunctionMIParsingState &PFS,
H A DAArch64TargetMachine.cpp774 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
778 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h152 PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
/freebsd-13.1/contrib/wpa/hostapd/
H A Ddefconfig366 # FILS shared key authentication with PFS
/freebsd-13.1/contrib/wpa/wpa_supplicant/
H A Ddefconfig576 # FILS shared key authentication with PFS
/freebsd-13.1/contrib/file/magic/Magdir/
H A Dimages1841 0 string PFS1\x0a PFS HDR image data
/freebsd-13.1/contrib/ncurses/misc/
H A Dterminfo.src23772 # PFS Page Format Selection * \E Pn SPC J 0 - -