1 //===- README_ALTIVEC.txt - Notes for improving Altivec code gen ----------===//
3 Implement PPCInstrInfo::isLoadFromStackSlot/isStoreToStackSlot for vector
4 registers, to generate better spill code.
6 //===----------------------------------------------------------------------===//
8 The first should be a single lvx from the constant pool, the second should be
12 int x[8] __attribute__((aligned(128))) = { 1, 1, 1, 17, 1, 1, 1, 1 };
18 int x[8] __attribute__((aligned(128)));
19 memset (x, 0, sizeof (x));
23 //===----------------------------------------------------------------------===//
25 Altivec: Codegen'ing MUL with vector FMADD should add -0.0, not 0.0:
26 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8763
28 When -ffast-math is on, we can use 0.0.
30 //===----------------------------------------------------------------------===//
34 v4f32 Vector2 = { Vector.X, Vector.X, Vector.X, Vector.X };
36 Since we know that "Vector" is 16-byte aligned and we know the element offset
37 of ".X", we should change the load into a lve*x instruction, instead of doing
38 a load/store/lve*x sequence.
40 //===----------------------------------------------------------------------===//
42 For functions that use altivec AND have calls, we are VRSAVE'ing all call
45 //===----------------------------------------------------------------------===//
47 Implement passing vectors by value into calls and receiving them as arguments.
49 //===----------------------------------------------------------------------===//
51 GCC apparently tries to codegen { C1, C2, Variable, C3 } as a constant pool load
52 of C1/C2/C3, then a load and vperm of Variable.
54 //===----------------------------------------------------------------------===//
56 We need a way to teach tblgen that some operands of an intrinsic are required to
57 be constants. The verifier should enforce this constraint.
59 //===----------------------------------------------------------------------===//
61 We currently codegen SCALAR_TO_VECTOR as a store of the scalar to a 16-byte
62 aligned stack slot, followed by a load/vperm. We should probably just store it
63 to a scalar stack slot, then use lvsl/vperm to load it. If the value is already
64 in memory this is a big win.
66 //===----------------------------------------------------------------------===//
68 extract_vector_elt of an arbitrary constant vector can be done with the
69 following instructions:
71 vTemp = vec_splat(v0,2); // 2 is the element the src is in.
72 vec_ste(&destloc,0,vTemp);
74 We can do an arbitrary non-constant value by using lvsr/perm/ste.
76 //===----------------------------------------------------------------------===//
78 If we want to tie instruction selection into the scheduler, we can do some
79 constant formation with different instructions. For example, we can generate
80 "vsplti -1" with "vcmpequw R,R" and 1,1,1,1 with "vsubcuw R,R", and 0,0,0,0 with
81 "vsplti 0" or "vxor", each of which use different execution units, thus could
84 This is probably only reasonable for a post-pass scheduler.
86 //===----------------------------------------------------------------------===//
90 void test(vector float *A, vector float *B) {
91 vector float C = (vector float)vec_cmpeq(*A, *B);
92 if (!vec_any_eq(*A, *B))
93 *B = (vector float){0,0,0,0};
97 we get the following basic block:
104 bne cr6, LBB1_2 ; cond_next
106 The vcmpeqfp/vcmpeqfp. instructions currently cannot be merged when the
107 vcmpeqfp. result is used by a branch. This can be improved.
109 //===----------------------------------------------------------------------===//
111 The code generated for this is truly aweful:
113 vector float test(float a, float b) {
114 return (vector float){ 0.0, a, 0.0, 0.0};
126 lis r3, ha16(LCPI1_0)
130 lfs f0, lo16(LCPI1_0)(r3)
140 //===----------------------------------------------------------------------===//
142 int foo(vector float *x, vector float *y) {
143 if (vec_all_eq(*x,*y)) return 3245;
147 A predicate compare being used in a select_cc should have the same peephole
148 applied to it as a predicate compare used by a br_cc. There should be no
161 rlwinm r3, r3, 25, 31, 31
163 bne cr0, LBB1_2 ; entry
171 //===----------------------------------------------------------------------===//
173 CodeGen/PowerPC/vec_constants.ll has an and operation that should be
174 codegen'd to andc. The issue is that the 'all ones' build vector is
175 SelectNodeTo'd a VSPLTISB instruction node before the and/xor is selected
176 which prevents the vnot pattern from matching.
179 //===----------------------------------------------------------------------===//
181 An alternative to the store/store/load approach for illegal insert element
184 1. store element to any ol' slot
186 3. lvsl 0; splat index; vcmpeq to generate a select mask
187 4. lvsl slot + x; vperm to rotate result into correct slot
188 5. vsel result together.
190 //===----------------------------------------------------------------------===//
192 Should codegen branches on vec_any/vec_all to avoid mfcr. Two examples:
195 int f(vector float a, vector float b)
198 if (vec_all_ge(a, b))
205 vector float f(vector float a, vector float b) {
206 if (vec_any_eq(a, b))