Name Date Size #Lines LOC

..--

AsmParser/H25-Apr-2025-1,4221,147

Disassembler/H25-Apr-2025-508402

MCTargetDesc/H25-Apr-2025-1,3681,027

TargetInfo/H25-Apr-2025-7142

CMakeLists.txtH A D25-Apr-20251.3 KiB4439

LLVMBuild.txtH A D25-Apr-20251 KiB3531

README.txtH A D25-Apr-20253.9 KiB160108

SystemZ.hH A D25-Apr-20258.1 KiB201131

SystemZ.tdH A D25-Apr-20252.9 KiB7959

SystemZAsmPrinter.cppH A D25-Apr-202523.6 KiB730589

SystemZAsmPrinter.hH A D25-Apr-20251.9 KiB5638

SystemZCallingConv.cppH A D25-Apr-2025710 219

SystemZCallingConv.hH A D25-Apr-20254.9 KiB13783

SystemZCallingConv.tdH A D25-Apr-20257 KiB158126

SystemZConstantPoolValue.cppH A D25-Apr-20251.8 KiB5237

SystemZConstantPoolValue.hH A D25-Apr-20251.8 KiB5832

SystemZElimCompare.cppH A D25-Apr-202526.2 KiB747534

SystemZFeatures.tdH A D25-Apr-202510.8 KiB319265

SystemZFrameLowering.cppH A D25-Apr-202525.3 KiB678492

SystemZFrameLowering.hH A D25-Apr-20252.8 KiB6645

SystemZHazardRecognizer.cppH A D25-Apr-202514.8 KiB464319

SystemZHazardRecognizer.hH A D25-Apr-20255.9 KiB16258

SystemZISelDAGToDAG.cppH A D25-Apr-202568.7 KiB1,9241,351

SystemZISelLowering.cppH A D25-Apr-2025307.4 KiB8,0356,040

SystemZISelLowering.hH A D25-Apr-202527.5 KiB704405

SystemZInstrBuilder.hH A D25-Apr-20251.7 KiB4626

SystemZInstrDFP.tdH A D25-Apr-20259.3 KiB247208

SystemZInstrFP.tdH A D25-Apr-202526.1 KiB600505

SystemZInstrFormats.tdH A D25-Apr-2025178.9 KiB5,1204,431

SystemZInstrHFP.tdH A D25-Apr-20259.5 KiB240197

SystemZInstrInfo.cppH A D25-Apr-202562.9 KiB1,8151,434

SystemZInstrInfo.hH A D25-Apr-202513.6 KiB342202

SystemZInstrInfo.tdH A D25-Apr-2025102.7 KiB2,3091,982

SystemZInstrSystem.tdH A D25-Apr-202517.2 KiB523404

SystemZInstrVector.tdH A D25-Apr-202582.4 KiB1,7471,531

SystemZLDCleanup.cppH A D25-Apr-20254.9 KiB14689

SystemZLongBranch.cppH A D25-Apr-202516 KiB472301

SystemZMCInstLower.cppH A D25-Apr-20253.2 KiB10378

SystemZMCInstLower.hH A D25-Apr-20251.3 KiB4424

SystemZMachineFunctionInfo.cppH A D25-Apr-2025508 173

SystemZMachineFunctionInfo.hH A D25-Apr-20253.8 KiB10157

SystemZMachineScheduler.cppH A D25-Apr-20258.8 KiB261163

SystemZMachineScheduler.hH A D25-Apr-20255.1 KiB15673

SystemZOperands.tdH A D25-Apr-202525 KiB667560

SystemZOperators.tdH A D25-Apr-202548.6 KiB922856

SystemZPatterns.tdH A D25-Apr-20258.5 KiB176158

SystemZPostRewrite.cppH A D25-Apr-202510.3 KiB273191

SystemZProcessors.tdH A D25-Apr-20251.8 KiB4132

SystemZRegisterInfo.cppH A D25-Apr-202516.5 KiB424331

SystemZRegisterInfo.hH A D25-Apr-20253.7 KiB10165

SystemZRegisterInfo.tdH A D25-Apr-202512 KiB325276

SystemZSchedule.tdH A D25-Apr-20252.1 KiB6755

SystemZScheduleZ13.tdH A D25-Apr-202572.4 KiB1,5601,266

SystemZScheduleZ14.tdH A D25-Apr-202578.1 KiB1,6501,351

SystemZScheduleZ15.tdH A D25-Apr-202580.7 KiB1,6961,392

SystemZScheduleZ196.tdH A D25-Apr-202555.7 KiB1,241999

SystemZScheduleZEC12.tdH A D25-Apr-202557.4 KiB1,2861,032

SystemZSelectionDAGInfo.cppH A D25-Apr-202512.9 KiB276191

SystemZSelectionDAGInfo.hH A D25-Apr-20253.1 KiB7447

SystemZShortenInst.cppH A D25-Apr-202510.7 KiB358261

SystemZSubtarget.cppH A D25-Apr-20253.4 KiB8556

SystemZSubtarget.hH A D25-Apr-20259 KiB251137

SystemZTDC.cppH A D25-Apr-202513.1 KiB383266

SystemZTargetMachine.cppH A D25-Apr-202510 KiB282156

SystemZTargetMachine.hH A D25-Apr-20251.9 KiB5832

SystemZTargetTransformInfo.cppH A D25-Apr-202542.1 KiB1,147812

SystemZTargetTransformInfo.hH A D25-Apr-20254.5 KiB11476

README.txt

1//===---------------------------------------------------------------------===//
2// Random notes about and ideas for the SystemZ backend.
3//===---------------------------------------------------------------------===//
4
5The initial backend is deliberately restricted to z10.  We should add support
6for later architectures at some point.
7
8--
9
10If an inline asm ties an i32 "r" result to an i64 input, the input
11will be treated as an i32, leaving the upper bits uninitialised.
12For example:
13
14define void @f4(i32 *%dst) {
15  %val = call i32 asm "blah $0", "=r,0" (i64 103)
16  store i32 %val, i32 *%dst
17  ret void
18}
19
20from CodeGen/SystemZ/asm-09.ll will use LHI rather than LGHI.
21to load 103.  This seems to be a general target-independent problem.
22
23--
24
25The tuning of the choice between LOAD ADDRESS (LA) and addition in
26SystemZISelDAGToDAG.cpp is suspect.  It should be tweaked based on
27performance measurements.
28
29--
30
31There is no scheduling support.
32
33--
34
35We don't use the BRANCH ON INDEX instructions.
36
37--
38
39We only use MVC, XC and CLC for constant-length block operations.
40We could extend them to variable-length operations too,
41using EXECUTE RELATIVE LONG.
42
43MVCIN, MVCLE and CLCLE may be worthwhile too.
44
45--
46
47We don't use CUSE or the TRANSLATE family of instructions for string
48operations.  The TRANSLATE ones are probably more difficult to exploit.
49
50--
51
52We don't take full advantage of builtins like fabsl because the calling
53conventions require f128s to be returned by invisible reference.
54
55--
56
57ADD LOGICAL WITH SIGNED IMMEDIATE could be useful when we need to
58produce a carry.  SUBTRACT LOGICAL IMMEDIATE could be useful when we
59need to produce a borrow.  (Note that there are no memory forms of
60ADD LOGICAL WITH CARRY and SUBTRACT LOGICAL WITH BORROW, so the high
61part of 128-bit memory operations would probably need to be done
62via a register.)
63
64--
65
66We don't use ICM, STCM, or CLM.
67
68--
69
70We don't use ADD (LOGICAL) HIGH, SUBTRACT (LOGICAL) HIGH,
71or COMPARE (LOGICAL) HIGH yet.
72
73--
74
75DAGCombiner doesn't yet fold truncations of extended loads.  Functions like:
76
77    unsigned long f (unsigned long x, unsigned short *y)
78    {
79      return (x << 32) | *y;
80    }
81
82therefore end up as:
83
84        sllg    %r2, %r2, 32
85        llgh    %r0, 0(%r3)
86        lr      %r2, %r0
87        br      %r14
88
89but truncating the load would give:
90
91        sllg    %r2, %r2, 32
92        lh      %r2, 0(%r3)
93        br      %r14
94
95--
96
97Functions like:
98
99define i64 @f1(i64 %a) {
100  %and = and i64 %a, 1
101  ret i64 %and
102}
103
104ought to be implemented as:
105
106        lhi     %r0, 1
107        ngr     %r2, %r0
108        br      %r14
109
110but two-address optimizations reverse the order of the AND and force:
111
112        lhi     %r0, 1
113        ngr     %r0, %r2
114        lgr     %r2, %r0
115        br      %r14
116
117CodeGen/SystemZ/and-04.ll has several examples of this.
118
119--
120
121Out-of-range displacements are usually handled by loading the full
122address into a register.  In many cases it would be better to create
123an anchor point instead.  E.g. for:
124
125define void @f4a(i128 *%aptr, i64 %base) {
126  %addr = add i64 %base, 524288
127  %bptr = inttoptr i64 %addr to i128 *
128  %a = load volatile i128 *%aptr
129  %b = load i128 *%bptr
130  %add = add i128 %a, %b
131  store i128 %add, i128 *%aptr
132  ret void
133}
134
135(from CodeGen/SystemZ/int-add-08.ll) we load %base+524288 and %base+524296
136into separate registers, rather than using %base+524288 as a base for both.
137
138--
139
140Dynamic stack allocations round the size to 8 bytes and then allocate
141that rounded amount.  It would be simpler to subtract the unrounded
142size from the copy of the stack pointer and then align the result.
143See CodeGen/SystemZ/alloca-01.ll for an example.
144
145--
146
147If needed, we can support 16-byte atomics using LPQ, STPQ and CSDG.
148
149--
150
151We might want to model all access registers and use them to spill
15232-bit values.
153
154--
155
156We might want to use the 'overflow' condition of eg. AR to support
157llvm.sadd.with.overflow.i32 and related instructions - the generated code
158for signed overflow check is currently quite bad.  This would improve
159the results of using -ftrapv.
160