Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/llvm/include/llvm/AsmParser/
H A DLLParser.h485 PerFunctionState *PFS);
491 bool parseValue(Type *Ty, Value *&V, PerFunctionState *PFS);
492 bool parseValue(Type *Ty, Value *&V, PerFunctionState &PFS) { in parseValue() argument
493 return parseValue(Ty, V, &PFS); in parseValue()
496 bool parseValue(Type *Ty, Value *&V, LocTy &Loc, PerFunctionState &PFS) { in parseValue() argument
498 return parseValue(Ty, V, &PFS); in parseValue()
501 bool parseTypeAndValue(Value *&V, PerFunctionState *PFS);
502 bool parseTypeAndValue(Value *&V, PerFunctionState &PFS) { in parseTypeAndValue() argument
503 return parseTypeAndValue(V, &PFS); in parseTypeAndValue()
505 bool parseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) { in parseTypeAndValue() argument
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp116 bool parseRegisterInfo(PerFunctionMIParsingState &PFS,
119 bool setupRegisterInfo(const PerFunctionMIParsingState &PFS,
122 bool initializeFrameInfo(PerFunctionMIParsingState &PFS,
125 bool initializeCallSiteInfo(PerFunctionMIParsingState &PFS,
128 bool parseCalleeSavedRegister(PerFunctionMIParsingState &PFS,
134 bool parseStackObjectsDebugInfo(PerFunctionMIParsingState &PFS,
138 bool initializeConstantPool(PerFunctionMIParsingState &PFS,
142 bool initializeJumpTableInfo(PerFunctionMIParsingState &PFS,
145 bool parseMachineMetadataNodes(PerFunctionMIParsingState &PFS,
150 bool parseMDNode(PerFunctionMIParsingState &PFS, MDNode *&Node,
[all …]
H A DMIParser.cpp396 PerFunctionMIParsingState &PFS; member in __anon3cc671320111::MIParser
401 MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error,
403 MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error,
569 MIParser::MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error, in MIParser() argument
571 : MF(PFS.MF), Error(Error), Source(Source), CurrentSource(Source), PFS(PFS) in MIParser()
574 MIParser::MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error, in MIParser() argument
576 : MF(PFS.MF), Error(Error), Source(Source), CurrentSource(Source), in MIParser()
577 SourceRange(SourceRange), PFS(PFS) {} in MIParser()
588 const SourceMgr &SM = *PFS.SM; in error()
1293 auto FI = PFS.MachineForwardRefMDNodes.find(ID); in parseMachineMetadata()
[all …]
/openbsd-src/gnu/llvm/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,
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp2704 PerFunctionState &PFS, bool IsMustTailCall, in parseParameterList() argument
2736 if (parseMetadataAsValue(V, PFS)) in parseParameterList()
2740 if (parseOptionalParamAttrs(ArgAttrs) || parseValue(ArgTy, V, PFS)) in parseParameterList()
2783 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) { in parseOptionalOperandBundles() argument
2810 if (parseType(Ty) || parseValue(Ty, Input, PFS)) in parseOptionalOperandBundles()
3406 bool LLParser::parseValID(ValID &ID, PerFunctionState *PFS, Type *ExpectedTy) { in parseValID() argument
3578 parseValID(Fn, PFS) || in parseValID()
3581 parseValID(Label, PFS) || in parseValID()
3626 } else if (PFS) { in parseValID()
3628 FwdDeclAS = PFS->getFunction().getAddressSpace(); in parseValID()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMIRFormatter.h63 StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS, in parseCustomPseudoSourceValue() argument
79 PerFunctionMIParsingState &PFS, const Value *&V,
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUMIRFormatter.h34 PerFunctionMIParsingState &PFS,
H A DAMDGPUMIRFormatter.cpp21 StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS, in parseCustomPseudoSourceValue() argument
H A DAMDGPUTargetMachine.cpp1433 const yaml::MachineFunctionInfo &MFI_, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
1437 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
1440 if (MFI->initializeBaseYamlFields(YamlMFI, MF, PFS, Error, SourceRange)) in parseMachineFunctionInfo()
1451 if (parseNamedRegisterReference(PFS, TempReg, RegName.Value, Error)) { in parseMachineFunctionInfo()
1471 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID()); in parseMachineFunctionInfo()
1472 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1, in parseMachineFunctionInfo()
1518 if (parseNamedRegisterReference(PFS, Reg, A->RegisterName.Value, Error)) { in parseMachineFunctionInfo()
H A DSIMachineFunctionInfo.cpp658 PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange) { in initializeBaseYamlFields() argument
680 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID()); in initializeBaseYamlFields()
682 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1, 1, in initializeBaseYamlFields()
H A DAMDGPUTargetMachine.h103 PerFunctionMIParsingState &PFS,
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVTargetMachine.h59 PerFunctionMIParsingState &PFS,
H A DRISCVTargetMachine.cpp376 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
380 PFS.MF.getInfo<RISCVMachineFunctionInfo>()->initializeBaseYamlFields(YamlMFI); in parseMachineFunctionInfo()
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.h62 PerFunctionMIParsingState &PFS,
H A DWebAssemblyTargetMachine.cpp617 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
620 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.h60 PerFunctionMIParsingState &PFS,
H A DAArch64TargetMachine.cpp856 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
859 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Dia64-raw.tbl27 AR[PFS]; br.call, brl.call; alloc, br.ia, br.ret, epc, IC:mov-from-AR-PFS; impliedF
28 AR[PFS]; IC:mov-to-AR-PFS; alloc, br.ia, epc, IC:mov-from-AR-PFS; impliedF
29 AR[PFS]; IC:mov-to-AR-PFS; br.ret; none
H A Dia64-waw.tbl31 AR[PFS]; br.call, brl.call; br.call, brl.call; none
32 AR[PFS]; br.call, brl.call; IC:mov-to-AR-PFS; impliedF
H A Dia64-ic.tbl90 mov-from-AR-PFS; IC:mov-from-AR-I[Field(ar3) == PFS]
157 mov-to-AR-PFS; IC:mov-to-AR-I[Field(ar3) == PFS]
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dia64-raw.tbl27 AR[PFS]; br.call, brl.call; alloc, br.ia, br.ret, epc, IC:mov-from-AR-PFS; impliedF
28 AR[PFS]; IC:mov-to-AR-PFS; alloc, br.ia, epc, IC:mov-from-AR-PFS; impliedF
29 AR[PFS]; IC:mov-to-AR-PFS; br.ret; none
H A Dia64-ic.tbl90 mov-from-AR-PFS; IC:mov-from-AR-I[Field(ar3) == PFS]
158 mov-to-AR-PFS; IC:mov-to-AR-I[Field(ar3) == PFS]
H A Dia64-waw.tbl31 AR[PFS]; br.call, brl.call; br.call, brl.call; none
32 AR[PFS]; br.call, brl.call; IC:mov-to-AR-PFS; impliedF
/openbsd-src/sbin/isakmpd/
H A Dconf.c388 #define PFS(x) ((x) ? "-PFS" : "") in conf_load_defaults_qm() macro
411 MODE_p(mode), qme_p, qmh_p, PFS(pfs), dhg_p); in conf_load_defaults_qm()
/openbsd-src/gnu/llvm/llvm/include/llvm/Target/
H A DTargetMachine.h163 PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument

12