Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
H A DLLParser.h461 PerFunctionState *PFS, bool IsCall);
467 bool parseValue(Type *Ty, Value *&V, PerFunctionState *PFS);
468 bool parseValue(Type *Ty, Value *&V, PerFunctionState &PFS) { in parseValue() argument
469 return parseValue(Ty, V, &PFS); in parseValue()
472 bool parseValue(Type *Ty, Value *&V, LocTy &Loc, PerFunctionState &PFS) { in parseValue() argument
474 return parseValue(Ty, V, &PFS); in parseValue()
477 bool parseTypeAndValue(Value *&V, PerFunctionState *PFS);
478 bool parseTypeAndValue(Value *&V, PerFunctionState &PFS) { in parseTypeAndValue() argument
479 return parseTypeAndValue(V, &PFS); in parseTypeAndValue()
481 bool parseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) { in parseTypeAndValue() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp117 bool parseRegisterInfo(PerFunctionMIParsingState &PFS,
120 bool setupRegisterInfo(const PerFunctionMIParsingState &PFS,
123 bool initializeFrameInfo(PerFunctionMIParsingState &PFS,
126 bool initializeCallSiteInfo(PerFunctionMIParsingState &PFS,
129 bool parseCalleeSavedRegister(PerFunctionMIParsingState &PFS,
135 bool parseStackObjectsDebugInfo(PerFunctionMIParsingState &PFS,
139 bool initializeConstantPool(PerFunctionMIParsingState &PFS,
143 bool initializeJumpTableInfo(PerFunctionMIParsingState &PFS,
147 bool parseMDNode(PerFunctionMIParsingState &PFS, MDNode *&Node,
150 bool parseMBBReference(PerFunctionMIParsingState &PFS,
[all …]
H A DMIParser.cpp399 PerFunctionMIParsingState &PFS; member in __anondd7cfb660111::MIParser
404 MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error,
556 MIParser::MIParser(PerFunctionMIParsingState &PFS, SMDiagnostic &Error, in MIParser() argument
558 : MF(PFS.MF), Error(Error), Source(Source), CurrentSource(Source), PFS(PFS) in MIParser()
570 const SourceMgr &SM = *PFS.SM; in error()
1273 if (PFS.Target.parseInstrName(InstrName, OpCode)) in parseInstruction()
1282 if (PFS.Target.getRegisterByName(Name, Reg)) in parseNamedRegister()
1292 Info = &PFS.getVRegInfoNamed(Name); in parseNamedVirtualRegister()
1303 Info = &PFS.getVRegInfo(ID); in parseVirtualRegister()
1333 const TargetRegisterClass *RC = PFS.Target.getRegClass(Name); in parseRegisterClassOrBank()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/MIRParser/
H A DMIParser.h199 bool parseMachineBasicBlockDefinitions(PerFunctionMIParsingState &PFS,
212 bool parseMachineInstructions(PerFunctionMIParsingState &PFS, StringRef Src,
215 bool parseMBBReference(PerFunctionMIParsingState &PFS,
219 bool parseRegisterReference(PerFunctionMIParsingState &PFS,
223 bool parseNamedRegisterReference(PerFunctionMIParsingState &PFS, Register &Reg,
226 bool parseVirtualRegisterReference(PerFunctionMIParsingState &PFS,
230 bool parseStackObjectReference(PerFunctionMIParsingState &PFS, int &FI,
233 bool parseMDNode(PerFunctionMIParsingState &PFS, MDNode *&Node, StringRef Src,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp2664 PerFunctionState &PFS, bool IsMustTailCall, in parseParameterList() argument
2695 if (parseMetadataAsValue(V, PFS)) in parseParameterList()
2699 if (parseOptionalParamAttrs(ArgAttrs) || parseValue(ArgTy, V, PFS)) in parseParameterList()
2757 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) { in parseOptionalOperandBundles() argument
2784 if (parseType(Ty) || parseValue(Ty, Input, PFS)) in parseOptionalOperandBundles()
3326 bool LLParser::parseValID(ValID &ID, PerFunctionState *PFS) { in parseValID() argument
5388 PerFunctionState *PFS) { in parseDIArgList() argument
5389 assert(PFS && "Expected valid function state"); in parseDIArgList()
5400 if (parseValueAsMetadata(MD, "expected value-as-metadata operand", PFS)) in parseDIArgList()
5480 bool LLParser::parseMetadataAsValue(Value *&V, PerFunctionState &PFS) { in parseMetadataAsValue() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMIRFormatter.h65 StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS, in parseCustomPseudoSourceValue() argument
81 PerFunctionMIParsingState &PFS, const Value *&V,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetMachine.cpp1247 const yaml::MachineFunctionInfo &MFI_, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
1251 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
1254 if (MFI->initializeBaseYamlFields(YamlMFI, MF, PFS, Error, SourceRange)) in parseMachineFunctionInfo()
1265 if (parseNamedRegisterReference(PFS, TempReg, RegName.Value, Error)) { in parseMachineFunctionInfo()
1277 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID()); in parseMachineFunctionInfo()
1278 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1, in parseMachineFunctionInfo()
1316 if (parseNamedRegisterReference(PFS, Reg, A->RegisterName.Value, Error)) { in parseMachineFunctionInfo()
H A DAMDGPUMIRFormatter.h40 PerFunctionMIParsingState &PFS,
H A DAMDGPUMIRFormatter.cpp21 StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS, in parseCustomPseudoSourceValue() argument
H A DSIMachineFunctionInfo.cpp580 PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange) { in initializeBaseYamlFields() argument
599 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID()); in initializeBaseYamlFields()
601 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1, 1, in initializeBaseYamlFields()
H A DAMDGPUTargetMachine.h119 PerFunctionMIParsingState &PFS,
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/ia64/
H A Defisetjmp_arch.h42 UINT64 PFS; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.h57 PerFunctionMIParsingState &PFS,
H A DWebAssemblyTargetMachine.cpp520 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
524 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.h56 PerFunctionMIParsingState &PFS,
H A DAArch64TargetMachine.cpp722 const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument
726 MachineFunction &MF = PFS.MF; in parseMachineFunctionInfo()
/netbsd-src/crypto/dist/ipsec-tools/src/racoon/
H A DTODO33 guess if we need phase 2 PFS or not (we cannot negotiate it. so
34 we may need to pick from "no PFS" or "same as phase 1 DH group")
/netbsd-src/external/gpl3/gdb.old/dist/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
/netbsd-src/external/gpl3/gdb/dist/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
/netbsd-src/external/gpl3/binutils.old/dist/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]
160 mov-to-AR-PFS; IC:mov-to-AR-I[Field(ar3) == PFS]
/netbsd-src/external/gpl3/binutils/dist/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
/netbsd-src/crypto/dist/ipsec-tools/src/racoon/samples/
H A Dracoon.conf.sample43 # to obey the initiator's lifetime and PFS group proposal,
/netbsd-src/crypto/dist/ipsec-tools/src/racoon/rfc/
H A Drfc2409.txt239 When used in the memo Perfect Forward Secrecy (PFS) refers to the
241 data protected by a single key. For PFS to exist the key used to
920 provide PFS. Using the optional KE payload, an additional
921 exponentiation is performed and PFS is provided for the keying
992 If PFS is not needed, and KE payloads are not exchanged, the new
997 If PFS is desired and KE payloads were exchanged, the new keying
1035 This keying material (whether with PFS or without, and whether
1465 This protocol can provide PFS of both keys and identities. The
1468 PFS.
1482 single ephemeral Diffie-Hellman exchange PFS is preserved.
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/
H A DTargetMachine.h152 PerFunctionMIParsingState &PFS, in parseMachineFunctionInfo() argument

12