aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/APFloat.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-10-13 02:50:24 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-10-13 02:50:24 +0000
commit7f56625447b94178118f2fec732b10f9e4aa7fbf (patch)
treebcfcbc0dbea4929e9225144bf8c3913daecfa120 /lib/Support/APFloat.cpp
parent106e8020bd1e36cffb749aa8358018b48839e336 (diff)
Local spiller optimization:
Turn this: movswl %ax, %eax movl %eax, -36(%ebp) xorl %edi, -36(%ebp) into movswl %ax, %eax xorl %edi, %eax movl %eax, -36(%ebp) by unfolding the load / store xorl into an xorl and a store when we know the value in the spill slot is available in a register. This doesn't change the number of instructions but reduce the number of times memory is accessed. Also unfold some load folding instructions and reuse the value when similar situation presents itself. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42947 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/APFloat.cpp')
0 files changed, 0 insertions, 0 deletions