2004-02-25 19:28:19 +00:00
|
|
|
|
2004-07-16 10:31:36 +00:00
|
|
|
To-do
|
|
|
|
-----
|
|
|
|
|
2004-12-13 20:13:10 +00:00
|
|
|
* Keep the address of the constant pool in a register instead of forming its
|
|
|
|
address all of the time.
|
|
|
|
* We can fold small constant offsets into the %hi/%lo references to constant
|
|
|
|
pool addresses as well.
|
First step towards V9 instructions in the V8 backend, two conditional move
patterns. This allows emission of this code:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
move %icc, %i0, %i2
or %g0, %i2, %i0
restore %g0, %g0, %g0
retl
nop
instead of this:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
be .LBBt1_2 !
nop
.LBBt1_1: !
or %g0, %i2, %i0
.LBBt1_2: !
restore %g0, %g0, %g0
retl
nop
for this:
int %t1(int %a, int %b, int %c) {
%tmp.2 = seteq int %a, %b
%tmp3 = select bool %tmp.2, int %a, int %c
ret int %tmp3
}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25809 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-30 05:35:57 +00:00
|
|
|
* When in V9 mode, register allocate %icc[0-3].
|
2006-01-31 07:37:20 +00:00
|
|
|
* Emit the 'Branch on Integer Register with Prediction' instructions. It's
|
|
|
|
not clear how to write a pattern for this though:
|
|
|
|
|
|
|
|
float %t1(int %a, int* %p) {
|
|
|
|
%C = seteq int %a, 0
|
|
|
|
br bool %C, label %T, label %F
|
|
|
|
T:
|
|
|
|
store int 123, int* %p
|
|
|
|
br label %F
|
|
|
|
F:
|
|
|
|
ret float undef
|
|
|
|
}
|
|
|
|
|
|
|
|
codegens to this:
|
|
|
|
|
|
|
|
t1:
|
|
|
|
save -96, %o6, %o6
|
|
|
|
1) subcc %i0, 0, %l0
|
|
|
|
1) bne .LBBt1_2 ! F
|
|
|
|
nop
|
|
|
|
.LBBt1_1: ! T
|
|
|
|
or %g0, 123, %l0
|
|
|
|
st %l0, [%i1]
|
|
|
|
.LBBt1_2: ! F
|
|
|
|
restore %g0, %g0, %g0
|
|
|
|
retl
|
|
|
|
nop
|
|
|
|
|
|
|
|
1) should be replaced with a brz in V9 mode.
|
2004-07-16 10:31:36 +00:00
|
|
|
|
2006-01-31 07:43:33 +00:00
|
|
|
* Same as above, but emit conditional move on register zero (p192) in V9
|
|
|
|
mode. Testcase:
|
|
|
|
|
|
|
|
int %t1(int %a, int %b) {
|
|
|
|
%C = seteq int %a, 0
|
|
|
|
%D = select bool %C, int %a, int %b
|
|
|
|
ret int %D
|
|
|
|
}
|
|
|
|
|
|
|
|
* Emit MULX/[SU]DIVX instructions in V9 mode instead of fiddling
|
|
|
|
with the Y register, if they are faster.
|
|
|
|
|
|
|
|
* Codegen bswap(load)/store(bswap) -> load/store ASI
|
|
|
|
|
2006-01-31 07:45:08 +00:00
|
|
|
* Implement frame pointer elimination, e.g. eliminate save/restore for
|
|
|
|
leaf fns.
|
2006-01-31 07:45:45 +00:00
|
|
|
* Fill delay slots
|
|
|
|
|