summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/TargetLowering.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-04-09 20:32:02 +0000
committerChad Rosier <mcrosier@apple.com>2012-04-09 20:32:02 +0000
commit7f354557089d93cc681c440f9e064c906e1fbd58 (patch)
tree2e210b2ea7b3828fefea848ead70dcd2736098c9 /lib/CodeGen/SelectionDAG/TargetLowering.cpp
parentf31ceaf8b7b1c5092fe35e20732711f5e1074118 (diff)
downloadllvm-7f354557089d93cc681c440f9e064c906e1fbd58.tar.gz
llvm-7f354557089d93cc681c440f9e064c906e1fbd58.tar.bz2
llvm-7f354557089d93cc681c440f9e064c906e1fbd58.tar.xz
When performing a truncating store, it's possible to rearrange the data
in-register, such that we can use a single vector store rather then a series of scalar stores. For func_4_8 the generated code vldr d16, LCPI0_0 vmov d17, r0, r1 vadd.i16 d16, d17, d16 vmov.u16 r0, d16[3] strb r0, [r2, #3] vmov.u16 r0, d16[2] strb r0, [r2, #2] vmov.u16 r0, d16[1] strb r0, [r2, #1] vmov.u16 r0, d16[0] strb r0, [r2] bx lr becomes vldr d16, LCPI0_0 vmov d17, r0, r1 vadd.i16 d16, d17, d16 vuzp.8 d16, d17 vst1.32 {d16[0]}, [r2, :32] bx lr I'm not fond of how this combine pessimizes 2012-03-13-DAGCombineBug.ll, but I couldn't think of a way to judiciously apply this combine. This ldrh r0, [r0, #4] strh r0, [r1] becomes vldr d16, [r0] vmov.u16 r0, d16[2] vmov.32 d16[0], r0 vuzp.16 d16, d17 vst1.32 {d16[0]}, [r1, :32] PR11158 rdar://10703339 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154340 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetLowering.cpp')
0 files changed, 0 insertions, 0 deletions