diff options
author | Hal Finkel <hfinkel@anl.gov> | 2014-08-13 01:15:40 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2014-08-13 01:15:40 +0000 |
commit | 46ef7ce2833f2efffc009d3a657c2c4f8f3569ea (patch) | |
tree | b8636a7c94e072b0697e7b186fda1aed0127df28 /llvm/lib/Target/PowerPC/PPCISelLowering.h | |
parent | 415e344f29a5800995dbbcb98c7f4bb4d707bd9d (diff) | |
download | bcm5719-llvm-46ef7ce2833f2efffc009d3a657c2c4f8f3569ea.tar.gz bcm5719-llvm-46ef7ce2833f2efffc009d3a657c2c4f8f3569ea.zip |
[PowerPC] Implement PPCTargetLowering::getTgtMemIntrinsic
This implements PPCTargetLowering::getTgtMemIntrinsic for Altivec load/store
intrinsics. As with the construction of the MachineMemOperands for the
intrinsic calls used for unaligned load/store lowering, the only slight
complication is that we need to represent a larger memory range than the
loaded/stored value-type size (because the address is rounded down to an
aligned address, and we need to conservatively represent the entire possible
range of the actual access). This required adding an extra size field to
TargetLowering::IntrinsicInfo, and this was done in a way that required no
modifications to other targets (the size defaults to the store size of the
provided memory data type).
This fixes test/CodeGen/PowerPC/unal-altivec-wint.ll (so it can be un-XFAILed).
llvm-svn: 215512
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCISelLowering.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.h b/llvm/lib/Target/PowerPC/PPCISelLowering.h index 373ff2c7f16..9deecd001de 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.h +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.h @@ -477,6 +477,10 @@ namespace llvm { bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override; + bool getTgtMemIntrinsic(IntrinsicInfo &Info, + const CallInst &I, + unsigned Intrinsic) const override; + /// getOptimalMemOpType - Returns the target specific optimal type for load /// and store operations as a result of memset, memcpy, and memmove /// lowering. If DstAlign is zero that means it's safe to destination |