Add a target lowering hook to control whether it's worthwhile to compress fp constant.
authorEvan Cheng <evan.cheng@apple.com>
Wed, 5 Mar 2008 01:30:59 +0000 (01:30 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 5 Mar 2008 01:30:59 +0000 (01:30 +0000)
commit6fd599fa6916bd9438dbea7994cf2437bdf4ab8c
tree3c6d40842c57c1ed5309750a1c82a8dd107f107f
parentd19189e9905e14a4001a8ca6fc4effb6a3f88e45
Add a target lowering hook to control whether it's worthwhile to compress fp constant.
For x86, if sse2 is available, it's not a good idea since cvtss2sd is slower than a movsd load and it prevents load folding. On x87, it's important to shrink fp constant since fldt is very expensive.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47931 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Target/TargetLowering.h
lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
lib/Target/X86/X86ISelLowering.h
test/CodeGen/X86/shrink-fp-const1.ll [new file with mode: 0644]