diff options
| author | Eric Christopher <echristo@apple.com> | 2010-08-23 23:14:31 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@apple.com> | 2010-08-23 23:14:31 +0000 |
| commit | 414501c511ccd0dd9bce4c94eedd5eb3efdbd142 (patch) | |
| tree | ff08791a6a30cffbb4b4d253b093362f01f58b51 | |
| parent | 64dfc9a3f9fb89968c3e1899322bfbc7f3141158 (diff) | |
| download | bcm5719-llvm-414501c511ccd0dd9bce4c94eedd5eb3efdbd142.tar.gz bcm5719-llvm-414501c511ccd0dd9bce4c94eedd5eb3efdbd142.zip | |
Add some more "get address into register" code and a more TODOs/FIXMEs.
llvm-svn: 111860
| -rw-r--r-- | llvm/lib/Target/ARM/ARMFastISel.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMFastISel.cpp b/llvm/lib/Target/ARM/ARMFastISel.cpp index 5884da39b4d..e08433925f3 100644 --- a/llvm/lib/Target/ARM/ARMFastISel.cpp +++ b/llvm/lib/Target/ARM/ARMFastISel.cpp @@ -361,10 +361,32 @@ bool ARMFastISel::ARMSelectLoad(const Instruction *I) { unsigned Reg; int Offset; + // TODO: Think about using loadRegFromStackSlot() here when we can. + // See if we can handle this as Reg + Offset if (!ARMComputeRegOffset(I, Reg, Offset)) return false; + // Since the offset may be too large for the load instruction + // get the reg+offset into a register. + // TODO: Optimize this somewhat. + // FIXME: There is more than one register class in the world... + unsigned ScratchReg + = FuncInfo.MF->getRegInfo().createVirtualRegister(ARM::GPRRegisterClass); + ARMCC::CondCodes Pred = ARMCC::AL; + unsigned PredReg = 0; + + if (!AFI->isThumbFunction()) + emitARMRegPlusImmediate(*FuncInfo.MBB, FuncInfo.InsertPt, DL, + ScratchReg, Reg, Offset, Pred, PredReg, + static_cast<const ARMBaseInstrInfo&>(TII)); + else { + assert(AFI->isThumb2Function()); + emitT2RegPlusImmediate(*FuncInfo.MBB, FuncInfo.InsertPt, DL, + ScratchReg, Reg, Offset, Pred, PredReg, + static_cast<const ARMBaseInstrInfo&>(TII)); + } + unsigned ResultReg = createResultReg(ARM::GPRRegisterClass); AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDR), ResultReg) |

