Added llvmgcc version to allow tests to be xfailed by frontend version.
[llvm-complete.git] / lib / Target / PowerPC / README_ALTIVEC.txt
blob7e92f0b78886a58eaa390a257d6ba5b1bff55dea
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 Altivec support.  The first should be a single lvx from the constant pool, the
9 second should be a xor/stvx:
11 void foo(void) {
12   int x[8] __attribute__((aligned(128))) = { 1, 1, 1, 17, 1, 1, 1, 1 };
13   bar (x);
16 #include <string.h>
17 void foo(void) {
18   int x[8] __attribute__((aligned(128)));
19   memset (x, 0, sizeof (x));
20   bar (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 //===----------------------------------------------------------------------===//
32   Consider this:
33   v4f32 Vector;
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 There are a wide range of vector constants we can generate with combinations of
43 altivec instructions.  Examples
44  GCC does: "t=vsplti*, r = t+t"  for constants it can't generate with one vsplti
46  -0.0 (sign bit):  vspltisw v0,-1 / vslw v0,v0,v0
48 //===----------------------------------------------------------------------===//
50 FABS/FNEG can be codegen'd with the appropriate and/xor of -0.0.
52 //===----------------------------------------------------------------------===//
54 Codegen the constant here with something better than a constant pool load.
56 void %test_f(<4 x float>* %P, <4 x float>* %Q, float %X) {
57         %tmp = load <4 x float>* %Q
58         %tmp = cast <4 x float> %tmp to <4 x int>
59         %tmp1 = and <4 x int> %tmp, < int 2147483647, int 2147483647, int 2147483647, int 2147483647 > 
60         %tmp2 = cast <4 x int> %tmp1 to <4 x float>
61         store <4 x float> %tmp2, <4 x float>* %P
62         ret void
65 //===----------------------------------------------------------------------===//
67 For functions that use altivec AND have calls, we are VRSAVE'ing all call
68 clobbered regs.
70 //===----------------------------------------------------------------------===//
72 Implement passing/returning vectors by value.
74 //===----------------------------------------------------------------------===//
76 GCC apparently tries to codegen { C1, C2, Variable, C3 } as a constant pool load
77 of C1/C2/C3, then a load and vperm of Variable.
79 //===----------------------------------------------------------------------===//
81 We currently codegen SCALAR_TO_VECTOR as a store of the scalar to a 16-byte
82 aligned stack slot, followed by a lve*x/vperm.  We should probably just store it
83 to a scalar stack slot, then use lvsl/vperm to load it.  If the value is already
84 in memory, this is a huge win.
86 //===----------------------------------------------------------------------===//
88 Do not generate the MFCR/RLWINM sequence for predicate compares when the
89 predicate compare is used immediately by a branch.  Just branch on the right
90 cond code on CR6.
92 //===----------------------------------------------------------------------===//
94 SROA should turn "vector unions" into the appropriate insert/extract element
95 instructions.
97 //===----------------------------------------------------------------------===//
99 We need a way to teach tblgen that some operands of an intrinsic are required to
100 be constants.  The verifier should enforce this constraint.
102 //===----------------------------------------------------------------------===//
104 Instead of writting a pattern for type-agnostic operations (e.g. gen-zero, load,
105 store, and, ...) in every supported type, make legalize do the work.  We should
106 have a canonical type that we want operations changed to (e.g. v4i32 for
107 build_vector) and legalize should change non-identical types to thse.  This is
108 similar to what it does for operations that are only supported in some types,
109 e.g. x86 cmov (not supported on bytes).
111 This would fix two problems:
112 1. Writing patterns multiple times.
113 2. Identical operations in different types are not getting CSE'd (e.g. 
114    { 0U, 0U, 0U, 0U } and {0.0, 0.0, 0.0, 0.0}.
116 //===----------------------------------------------------------------------===//
118 Implement multiply for vector integer types, to avoid the horrible scalarized
119 code produced by legalize.
121 void test(vector int *X, vector int *Y) {
122   *X = *X * *Y;
125 //===----------------------------------------------------------------------===//
127 There are a wide variety of vector_shuffle operations that we can do with a pair
128 of instructions (e.g. a vsldoi + vpkuhum).  We should pattern match these, but
129 there are a huge number of these.
131 Specific examples:
133 C = vector_shuffle A, B, <0, 1, 2, 4>
134 ->  t = vsldoi A, A, 12
135 ->  C = vsldoi A, B, 4
137 //===----------------------------------------------------------------------===//