summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff options
context:
space:
mode:
authorBill Schmidt <wschmidt@linux.vnet.ibm.com>2013-08-30 02:29:45 +0000
committerBill Schmidt <wschmidt@linux.vnet.ibm.com>2013-08-30 02:29:45 +0000
commitccecf261578d3b6076458a0e64dcf286b2f632ab (patch)
treee20a81b490bc4a2f063a8c33e1e66ee2ef4488df /llvm/lib/Target/PowerPC/PPCISelLowering.cpp
parentef80f50058235a3a51a76bef2c78052ebac7c3fa (diff)
downloadbcm5719-llvm-ccecf261578d3b6076458a0e64dcf286b2f632ab.tar.gz
bcm5719-llvm-ccecf261578d3b6076458a0e64dcf286b2f632ab.zip
[PowerPC] Add loads, stores, and related things to fast-isel.
This is the next big chunk of fast-isel code. The primary purpose is to implement selection of loads and stores, but there is a lot of drag-along to support this. The common code to analyze addresses for both loads and stores is substantial. It's also necessary to add the materialization code for global values. Related to load-store processing is the code to fold loads into integer extends, since otherwise we generate lots of redundant instructions. We also need to add some overrides to some FastEmit routines to ensure we don't assign GPR 0 to a virtual register when this would change the meaning of an instruction. I added handling selection of a few binary arithmetic instructions, to enable committing some test cases I wrote a while back. Finally, ap couple of miscellaneous changes: * I cleaned up some poor style from a previous patch in PPCISelLowering.cpp, pointed out by David Blaikie. * I enlarged the Addr.Offset field to avoid sign problems with 32-bit offsets. llvm-svn: 189636
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCISelLowering.cpp')
-rw-r--r--llvm/lib/Target/PowerPC/PPCISelLowering.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
index 28b9ba92844..29c2270d4ab 100644
--- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
@@ -1813,10 +1813,8 @@ SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
// Function whose sole purpose is to kill compiler warnings
// stemming from unused functions included from PPCGenCallingConv.inc.
CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
- if (Flag == 1)
- return RetCC_PPC64_ELF_FIS; /* CC_PPC64_ELF_FIS in future patch. */
- else
- return RetCC_PPC64_ELF_FIS;
+ /* One of these will be CC_PPC64_ELF_FIS in a future patch. */
+ return Flag ? RetCC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS;
}
bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
OpenPOWER on IntegriCloud