/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTX.td | 52 class Proc<string Name, list<SubtargetFeature> Features> 55 def : Proc<"sm_20", [SM20, PTX32]>; 56 def : Proc<"sm_21", [SM21, PTX32]>; 57 def : Proc<"sm_30", [SM30]>; 58 def : Proc<"sm_32", [SM32, PTX40]>; 59 def : Proc<"sm_35", [SM35, PTX32]>; 60 def : Proc<"sm_37", [SM37, PTX41]>; 61 def : Proc<"sm_50", [SM50, PTX40]>; 62 def : Proc<"sm_52", [SM52, PTX41]>; 63 def : Proc<"sm_53", [SM53, PTX42]>; [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | Sparc.td | 116 class Proc<string Name, list<SubtargetFeature> Features, 120 def : Proc<"generic", []>; 121 def : Proc<"v7", [FeatureSoftMulDiv, FeatureNoFSMULD]>; 122 def : Proc<"v8", []>; 123 def : Proc<"supersparc", []>; 124 def : Proc<"sparclite", []>; 125 def : Proc<"f934", []>; 126 def : Proc<"hypersparc", []>; 127 def : Proc<"sparclite86x", []>; 128 def : Proc<"sparclet", []>; [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | Mips.td | 241 class Proc<string Name, list<SubtargetFeature> Features> 244 def : Proc<"generic", [FeatureMips32]>; 245 def : Proc<"mips1", [FeatureMips1]>; 246 def : Proc<"mips2", [FeatureMips2]>; 247 def : Proc<"mips32", [FeatureMips32]>; 248 def : Proc<"mips32r2", [FeatureMips32r2]>; 249 def : Proc<"mips32r3", [FeatureMips32r3]>; 250 def : Proc<"mips32r5", [FeatureMips32r5]>; 251 def : Proc<"mips32r6", [FeatureMips32r6]>; 253 def : Proc<"mips3", [FeatureMips3]>; [all …]
|
/freebsd/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/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/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/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/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/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 | SymbolRecordMapping.cpp | 409 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, ProcSym &Proc) { in visitKnownRecord() argument 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 in visitKnownRecord() [all...] |
H A D | SymbolDumper.cpp | 557 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, ProcSym &Proc) { in visitKnownRecord() argument 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() 573 ObjDelegate->printRelocatedField("CodeOffset", Proc.getRelocationOffset(), in visitKnownRecord() 574 Proc in visitKnownRecord() [all...] |
H A D | TypeDumpVisitor.cpp | 311 Error TypeDumpVisitor::visitKnownRecord(CVType &CVR, ProcedureRecord &Proc) { in visitKnownRecord() argument 312 printTypeIndex("ReturnType", Proc.getReturnType()); in visitKnownRecord() 313 W->printEnum("CallingConvention", uint8_t(Proc.getCallConv()), in visitKnownRecord() 315 W->printFlags("FunctionOptions", uint8_t(Proc.getOptions()), in visitKnownRecord() 317 W->printNumber("NumParameters", Proc.getParameterCount()); in visitKnownRecord() 318 printTypeIndex("ArgListType", Proc.getArgumentList()); in visitKnownRecord()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | Hexagon.td | 398 class Proc<string Name, SchedMachineModel Model, 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, [all …]
|
/freebsd/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/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/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/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/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/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/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | MinimalSymbolDumper.cpp | 852 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, ProcSym &Proc) { in visitKnownRecord() argument 853 P.format(" `{0}`", Proc.Name); in visitKnownRecord() 856 Proc.Parent, Proc.End, in visitKnownRecord() 857 formatSegmentOffset(Proc.Segment, Proc.CodeOffset), in visitKnownRecord() 858 Proc.CodeSize); in visitKnownRecord() 860 switch (Proc.getKind()) { in visitKnownRecord() 870 typeOrIdIndex(Proc.FunctionType, IsType), Proc.DbgStart, in visitKnownRecord() 871 Proc.DbgEnd, in visitKnownRecord() 872 formatProcSymFlags(P.getIndentLevel() + 9, Proc.Flags)); in visitKnownRecord()
|
H A D | MinimalTypeDumper.cpp | 408 ProcedureRecord &Proc) { in visitKnownRecord() argument 410 Proc.ReturnType, Proc.ParameterCount, Proc.ArgumentList); in visitKnownRecord() 412 formatCallingConvention(Proc.CallConv), in visitKnownRecord() 413 formatFunctionOptions(Proc.Options)); in visitKnownRecord()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86.td | 1565 class Proc<string Name, list<SubtargetFeature> Features, 1591 def : Proc<"i386", [FeatureX87], 1593 def : Proc<"i486", [FeatureX87], 1595 def : Proc<"i586", [FeatureX87, FeatureCX8], 1597 def : Proc<"pentium", [FeatureX87, FeatureCX8], 1600 def : Proc<P, [FeatureX87, FeatureCX8, FeatureMMX], 1603 def : Proc<"i686", [FeatureX87, FeatureCX8, FeatureCMOV], 1606 def : Proc<P, [FeatureX87, FeatureCX8, FeatureCMOV, FeatureNOPL], 1610 def : Proc<P, [FeatureX87, FeatureCX8, FeatureMMX, FeatureCMOV, 1615 def : Proc<P, [FeatureX87, FeatureCX8, FeatureMMX, [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DFAPacketizerEmitter.cpp | 109 for (Record *Proc : ProcItinList) { in collectAllFuncUnits() 110 std::vector<Record *> FUs = Proc->getValueAsListOfDefs("FU"); in collectAllFuncUnits() 113 << " (" << FUs.size() << " FUs) " << Proc->getName()); in collectAllFuncUnits()
|
/freebsd/crypto/openssh/regress/unittests/sshkey/testdata/ |
H A D | ecdsa_1_pw | 2 Proc-Type: 4,ENCRYPTED
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
H A D | LVCodeViewVisitor.cpp | 616 Error LVTypeVisitor::visitKnownRecord(CVType &Record, ProcedureRecord &Proc) { in visitKnownRecord() argument 619 printTypeIndex("ReturnType", Proc.getReturnType(), StreamTPI); in visitKnownRecord() 620 W.printNumber("NumParameters", Proc.getParameterCount()); in visitKnownRecord() 621 printTypeIndex("ArgListType", Proc.getArgumentList(), StreamTPI); in visitKnownRecord() 1477 Error LVSymbolVisitor::visitKnownRecord(CVSymbol &Record, ProcSym &Proc) { in visitKnownRecord() argument 1485 printTypeIndex("FunctionType", Proc.FunctionType); in visitKnownRecord() 1486 W.printHex("Segment", Proc.Segment); in visitKnownRecord() 1487 W.printFlags("Flags", static_cast<uint8_t>(Proc.Flags), in visitKnownRecord() 1489 W.printString("DisplayName", Proc.Name); in visitKnownRecord() 1530 ObjDelegate->getLinkageName(Proc.getRelocationOffset(), Proc.CodeOffset, in visitKnownRecord() [all …]
|