/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
H A D | MIRParser.cpp | 118 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 D | MIParser.cpp | 397 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 D | LLParser.h | 514 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 D | MIParser.h | 206 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 D | LLParser.cpp | 3012 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 D | MIRFormatter.h | 67 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 D | AMDGPUMIRFormatter.h | 47 PerFunctionMIParsingState &PFS,
|
H A D | AMDGPUTargetMachine.cpp | 1536 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 D | SIMachineFunctionInfo.cpp | 715 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 D | AMDGPUMIRFormatter.cpp | 172 StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS, in parseCustomPseudoSourceValue() argument
|
H A D | AMDGPUTargetMachine.h | 116 PerFunctionMIParsingState &PFS,
|
H A D | SIMachineFunctionInfo.h | 579 PerFunctionMIParsingState &PFS,
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVTargetMachine.h | 59 PerFunctionMIParsingState &PFS,
|
H A D | RISCVTargetMachine.cpp | 598 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 D | WebAssemblyTargetMachine.h | 63 PerFunctionMIParsingState &PFS,
|
H A D | WebAssemblyTargetMachine.cpp | 647 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 D | X86TargetMachine.h | 65 PerFunctionMIParsingState &PFS,
|
H A D | X86TargetMachine.cpp | 360 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 D | AArch64TargetMachine.h | 62 PerFunctionMIParsingState &PFS,
|
H A D | AArch64TargetMachine.cpp | 907 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 D | ARMTargetMachine.h | 92 PerFunctionMIParsingState &PFS,
|
H A D | ARMTargetMachine.cpp | 638 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 D | TargetMachine.h | 162 PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
|
/freebsd/contrib/wpa/hostapd/ |
H A D | defconfig | 379 # FILS shared key authentication with PFS
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | defconfig | 614 # FILS shared key authentication with PFS
|