Home
last modified time | relevance | path

Searched refs:Proc (Results 1 – 25 of 62) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTX.td109 class Proc<string Name, list<SubtargetFeature> Features>
112 def : Proc<"sm_20", [SM20, PTX32]>;
113 def : Proc<"sm_21", [SM21, PTX32]>;
114 def : Proc<"sm_30", [SM30]>;
115 def : Proc<"sm_32", [SM32, PTX40]>;
116 def : Proc<"sm_35", [SM35, PTX32]>;
117 def : Proc<"sm_37", [SM37, PTX41]>;
118 def : Proc<"sm_50", [SM50, PTX40]>;
119 def : Proc<"sm_52", [SM52, PTX41]>;
120 def : Proc<"sm_53", [SM53, PTX42]>;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparc.td138 class Proc<string Name, list<SubtargetFeature> Features,
142 def : Proc<"generic", []>;
143 def : Proc<"v7", [FeatureSoftMulDiv, FeatureNoFSMULD]>;
144 def : Proc<"v8", []>;
145 def : Proc<"supersparc", []>;
146 def : Proc<"sparclite", []>;
147 def : Proc<"f934", []>;
148 def : Proc<"hypersparc", []>;
149 def : Proc<"sparclite86x", []>;
150 def : Proc<"sparclet", []>;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPF.td18 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/Target/M68k/
H A DM68k.td74 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/Mips/
H A DMips.td252 class Proc<string Name, list<SubtargetFeature> Features>
255 def : Proc<"generic", [FeatureMips32]>;
256 def : Proc<"mips1", [FeatureMips1]>;
257 def : Proc<"mips2", [FeatureMips2]>;
258 def : Proc<"mips32", [FeatureMips32]>;
259 def : Proc<"mips32r2", [FeatureMips32r2]>;
260 def : Proc<"mips32r3", [FeatureMips32r3]>;
261 def : Proc<"mips32r5", [FeatureMips32r5]>;
262 def : Proc<"mips32r6", [FeatureMips32r6]>;
264 def : Proc<"mips3", [FeatureMips3]>;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp80 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/llvm/lib/Target/MSP430/
H A DMSP430.td39 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 DSymbolRecordHelpers.cpp32 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 DSymbolDumper.cpp557 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.CodeOffset, &LinkageName); in visitKnownRecord()
[all …]
H A DSymbolRecordMapping.cpp409 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.Segment)); in visitKnownRecord()
[all …]
H A DTypeDumpVisitor.cpp311 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 DHexagon.td414 class Proc<string Name, SchedMachineModel Model,
418 def : Proc<"generic", HexagonModelV60,
423 def : Proc<"hexagonv5", HexagonModelV5,
428 def : Proc<"hexagonv55", HexagonModelV55,
433 def : Proc<"hexagonv60", HexagonModelV60,
438 def : Proc<"hexagonv62", HexagonModelV62,
443 def : Proc<"hexagonv65", HexagonModelV65,
448 def : Proc<"hexagonv66", HexagonModelV66,
453 def : Proc<"hexagonv67", HexagonModelV67,
458 def : Proc<"hexagonv68", HexagonModelV68,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCore.td33 class Proc<string Name, list<SubtargetFeature> Features>
36 def : Proc<"generic", []>;
37 def : Proc<"xs1b-generic", []>;
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetID.cpp21 llvm::StringRef Proc) { in getAllPossibleAMDGPUTargetIDFeatures() argument
24 auto ProcKind = T.isAMDGCN() ? llvm::AMDGPU::parseArchAMDGCN(Proc) in getAllPossibleAMDGPUTargetIDFeatures()
25 : llvm::AMDGPU::parseArchR600(Proc); in getAllPossibleAMDGPUTargetIDFeatures()
152 llvm::StringRef Proc = *parseTargetIDWithFormatCheckingOnly(ID, &Features); in getConflictTargetIDCombination() local
153 auto [Loc, Inserted] = FeatureMap.try_emplace(Proc, ID, Features); in getConflictTargetIDCombination()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARC.td29 class Proc<string Name, list<SubtargetFeature> Features>
32 def : Proc<"generic", []>;
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRV.td19 class Proc<string Name, list<SubtargetFeature> Features>
22 def : Proc<"generic", []>;
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.h27 codeview::TypeIndex TI, codeview::ProcedureRecord Proc);
58 codeview::ProcedureRecord Proc; member
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensa.td26 class Proc<string Name, list<SubtargetFeature> Features>
29 def : Proc<"generic", []>;
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVE.td46 class Proc<string Name, list<SubtargetFeature> Features>
49 def : Proc<"generic", [FeatureEnableVPU]>;
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp852 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 DMinimalTypeDumper.cpp408 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 DX86.td1617 class Proc<string Name, list<SubtargetFeature> Features,
1643 def : Proc<"i386", [FeatureX87],
1645 def : Proc<"i486", [FeatureX87],
1647 def : Proc<"i586", [FeatureX87, FeatureCX8],
1649 def : Proc<"pentium", [FeatureX87, FeatureCX8],
1652 def : Proc<P, [FeatureX87, FeatureCX8, FeatureMMX],
1655 def : Proc<"i686", [FeatureX87, FeatureCX8, FeatureCMOV],
1658 def : Proc<P, [FeatureX87, FeatureCX8, FeatureCMOV, FeatureNOPL],
1662 def : Proc<P, [FeatureX87, FeatureCX8, FeatureMMX, FeatureCMOV,
1667 def : Proc<P, [FeatureX87, FeatureCX8, FeatureMMX,
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAPacketizerEmitter.cpp110 for (const Record *Proc : ProcItinList) { in collectAllFuncUnits() local
111 std::vector<const Record *> FUs = Proc->getValueAsListOfDefs("FU"); in collectAllFuncUnits()
114 << " (" << FUs.size() << " FUs) " << Proc->getName()); in collectAllFuncUnits()
/freebsd/crypto/openssh/regress/unittests/sshkey/testdata/
H A Decdsa_1_pw2 Proc-Type: 4,ENCRYPTED
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp603 Error LVTypeVisitor::visitKnownRecord(CVType &Record, ProcedureRecord &Proc) { in visitKnownRecord() argument
606 printTypeIndex("ReturnType", Proc.getReturnType(), StreamTPI); in visitKnownRecord()
607 W.printNumber("NumParameters", Proc.getParameterCount()); in visitKnownRecord()
608 printTypeIndex("ArgListType", Proc.getArgumentList(), StreamTPI); in visitKnownRecord()
1470 Error LVSymbolVisitor::visitKnownRecord(CVSymbol &Record, ProcSym &Proc) { in visitKnownRecord() argument
1478 printTypeIndex("FunctionType", Proc.FunctionType); in visitKnownRecord()
1479 W.printHex("Segment", Proc.Segment); in visitKnownRecord()
1480 W.printFlags("Flags", static_cast<uint8_t>(Proc.Flags), in visitKnownRecord()
1482 W.printString("DisplayName", Proc.Name); in visitKnownRecord()
1523 ObjDelegate->getLinkageName(Proc.getRelocationOffset(), Proc.CodeOffset, in visitKnownRecord()
[all …]

123