| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTX.td | 54 def : Proc<"sm_20", [SM20, PTX32]>; 55 def : Proc<"sm_21", [SM21, PTX32]>; 56 def : Proc<"sm_30", [SM30]>; 57 def : Proc<"sm_32", [SM32, PTX40]>; 58 def : Proc<"sm_35", [SM35, PTX32]>; 59 def : Proc<"sm_37", [SM37, PTX41]>; 60 def : Proc<"sm_50", [SM50, PTX40]>; 61 def : Proc<"sm_52", [SM52, PTX41]>; 62 def : Proc<"sm_53", [SM53, PTX42]>; 63 def : Proc<"sm_60", [SM60, PTX50]>; [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| H A D | Sparc.td | 117 def : Proc<"generic", []>; 119 def : Proc<"v8", []>; 120 def : Proc<"supersparc", []>; 121 def : Proc<"sparclite", []>; 122 def : Proc<"f934", []>; 123 def : Proc<"hypersparc", []>; 124 def : Proc<"sparclite86x", []>; 125 def : Proc<"sparclet", []>; 126 def : Proc<"tsc701", []>; 127 def : Proc<"myriad2", [FeatureLeon, LeonCASA]>; [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPF.td | 18 class Proc<string Name, list<SubtargetFeature> Features> 30 def : Proc<"generic", []>; 31 def : Proc<"v1", []>; 32 def : Proc<"v2", []>; 33 def : Proc<"v3", [ALU32]>; 34 def : Proc<"v4", [ALU32]>; 35 def : Proc<"probe", []>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | Mips.td | 240 def : Proc<"generic", [FeatureMips32]>; 241 def : Proc<"mips1", [FeatureMips1]>; 242 def : Proc<"mips2", [FeatureMips2]>; 243 def : Proc<"mips32", [FeatureMips32]>; 244 def : Proc<"mips32r2", [FeatureMips32r2]>; 245 def : Proc<"mips32r3", [FeatureMips32r3]>; 246 def : Proc<"mips32r5", [FeatureMips32r5]>; 249 def : Proc<"mips3", [FeatureMips3]>; 250 def : Proc<"mips4", [FeatureMips4]>; 251 def : Proc<"mips5", [FeatureMips5]>; [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68k.td | 74 class Proc<string Name, list<SubtargetFeature> Features> 77 def : Proc<"generic", [ FeatureISA00 ]>; 78 def : Proc<"M68000", [ FeatureISA00 ]>; 79 def : Proc<"M68010", [ FeatureISA10 ]>; 80 def : Proc<"M68020", [ FeatureISA20 ]>; 81 def : Proc<"M68030", [ FeatureISA30 ]>; 82 def : Proc<"M68040", [ FeatureISA40 ]>; 83 def : Proc<"M68060", [ FeatureISA60 ]>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeFunctionSig.cpp | 80 codeview::ProcedureRecord Proc) in NativeTypeFunctionSig() argument 82 Proc(std::move(Proc)), Index(Index), IsMemberFunction(false) {} in NativeTypeFunctionSig() 96 initializeArgList(Proc.ArgumentList); in initialize() 153 return IsMemberFunction ? MemberFunc.CallConv : Proc.CallConv; in getCallingConvention() 158 : Proc.getParameterCount(); in getCount() 163 IsMemberFunction ? MemberFunc.getReturnType() : Proc.getReturnType(); in getTypeId() 194 IsMemberFunction ? MemberFunc.getOptions() : Proc.getOptions(); in isCxxReturnUdt()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | SymbolRecordHelpers.cpp | 32 ProcSym Proc = createRecord<ProcSym>(Sym); in getScopeEndOffset() local 33 return Proc.End; in getScopeEndOffset() 63 ProcSym Proc = createRecord<ProcSym>(Sym); in getScopeParentOffset() local 64 return Proc.Parent; in getScopeParentOffset()
|
| H A D | SymbolDumper.cpp | 565 W.printHex("PtrParent", Proc.Parent); in visitKnownRecord() 566 W.printHex("PtrEnd", Proc.End); in visitKnownRecord() 567 W.printHex("PtrNext", Proc.Next); in visitKnownRecord() 568 W.printHex("CodeSize", Proc.CodeSize); in visitKnownRecord() 569 W.printHex("DbgStart", Proc.DbgStart); in visitKnownRecord() 570 W.printHex("DbgEnd", Proc.DbgEnd); in visitKnownRecord() 571 printTypeIndex("FunctionType", Proc.FunctionType); in visitKnownRecord() 574 Proc.CodeOffset, &LinkageName); in visitKnownRecord() 576 W.printHex("Segment", Proc.Segment); in visitKnownRecord() 577 W.printFlags("Flags", static_cast<uint8_t>(Proc.Flags), in visitKnownRecord() [all …]
|
| H A D | SymbolRecordMapping.cpp | 410 error(IO.mapInteger(Proc.Parent)); in visitKnownRecord() 411 error(IO.mapInteger(Proc.End)); in visitKnownRecord() 412 error(IO.mapInteger(Proc.Next)); in visitKnownRecord() 413 error(IO.mapInteger(Proc.CodeSize)); in visitKnownRecord() 414 error(IO.mapInteger(Proc.DbgStart)); in visitKnownRecord() 415 error(IO.mapInteger(Proc.DbgEnd)); in visitKnownRecord() 416 error(IO.mapInteger(Proc.FunctionType)); in visitKnownRecord() 417 error(IO.mapInteger(Proc.CodeOffset)); in visitKnownRecord() 418 error(IO.mapInteger(Proc.Segment)); in visitKnownRecord() 419 error(IO.mapEnum(Proc.Flags)); in visitKnownRecord() [all …]
|
| H A D | TypeDumpVisitor.cpp | 310 Error TypeDumpVisitor::visitKnownRecord(CVType &CVR, ProcedureRecord &Proc) { in visitKnownRecord() argument 311 printTypeIndex("ReturnType", Proc.getReturnType()); in visitKnownRecord() 312 W->printEnum("CallingConvention", uint8_t(Proc.getCallConv()), in visitKnownRecord() 314 W->printFlags("FunctionOptions", uint8_t(Proc.getOptions()), in visitKnownRecord() 316 W->printNumber("NumParameters", Proc.getParameterCount()); in visitKnownRecord() 317 printTypeIndex("ArgListType", Proc.getArgumentList()); in visitKnownRecord()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | MSP430.td | 39 class Proc<string Name, list<SubtargetFeature> Features> 42 def : Proc<"generic", []>; 43 def : Proc<"msp430", []>; 44 def : Proc<"msp430x", [FeatureX]>;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/ |
| H A D | TargetID.cpp | 21 llvm::StringRef Proc) { in getAllPossibleAMDGPUTargetIDFeatures() argument 24 auto ProcKind = T.isAMDGCN() ? llvm::AMDGPU::parseArchAMDGCN(Proc) in getAllPossibleAMDGPUTargetIDFeatures() 25 : llvm::AMDGPU::parseArchR600(Proc); in getAllPossibleAMDGPUTargetIDFeatures() 153 llvm::StringRef Proc = *parseTargetIDWithFormatCheckingOnly(ID, &Features); in getConflictTargetIDCombination() local 154 auto Loc = FeatureMap.find(Proc); in getConflictTargetIDCombination() 156 FeatureMap[Proc] = Info{ID, Features}; in getConflictTargetIDCombination()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCore.td | 33 class Proc<string Name, list<SubtargetFeature> Features> 36 def : Proc<"generic", []>; 37 def : Proc<"xs1b-generic", []>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | Hexagon.td | 402 def : Proc<"generic", HexagonModelV60, 407 def : Proc<"hexagonv5", HexagonModelV5, 412 def : Proc<"hexagonv55", HexagonModelV55, 417 def : Proc<"hexagonv60", HexagonModelV60, 422 def : Proc<"hexagonv62", HexagonModelV62, 427 def : Proc<"hexagonv65", HexagonModelV65, 432 def : Proc<"hexagonv66", HexagonModelV66, 437 def : Proc<"hexagonv67", HexagonModelV67, 442 def : Proc<"hexagonv68", HexagonModelV68, 448 def : Proc<"hexagonv69", HexagonModelV69, [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARC.td | 29 class Proc<string Name, list<SubtargetFeature> Features> 32 def : Proc<"generic", []>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | NativeTypeFunctionSig.h | 27 codeview::TypeIndex TI, codeview::ProcedureRecord Proc); 58 codeview::ProcedureRecord Proc; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Xtensa/ |
| H A D | Xtensa.td | 27 class Proc<string Name, list<SubtargetFeature> Features> 30 def : Proc<"generic", []>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRV.td | 18 class Proc<string Name, list<SubtargetFeature> Features> 21 def : Proc<"generic", []>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VE.td | 46 class Proc<string Name, list<SubtargetFeature> Features> 49 def : Proc<"generic", [FeatureEnableVPU]>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalSymbolDumper.cpp | 848 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, ProcSym &Proc) { in visitKnownRecord() argument 849 P.format(" `{0}`", Proc.Name); in visitKnownRecord() 852 Proc.Parent, Proc.End, in visitKnownRecord() 853 formatSegmentOffset(Proc.Segment, Proc.CodeOffset), in visitKnownRecord() 854 Proc.CodeSize); in visitKnownRecord() 856 switch (Proc.getKind()) { in visitKnownRecord() 866 typeOrIdIndex(Proc.FunctionType, IsType), Proc.DbgStart, in visitKnownRecord() 867 Proc.DbgEnd, in visitKnownRecord() 868 formatProcSymFlags(P.getIndentLevel() + 9, Proc.Flags)); in visitKnownRecord()
|
| H A D | MinimalTypeDumper.cpp | 407 ProcedureRecord &Proc) { in visitKnownRecord() argument 409 Proc.ReturnType, Proc.ParameterCount, Proc.ArgumentList); in visitKnownRecord() 411 formatCallingConvention(Proc.CallConv), in visitKnownRecord() 412 formatFunctionOptions(Proc.Options)); in visitKnownRecord()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86.td | 1563 def : Proc<"i386", [FeatureX87], 1565 def : Proc<"i486", [FeatureX87], 1567 def : Proc<"i586", [FeatureX87, FeatureCX8], 1572 def : Proc<P, [FeatureX87, FeatureCX8, FeatureMMX], 1587 def : Proc<P, [FeatureX87, FeatureCX8, FeatureMMX, 1617 def : Proc<"lakemont", [FeatureCX8], 1827 def : Proc<P, [FeatureX87, FeatureCX8, FeatureCMOV, 1848 def : Proc<P, ProcessorFeatures.BarcelonaFeatures, 1853 def : Proc<"btver1", ProcessorFeatures.BtVer1Features, 1866 def : Proc<"bdver3", ProcessorFeatures.BdVer3Features, [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DFAPacketizerEmitter.cpp | 110 for (Record *Proc : ProcItinList) { in collectAllFuncUnits() 111 std::vector<Record *> FUs = Proc->getValueAsListOfDefs("FU"); in collectAllFuncUnits() 114 << " (" << FUs.size() << " FUs) " << Proc->getName()); in collectAllFuncUnits()
|
| /freebsd-14.2/crypto/openssh/regress/unittests/sshkey/testdata/ |
| H A D | ecdsa_1_pw | 2 Proc-Type: 4,ENCRYPTED
|
| H A D | dsa_1_pw | 2 Proc-Type: 4,ENCRYPTED
|