Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 1 | //===-- ARMFastISel.cpp - ARM FastISel implementation ---------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the ARM-specific support for the FastISel class. Some |
| 11 | // of the target-specific code is generated by tablegen in the file |
| 12 | // ARMGenFastISel.inc, which is #included here. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #include "ARM.h" |
Eli Friedman | c573e2c | 2011-04-29 22:48:03 +0000 | [diff] [blame] | 17 | #include "ARMAddressingModes.h" |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 18 | #include "ARMBaseInstrInfo.h" |
Eric Christopher | d10cd7b | 2010-09-10 23:18:12 +0000 | [diff] [blame] | 19 | #include "ARMCallingConv.h" |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 20 | #include "ARMRegisterInfo.h" |
| 21 | #include "ARMTargetMachine.h" |
| 22 | #include "ARMSubtarget.h" |
Eric Christopher | c9932f6 | 2010-10-01 23:24:42 +0000 | [diff] [blame] | 23 | #include "ARMConstantPoolValue.h" |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 24 | #include "llvm/CallingConv.h" |
| 25 | #include "llvm/DerivedTypes.h" |
| 26 | #include "llvm/GlobalVariable.h" |
| 27 | #include "llvm/Instructions.h" |
| 28 | #include "llvm/IntrinsicInst.h" |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 29 | #include "llvm/Module.h" |
Jay Foad | 562b84b | 2011-04-11 09:35:34 +0000 | [diff] [blame] | 30 | #include "llvm/Operator.h" |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/Analysis.h" |
| 32 | #include "llvm/CodeGen/FastISel.h" |
| 33 | #include "llvm/CodeGen/FunctionLoweringInfo.h" |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 35 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/MachineConstantPool.h" |
| 37 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Eric Christopher | d56d61a | 2010-10-17 01:51:42 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/MachineMemOperand.h" |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 39 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Eric Christopher | d56d61a | 2010-10-17 01:51:42 +0000 | [diff] [blame] | 40 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 41 | #include "llvm/Support/CallSite.h" |
Eric Christopher | 038fea5 | 2010-08-17 00:46:57 +0000 | [diff] [blame] | 42 | #include "llvm/Support/CommandLine.h" |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 43 | #include "llvm/Support/ErrorHandling.h" |
| 44 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 45 | #include "llvm/Target/TargetData.h" |
| 46 | #include "llvm/Target/TargetInstrInfo.h" |
| 47 | #include "llvm/Target/TargetLowering.h" |
| 48 | #include "llvm/Target/TargetMachine.h" |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 49 | #include "llvm/Target/TargetOptions.h" |
| 50 | using namespace llvm; |
| 51 | |
Eric Christopher | 038fea5 | 2010-08-17 00:46:57 +0000 | [diff] [blame] | 52 | static cl::opt<bool> |
Eric Christopher | 6e5367d | 2010-10-18 22:53:53 +0000 | [diff] [blame] | 53 | DisableARMFastISel("disable-arm-fast-isel", |
| 54 | cl::desc("Turn off experimental ARM fast-isel support"), |
Eric Christopher | feadddd | 2010-10-11 20:05:22 +0000 | [diff] [blame] | 55 | cl::init(false), cl::Hidden); |
Eric Christopher | 038fea5 | 2010-08-17 00:46:57 +0000 | [diff] [blame] | 56 | |
Eric Christopher | 836c624 | 2010-12-15 23:47:29 +0000 | [diff] [blame] | 57 | extern cl::opt<bool> EnableARMLongCalls; |
| 58 | |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 59 | namespace { |
Eric Christopher | 827656d | 2010-11-20 22:38:27 +0000 | [diff] [blame] | 60 | |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 61 | // All possible address modes, plus some. |
| 62 | typedef struct Address { |
| 63 | enum { |
| 64 | RegBase, |
| 65 | FrameIndexBase |
| 66 | } BaseType; |
Eric Christopher | 827656d | 2010-11-20 22:38:27 +0000 | [diff] [blame] | 67 | |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 68 | union { |
| 69 | unsigned Reg; |
| 70 | int FI; |
| 71 | } Base; |
Eric Christopher | 827656d | 2010-11-20 22:38:27 +0000 | [diff] [blame] | 72 | |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 73 | int Offset; |
Eric Christopher | 827656d | 2010-11-20 22:38:27 +0000 | [diff] [blame] | 74 | |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 75 | // Innocuous defaults for our address. |
| 76 | Address() |
Jim Grosbach | 0c72076 | 2011-05-16 22:24:07 +0000 | [diff] [blame] | 77 | : BaseType(RegBase), Offset(0) { |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 78 | Base.Reg = 0; |
| 79 | } |
| 80 | } Address; |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 81 | |
| 82 | class ARMFastISel : public FastISel { |
| 83 | |
| 84 | /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can |
| 85 | /// make the right decision when generating code for different targets. |
| 86 | const ARMSubtarget *Subtarget; |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 87 | const TargetMachine &TM; |
| 88 | const TargetInstrInfo &TII; |
| 89 | const TargetLowering &TLI; |
Eric Christopher | c9932f6 | 2010-10-01 23:24:42 +0000 | [diff] [blame] | 90 | ARMFunctionInfo *AFI; |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 91 | |
Eric Christopher | 8cf6c60 | 2010-09-29 22:24:45 +0000 | [diff] [blame] | 92 | // Convenience variables to avoid some queries. |
Eric Christopher | eaa204b | 2010-09-02 01:39:14 +0000 | [diff] [blame] | 93 | bool isThumb; |
Eric Christopher | 8cf6c60 | 2010-09-29 22:24:45 +0000 | [diff] [blame] | 94 | LLVMContext *Context; |
Eric Christopher | eaa204b | 2010-09-02 01:39:14 +0000 | [diff] [blame] | 95 | |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 96 | public: |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 97 | explicit ARMFastISel(FunctionLoweringInfo &funcInfo) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 98 | : FastISel(funcInfo), |
| 99 | TM(funcInfo.MF->getTarget()), |
| 100 | TII(*TM.getInstrInfo()), |
| 101 | TLI(*TM.getTargetLowering()) { |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 102 | Subtarget = &TM.getSubtarget<ARMSubtarget>(); |
Eric Christopher | 7fe55b7 | 2010-08-23 22:32:45 +0000 | [diff] [blame] | 103 | AFI = funcInfo.MF->getInfo<ARMFunctionInfo>(); |
Eric Christopher | eaa204b | 2010-09-02 01:39:14 +0000 | [diff] [blame] | 104 | isThumb = AFI->isThumbFunction(); |
Eric Christopher | 8cf6c60 | 2010-09-29 22:24:45 +0000 | [diff] [blame] | 105 | Context = &funcInfo.Fn->getContext(); |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 106 | } |
| 107 | |
Eric Christopher | cb59229 | 2010-08-20 00:20:31 +0000 | [diff] [blame] | 108 | // Code from FastISel.cpp. |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 109 | virtual unsigned FastEmitInst_(unsigned MachineInstOpcode, |
| 110 | const TargetRegisterClass *RC); |
| 111 | virtual unsigned FastEmitInst_r(unsigned MachineInstOpcode, |
| 112 | const TargetRegisterClass *RC, |
| 113 | unsigned Op0, bool Op0IsKill); |
| 114 | virtual unsigned FastEmitInst_rr(unsigned MachineInstOpcode, |
| 115 | const TargetRegisterClass *RC, |
| 116 | unsigned Op0, bool Op0IsKill, |
| 117 | unsigned Op1, bool Op1IsKill); |
Cameron Zwarich | c0e6d78 | 2011-03-30 23:01:21 +0000 | [diff] [blame] | 118 | virtual unsigned FastEmitInst_rrr(unsigned MachineInstOpcode, |
| 119 | const TargetRegisterClass *RC, |
| 120 | unsigned Op0, bool Op0IsKill, |
| 121 | unsigned Op1, bool Op1IsKill, |
| 122 | unsigned Op2, bool Op2IsKill); |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 123 | virtual unsigned FastEmitInst_ri(unsigned MachineInstOpcode, |
| 124 | const TargetRegisterClass *RC, |
| 125 | unsigned Op0, bool Op0IsKill, |
| 126 | uint64_t Imm); |
| 127 | virtual unsigned FastEmitInst_rf(unsigned MachineInstOpcode, |
| 128 | const TargetRegisterClass *RC, |
| 129 | unsigned Op0, bool Op0IsKill, |
| 130 | const ConstantFP *FPImm); |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 131 | virtual unsigned FastEmitInst_rri(unsigned MachineInstOpcode, |
| 132 | const TargetRegisterClass *RC, |
| 133 | unsigned Op0, bool Op0IsKill, |
| 134 | unsigned Op1, bool Op1IsKill, |
| 135 | uint64_t Imm); |
Eric Christopher | af3dce5 | 2011-03-12 01:09:29 +0000 | [diff] [blame] | 136 | virtual unsigned FastEmitInst_i(unsigned MachineInstOpcode, |
| 137 | const TargetRegisterClass *RC, |
| 138 | uint64_t Imm); |
Eric Christopher | d94bc54 | 2011-04-29 22:07:50 +0000 | [diff] [blame] | 139 | virtual unsigned FastEmitInst_ii(unsigned MachineInstOpcode, |
| 140 | const TargetRegisterClass *RC, |
| 141 | uint64_t Imm1, uint64_t Imm2); |
Eric Christopher | af3dce5 | 2011-03-12 01:09:29 +0000 | [diff] [blame] | 142 | |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 143 | virtual unsigned FastEmitInst_extractsubreg(MVT RetVT, |
| 144 | unsigned Op0, bool Op0IsKill, |
| 145 | uint32_t Idx); |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 146 | |
Eric Christopher | cb59229 | 2010-08-20 00:20:31 +0000 | [diff] [blame] | 147 | // Backend specific FastISel code. |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 148 | virtual bool TargetSelectInstruction(const Instruction *I); |
Eric Christopher | 1b61ef4 | 2010-09-02 01:48:11 +0000 | [diff] [blame] | 149 | virtual unsigned TargetMaterializeConstant(const Constant *C); |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 150 | virtual unsigned TargetMaterializeAlloca(const AllocaInst *AI); |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 151 | |
| 152 | #include "ARMGenFastISel.inc" |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 153 | |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 154 | // Instruction selection routines. |
Eric Christopher | 44bff90 | 2010-09-10 23:10:30 +0000 | [diff] [blame] | 155 | private: |
Eric Christopher | 1778772 | 2010-10-21 21:47:51 +0000 | [diff] [blame] | 156 | bool SelectLoad(const Instruction *I); |
| 157 | bool SelectStore(const Instruction *I); |
| 158 | bool SelectBranch(const Instruction *I); |
| 159 | bool SelectCmp(const Instruction *I); |
| 160 | bool SelectFPExt(const Instruction *I); |
| 161 | bool SelectFPTrunc(const Instruction *I); |
| 162 | bool SelectBinaryOp(const Instruction *I, unsigned ISDOpcode); |
| 163 | bool SelectSIToFP(const Instruction *I); |
| 164 | bool SelectFPToSI(const Instruction *I); |
| 165 | bool SelectSDiv(const Instruction *I); |
| 166 | bool SelectSRem(const Instruction *I); |
| 167 | bool SelectCall(const Instruction *I); |
| 168 | bool SelectSelect(const Instruction *I); |
Eric Christopher | 4f512ef | 2010-10-22 01:28:00 +0000 | [diff] [blame] | 169 | bool SelectRet(const Instruction *I); |
Eli Friedman | 76927d73 | 2011-05-25 23:49:02 +0000 | [diff] [blame] | 170 | bool SelectIntCast(const Instruction *I); |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 171 | |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 172 | // Utility routines. |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 173 | private: |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 174 | bool isTypeLegal(const Type *Ty, MVT &VT); |
| 175 | bool isLoadTypeLegal(const Type *Ty, MVT &VT); |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 176 | bool ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr); |
| 177 | bool ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr); |
| 178 | bool ARMComputeAddress(const Value *Obj, Address &Addr); |
| 179 | void ARMSimplifyAddress(Address &Addr, EVT VT); |
Eric Christopher | 9ed58df | 2010-09-09 00:19:41 +0000 | [diff] [blame] | 180 | unsigned ARMMaterializeFP(const ConstantFP *CFP, EVT VT); |
Eric Christopher | 744c7c8 | 2010-09-28 22:47:54 +0000 | [diff] [blame] | 181 | unsigned ARMMaterializeInt(const Constant *C, EVT VT); |
Eric Christopher | c9932f6 | 2010-10-01 23:24:42 +0000 | [diff] [blame] | 182 | unsigned ARMMaterializeGV(const GlobalValue *GV, EVT VT); |
Eric Christopher | aa3ace1 | 2010-09-09 20:49:25 +0000 | [diff] [blame] | 183 | unsigned ARMMoveToFPReg(EVT VT, unsigned SrcReg); |
Eric Christopher | 9ee4ce2 | 2010-09-09 21:44:45 +0000 | [diff] [blame] | 184 | unsigned ARMMoveToIntReg(EVT VT, unsigned SrcReg); |
Eric Christopher | 872f4a2 | 2011-02-22 01:37:10 +0000 | [diff] [blame] | 185 | unsigned ARMSelectCallOp(const GlobalValue *GV); |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 186 | |
Eric Christopher | d10cd7b | 2010-09-10 23:18:12 +0000 | [diff] [blame] | 187 | // Call handling routines. |
| 188 | private: |
Eric Christopher | fa87d66 | 2010-10-18 02:17:53 +0000 | [diff] [blame] | 189 | bool FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT, |
| 190 | unsigned &ResultReg); |
Eric Christopher | d10cd7b | 2010-09-10 23:18:12 +0000 | [diff] [blame] | 191 | CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool Return); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 192 | bool ProcessCallArgs(SmallVectorImpl<Value*> &Args, |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 193 | SmallVectorImpl<unsigned> &ArgRegs, |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 194 | SmallVectorImpl<MVT> &ArgVTs, |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 195 | SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags, |
| 196 | SmallVectorImpl<unsigned> &RegArgs, |
| 197 | CallingConv::ID CC, |
| 198 | unsigned &NumBytes); |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 199 | bool FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs, |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 200 | const Instruction *I, CallingConv::ID CC, |
| 201 | unsigned &NumBytes); |
Eric Christopher | 7ed8ec9 | 2010-09-28 01:21:42 +0000 | [diff] [blame] | 202 | bool ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call); |
Eric Christopher | d10cd7b | 2010-09-10 23:18:12 +0000 | [diff] [blame] | 203 | |
| 204 | // OptionalDef handling routines. |
| 205 | private: |
Eric Christopher | af3dce5 | 2011-03-12 01:09:29 +0000 | [diff] [blame] | 206 | bool isARMNEONPred(const MachineInstr *MI); |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 207 | bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR); |
| 208 | const MachineInstrBuilder &AddOptionalDefs(const MachineInstrBuilder &MIB); |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 209 | void AddLoadStoreOperands(EVT VT, Address &Addr, |
| 210 | const MachineInstrBuilder &MIB); |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 211 | }; |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 212 | |
| 213 | } // end anonymous namespace |
| 214 | |
Eric Christopher | d10cd7b | 2010-09-10 23:18:12 +0000 | [diff] [blame] | 215 | #include "ARMGenCallingConv.inc" |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 216 | |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 217 | // DefinesOptionalPredicate - This is different from DefinesPredicate in that |
| 218 | // we don't care about implicit defs here, just places we'll need to add a |
| 219 | // default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR. |
| 220 | bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) { |
| 221 | const TargetInstrDesc &TID = MI->getDesc(); |
| 222 | if (!TID.hasOptionalDef()) |
| 223 | return false; |
| 224 | |
| 225 | // Look to see if our OptionalDef is defining CPSR or CCR. |
| 226 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 227 | const MachineOperand &MO = MI->getOperand(i); |
Eric Christopher | f762fbe | 2010-08-20 00:36:24 +0000 | [diff] [blame] | 228 | if (!MO.isReg() || !MO.isDef()) continue; |
| 229 | if (MO.getReg() == ARM::CPSR) |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 230 | *CPSR = true; |
| 231 | } |
| 232 | return true; |
| 233 | } |
| 234 | |
Eric Christopher | af3dce5 | 2011-03-12 01:09:29 +0000 | [diff] [blame] | 235 | bool ARMFastISel::isARMNEONPred(const MachineInstr *MI) { |
| 236 | const TargetInstrDesc &TID = MI->getDesc(); |
Eric Christopher | 299bbb2 | 2011-04-29 00:03:10 +0000 | [diff] [blame] | 237 | |
Eric Christopher | af3dce5 | 2011-03-12 01:09:29 +0000 | [diff] [blame] | 238 | // If we're a thumb2 or not NEON function we were handled via isPredicable. |
| 239 | if ((TID.TSFlags & ARMII::DomainMask) != ARMII::DomainNEON || |
| 240 | AFI->isThumb2Function()) |
| 241 | return false; |
Eric Christopher | 299bbb2 | 2011-04-29 00:03:10 +0000 | [diff] [blame] | 242 | |
Eric Christopher | af3dce5 | 2011-03-12 01:09:29 +0000 | [diff] [blame] | 243 | for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) |
| 244 | if (TID.OpInfo[i].isPredicate()) |
| 245 | return true; |
Eric Christopher | 299bbb2 | 2011-04-29 00:03:10 +0000 | [diff] [blame] | 246 | |
Eric Christopher | af3dce5 | 2011-03-12 01:09:29 +0000 | [diff] [blame] | 247 | return false; |
| 248 | } |
| 249 | |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 250 | // If the machine is predicable go ahead and add the predicate operands, if |
| 251 | // it needs default CC operands add those. |
Eric Christopher | aaa8df4 | 2010-11-02 01:21:28 +0000 | [diff] [blame] | 252 | // TODO: If we want to support thumb1 then we'll need to deal with optional |
| 253 | // CPSR defs that need to be added before the remaining operands. See s_cc_out |
| 254 | // for descriptions why. |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 255 | const MachineInstrBuilder & |
| 256 | ARMFastISel::AddOptionalDefs(const MachineInstrBuilder &MIB) { |
| 257 | MachineInstr *MI = &*MIB; |
| 258 | |
Eric Christopher | af3dce5 | 2011-03-12 01:09:29 +0000 | [diff] [blame] | 259 | // Do we use a predicate? or... |
| 260 | // Are we NEON in ARM mode and have a predicate operand? If so, I know |
| 261 | // we're not predicable but add it anyways. |
| 262 | if (TII.isPredicable(MI) || isARMNEONPred(MI)) |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 263 | AddDefaultPred(MIB); |
Eric Christopher | 299bbb2 | 2011-04-29 00:03:10 +0000 | [diff] [blame] | 264 | |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 265 | // Do we optionally set a predicate? Preds is size > 0 iff the predicate |
| 266 | // defines CPSR. All other OptionalDefines in ARM are the CCR register. |
Eric Christopher | 979e0a1 | 2010-08-19 15:35:27 +0000 | [diff] [blame] | 267 | bool CPSR = false; |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 268 | if (DefinesOptionalPredicate(MI, &CPSR)) { |
| 269 | if (CPSR) |
| 270 | AddDefaultT1CC(MIB); |
| 271 | else |
| 272 | AddDefaultCC(MIB); |
| 273 | } |
| 274 | return MIB; |
| 275 | } |
| 276 | |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 277 | unsigned ARMFastISel::FastEmitInst_(unsigned MachineInstOpcode, |
| 278 | const TargetRegisterClass* RC) { |
| 279 | unsigned ResultReg = createResultReg(RC); |
| 280 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 281 | |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 282 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)); |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 283 | return ResultReg; |
| 284 | } |
| 285 | |
| 286 | unsigned ARMFastISel::FastEmitInst_r(unsigned MachineInstOpcode, |
| 287 | const TargetRegisterClass *RC, |
| 288 | unsigned Op0, bool Op0IsKill) { |
| 289 | unsigned ResultReg = createResultReg(RC); |
| 290 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 291 | |
| 292 | if (II.getNumDefs() >= 1) |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 293 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 294 | .addReg(Op0, Op0IsKill * RegState::Kill)); |
| 295 | else { |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 296 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 297 | .addReg(Op0, Op0IsKill * RegState::Kill)); |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 298 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 299 | TII.get(TargetOpcode::COPY), ResultReg) |
| 300 | .addReg(II.ImplicitDefs[0])); |
| 301 | } |
| 302 | return ResultReg; |
| 303 | } |
| 304 | |
| 305 | unsigned ARMFastISel::FastEmitInst_rr(unsigned MachineInstOpcode, |
| 306 | const TargetRegisterClass *RC, |
| 307 | unsigned Op0, bool Op0IsKill, |
| 308 | unsigned Op1, bool Op1IsKill) { |
| 309 | unsigned ResultReg = createResultReg(RC); |
| 310 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 311 | |
| 312 | if (II.getNumDefs() >= 1) |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 313 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 314 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 315 | .addReg(Op1, Op1IsKill * RegState::Kill)); |
| 316 | else { |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 317 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 318 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 319 | .addReg(Op1, Op1IsKill * RegState::Kill)); |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 320 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 321 | TII.get(TargetOpcode::COPY), ResultReg) |
| 322 | .addReg(II.ImplicitDefs[0])); |
| 323 | } |
| 324 | return ResultReg; |
| 325 | } |
| 326 | |
Cameron Zwarich | c0e6d78 | 2011-03-30 23:01:21 +0000 | [diff] [blame] | 327 | unsigned ARMFastISel::FastEmitInst_rrr(unsigned MachineInstOpcode, |
| 328 | const TargetRegisterClass *RC, |
| 329 | unsigned Op0, bool Op0IsKill, |
| 330 | unsigned Op1, bool Op1IsKill, |
| 331 | unsigned Op2, bool Op2IsKill) { |
| 332 | unsigned ResultReg = createResultReg(RC); |
| 333 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 334 | |
| 335 | if (II.getNumDefs() >= 1) |
| 336 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
| 337 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 338 | .addReg(Op1, Op1IsKill * RegState::Kill) |
| 339 | .addReg(Op2, Op2IsKill * RegState::Kill)); |
| 340 | else { |
| 341 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
| 342 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 343 | .addReg(Op1, Op1IsKill * RegState::Kill) |
| 344 | .addReg(Op2, Op2IsKill * RegState::Kill)); |
| 345 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 346 | TII.get(TargetOpcode::COPY), ResultReg) |
| 347 | .addReg(II.ImplicitDefs[0])); |
| 348 | } |
| 349 | return ResultReg; |
| 350 | } |
| 351 | |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 352 | unsigned ARMFastISel::FastEmitInst_ri(unsigned MachineInstOpcode, |
| 353 | const TargetRegisterClass *RC, |
| 354 | unsigned Op0, bool Op0IsKill, |
| 355 | uint64_t Imm) { |
| 356 | unsigned ResultReg = createResultReg(RC); |
| 357 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 358 | |
| 359 | if (II.getNumDefs() >= 1) |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 360 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 361 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 362 | .addImm(Imm)); |
| 363 | else { |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 364 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 365 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 366 | .addImm(Imm)); |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 367 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 368 | TII.get(TargetOpcode::COPY), ResultReg) |
| 369 | .addReg(II.ImplicitDefs[0])); |
| 370 | } |
| 371 | return ResultReg; |
| 372 | } |
| 373 | |
| 374 | unsigned ARMFastISel::FastEmitInst_rf(unsigned MachineInstOpcode, |
| 375 | const TargetRegisterClass *RC, |
| 376 | unsigned Op0, bool Op0IsKill, |
| 377 | const ConstantFP *FPImm) { |
| 378 | unsigned ResultReg = createResultReg(RC); |
| 379 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 380 | |
| 381 | if (II.getNumDefs() >= 1) |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 382 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 383 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 384 | .addFPImm(FPImm)); |
| 385 | else { |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 386 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 387 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 388 | .addFPImm(FPImm)); |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 389 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 390 | TII.get(TargetOpcode::COPY), ResultReg) |
| 391 | .addReg(II.ImplicitDefs[0])); |
| 392 | } |
| 393 | return ResultReg; |
| 394 | } |
| 395 | |
| 396 | unsigned ARMFastISel::FastEmitInst_rri(unsigned MachineInstOpcode, |
| 397 | const TargetRegisterClass *RC, |
| 398 | unsigned Op0, bool Op0IsKill, |
| 399 | unsigned Op1, bool Op1IsKill, |
| 400 | uint64_t Imm) { |
| 401 | unsigned ResultReg = createResultReg(RC); |
| 402 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 403 | |
| 404 | if (II.getNumDefs() >= 1) |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 405 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 406 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 407 | .addReg(Op1, Op1IsKill * RegState::Kill) |
| 408 | .addImm(Imm)); |
| 409 | else { |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 410 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 411 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 412 | .addReg(Op1, Op1IsKill * RegState::Kill) |
| 413 | .addImm(Imm)); |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 414 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 415 | TII.get(TargetOpcode::COPY), ResultReg) |
| 416 | .addReg(II.ImplicitDefs[0])); |
| 417 | } |
| 418 | return ResultReg; |
| 419 | } |
| 420 | |
| 421 | unsigned ARMFastISel::FastEmitInst_i(unsigned MachineInstOpcode, |
| 422 | const TargetRegisterClass *RC, |
| 423 | uint64_t Imm) { |
| 424 | unsigned ResultReg = createResultReg(RC); |
| 425 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 426 | |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 427 | if (II.getNumDefs() >= 1) |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 428 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 429 | .addImm(Imm)); |
| 430 | else { |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 431 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 432 | .addImm(Imm)); |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 433 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 434 | TII.get(TargetOpcode::COPY), ResultReg) |
| 435 | .addReg(II.ImplicitDefs[0])); |
| 436 | } |
| 437 | return ResultReg; |
| 438 | } |
| 439 | |
Eric Christopher | d94bc54 | 2011-04-29 22:07:50 +0000 | [diff] [blame] | 440 | unsigned ARMFastISel::FastEmitInst_ii(unsigned MachineInstOpcode, |
| 441 | const TargetRegisterClass *RC, |
| 442 | uint64_t Imm1, uint64_t Imm2) { |
| 443 | unsigned ResultReg = createResultReg(RC); |
| 444 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 445 | |
| 446 | if (II.getNumDefs() >= 1) |
| 447 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
| 448 | .addImm(Imm1).addImm(Imm2)); |
| 449 | else { |
| 450 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
| 451 | .addImm(Imm1).addImm(Imm2)); |
| 452 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 453 | TII.get(TargetOpcode::COPY), |
| 454 | ResultReg) |
| 455 | .addReg(II.ImplicitDefs[0])); |
| 456 | } |
| 457 | return ResultReg; |
| 458 | } |
| 459 | |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 460 | unsigned ARMFastISel::FastEmitInst_extractsubreg(MVT RetVT, |
| 461 | unsigned Op0, bool Op0IsKill, |
| 462 | uint32_t Idx) { |
| 463 | unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT)); |
| 464 | assert(TargetRegisterInfo::isVirtualRegister(Op0) && |
| 465 | "Cannot yet extract from physregs"); |
Eric Christopher | 456144e | 2010-08-19 00:37:05 +0000 | [diff] [blame] | 466 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, |
Eric Christopher | 0fe7d54 | 2010-08-17 01:25:29 +0000 | [diff] [blame] | 467 | DL, TII.get(TargetOpcode::COPY), ResultReg) |
| 468 | .addReg(Op0, getKillRegState(Op0IsKill), Idx)); |
| 469 | return ResultReg; |
| 470 | } |
| 471 | |
Eric Christopher | db12b2b | 2010-09-10 00:34:35 +0000 | [diff] [blame] | 472 | // TODO: Don't worry about 64-bit now, but when this is fixed remove the |
| 473 | // checks from the various callers. |
Eric Christopher | aa3ace1 | 2010-09-09 20:49:25 +0000 | [diff] [blame] | 474 | unsigned ARMFastISel::ARMMoveToFPReg(EVT VT, unsigned SrcReg) { |
Duncan Sands | cdfad36 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 475 | if (VT == MVT::f64) return 0; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 476 | |
Eric Christopher | 9ee4ce2 | 2010-09-09 21:44:45 +0000 | [diff] [blame] | 477 | unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT)); |
| 478 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 479 | TII.get(ARM::VMOVRS), MoveReg) |
| 480 | .addReg(SrcReg)); |
| 481 | return MoveReg; |
| 482 | } |
| 483 | |
| 484 | unsigned ARMFastISel::ARMMoveToIntReg(EVT VT, unsigned SrcReg) { |
Duncan Sands | cdfad36 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 485 | if (VT == MVT::i64) return 0; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 486 | |
Eric Christopher | aa3ace1 | 2010-09-09 20:49:25 +0000 | [diff] [blame] | 487 | unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT)); |
| 488 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | 9ee4ce2 | 2010-09-09 21:44:45 +0000 | [diff] [blame] | 489 | TII.get(ARM::VMOVSR), MoveReg) |
Eric Christopher | aa3ace1 | 2010-09-09 20:49:25 +0000 | [diff] [blame] | 490 | .addReg(SrcReg)); |
| 491 | return MoveReg; |
| 492 | } |
| 493 | |
Eric Christopher | 9ed58df | 2010-09-09 00:19:41 +0000 | [diff] [blame] | 494 | // For double width floating point we need to materialize two constants |
| 495 | // (the high and the low) into integer registers then use a move to get |
| 496 | // the combined constant into an FP reg. |
| 497 | unsigned ARMFastISel::ARMMaterializeFP(const ConstantFP *CFP, EVT VT) { |
| 498 | const APFloat Val = CFP->getValueAPF(); |
Duncan Sands | cdfad36 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 499 | bool is64bit = VT == MVT::f64; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 500 | |
Eric Christopher | 9ed58df | 2010-09-09 00:19:41 +0000 | [diff] [blame] | 501 | // This checks to see if we can use VFP3 instructions to materialize |
| 502 | // a constant, otherwise we have to go through the constant pool. |
| 503 | if (TLI.isFPImmLegal(Val, VT)) { |
| 504 | unsigned Opc = is64bit ? ARM::FCONSTD : ARM::FCONSTS; |
| 505 | unsigned DestReg = createResultReg(TLI.getRegClassFor(VT)); |
| 506 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), |
| 507 | DestReg) |
| 508 | .addFPImm(CFP)); |
| 509 | return DestReg; |
| 510 | } |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 511 | |
Eric Christopher | db12b2b | 2010-09-10 00:34:35 +0000 | [diff] [blame] | 512 | // Require VFP2 for loading fp constants. |
Eric Christopher | 238bb16 | 2010-09-09 23:50:00 +0000 | [diff] [blame] | 513 | if (!Subtarget->hasVFP2()) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 514 | |
Eric Christopher | 238bb16 | 2010-09-09 23:50:00 +0000 | [diff] [blame] | 515 | // MachineConstantPool wants an explicit alignment. |
| 516 | unsigned Align = TD.getPrefTypeAlignment(CFP->getType()); |
| 517 | if (Align == 0) { |
| 518 | // TODO: Figure out if this is correct. |
| 519 | Align = TD.getTypeAllocSize(CFP->getType()); |
| 520 | } |
| 521 | unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align); |
| 522 | unsigned DestReg = createResultReg(TLI.getRegClassFor(VT)); |
| 523 | unsigned Opc = is64bit ? ARM::VLDRD : ARM::VLDRS; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 524 | |
Eric Christopher | db12b2b | 2010-09-10 00:34:35 +0000 | [diff] [blame] | 525 | // The extra reg is for addrmode5. |
Eric Christopher | f5732c4 | 2010-09-28 00:35:09 +0000 | [diff] [blame] | 526 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), |
| 527 | DestReg) |
| 528 | .addConstantPoolIndex(Idx) |
Eric Christopher | 238bb16 | 2010-09-09 23:50:00 +0000 | [diff] [blame] | 529 | .addReg(0)); |
| 530 | return DestReg; |
Eric Christopher | 9ed58df | 2010-09-09 00:19:41 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Eric Christopher | 744c7c8 | 2010-09-28 22:47:54 +0000 | [diff] [blame] | 533 | unsigned ARMFastISel::ARMMaterializeInt(const Constant *C, EVT VT) { |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 534 | |
Eric Christopher | 744c7c8 | 2010-09-28 22:47:54 +0000 | [diff] [blame] | 535 | // For now 32-bit only. |
Duncan Sands | cdfad36 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 536 | if (VT != MVT::i32) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 537 | |
Eric Christopher | e5b13cf | 2010-11-03 20:21:17 +0000 | [diff] [blame] | 538 | unsigned DestReg = createResultReg(TLI.getRegClassFor(VT)); |
| 539 | |
| 540 | // If we can do this in a single instruction without a constant pool entry |
| 541 | // do so now. |
| 542 | const ConstantInt *CI = cast<ConstantInt>(C); |
Eric Christopher | 5e262bc | 2010-11-06 07:53:11 +0000 | [diff] [blame] | 543 | if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getSExtValue())) { |
Eric Christopher | e5b13cf | 2010-11-03 20:21:17 +0000 | [diff] [blame] | 544 | unsigned Opc = isThumb ? ARM::t2MOVi16 : ARM::MOVi16; |
| 545 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Jim Grosbach | 3ea4daa | 2010-11-19 18:01:37 +0000 | [diff] [blame] | 546 | TII.get(Opc), DestReg) |
| 547 | .addImm(CI->getSExtValue())); |
Eric Christopher | e5b13cf | 2010-11-03 20:21:17 +0000 | [diff] [blame] | 548 | return DestReg; |
| 549 | } |
| 550 | |
Eric Christopher | 56d2b72 | 2010-09-02 23:43:26 +0000 | [diff] [blame] | 551 | // MachineConstantPool wants an explicit alignment. |
| 552 | unsigned Align = TD.getPrefTypeAlignment(C->getType()); |
| 553 | if (Align == 0) { |
| 554 | // TODO: Figure out if this is correct. |
| 555 | Align = TD.getTypeAllocSize(C->getType()); |
| 556 | } |
| 557 | unsigned Idx = MCP.getConstantPoolIndex(C, Align); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 558 | |
Eric Christopher | 56d2b72 | 2010-09-02 23:43:26 +0000 | [diff] [blame] | 559 | if (isThumb) |
| 560 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | fd60980 | 2010-09-28 21:55:34 +0000 | [diff] [blame] | 561 | TII.get(ARM::t2LDRpci), DestReg) |
| 562 | .addConstantPoolIndex(Idx)); |
Eric Christopher | 56d2b72 | 2010-09-02 23:43:26 +0000 | [diff] [blame] | 563 | else |
Eric Christopher | d0c82a6 | 2010-11-12 09:48:30 +0000 | [diff] [blame] | 564 | // The extra immediate is for addrmode2. |
Eric Christopher | 56d2b72 | 2010-09-02 23:43:26 +0000 | [diff] [blame] | 565 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | fd60980 | 2010-09-28 21:55:34 +0000 | [diff] [blame] | 566 | TII.get(ARM::LDRcp), DestReg) |
| 567 | .addConstantPoolIndex(Idx) |
Jim Grosbach | 3e55612 | 2010-10-26 22:37:02 +0000 | [diff] [blame] | 568 | .addImm(0)); |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 569 | |
Eric Christopher | 56d2b72 | 2010-09-02 23:43:26 +0000 | [diff] [blame] | 570 | return DestReg; |
Eric Christopher | 1b61ef4 | 2010-09-02 01:48:11 +0000 | [diff] [blame] | 571 | } |
| 572 | |
Eric Christopher | c9932f6 | 2010-10-01 23:24:42 +0000 | [diff] [blame] | 573 | unsigned ARMFastISel::ARMMaterializeGV(const GlobalValue *GV, EVT VT) { |
Eric Christopher | 890dbbe | 2010-10-02 00:32:44 +0000 | [diff] [blame] | 574 | // For now 32-bit only. |
Duncan Sands | cdfad36 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 575 | if (VT != MVT::i32) return 0; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 576 | |
Eric Christopher | 890dbbe | 2010-10-02 00:32:44 +0000 | [diff] [blame] | 577 | Reloc::Model RelocM = TM.getRelocationModel(); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 578 | |
Eric Christopher | 890dbbe | 2010-10-02 00:32:44 +0000 | [diff] [blame] | 579 | // TODO: No external globals for now. |
| 580 | if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) return 0; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 581 | |
Eric Christopher | 890dbbe | 2010-10-02 00:32:44 +0000 | [diff] [blame] | 582 | // TODO: Need more magic for ARM PIC. |
| 583 | if (!isThumb && (RelocM == Reloc::PIC_)) return 0; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 584 | |
Eric Christopher | 890dbbe | 2010-10-02 00:32:44 +0000 | [diff] [blame] | 585 | // MachineConstantPool wants an explicit alignment. |
| 586 | unsigned Align = TD.getPrefTypeAlignment(GV->getType()); |
| 587 | if (Align == 0) { |
| 588 | // TODO: Figure out if this is correct. |
| 589 | Align = TD.getTypeAllocSize(GV->getType()); |
| 590 | } |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 591 | |
Eric Christopher | 890dbbe | 2010-10-02 00:32:44 +0000 | [diff] [blame] | 592 | // Grab index. |
| 593 | unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb() ? 4 : 8); |
Evan Cheng | 5de5d4b | 2011-01-17 08:03:18 +0000 | [diff] [blame] | 594 | unsigned Id = AFI->createPICLabelUId(); |
Eric Christopher | 890dbbe | 2010-10-02 00:32:44 +0000 | [diff] [blame] | 595 | ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, Id, |
| 596 | ARMCP::CPValue, PCAdj); |
| 597 | unsigned Idx = MCP.getConstantPoolIndex(CPV, Align); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 598 | |
Eric Christopher | 890dbbe | 2010-10-02 00:32:44 +0000 | [diff] [blame] | 599 | // Load value. |
| 600 | MachineInstrBuilder MIB; |
| 601 | unsigned DestReg = createResultReg(TLI.getRegClassFor(VT)); |
| 602 | if (isThumb) { |
| 603 | unsigned Opc = (RelocM != Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic; |
| 604 | MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg) |
| 605 | .addConstantPoolIndex(Idx); |
| 606 | if (RelocM == Reloc::PIC_) |
| 607 | MIB.addImm(Id); |
| 608 | } else { |
Eric Christopher | d0c82a6 | 2010-11-12 09:48:30 +0000 | [diff] [blame] | 609 | // The extra immediate is for addrmode2. |
Eric Christopher | 890dbbe | 2010-10-02 00:32:44 +0000 | [diff] [blame] | 610 | MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRcp), |
| 611 | DestReg) |
| 612 | .addConstantPoolIndex(Idx) |
Eric Christopher | d0c82a6 | 2010-11-12 09:48:30 +0000 | [diff] [blame] | 613 | .addImm(0); |
Eric Christopher | 890dbbe | 2010-10-02 00:32:44 +0000 | [diff] [blame] | 614 | } |
| 615 | AddOptionalDefs(MIB); |
| 616 | return DestReg; |
Eric Christopher | c9932f6 | 2010-10-01 23:24:42 +0000 | [diff] [blame] | 617 | } |
| 618 | |
Eric Christopher | 9ed58df | 2010-09-09 00:19:41 +0000 | [diff] [blame] | 619 | unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) { |
| 620 | EVT VT = TLI.getValueType(C->getType(), true); |
| 621 | |
| 622 | // Only handle simple types. |
| 623 | if (!VT.isSimple()) return 0; |
| 624 | |
| 625 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) |
| 626 | return ARMMaterializeFP(CFP, VT); |
Eric Christopher | c9932f6 | 2010-10-01 23:24:42 +0000 | [diff] [blame] | 627 | else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 628 | return ARMMaterializeGV(GV, VT); |
| 629 | else if (isa<ConstantInt>(C)) |
| 630 | return ARMMaterializeInt(C, VT); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 631 | |
Eric Christopher | c9932f6 | 2010-10-01 23:24:42 +0000 | [diff] [blame] | 632 | return 0; |
Eric Christopher | 9ed58df | 2010-09-09 00:19:41 +0000 | [diff] [blame] | 633 | } |
| 634 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 635 | unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) { |
| 636 | // Don't handle dynamic allocas. |
| 637 | if (!FuncInfo.StaticAllocaMap.count(AI)) return 0; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 638 | |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 639 | MVT VT; |
Eric Christopher | ec8bf97 | 2010-10-17 06:07:26 +0000 | [diff] [blame] | 640 | if (!isLoadTypeLegal(AI->getType(), VT)) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 641 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 642 | DenseMap<const AllocaInst*, int>::iterator SI = |
| 643 | FuncInfo.StaticAllocaMap.find(AI); |
| 644 | |
| 645 | // This will get lowered later into the correct offsets and registers |
| 646 | // via rewriteXFrameIndex. |
| 647 | if (SI != FuncInfo.StaticAllocaMap.end()) { |
| 648 | TargetRegisterClass* RC = TLI.getRegClassFor(VT); |
| 649 | unsigned ResultReg = createResultReg(RC); |
| 650 | unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri; |
| 651 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL, |
| 652 | TII.get(Opc), ResultReg) |
| 653 | .addFrameIndex(SI->second) |
| 654 | .addImm(0)); |
| 655 | return ResultReg; |
| 656 | } |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 657 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 658 | return 0; |
| 659 | } |
| 660 | |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 661 | bool ARMFastISel::isTypeLegal(const Type *Ty, MVT &VT) { |
| 662 | EVT evt = TLI.getValueType(Ty, true); |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 663 | |
Eric Christopher | b1cc848 | 2010-08-25 07:23:49 +0000 | [diff] [blame] | 664 | // Only handle simple types. |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 665 | if (evt == MVT::Other || !evt.isSimple()) return false; |
| 666 | VT = evt.getSimpleVT(); |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 667 | |
Eric Christopher | dc90804 | 2010-08-31 01:28:42 +0000 | [diff] [blame] | 668 | // Handle all legal types, i.e. a register that will directly hold this |
| 669 | // value. |
| 670 | return TLI.isTypeLegal(VT); |
Eric Christopher | b1cc848 | 2010-08-25 07:23:49 +0000 | [diff] [blame] | 671 | } |
| 672 | |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 673 | bool ARMFastISel::isLoadTypeLegal(const Type *Ty, MVT &VT) { |
Eric Christopher | 4e68c7c | 2010-09-01 18:01:32 +0000 | [diff] [blame] | 674 | if (isTypeLegal(Ty, VT)) return true; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 675 | |
Eric Christopher | 4e68c7c | 2010-09-01 18:01:32 +0000 | [diff] [blame] | 676 | // If this is a type than can be sign or zero-extended to a basic operation |
| 677 | // go ahead and accept it now. |
| 678 | if (VT == MVT::i8 || VT == MVT::i16) |
| 679 | return true; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 680 | |
Eric Christopher | 4e68c7c | 2010-09-01 18:01:32 +0000 | [diff] [blame] | 681 | return false; |
| 682 | } |
| 683 | |
Eric Christopher | 88de86b | 2010-11-19 22:36:41 +0000 | [diff] [blame] | 684 | // Computes the address to get to an object. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 685 | bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) { |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 686 | // Some boilerplate from the X86 FastISel. |
| 687 | const User *U = NULL; |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 688 | unsigned Opcode = Instruction::UserOp1; |
Eric Christopher | cb0b04b | 2010-08-24 00:07:24 +0000 | [diff] [blame] | 689 | if (const Instruction *I = dyn_cast<Instruction>(Obj)) { |
Eric Christopher | 2d630d7 | 2010-11-19 22:37:58 +0000 | [diff] [blame] | 690 | // Don't walk into other basic blocks unless the object is an alloca from |
| 691 | // another block, otherwise it may not have a virtual register assigned. |
Eric Christopher | 76dda7e | 2010-11-15 21:11:06 +0000 | [diff] [blame] | 692 | if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || |
| 693 | FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) { |
| 694 | Opcode = I->getOpcode(); |
| 695 | U = I; |
| 696 | } |
Eric Christopher | cb0b04b | 2010-08-24 00:07:24 +0000 | [diff] [blame] | 697 | } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) { |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 698 | Opcode = C->getOpcode(); |
| 699 | U = C; |
| 700 | } |
| 701 | |
Eric Christopher | cb0b04b | 2010-08-24 00:07:24 +0000 | [diff] [blame] | 702 | if (const PointerType *Ty = dyn_cast<PointerType>(Obj->getType())) |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 703 | if (Ty->getAddressSpace() > 255) |
| 704 | // Fast instruction selection doesn't support the special |
| 705 | // address spaces. |
| 706 | return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 707 | |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 708 | switch (Opcode) { |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 709 | default: |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 710 | break; |
Eric Christopher | 5532433 | 2010-10-12 00:43:21 +0000 | [diff] [blame] | 711 | case Instruction::BitCast: { |
| 712 | // Look through bitcasts. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 713 | return ARMComputeAddress(U->getOperand(0), Addr); |
Eric Christopher | 5532433 | 2010-10-12 00:43:21 +0000 | [diff] [blame] | 714 | } |
| 715 | case Instruction::IntToPtr: { |
| 716 | // Look past no-op inttoptrs. |
| 717 | if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy()) |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 718 | return ARMComputeAddress(U->getOperand(0), Addr); |
Eric Christopher | 5532433 | 2010-10-12 00:43:21 +0000 | [diff] [blame] | 719 | break; |
| 720 | } |
| 721 | case Instruction::PtrToInt: { |
| 722 | // Look past no-op ptrtoints. |
| 723 | if (TLI.getValueType(U->getType()) == TLI.getPointerTy()) |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 724 | return ARMComputeAddress(U->getOperand(0), Addr); |
Eric Christopher | 5532433 | 2010-10-12 00:43:21 +0000 | [diff] [blame] | 725 | break; |
| 726 | } |
Eric Christopher | eae8439 | 2010-10-14 09:29:41 +0000 | [diff] [blame] | 727 | case Instruction::GetElementPtr: { |
Eric Christopher | b371658 | 2010-11-19 22:39:56 +0000 | [diff] [blame] | 728 | Address SavedAddr = Addr; |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 729 | int TmpOffset = Addr.Offset; |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 730 | |
Eric Christopher | eae8439 | 2010-10-14 09:29:41 +0000 | [diff] [blame] | 731 | // Iterate through the GEP folding the constants into offsets where |
| 732 | // we can. |
| 733 | gep_type_iterator GTI = gep_type_begin(U); |
| 734 | for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end(); |
| 735 | i != e; ++i, ++GTI) { |
| 736 | const Value *Op = *i; |
| 737 | if (const StructType *STy = dyn_cast<StructType>(*GTI)) { |
| 738 | const StructLayout *SL = TD.getStructLayout(STy); |
| 739 | unsigned Idx = cast<ConstantInt>(Op)->getZExtValue(); |
| 740 | TmpOffset += SL->getElementOffset(Idx); |
| 741 | } else { |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 742 | uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType()); |
Eric Christopher | 7244d7c | 2011-03-22 19:39:17 +0000 | [diff] [blame] | 743 | for (;;) { |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 744 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) { |
| 745 | // Constant-offset addressing. |
| 746 | TmpOffset += CI->getSExtValue() * S; |
Eric Christopher | 7244d7c | 2011-03-22 19:39:17 +0000 | [diff] [blame] | 747 | break; |
| 748 | } |
| 749 | if (isa<AddOperator>(Op) && |
| 750 | (!isa<Instruction>(Op) || |
| 751 | FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()] |
| 752 | == FuncInfo.MBB) && |
| 753 | isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) { |
Eric Christopher | 299bbb2 | 2011-04-29 00:03:10 +0000 | [diff] [blame] | 754 | // An add (in the same block) with a constant operand. Fold the |
Eric Christopher | 7244d7c | 2011-03-22 19:39:17 +0000 | [diff] [blame] | 755 | // constant. |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 756 | ConstantInt *CI = |
Eric Christopher | 7244d7c | 2011-03-22 19:39:17 +0000 | [diff] [blame] | 757 | cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1)); |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 758 | TmpOffset += CI->getSExtValue() * S; |
Eric Christopher | 7244d7c | 2011-03-22 19:39:17 +0000 | [diff] [blame] | 759 | // Iterate on the other operand. |
| 760 | Op = cast<AddOperator>(Op)->getOperand(0); |
| 761 | continue; |
Eric Christopher | 299bbb2 | 2011-04-29 00:03:10 +0000 | [diff] [blame] | 762 | } |
Eric Christopher | 7244d7c | 2011-03-22 19:39:17 +0000 | [diff] [blame] | 763 | // Unsupported |
| 764 | goto unsupported_gep; |
| 765 | } |
Eric Christopher | eae8439 | 2010-10-14 09:29:41 +0000 | [diff] [blame] | 766 | } |
| 767 | } |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 768 | |
| 769 | // Try to grab the base operand now. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 770 | Addr.Offset = TmpOffset; |
| 771 | if (ARMComputeAddress(U->getOperand(0), Addr)) return true; |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 772 | |
| 773 | // We failed, restore everything and try the other options. |
Eric Christopher | b371658 | 2010-11-19 22:39:56 +0000 | [diff] [blame] | 774 | Addr = SavedAddr; |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 775 | |
Eric Christopher | eae8439 | 2010-10-14 09:29:41 +0000 | [diff] [blame] | 776 | unsupported_gep: |
Eric Christopher | eae8439 | 2010-10-14 09:29:41 +0000 | [diff] [blame] | 777 | break; |
| 778 | } |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 779 | case Instruction::Alloca: { |
Eric Christopher | 1541877 | 2010-10-12 05:39:06 +0000 | [diff] [blame] | 780 | const AllocaInst *AI = cast<AllocaInst>(Obj); |
Eric Christopher | 827656d | 2010-11-20 22:38:27 +0000 | [diff] [blame] | 781 | DenseMap<const AllocaInst*, int>::iterator SI = |
| 782 | FuncInfo.StaticAllocaMap.find(AI); |
| 783 | if (SI != FuncInfo.StaticAllocaMap.end()) { |
| 784 | Addr.BaseType = Address::FrameIndexBase; |
| 785 | Addr.Base.FI = SI->second; |
| 786 | return true; |
| 787 | } |
| 788 | break; |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 789 | } |
| 790 | } |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 791 | |
Eric Christopher | a9c5751 | 2010-10-13 21:41:51 +0000 | [diff] [blame] | 792 | // Materialize the global variable's address into a reg which can |
| 793 | // then be used later to load the variable. |
Eric Christopher | cb0b04b | 2010-08-24 00:07:24 +0000 | [diff] [blame] | 794 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) { |
Eric Christopher | ede42b0 | 2010-10-13 09:11:46 +0000 | [diff] [blame] | 795 | unsigned Tmp = ARMMaterializeGV(GV, TLI.getValueType(Obj->getType())); |
| 796 | if (Tmp == 0) return false; |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 797 | |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 798 | Addr.Base.Reg = Tmp; |
Eric Christopher | ede42b0 | 2010-10-13 09:11:46 +0000 | [diff] [blame] | 799 | return true; |
Eric Christopher | cb0b04b | 2010-08-24 00:07:24 +0000 | [diff] [blame] | 800 | } |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 801 | |
Eric Christopher | cb0b04b | 2010-08-24 00:07:24 +0000 | [diff] [blame] | 802 | // Try to get this in a register if nothing else has worked. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 803 | if (Addr.Base.Reg == 0) Addr.Base.Reg = getRegForValue(Obj); |
| 804 | return Addr.Base.Reg != 0; |
Eric Christopher | eae8439 | 2010-10-14 09:29:41 +0000 | [diff] [blame] | 805 | } |
| 806 | |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 807 | void ARMFastISel::ARMSimplifyAddress(Address &Addr, EVT VT) { |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 808 | |
Eric Christopher | 212ae93 | 2010-10-21 19:40:30 +0000 | [diff] [blame] | 809 | assert(VT.isSimple() && "Non-simple types are invalid here!"); |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 810 | |
Eric Christopher | 212ae93 | 2010-10-21 19:40:30 +0000 | [diff] [blame] | 811 | bool needsLowering = false; |
| 812 | switch (VT.getSimpleVT().SimpleTy) { |
| 813 | default: |
| 814 | assert(false && "Unhandled load/store type!"); |
| 815 | case MVT::i1: |
| 816 | case MVT::i8: |
| 817 | case MVT::i16: |
| 818 | case MVT::i32: |
| 819 | // Integer loads/stores handle 12-bit offsets. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 820 | needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset); |
Eric Christopher | 212ae93 | 2010-10-21 19:40:30 +0000 | [diff] [blame] | 821 | break; |
| 822 | case MVT::f32: |
| 823 | case MVT::f64: |
| 824 | // Floating point operands handle 8-bit offsets. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 825 | needsLowering = ((Addr.Offset & 0xff) != Addr.Offset); |
Eric Christopher | 212ae93 | 2010-10-21 19:40:30 +0000 | [diff] [blame] | 826 | break; |
| 827 | } |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 828 | |
Eric Christopher | 827656d | 2010-11-20 22:38:27 +0000 | [diff] [blame] | 829 | // If this is a stack pointer and the offset needs to be simplified then |
| 830 | // put the alloca address into a register, set the base type back to |
| 831 | // register and continue. This should almost never happen. |
| 832 | if (needsLowering && Addr.BaseType == Address::FrameIndexBase) { |
| 833 | TargetRegisterClass *RC = isThumb ? ARM::tGPRRegisterClass : |
| 834 | ARM::GPRRegisterClass; |
| 835 | unsigned ResultReg = createResultReg(RC); |
| 836 | unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri; |
| 837 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL, |
| 838 | TII.get(Opc), ResultReg) |
| 839 | .addFrameIndex(Addr.Base.FI) |
| 840 | .addImm(0)); |
| 841 | Addr.Base.Reg = ResultReg; |
| 842 | Addr.BaseType = Address::RegBase; |
| 843 | } |
| 844 | |
Eric Christopher | 212ae93 | 2010-10-21 19:40:30 +0000 | [diff] [blame] | 845 | // Since the offset is too large for the load/store instruction |
Eric Christopher | 318b6ee | 2010-09-02 00:53:56 +0000 | [diff] [blame] | 846 | // get the reg+offset into a register. |
Eric Christopher | 212ae93 | 2010-10-21 19:40:30 +0000 | [diff] [blame] | 847 | if (needsLowering) { |
Eli Friedman | 9ebf57a | 2011-04-29 21:22:56 +0000 | [diff] [blame] | 848 | Addr.Base.Reg = FastEmit_ri_(MVT::i32, ISD::ADD, Addr.Base.Reg, |
| 849 | /*Op0IsKill*/false, Addr.Offset, MVT::i32); |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 850 | Addr.Offset = 0; |
Eric Christopher | 318b6ee | 2010-09-02 00:53:56 +0000 | [diff] [blame] | 851 | } |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 852 | } |
| 853 | |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 854 | void ARMFastISel::AddLoadStoreOperands(EVT VT, Address &Addr, |
| 855 | const MachineInstrBuilder &MIB) { |
| 856 | // addrmode5 output depends on the selection dag addressing dividing the |
| 857 | // offset by 4 that it then later multiplies. Do this here as well. |
| 858 | if (VT.getSimpleVT().SimpleTy == MVT::f32 || |
| 859 | VT.getSimpleVT().SimpleTy == MVT::f64) |
| 860 | Addr.Offset /= 4; |
Eric Christopher | 299bbb2 | 2011-04-29 00:03:10 +0000 | [diff] [blame] | 861 | |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 862 | // Frame base works a bit differently. Handle it separately. |
| 863 | if (Addr.BaseType == Address::FrameIndexBase) { |
| 864 | int FI = Addr.Base.FI; |
| 865 | int Offset = Addr.Offset; |
| 866 | MachineMemOperand *MMO = |
| 867 | FuncInfo.MF->getMachineMemOperand( |
| 868 | MachinePointerInfo::getFixedStack(FI, Offset), |
| 869 | MachineMemOperand::MOLoad, |
| 870 | MFI.getObjectSize(FI), |
| 871 | MFI.getObjectAlignment(FI)); |
| 872 | // Now add the rest of the operands. |
| 873 | MIB.addFrameIndex(FI); |
| 874 | |
| 875 | // ARM halfword load/stores need an additional operand. |
| 876 | if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0); |
| 877 | |
| 878 | MIB.addImm(Addr.Offset); |
| 879 | MIB.addMemOperand(MMO); |
| 880 | } else { |
| 881 | // Now add the rest of the operands. |
| 882 | MIB.addReg(Addr.Base.Reg); |
Eric Christopher | 299bbb2 | 2011-04-29 00:03:10 +0000 | [diff] [blame] | 883 | |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 884 | // ARM halfword load/stores need an additional operand. |
| 885 | if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0); |
| 886 | |
| 887 | MIB.addImm(Addr.Offset); |
| 888 | } |
| 889 | AddOptionalDefs(MIB); |
| 890 | } |
| 891 | |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 892 | bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr) { |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 893 | |
Eric Christopher | b1cc848 | 2010-08-25 07:23:49 +0000 | [diff] [blame] | 894 | assert(VT.isSimple() && "Non-simple types are invalid here!"); |
Eric Christopher | dc90804 | 2010-08-31 01:28:42 +0000 | [diff] [blame] | 895 | unsigned Opc; |
Eric Christopher | ee56ea6 | 2010-10-07 05:50:44 +0000 | [diff] [blame] | 896 | TargetRegisterClass *RC; |
Eric Christopher | b1cc848 | 2010-08-25 07:23:49 +0000 | [diff] [blame] | 897 | switch (VT.getSimpleVT().SimpleTy) { |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 898 | // This is mostly going to be Neon/vector support. |
| 899 | default: return false; |
Eric Christopher | 4e68c7c | 2010-09-01 18:01:32 +0000 | [diff] [blame] | 900 | case MVT::i16: |
Eric Christopher | 45c6071 | 2010-10-17 01:40:27 +0000 | [diff] [blame] | 901 | Opc = isThumb ? ARM::t2LDRHi12 : ARM::LDRH; |
Eric Christopher | 7a56f33 | 2010-10-08 01:13:17 +0000 | [diff] [blame] | 902 | RC = ARM::GPRRegisterClass; |
Eric Christopher | 4e68c7c | 2010-09-01 18:01:32 +0000 | [diff] [blame] | 903 | break; |
| 904 | case MVT::i8: |
Jim Grosbach | c1d3021 | 2010-10-27 00:19:44 +0000 | [diff] [blame] | 905 | Opc = isThumb ? ARM::t2LDRBi12 : ARM::LDRBi12; |
Eric Christopher | 7a56f33 | 2010-10-08 01:13:17 +0000 | [diff] [blame] | 906 | RC = ARM::GPRRegisterClass; |
Eric Christopher | 4e68c7c | 2010-09-01 18:01:32 +0000 | [diff] [blame] | 907 | break; |
Eric Christopher | dc90804 | 2010-08-31 01:28:42 +0000 | [diff] [blame] | 908 | case MVT::i32: |
Jim Grosbach | 3e55612 | 2010-10-26 22:37:02 +0000 | [diff] [blame] | 909 | Opc = isThumb ? ARM::t2LDRi12 : ARM::LDRi12; |
Eric Christopher | 7a56f33 | 2010-10-08 01:13:17 +0000 | [diff] [blame] | 910 | RC = ARM::GPRRegisterClass; |
Eric Christopher | dc90804 | 2010-08-31 01:28:42 +0000 | [diff] [blame] | 911 | break; |
Eric Christopher | 6dab137 | 2010-09-18 01:59:37 +0000 | [diff] [blame] | 912 | case MVT::f32: |
| 913 | Opc = ARM::VLDRS; |
Eric Christopher | ee56ea6 | 2010-10-07 05:50:44 +0000 | [diff] [blame] | 914 | RC = TLI.getRegClassFor(VT); |
Eric Christopher | 6dab137 | 2010-09-18 01:59:37 +0000 | [diff] [blame] | 915 | break; |
| 916 | case MVT::f64: |
| 917 | Opc = ARM::VLDRD; |
Eric Christopher | ee56ea6 | 2010-10-07 05:50:44 +0000 | [diff] [blame] | 918 | RC = TLI.getRegClassFor(VT); |
Eric Christopher | 6dab137 | 2010-09-18 01:59:37 +0000 | [diff] [blame] | 919 | break; |
Eric Christopher | b1cc848 | 2010-08-25 07:23:49 +0000 | [diff] [blame] | 920 | } |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 921 | // Simplify this down to something we can handle. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 922 | ARMSimplifyAddress(Addr, VT); |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 923 | |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 924 | // Create the base instruction, then add the operands. |
| 925 | ResultReg = createResultReg(RC); |
| 926 | MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 927 | TII.get(Opc), ResultReg); |
| 928 | AddLoadStoreOperands(VT, Addr, MIB); |
Eric Christopher | dc90804 | 2010-08-31 01:28:42 +0000 | [diff] [blame] | 929 | return true; |
Eric Christopher | b1cc848 | 2010-08-25 07:23:49 +0000 | [diff] [blame] | 930 | } |
| 931 | |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 932 | bool ARMFastISel::SelectLoad(const Instruction *I) { |
Eric Christopher | db12b2b | 2010-09-10 00:34:35 +0000 | [diff] [blame] | 933 | // Verify we have a legal type before going any further. |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 934 | MVT VT; |
Eric Christopher | db12b2b | 2010-09-10 00:34:35 +0000 | [diff] [blame] | 935 | if (!isLoadTypeLegal(I->getType(), VT)) |
| 936 | return false; |
| 937 | |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 938 | // See if we can handle this address. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 939 | Address Addr; |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 940 | if (!ARMComputeAddress(I->getOperand(0), Addr)) return false; |
Eric Christopher | db12b2b | 2010-09-10 00:34:35 +0000 | [diff] [blame] | 941 | |
| 942 | unsigned ResultReg; |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 943 | if (!ARMEmitLoad(VT, ResultReg, Addr)) return false; |
Eric Christopher | db12b2b | 2010-09-10 00:34:35 +0000 | [diff] [blame] | 944 | UpdateValueMap(I, ResultReg); |
| 945 | return true; |
| 946 | } |
| 947 | |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 948 | bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr) { |
Eric Christopher | 318b6ee | 2010-09-02 00:53:56 +0000 | [diff] [blame] | 949 | unsigned StrOpc; |
| 950 | switch (VT.getSimpleVT().SimpleTy) { |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 951 | // This is mostly going to be Neon/vector support. |
Eric Christopher | 318b6ee | 2010-09-02 00:53:56 +0000 | [diff] [blame] | 952 | default: return false; |
Eric Christopher | 4c91412 | 2010-11-02 23:59:09 +0000 | [diff] [blame] | 953 | case MVT::i1: { |
| 954 | unsigned Res = createResultReg(isThumb ? ARM::tGPRRegisterClass : |
| 955 | ARM::GPRRegisterClass); |
| 956 | unsigned Opc = isThumb ? ARM::t2ANDri : ARM::ANDri; |
| 957 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 958 | TII.get(Opc), Res) |
| 959 | .addReg(SrcReg).addImm(1)); |
| 960 | SrcReg = Res; |
| 961 | } // Fallthrough here. |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 962 | case MVT::i8: |
Jim Grosbach | 7e3383c | 2010-10-27 23:12:14 +0000 | [diff] [blame] | 963 | StrOpc = isThumb ? ARM::t2STRBi12 : ARM::STRBi12; |
Eric Christopher | 1541877 | 2010-10-12 05:39:06 +0000 | [diff] [blame] | 964 | break; |
| 965 | case MVT::i16: |
Eric Christopher | 45c6071 | 2010-10-17 01:40:27 +0000 | [diff] [blame] | 966 | StrOpc = isThumb ? ARM::t2STRHi12 : ARM::STRH; |
Eric Christopher | 1541877 | 2010-10-12 05:39:06 +0000 | [diff] [blame] | 967 | break; |
Eric Christopher | 47650ec | 2010-10-16 01:10:35 +0000 | [diff] [blame] | 968 | case MVT::i32: |
Jim Grosbach | 7e3383c | 2010-10-27 23:12:14 +0000 | [diff] [blame] | 969 | StrOpc = isThumb ? ARM::t2STRi12 : ARM::STRi12; |
Eric Christopher | 47650ec | 2010-10-16 01:10:35 +0000 | [diff] [blame] | 970 | break; |
Eric Christopher | 56d2b72 | 2010-09-02 23:43:26 +0000 | [diff] [blame] | 971 | case MVT::f32: |
| 972 | if (!Subtarget->hasVFP2()) return false; |
| 973 | StrOpc = ARM::VSTRS; |
| 974 | break; |
| 975 | case MVT::f64: |
| 976 | if (!Subtarget->hasVFP2()) return false; |
| 977 | StrOpc = ARM::VSTRD; |
| 978 | break; |
Eric Christopher | 318b6ee | 2010-09-02 00:53:56 +0000 | [diff] [blame] | 979 | } |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 980 | // Simplify this down to something we can handle. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 981 | ARMSimplifyAddress(Addr, VT); |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 982 | |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 983 | // Create the base instruction, then add the operands. |
| 984 | MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 985 | TII.get(StrOpc)) |
| 986 | .addReg(SrcReg, getKillRegState(true)); |
| 987 | AddLoadStoreOperands(VT, Addr, MIB); |
Eric Christopher | 318b6ee | 2010-09-02 00:53:56 +0000 | [diff] [blame] | 988 | return true; |
| 989 | } |
| 990 | |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 991 | bool ARMFastISel::SelectStore(const Instruction *I) { |
Eric Christopher | 318b6ee | 2010-09-02 00:53:56 +0000 | [diff] [blame] | 992 | Value *Op0 = I->getOperand(0); |
| 993 | unsigned SrcReg = 0; |
| 994 | |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 995 | // Verify we have a legal type before going any further. |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 996 | MVT VT; |
Eric Christopher | 318b6ee | 2010-09-02 00:53:56 +0000 | [diff] [blame] | 997 | if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT)) |
Eric Christopher | 543cf05 | 2010-09-01 22:16:27 +0000 | [diff] [blame] | 998 | return false; |
Eric Christopher | 318b6ee | 2010-09-02 00:53:56 +0000 | [diff] [blame] | 999 | |
Eric Christopher | 1b61ef4 | 2010-09-02 01:48:11 +0000 | [diff] [blame] | 1000 | // Get the value to be stored into a register. |
| 1001 | SrcReg = getRegForValue(Op0); |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 1002 | if (SrcReg == 0) return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1003 | |
Eric Christopher | 564857f | 2010-12-01 01:40:24 +0000 | [diff] [blame] | 1004 | // See if we can handle this address. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 1005 | Address Addr; |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 1006 | if (!ARMComputeAddress(I->getOperand(1), Addr)) |
Eric Christopher | 318b6ee | 2010-09-02 00:53:56 +0000 | [diff] [blame] | 1007 | return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1008 | |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 1009 | if (!ARMEmitStore(VT, SrcReg, Addr)) return false; |
Eric Christopher | a5b1e68 | 2010-09-17 22:28:18 +0000 | [diff] [blame] | 1010 | return true; |
| 1011 | } |
| 1012 | |
| 1013 | static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) { |
| 1014 | switch (Pred) { |
| 1015 | // Needs two compares... |
| 1016 | case CmpInst::FCMP_ONE: |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1017 | case CmpInst::FCMP_UEQ: |
Eric Christopher | a5b1e68 | 2010-09-17 22:28:18 +0000 | [diff] [blame] | 1018 | default: |
Eric Christopher | 4053e63 | 2010-11-02 01:24:49 +0000 | [diff] [blame] | 1019 | // AL is our "false" for now. The other two need more compares. |
Eric Christopher | a5b1e68 | 2010-09-17 22:28:18 +0000 | [diff] [blame] | 1020 | return ARMCC::AL; |
| 1021 | case CmpInst::ICMP_EQ: |
| 1022 | case CmpInst::FCMP_OEQ: |
| 1023 | return ARMCC::EQ; |
| 1024 | case CmpInst::ICMP_SGT: |
| 1025 | case CmpInst::FCMP_OGT: |
| 1026 | return ARMCC::GT; |
| 1027 | case CmpInst::ICMP_SGE: |
| 1028 | case CmpInst::FCMP_OGE: |
| 1029 | return ARMCC::GE; |
| 1030 | case CmpInst::ICMP_UGT: |
| 1031 | case CmpInst::FCMP_UGT: |
| 1032 | return ARMCC::HI; |
| 1033 | case CmpInst::FCMP_OLT: |
| 1034 | return ARMCC::MI; |
| 1035 | case CmpInst::ICMP_ULE: |
| 1036 | case CmpInst::FCMP_OLE: |
| 1037 | return ARMCC::LS; |
| 1038 | case CmpInst::FCMP_ORD: |
| 1039 | return ARMCC::VC; |
| 1040 | case CmpInst::FCMP_UNO: |
| 1041 | return ARMCC::VS; |
| 1042 | case CmpInst::FCMP_UGE: |
| 1043 | return ARMCC::PL; |
| 1044 | case CmpInst::ICMP_SLT: |
| 1045 | case CmpInst::FCMP_ULT: |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1046 | return ARMCC::LT; |
Eric Christopher | a5b1e68 | 2010-09-17 22:28:18 +0000 | [diff] [blame] | 1047 | case CmpInst::ICMP_SLE: |
| 1048 | case CmpInst::FCMP_ULE: |
| 1049 | return ARMCC::LE; |
| 1050 | case CmpInst::FCMP_UNE: |
| 1051 | case CmpInst::ICMP_NE: |
| 1052 | return ARMCC::NE; |
| 1053 | case CmpInst::ICMP_UGE: |
| 1054 | return ARMCC::HS; |
| 1055 | case CmpInst::ICMP_ULT: |
| 1056 | return ARMCC::LO; |
| 1057 | } |
Eric Christopher | 543cf05 | 2010-09-01 22:16:27 +0000 | [diff] [blame] | 1058 | } |
| 1059 | |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 1060 | bool ARMFastISel::SelectBranch(const Instruction *I) { |
Eric Christopher | e573410 | 2010-09-03 00:35:47 +0000 | [diff] [blame] | 1061 | const BranchInst *BI = cast<BranchInst>(I); |
| 1062 | MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)]; |
| 1063 | MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)]; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1064 | |
Eric Christopher | e573410 | 2010-09-03 00:35:47 +0000 | [diff] [blame] | 1065 | // Simple branch support. |
Jim Grosbach | 16cb376 | 2010-11-09 19:22:26 +0000 | [diff] [blame] | 1066 | |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1067 | // If we can, avoid recomputing the compare - redoing it could lead to wonky |
| 1068 | // behavior. |
| 1069 | // TODO: Factor this out. |
| 1070 | if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) { |
Eric Christopher | 632ae89 | 2011-04-29 21:56:31 +0000 | [diff] [blame] | 1071 | MVT SourceVT; |
| 1072 | const Type *Ty = CI->getOperand(0)->getType(); |
| 1073 | if (CI->hasOneUse() && (CI->getParent() == I->getParent()) |
| 1074 | && isTypeLegal(Ty, SourceVT)) { |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1075 | bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy()); |
| 1076 | if (isFloat && !Subtarget->hasVFP2()) |
| 1077 | return false; |
| 1078 | |
| 1079 | unsigned CmpOpc; |
Eric Christopher | 632ae89 | 2011-04-29 21:56:31 +0000 | [diff] [blame] | 1080 | switch (SourceVT.SimpleTy) { |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1081 | default: return false; |
| 1082 | // TODO: Verify compares. |
| 1083 | case MVT::f32: |
| 1084 | CmpOpc = ARM::VCMPES; |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1085 | break; |
| 1086 | case MVT::f64: |
| 1087 | CmpOpc = ARM::VCMPED; |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1088 | break; |
| 1089 | case MVT::i32: |
| 1090 | CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr; |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1091 | break; |
| 1092 | } |
| 1093 | |
| 1094 | // Get the compare predicate. |
Eric Christopher | 632ae89 | 2011-04-29 21:56:31 +0000 | [diff] [blame] | 1095 | // Try to take advantage of fallthrough opportunities. |
| 1096 | CmpInst::Predicate Predicate = CI->getPredicate(); |
| 1097 | if (FuncInfo.MBB->isLayoutSuccessor(TBB)) { |
| 1098 | std::swap(TBB, FBB); |
| 1099 | Predicate = CmpInst::getInversePredicate(Predicate); |
| 1100 | } |
| 1101 | |
| 1102 | ARMCC::CondCodes ARMPred = getComparePred(Predicate); |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1103 | |
| 1104 | // We may not handle every CC for now. |
| 1105 | if (ARMPred == ARMCC::AL) return false; |
| 1106 | |
| 1107 | unsigned Arg1 = getRegForValue(CI->getOperand(0)); |
| 1108 | if (Arg1 == 0) return false; |
| 1109 | |
| 1110 | unsigned Arg2 = getRegForValue(CI->getOperand(1)); |
| 1111 | if (Arg2 == 0) return false; |
| 1112 | |
| 1113 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1114 | TII.get(CmpOpc)) |
| 1115 | .addReg(Arg1).addReg(Arg2)); |
Jim Grosbach | 16cb376 | 2010-11-09 19:22:26 +0000 | [diff] [blame] | 1116 | |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1117 | // For floating point we need to move the result to a comparison register |
| 1118 | // that we can then use for branches. |
| 1119 | if (isFloat) |
| 1120 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1121 | TII.get(ARM::FMSTAT))); |
Jim Grosbach | 16cb376 | 2010-11-09 19:22:26 +0000 | [diff] [blame] | 1122 | |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1123 | unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc; |
| 1124 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc)) |
| 1125 | .addMBB(TBB).addImm(ARMPred).addReg(ARM::CPSR); |
| 1126 | FastEmitBranch(FBB, DL); |
| 1127 | FuncInfo.MBB->addSuccessor(TBB); |
| 1128 | return true; |
| 1129 | } |
Eric Christopher | bcf26ae | 2011-04-29 20:02:39 +0000 | [diff] [blame] | 1130 | } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) { |
| 1131 | MVT SourceVT; |
| 1132 | if (TI->hasOneUse() && TI->getParent() == I->getParent() && |
Eli Friedman | 76927d73 | 2011-05-25 23:49:02 +0000 | [diff] [blame] | 1133 | (isLoadTypeLegal(TI->getOperand(0)->getType(), SourceVT))) { |
Eric Christopher | bcf26ae | 2011-04-29 20:02:39 +0000 | [diff] [blame] | 1134 | unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri; |
| 1135 | unsigned OpReg = getRegForValue(TI->getOperand(0)); |
| 1136 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1137 | TII.get(TstOpc)) |
| 1138 | .addReg(OpReg).addImm(1)); |
| 1139 | |
| 1140 | unsigned CCMode = ARMCC::NE; |
| 1141 | if (FuncInfo.MBB->isLayoutSuccessor(TBB)) { |
| 1142 | std::swap(TBB, FBB); |
| 1143 | CCMode = ARMCC::EQ; |
| 1144 | } |
| 1145 | |
| 1146 | unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc; |
| 1147 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc)) |
| 1148 | .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR); |
| 1149 | |
| 1150 | FastEmitBranch(FBB, DL); |
| 1151 | FuncInfo.MBB->addSuccessor(TBB); |
| 1152 | return true; |
| 1153 | } |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1154 | } |
Jim Grosbach | 16cb376 | 2010-11-09 19:22:26 +0000 | [diff] [blame] | 1155 | |
Eric Christopher | 0e6233b | 2010-10-29 21:08:19 +0000 | [diff] [blame] | 1156 | unsigned CmpReg = getRegForValue(BI->getCondition()); |
| 1157 | if (CmpReg == 0) return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1158 | |
Stuart Hastings | c5eecbc | 2011-04-16 03:31:26 +0000 | [diff] [blame] | 1159 | // We've been divorced from our compare! Our block was split, and |
| 1160 | // now our compare lives in a predecessor block. We musn't |
| 1161 | // re-compare here, as the children of the compare aren't guaranteed |
| 1162 | // live across the block boundary (we *could* check for this). |
| 1163 | // Regardless, the compare has been done in the predecessor block, |
| 1164 | // and it left a value for us in a virtual register. Ergo, we test |
| 1165 | // the one-bit value left in the virtual register. |
| 1166 | unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri; |
| 1167 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TstOpc)) |
| 1168 | .addReg(CmpReg).addImm(1)); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1169 | |
Eric Christopher | 7a20a37 | 2011-04-28 16:52:09 +0000 | [diff] [blame] | 1170 | unsigned CCMode = ARMCC::NE; |
| 1171 | if (FuncInfo.MBB->isLayoutSuccessor(TBB)) { |
| 1172 | std::swap(TBB, FBB); |
| 1173 | CCMode = ARMCC::EQ; |
| 1174 | } |
| 1175 | |
Eric Christopher | e573410 | 2010-09-03 00:35:47 +0000 | [diff] [blame] | 1176 | unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc; |
Eric Christopher | e573410 | 2010-09-03 00:35:47 +0000 | [diff] [blame] | 1177 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc)) |
Eric Christopher | 7a20a37 | 2011-04-28 16:52:09 +0000 | [diff] [blame] | 1178 | .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR); |
Eric Christopher | e573410 | 2010-09-03 00:35:47 +0000 | [diff] [blame] | 1179 | FastEmitBranch(FBB, DL); |
| 1180 | FuncInfo.MBB->addSuccessor(TBB); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1181 | return true; |
Eric Christopher | e573410 | 2010-09-03 00:35:47 +0000 | [diff] [blame] | 1182 | } |
| 1183 | |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 1184 | bool ARMFastISel::SelectCmp(const Instruction *I) { |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1185 | const CmpInst *CI = cast<CmpInst>(I); |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1186 | |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1187 | MVT VT; |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1188 | const Type *Ty = CI->getOperand(0)->getType(); |
| 1189 | if (!isTypeLegal(Ty, VT)) |
| 1190 | return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1191 | |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1192 | bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy()); |
| 1193 | if (isFloat && !Subtarget->hasVFP2()) |
| 1194 | return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1195 | |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1196 | unsigned CmpOpc; |
Eric Christopher | 229207a | 2010-09-29 01:14:47 +0000 | [diff] [blame] | 1197 | unsigned CondReg; |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1198 | switch (VT.SimpleTy) { |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1199 | default: return false; |
| 1200 | // TODO: Verify compares. |
| 1201 | case MVT::f32: |
| 1202 | CmpOpc = ARM::VCMPES; |
Eric Christopher | 229207a | 2010-09-29 01:14:47 +0000 | [diff] [blame] | 1203 | CondReg = ARM::FPSCR; |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1204 | break; |
| 1205 | case MVT::f64: |
| 1206 | CmpOpc = ARM::VCMPED; |
Eric Christopher | 229207a | 2010-09-29 01:14:47 +0000 | [diff] [blame] | 1207 | CondReg = ARM::FPSCR; |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1208 | break; |
| 1209 | case MVT::i32: |
| 1210 | CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr; |
Eric Christopher | 229207a | 2010-09-29 01:14:47 +0000 | [diff] [blame] | 1211 | CondReg = ARM::CPSR; |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1212 | break; |
| 1213 | } |
| 1214 | |
Eric Christopher | 229207a | 2010-09-29 01:14:47 +0000 | [diff] [blame] | 1215 | // Get the compare predicate. |
| 1216 | ARMCC::CondCodes ARMPred = getComparePred(CI->getPredicate()); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1217 | |
Eric Christopher | 229207a | 2010-09-29 01:14:47 +0000 | [diff] [blame] | 1218 | // We may not handle every CC for now. |
| 1219 | if (ARMPred == ARMCC::AL) return false; |
| 1220 | |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1221 | unsigned Arg1 = getRegForValue(CI->getOperand(0)); |
| 1222 | if (Arg1 == 0) return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1223 | |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1224 | unsigned Arg2 = getRegForValue(CI->getOperand(1)); |
| 1225 | if (Arg2 == 0) return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1226 | |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1227 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc)) |
| 1228 | .addReg(Arg1).addReg(Arg2)); |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1229 | |
Eric Christopher | db12b2b | 2010-09-10 00:34:35 +0000 | [diff] [blame] | 1230 | // For floating point we need to move the result to a comparison register |
| 1231 | // that we can then use for branches. |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1232 | if (isFloat) |
| 1233 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1234 | TII.get(ARM::FMSTAT))); |
Eric Christopher | ce07b54 | 2010-09-09 20:26:31 +0000 | [diff] [blame] | 1235 | |
Eric Christopher | 229207a | 2010-09-29 01:14:47 +0000 | [diff] [blame] | 1236 | // Now set a register based on the comparison. Explicitly set the predicates |
| 1237 | // here. |
Eric Christopher | 338c253 | 2010-10-07 05:31:49 +0000 | [diff] [blame] | 1238 | unsigned MovCCOpc = isThumb ? ARM::t2MOVCCi : ARM::MOVCCi; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1239 | TargetRegisterClass *RC = isThumb ? ARM::rGPRRegisterClass |
Eric Christopher | 5d18d92 | 2010-10-07 05:39:19 +0000 | [diff] [blame] | 1240 | : ARM::GPRRegisterClass; |
| 1241 | unsigned DestReg = createResultReg(RC); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1242 | Constant *Zero |
Eric Christopher | 8cf6c60 | 2010-09-29 22:24:45 +0000 | [diff] [blame] | 1243 | = ConstantInt::get(Type::getInt32Ty(*Context), 0); |
Eric Christopher | 229207a | 2010-09-29 01:14:47 +0000 | [diff] [blame] | 1244 | unsigned ZeroReg = TargetMaterializeConstant(Zero); |
| 1245 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), DestReg) |
| 1246 | .addReg(ZeroReg).addImm(1) |
| 1247 | .addImm(ARMPred).addReg(CondReg); |
| 1248 | |
Eric Christopher | a5b1e68 | 2010-09-17 22:28:18 +0000 | [diff] [blame] | 1249 | UpdateValueMap(I, DestReg); |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 1250 | return true; |
| 1251 | } |
| 1252 | |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 1253 | bool ARMFastISel::SelectFPExt(const Instruction *I) { |
Eric Christopher | 4620360 | 2010-09-09 00:26:48 +0000 | [diff] [blame] | 1254 | // Make sure we have VFP and that we're extending float to double. |
| 1255 | if (!Subtarget->hasVFP2()) return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1256 | |
Eric Christopher | 4620360 | 2010-09-09 00:26:48 +0000 | [diff] [blame] | 1257 | Value *V = I->getOperand(0); |
| 1258 | if (!I->getType()->isDoubleTy() || |
| 1259 | !V->getType()->isFloatTy()) return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1260 | |
Eric Christopher | 4620360 | 2010-09-09 00:26:48 +0000 | [diff] [blame] | 1261 | unsigned Op = getRegForValue(V); |
| 1262 | if (Op == 0) return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1263 | |
Eric Christopher | 4620360 | 2010-09-09 00:26:48 +0000 | [diff] [blame] | 1264 | unsigned Result = createResultReg(ARM::DPRRegisterClass); |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1265 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | ef2fdd2 | 2010-09-09 20:36:19 +0000 | [diff] [blame] | 1266 | TII.get(ARM::VCVTDS), Result) |
Eric Christopher | ce07b54 | 2010-09-09 20:26:31 +0000 | [diff] [blame] | 1267 | .addReg(Op)); |
| 1268 | UpdateValueMap(I, Result); |
| 1269 | return true; |
| 1270 | } |
| 1271 | |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 1272 | bool ARMFastISel::SelectFPTrunc(const Instruction *I) { |
Eric Christopher | ce07b54 | 2010-09-09 20:26:31 +0000 | [diff] [blame] | 1273 | // Make sure we have VFP and that we're truncating double to float. |
| 1274 | if (!Subtarget->hasVFP2()) return false; |
| 1275 | |
| 1276 | Value *V = I->getOperand(0); |
Eric Christopher | 022b7fb | 2010-10-05 23:13:24 +0000 | [diff] [blame] | 1277 | if (!(I->getType()->isFloatTy() && |
| 1278 | V->getType()->isDoubleTy())) return false; |
Eric Christopher | ce07b54 | 2010-09-09 20:26:31 +0000 | [diff] [blame] | 1279 | |
| 1280 | unsigned Op = getRegForValue(V); |
| 1281 | if (Op == 0) return false; |
| 1282 | |
| 1283 | unsigned Result = createResultReg(ARM::SPRRegisterClass); |
Eric Christopher | ce07b54 | 2010-09-09 20:26:31 +0000 | [diff] [blame] | 1284 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
Eric Christopher | ef2fdd2 | 2010-09-09 20:36:19 +0000 | [diff] [blame] | 1285 | TII.get(ARM::VCVTSD), Result) |
Eric Christopher | 4620360 | 2010-09-09 00:26:48 +0000 | [diff] [blame] | 1286 | .addReg(Op)); |
| 1287 | UpdateValueMap(I, Result); |
| 1288 | return true; |
| 1289 | } |
| 1290 | |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 1291 | bool ARMFastISel::SelectSIToFP(const Instruction *I) { |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1292 | // Make sure we have VFP. |
| 1293 | if (!Subtarget->hasVFP2()) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1294 | |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1295 | MVT DstVT; |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1296 | const Type *Ty = I->getType(); |
Eric Christopher | 9ee4ce2 | 2010-09-09 21:44:45 +0000 | [diff] [blame] | 1297 | if (!isTypeLegal(Ty, DstVT)) |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1298 | return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1299 | |
Eli Friedman | 783c664 | 2011-05-25 19:09:45 +0000 | [diff] [blame] | 1300 | // FIXME: Handle sign-extension where necessary. |
| 1301 | if (!I->getOperand(0)->getType()->isIntegerTy(32)) |
| 1302 | return false; |
| 1303 | |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1304 | unsigned Op = getRegForValue(I->getOperand(0)); |
| 1305 | if (Op == 0) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1306 | |
Eric Christopher | db12b2b | 2010-09-10 00:34:35 +0000 | [diff] [blame] | 1307 | // The conversion routine works on fp-reg to fp-reg and the operand above |
| 1308 | // was an integer, move it to the fp registers if possible. |
Eric Christopher | 022b7fb | 2010-10-05 23:13:24 +0000 | [diff] [blame] | 1309 | unsigned FP = ARMMoveToFPReg(MVT::f32, Op); |
Eric Christopher | 9ee4ce2 | 2010-09-09 21:44:45 +0000 | [diff] [blame] | 1310 | if (FP == 0) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1311 | |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1312 | unsigned Opc; |
| 1313 | if (Ty->isFloatTy()) Opc = ARM::VSITOS; |
| 1314 | else if (Ty->isDoubleTy()) Opc = ARM::VSITOD; |
| 1315 | else return 0; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1316 | |
Eric Christopher | 9ee4ce2 | 2010-09-09 21:44:45 +0000 | [diff] [blame] | 1317 | unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT)); |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1318 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), |
| 1319 | ResultReg) |
Eric Christopher | 9ee4ce2 | 2010-09-09 21:44:45 +0000 | [diff] [blame] | 1320 | .addReg(FP)); |
Eric Christopher | ce07b54 | 2010-09-09 20:26:31 +0000 | [diff] [blame] | 1321 | UpdateValueMap(I, ResultReg); |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1322 | return true; |
| 1323 | } |
| 1324 | |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 1325 | bool ARMFastISel::SelectFPToSI(const Instruction *I) { |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1326 | // Make sure we have VFP. |
| 1327 | if (!Subtarget->hasVFP2()) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1328 | |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1329 | MVT DstVT; |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1330 | const Type *RetTy = I->getType(); |
Eric Christopher | 920a208 | 2010-09-10 00:35:09 +0000 | [diff] [blame] | 1331 | if (!isTypeLegal(RetTy, DstVT)) |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1332 | return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1333 | |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1334 | unsigned Op = getRegForValue(I->getOperand(0)); |
| 1335 | if (Op == 0) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1336 | |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1337 | unsigned Opc; |
| 1338 | const Type *OpTy = I->getOperand(0)->getType(); |
| 1339 | if (OpTy->isFloatTy()) Opc = ARM::VTOSIZS; |
| 1340 | else if (OpTy->isDoubleTy()) Opc = ARM::VTOSIZD; |
| 1341 | else return 0; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1342 | |
Eric Christopher | 022b7fb | 2010-10-05 23:13:24 +0000 | [diff] [blame] | 1343 | // f64->s32 or f32->s32 both need an intermediate f32 reg. |
| 1344 | unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32)); |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1345 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), |
| 1346 | ResultReg) |
| 1347 | .addReg(Op)); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1348 | |
Eric Christopher | 9ee4ce2 | 2010-09-09 21:44:45 +0000 | [diff] [blame] | 1349 | // This result needs to be in an integer register, but the conversion only |
| 1350 | // takes place in fp-regs. |
Eric Christopher | db12b2b | 2010-09-10 00:34:35 +0000 | [diff] [blame] | 1351 | unsigned IntReg = ARMMoveToIntReg(DstVT, ResultReg); |
Eric Christopher | 9ee4ce2 | 2010-09-09 21:44:45 +0000 | [diff] [blame] | 1352 | if (IntReg == 0) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1353 | |
Eric Christopher | 9ee4ce2 | 2010-09-09 21:44:45 +0000 | [diff] [blame] | 1354 | UpdateValueMap(I, IntReg); |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 1355 | return true; |
| 1356 | } |
| 1357 | |
Eric Christopher | 3bbd396 | 2010-10-11 08:27:59 +0000 | [diff] [blame] | 1358 | bool ARMFastISel::SelectSelect(const Instruction *I) { |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1359 | MVT VT; |
| 1360 | if (!isTypeLegal(I->getType(), VT)) |
Eric Christopher | 3bbd396 | 2010-10-11 08:27:59 +0000 | [diff] [blame] | 1361 | return false; |
| 1362 | |
| 1363 | // Things need to be register sized for register moves. |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1364 | if (VT != MVT::i32) return false; |
Eric Christopher | 3bbd396 | 2010-10-11 08:27:59 +0000 | [diff] [blame] | 1365 | const TargetRegisterClass *RC = TLI.getRegClassFor(VT); |
| 1366 | |
| 1367 | unsigned CondReg = getRegForValue(I->getOperand(0)); |
| 1368 | if (CondReg == 0) return false; |
| 1369 | unsigned Op1Reg = getRegForValue(I->getOperand(1)); |
| 1370 | if (Op1Reg == 0) return false; |
| 1371 | unsigned Op2Reg = getRegForValue(I->getOperand(2)); |
| 1372 | if (Op2Reg == 0) return false; |
| 1373 | |
| 1374 | unsigned CmpOpc = isThumb ? ARM::t2TSTri : ARM::TSTri; |
| 1375 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc)) |
| 1376 | .addReg(CondReg).addImm(1)); |
| 1377 | unsigned ResultReg = createResultReg(RC); |
| 1378 | unsigned MovCCOpc = isThumb ? ARM::t2MOVCCr : ARM::MOVCCr; |
| 1379 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), ResultReg) |
| 1380 | .addReg(Op1Reg).addReg(Op2Reg) |
| 1381 | .addImm(ARMCC::EQ).addReg(ARM::CPSR); |
| 1382 | UpdateValueMap(I, ResultReg); |
| 1383 | return true; |
| 1384 | } |
| 1385 | |
Eric Christopher | 0863785 | 2010-09-30 22:34:19 +0000 | [diff] [blame] | 1386 | bool ARMFastISel::SelectSDiv(const Instruction *I) { |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1387 | MVT VT; |
Eric Christopher | 0863785 | 2010-09-30 22:34:19 +0000 | [diff] [blame] | 1388 | const Type *Ty = I->getType(); |
| 1389 | if (!isTypeLegal(Ty, VT)) |
| 1390 | return false; |
| 1391 | |
| 1392 | // If we have integer div support we should have selected this automagically. |
| 1393 | // In case we have a real miss go ahead and return false and we'll pick |
| 1394 | // it up later. |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1395 | if (Subtarget->hasDivide()) return false; |
| 1396 | |
Eric Christopher | 0863785 | 2010-09-30 22:34:19 +0000 | [diff] [blame] | 1397 | // Otherwise emit a libcall. |
| 1398 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
Eric Christopher | 7bdc4de | 2010-10-11 08:31:54 +0000 | [diff] [blame] | 1399 | if (VT == MVT::i8) |
| 1400 | LC = RTLIB::SDIV_I8; |
| 1401 | else if (VT == MVT::i16) |
Eric Christopher | 0863785 | 2010-09-30 22:34:19 +0000 | [diff] [blame] | 1402 | LC = RTLIB::SDIV_I16; |
| 1403 | else if (VT == MVT::i32) |
| 1404 | LC = RTLIB::SDIV_I32; |
| 1405 | else if (VT == MVT::i64) |
| 1406 | LC = RTLIB::SDIV_I64; |
| 1407 | else if (VT == MVT::i128) |
| 1408 | LC = RTLIB::SDIV_I128; |
| 1409 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!"); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1410 | |
Eric Christopher | 0863785 | 2010-09-30 22:34:19 +0000 | [diff] [blame] | 1411 | return ARMEmitLibcall(I, LC); |
| 1412 | } |
| 1413 | |
Eric Christopher | 6a880d6 | 2010-10-11 08:37:26 +0000 | [diff] [blame] | 1414 | bool ARMFastISel::SelectSRem(const Instruction *I) { |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1415 | MVT VT; |
Eric Christopher | 6a880d6 | 2010-10-11 08:37:26 +0000 | [diff] [blame] | 1416 | const Type *Ty = I->getType(); |
| 1417 | if (!isTypeLegal(Ty, VT)) |
| 1418 | return false; |
| 1419 | |
| 1420 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
| 1421 | if (VT == MVT::i8) |
| 1422 | LC = RTLIB::SREM_I8; |
| 1423 | else if (VT == MVT::i16) |
| 1424 | LC = RTLIB::SREM_I16; |
| 1425 | else if (VT == MVT::i32) |
| 1426 | LC = RTLIB::SREM_I32; |
| 1427 | else if (VT == MVT::i64) |
| 1428 | LC = RTLIB::SREM_I64; |
| 1429 | else if (VT == MVT::i128) |
| 1430 | LC = RTLIB::SREM_I128; |
Eric Christopher | a1640d9 | 2010-10-11 08:40:05 +0000 | [diff] [blame] | 1431 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!"); |
Eric Christopher | 2896df8 | 2010-10-15 18:02:07 +0000 | [diff] [blame] | 1432 | |
Eric Christopher | 6a880d6 | 2010-10-11 08:37:26 +0000 | [diff] [blame] | 1433 | return ARMEmitLibcall(I, LC); |
| 1434 | } |
| 1435 | |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 1436 | bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) { |
Eric Christopher | bd6bf08 | 2010-09-09 01:02:03 +0000 | [diff] [blame] | 1437 | EVT VT = TLI.getValueType(I->getType(), true); |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1438 | |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 1439 | // We can get here in the case when we want to use NEON for our fp |
| 1440 | // operations, but can't figure out how to. Just use the vfp instructions |
| 1441 | // if we have them. |
| 1442 | // FIXME: It'd be nice to use NEON instructions. |
Eric Christopher | bd6bf08 | 2010-09-09 01:02:03 +0000 | [diff] [blame] | 1443 | const Type *Ty = I->getType(); |
| 1444 | bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy()); |
| 1445 | if (isFloat && !Subtarget->hasVFP2()) |
| 1446 | return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1447 | |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 1448 | unsigned Op1 = getRegForValue(I->getOperand(0)); |
| 1449 | if (Op1 == 0) return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1450 | |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 1451 | unsigned Op2 = getRegForValue(I->getOperand(1)); |
| 1452 | if (Op2 == 0) return false; |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 1453 | |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 1454 | unsigned Opc; |
Duncan Sands | cdfad36 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 1455 | bool is64bit = VT == MVT::f64 || VT == MVT::i64; |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 1456 | switch (ISDOpcode) { |
| 1457 | default: return false; |
| 1458 | case ISD::FADD: |
Eric Christopher | bd6bf08 | 2010-09-09 01:02:03 +0000 | [diff] [blame] | 1459 | Opc = is64bit ? ARM::VADDD : ARM::VADDS; |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 1460 | break; |
| 1461 | case ISD::FSUB: |
Eric Christopher | bd6bf08 | 2010-09-09 01:02:03 +0000 | [diff] [blame] | 1462 | Opc = is64bit ? ARM::VSUBD : ARM::VSUBS; |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 1463 | break; |
| 1464 | case ISD::FMUL: |
Eric Christopher | bd6bf08 | 2010-09-09 01:02:03 +0000 | [diff] [blame] | 1465 | Opc = is64bit ? ARM::VMULD : ARM::VMULS; |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 1466 | break; |
| 1467 | } |
Eric Christopher | bd6bf08 | 2010-09-09 01:02:03 +0000 | [diff] [blame] | 1468 | unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT)); |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 1469 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1470 | TII.get(Opc), ResultReg) |
| 1471 | .addReg(Op1).addReg(Op2)); |
Eric Christopher | ce07b54 | 2010-09-09 20:26:31 +0000 | [diff] [blame] | 1472 | UpdateValueMap(I, ResultReg); |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 1473 | return true; |
| 1474 | } |
| 1475 | |
Eric Christopher | d10cd7b | 2010-09-10 23:18:12 +0000 | [diff] [blame] | 1476 | // Call Handling Code |
| 1477 | |
Eric Christopher | fa87d66 | 2010-10-18 02:17:53 +0000 | [diff] [blame] | 1478 | bool ARMFastISel::FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, |
| 1479 | EVT SrcVT, unsigned &ResultReg) { |
| 1480 | unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, |
| 1481 | Src, /*TODO: Kill=*/false); |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 1482 | |
Eric Christopher | fa87d66 | 2010-10-18 02:17:53 +0000 | [diff] [blame] | 1483 | if (RR != 0) { |
| 1484 | ResultReg = RR; |
| 1485 | return true; |
| 1486 | } else |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 1487 | return false; |
Eric Christopher | fa87d66 | 2010-10-18 02:17:53 +0000 | [diff] [blame] | 1488 | } |
| 1489 | |
Eric Christopher | d10cd7b | 2010-09-10 23:18:12 +0000 | [diff] [blame] | 1490 | // This is largely taken directly from CCAssignFnForNode - we don't support |
| 1491 | // varargs in FastISel so that part has been removed. |
| 1492 | // TODO: We may not support all of this. |
| 1493 | CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC, bool Return) { |
| 1494 | switch (CC) { |
| 1495 | default: |
| 1496 | llvm_unreachable("Unsupported calling convention"); |
Eric Christopher | d10cd7b | 2010-09-10 23:18:12 +0000 | [diff] [blame] | 1497 | case CallingConv::Fast: |
Evan Cheng | 1f8b40d | 2010-10-22 18:57:05 +0000 | [diff] [blame] | 1498 | // Ignore fastcc. Silence compiler warnings. |
| 1499 | (void)RetFastCC_ARM_APCS; |
| 1500 | (void)FastCC_ARM_APCS; |
| 1501 | // Fallthrough |
| 1502 | case CallingConv::C: |
Eric Christopher | d10cd7b | 2010-09-10 23:18:12 +0000 | [diff] [blame] | 1503 | // Use target triple & subtarget features to do actual dispatch. |
| 1504 | if (Subtarget->isAAPCS_ABI()) { |
| 1505 | if (Subtarget->hasVFP2() && |
| 1506 | FloatABIType == FloatABI::Hard) |
| 1507 | return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP); |
| 1508 | else |
| 1509 | return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS); |
| 1510 | } else |
| 1511 | return (Return ? RetCC_ARM_APCS: CC_ARM_APCS); |
| 1512 | case CallingConv::ARM_AAPCS_VFP: |
| 1513 | return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP); |
| 1514 | case CallingConv::ARM_AAPCS: |
| 1515 | return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS); |
| 1516 | case CallingConv::ARM_APCS: |
| 1517 | return (Return ? RetCC_ARM_APCS: CC_ARM_APCS); |
| 1518 | } |
| 1519 | } |
| 1520 | |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1521 | bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args, |
| 1522 | SmallVectorImpl<unsigned> &ArgRegs, |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1523 | SmallVectorImpl<MVT> &ArgVTs, |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1524 | SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags, |
| 1525 | SmallVectorImpl<unsigned> &RegArgs, |
| 1526 | CallingConv::ID CC, |
| 1527 | unsigned &NumBytes) { |
| 1528 | SmallVector<CCValAssign, 16> ArgLocs; |
| 1529 | CCState CCInfo(CC, false, TM, ArgLocs, *Context); |
| 1530 | CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC, false)); |
| 1531 | |
| 1532 | // Get a count of how many bytes are to be pushed on the stack. |
| 1533 | NumBytes = CCInfo.getNextStackOffset(); |
| 1534 | |
| 1535 | // Issue CALLSEQ_START |
| 1536 | unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode(); |
Eric Christopher | fb0b892 | 2010-10-11 21:20:02 +0000 | [diff] [blame] | 1537 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1538 | TII.get(AdjStackDown)) |
| 1539 | .addImm(NumBytes)); |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1540 | |
| 1541 | // Process the args. |
| 1542 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 1543 | CCValAssign &VA = ArgLocs[i]; |
| 1544 | unsigned Arg = ArgRegs[VA.getValNo()]; |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1545 | MVT ArgVT = ArgVTs[VA.getValNo()]; |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1546 | |
Eric Christopher | 4a2b316 | 2011-01-27 05:44:56 +0000 | [diff] [blame] | 1547 | // We don't handle NEON/vector parameters yet. |
| 1548 | if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64) |
Eric Christopher | a4633f5 | 2010-10-23 09:37:17 +0000 | [diff] [blame] | 1549 | return false; |
| 1550 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1551 | // Handle arg promotion, etc. |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1552 | switch (VA.getLocInfo()) { |
| 1553 | case CCValAssign::Full: break; |
Eric Christopher | fa87d66 | 2010-10-18 02:17:53 +0000 | [diff] [blame] | 1554 | case CCValAssign::SExt: { |
| 1555 | bool Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), |
| 1556 | Arg, ArgVT, Arg); |
Chris Lattner | 54c6d6f | 2011-01-05 18:41:05 +0000 | [diff] [blame] | 1557 | assert(Emitted && "Failed to emit a sext!"); (void)Emitted; |
Eric Christopher | fa87d66 | 2010-10-18 02:17:53 +0000 | [diff] [blame] | 1558 | Emitted = true; |
| 1559 | ArgVT = VA.getLocVT(); |
| 1560 | break; |
| 1561 | } |
| 1562 | case CCValAssign::ZExt: { |
| 1563 | bool Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), |
| 1564 | Arg, ArgVT, Arg); |
Chris Lattner | 54c6d6f | 2011-01-05 18:41:05 +0000 | [diff] [blame] | 1565 | assert(Emitted && "Failed to emit a zext!"); (void)Emitted; |
Eric Christopher | fa87d66 | 2010-10-18 02:17:53 +0000 | [diff] [blame] | 1566 | Emitted = true; |
| 1567 | ArgVT = VA.getLocVT(); |
| 1568 | break; |
| 1569 | } |
| 1570 | case CCValAssign::AExt: { |
Eric Christopher | fa87d66 | 2010-10-18 02:17:53 +0000 | [diff] [blame] | 1571 | bool Emitted = FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), |
| 1572 | Arg, ArgVT, Arg); |
| 1573 | if (!Emitted) |
| 1574 | Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), |
| 1575 | Arg, ArgVT, Arg); |
| 1576 | if (!Emitted) |
| 1577 | Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), |
| 1578 | Arg, ArgVT, Arg); |
| 1579 | |
Chris Lattner | 54c6d6f | 2011-01-05 18:41:05 +0000 | [diff] [blame] | 1580 | assert(Emitted && "Failed to emit a aext!"); (void)Emitted; |
Eric Christopher | fa87d66 | 2010-10-18 02:17:53 +0000 | [diff] [blame] | 1581 | ArgVT = VA.getLocVT(); |
| 1582 | break; |
| 1583 | } |
| 1584 | case CCValAssign::BCvt: { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1585 | unsigned BC = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, Arg, |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1586 | /*TODO: Kill=*/false); |
Eric Christopher | fa87d66 | 2010-10-18 02:17:53 +0000 | [diff] [blame] | 1587 | assert(BC != 0 && "Failed to emit a bitcast!"); |
| 1588 | Arg = BC; |
| 1589 | ArgVT = VA.getLocVT(); |
| 1590 | break; |
| 1591 | } |
| 1592 | default: llvm_unreachable("Unknown arg promotion!"); |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1593 | } |
| 1594 | |
| 1595 | // Now copy/store arg to correct locations. |
Eric Christopher | fb0b892 | 2010-10-11 21:20:02 +0000 | [diff] [blame] | 1596 | if (VA.isRegLoc() && !VA.needsCustom()) { |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1597 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY), |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1598 | VA.getLocReg()) |
| 1599 | .addReg(Arg); |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1600 | RegArgs.push_back(VA.getLocReg()); |
Eric Christopher | 2d8f6fe | 2010-10-21 00:01:47 +0000 | [diff] [blame] | 1601 | } else if (VA.needsCustom()) { |
| 1602 | // TODO: We need custom lowering for vector (v2f64) args. |
| 1603 | if (VA.getLocVT() != MVT::f64) return false; |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 1604 | |
Eric Christopher | 2d8f6fe | 2010-10-21 00:01:47 +0000 | [diff] [blame] | 1605 | CCValAssign &NextVA = ArgLocs[++i]; |
| 1606 | |
| 1607 | // TODO: Only handle register args for now. |
| 1608 | if(!(VA.isRegLoc() && NextVA.isRegLoc())) return false; |
| 1609 | |
| 1610 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1611 | TII.get(ARM::VMOVRRD), VA.getLocReg()) |
| 1612 | .addReg(NextVA.getLocReg(), RegState::Define) |
| 1613 | .addReg(Arg)); |
| 1614 | RegArgs.push_back(VA.getLocReg()); |
| 1615 | RegArgs.push_back(NextVA.getLocReg()); |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1616 | } else { |
Eric Christopher | 5b92480 | 2010-10-21 20:09:54 +0000 | [diff] [blame] | 1617 | assert(VA.isMemLoc()); |
| 1618 | // Need to store on the stack. |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 1619 | Address Addr; |
| 1620 | Addr.BaseType = Address::RegBase; |
| 1621 | Addr.Base.Reg = ARM::SP; |
| 1622 | Addr.Offset = VA.getLocMemOffset(); |
Eric Christopher | 5b92480 | 2010-10-21 20:09:54 +0000 | [diff] [blame] | 1623 | |
Eric Christopher | 0d58122 | 2010-11-19 22:30:02 +0000 | [diff] [blame] | 1624 | if (!ARMEmitStore(ArgVT, Arg, Addr)) return false; |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1625 | } |
| 1626 | } |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1627 | return true; |
| 1628 | } |
| 1629 | |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1630 | bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs, |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1631 | const Instruction *I, CallingConv::ID CC, |
| 1632 | unsigned &NumBytes) { |
| 1633 | // Issue CALLSEQ_END |
| 1634 | unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode(); |
Eric Christopher | fb0b892 | 2010-10-11 21:20:02 +0000 | [diff] [blame] | 1635 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1636 | TII.get(AdjStackUp)) |
| 1637 | .addImm(NumBytes).addImm(0)); |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1638 | |
| 1639 | // Now the return value. |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1640 | if (RetVT != MVT::isVoid) { |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1641 | SmallVector<CCValAssign, 16> RVLocs; |
| 1642 | CCState CCInfo(CC, false, TM, RVLocs, *Context); |
| 1643 | CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true)); |
| 1644 | |
| 1645 | // Copy all of the result registers out of their specified physreg. |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1646 | if (RVLocs.size() == 2 && RetVT == MVT::f64) { |
Eric Christopher | 14df882 | 2010-10-01 00:00:11 +0000 | [diff] [blame] | 1647 | // For this move we copy into two registers and then move into the |
| 1648 | // double fp reg we want. |
Eric Christopher | 14df882 | 2010-10-01 00:00:11 +0000 | [diff] [blame] | 1649 | EVT DestVT = RVLocs[0].getValVT(); |
| 1650 | TargetRegisterClass* DstRC = TLI.getRegClassFor(DestVT); |
| 1651 | unsigned ResultReg = createResultReg(DstRC); |
| 1652 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1653 | TII.get(ARM::VMOVDRR), ResultReg) |
Eric Christopher | 3659ac2 | 2010-10-20 08:02:24 +0000 | [diff] [blame] | 1654 | .addReg(RVLocs[0].getLocReg()) |
| 1655 | .addReg(RVLocs[1].getLocReg())); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1656 | |
Eric Christopher | 3659ac2 | 2010-10-20 08:02:24 +0000 | [diff] [blame] | 1657 | UsedRegs.push_back(RVLocs[0].getLocReg()); |
| 1658 | UsedRegs.push_back(RVLocs[1].getLocReg()); |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 1659 | |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1660 | // Finally update the result. |
Eric Christopher | 14df882 | 2010-10-01 00:00:11 +0000 | [diff] [blame] | 1661 | UpdateValueMap(I, ResultReg); |
| 1662 | } else { |
Jim Grosbach | 9536959 | 2010-10-13 23:34:31 +0000 | [diff] [blame] | 1663 | assert(RVLocs.size() == 1 &&"Can't handle non-double multi-reg retvals!"); |
Eric Christopher | 14df882 | 2010-10-01 00:00:11 +0000 | [diff] [blame] | 1664 | EVT CopyVT = RVLocs[0].getValVT(); |
| 1665 | TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT); |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1666 | |
Eric Christopher | 14df882 | 2010-10-01 00:00:11 +0000 | [diff] [blame] | 1667 | unsigned ResultReg = createResultReg(DstRC); |
| 1668 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY), |
| 1669 | ResultReg).addReg(RVLocs[0].getLocReg()); |
| 1670 | UsedRegs.push_back(RVLocs[0].getLocReg()); |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1671 | |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1672 | // Finally update the result. |
Eric Christopher | 14df882 | 2010-10-01 00:00:11 +0000 | [diff] [blame] | 1673 | UpdateValueMap(I, ResultReg); |
| 1674 | } |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1675 | } |
| 1676 | |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1677 | return true; |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1678 | } |
| 1679 | |
Eric Christopher | 4f512ef | 2010-10-22 01:28:00 +0000 | [diff] [blame] | 1680 | bool ARMFastISel::SelectRet(const Instruction *I) { |
| 1681 | const ReturnInst *Ret = cast<ReturnInst>(I); |
| 1682 | const Function &F = *I->getParent()->getParent(); |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 1683 | |
Eric Christopher | 4f512ef | 2010-10-22 01:28:00 +0000 | [diff] [blame] | 1684 | if (!FuncInfo.CanLowerReturn) |
| 1685 | return false; |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 1686 | |
Eric Christopher | 4f512ef | 2010-10-22 01:28:00 +0000 | [diff] [blame] | 1687 | if (F.isVarArg()) |
| 1688 | return false; |
| 1689 | |
| 1690 | CallingConv::ID CC = F.getCallingConv(); |
| 1691 | if (Ret->getNumOperands() > 0) { |
| 1692 | SmallVector<ISD::OutputArg, 4> Outs; |
| 1693 | GetReturnInfo(F.getReturnType(), F.getAttributes().getRetAttributes(), |
| 1694 | Outs, TLI); |
| 1695 | |
| 1696 | // Analyze operands of the call, assigning locations to each operand. |
| 1697 | SmallVector<CCValAssign, 16> ValLocs; |
| 1698 | CCState CCInfo(CC, F.isVarArg(), TM, ValLocs, I->getContext()); |
| 1699 | CCInfo.AnalyzeReturn(Outs, CCAssignFnForCall(CC, true /* is Ret */)); |
| 1700 | |
| 1701 | const Value *RV = Ret->getOperand(0); |
| 1702 | unsigned Reg = getRegForValue(RV); |
| 1703 | if (Reg == 0) |
| 1704 | return false; |
| 1705 | |
| 1706 | // Only handle a single return value for now. |
| 1707 | if (ValLocs.size() != 1) |
| 1708 | return false; |
| 1709 | |
| 1710 | CCValAssign &VA = ValLocs[0]; |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 1711 | |
Eric Christopher | 4f512ef | 2010-10-22 01:28:00 +0000 | [diff] [blame] | 1712 | // Don't bother handling odd stuff for now. |
| 1713 | if (VA.getLocInfo() != CCValAssign::Full) |
| 1714 | return false; |
| 1715 | // Only handle register returns for now. |
| 1716 | if (!VA.isRegLoc()) |
| 1717 | return false; |
| 1718 | // TODO: For now, don't try to handle cases where getLocInfo() |
| 1719 | // says Full but the types don't match. |
Duncan Sands | 1e96bab | 2010-11-04 10:49:57 +0000 | [diff] [blame] | 1720 | if (TLI.getValueType(RV->getType()) != VA.getValVT()) |
Eric Christopher | 4f512ef | 2010-10-22 01:28:00 +0000 | [diff] [blame] | 1721 | return false; |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 1722 | |
Eric Christopher | 4f512ef | 2010-10-22 01:28:00 +0000 | [diff] [blame] | 1723 | // Make the copy. |
| 1724 | unsigned SrcReg = Reg + VA.getValNo(); |
| 1725 | unsigned DstReg = VA.getLocReg(); |
| 1726 | const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg); |
| 1727 | // Avoid a cross-class copy. This is very unlikely. |
| 1728 | if (!SrcRC->contains(DstReg)) |
| 1729 | return false; |
| 1730 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY), |
| 1731 | DstReg).addReg(SrcReg); |
| 1732 | |
| 1733 | // Mark the register as live out of the function. |
| 1734 | MRI.addLiveOut(VA.getLocReg()); |
| 1735 | } |
Jim Grosbach | 6b15639 | 2010-10-27 21:39:08 +0000 | [diff] [blame] | 1736 | |
Eric Christopher | 4f512ef | 2010-10-22 01:28:00 +0000 | [diff] [blame] | 1737 | unsigned RetOpc = isThumb ? ARM::tBX_RET : ARM::BX_RET; |
| 1738 | AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1739 | TII.get(RetOpc))); |
| 1740 | return true; |
| 1741 | } |
| 1742 | |
Eric Christopher | 872f4a2 | 2011-02-22 01:37:10 +0000 | [diff] [blame] | 1743 | unsigned ARMFastISel::ARMSelectCallOp(const GlobalValue *GV) { |
| 1744 | |
Eric Christopher | 872f4a2 | 2011-02-22 01:37:10 +0000 | [diff] [blame] | 1745 | // Darwin needs the r9 versions of the opcodes. |
| 1746 | bool isDarwin = Subtarget->isTargetDarwin(); |
Eric Christopher | 0435661 | 2011-04-05 00:39:26 +0000 | [diff] [blame] | 1747 | if (isThumb) { |
Eric Christopher | 872f4a2 | 2011-02-22 01:37:10 +0000 | [diff] [blame] | 1748 | return isDarwin ? ARM::tBLr9 : ARM::tBL; |
| 1749 | } else { |
| 1750 | return isDarwin ? ARM::BLr9 : ARM::BL; |
| 1751 | } |
| 1752 | } |
| 1753 | |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1754 | // A quick function that will emit a call for a named libcall in F with the |
| 1755 | // vector of passed arguments for the Instruction in I. We can assume that we |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1756 | // can emit a call for any libcall we can produce. This is an abridged version |
| 1757 | // of the full call infrastructure since we won't need to worry about things |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1758 | // like computed function pointers or strange arguments at call sites. |
| 1759 | // TODO: Try to unify this and the normal call bits for ARM, then try to unify |
| 1760 | // with X86. |
Eric Christopher | 7ed8ec9 | 2010-09-28 01:21:42 +0000 | [diff] [blame] | 1761 | bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) { |
| 1762 | CallingConv::ID CC = TLI.getLibcallCallingConv(Call); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1763 | |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1764 | // Handle *simple* calls for now. |
Eric Christopher | 7ed8ec9 | 2010-09-28 01:21:42 +0000 | [diff] [blame] | 1765 | const Type *RetTy = I->getType(); |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1766 | MVT RetVT; |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1767 | if (RetTy->isVoidTy()) |
| 1768 | RetVT = MVT::isVoid; |
| 1769 | else if (!isTypeLegal(RetTy, RetVT)) |
| 1770 | return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1771 | |
Eric Christopher | 836c624 | 2010-12-15 23:47:29 +0000 | [diff] [blame] | 1772 | // TODO: For now if we have long calls specified we don't handle the call. |
| 1773 | if (EnableARMLongCalls) return false; |
| 1774 | |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1775 | // Set up the argument vectors. |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1776 | SmallVector<Value*, 8> Args; |
| 1777 | SmallVector<unsigned, 8> ArgRegs; |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1778 | SmallVector<MVT, 8> ArgVTs; |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1779 | SmallVector<ISD::ArgFlagsTy, 8> ArgFlags; |
| 1780 | Args.reserve(I->getNumOperands()); |
| 1781 | ArgRegs.reserve(I->getNumOperands()); |
| 1782 | ArgVTs.reserve(I->getNumOperands()); |
| 1783 | ArgFlags.reserve(I->getNumOperands()); |
Eric Christopher | 7ed8ec9 | 2010-09-28 01:21:42 +0000 | [diff] [blame] | 1784 | for (unsigned i = 0; i < I->getNumOperands(); ++i) { |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1785 | Value *Op = I->getOperand(i); |
| 1786 | unsigned Arg = getRegForValue(Op); |
| 1787 | if (Arg == 0) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1788 | |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1789 | const Type *ArgTy = Op->getType(); |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1790 | MVT ArgVT; |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1791 | if (!isTypeLegal(ArgTy, ArgVT)) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1792 | |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1793 | ISD::ArgFlagsTy Flags; |
| 1794 | unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy); |
| 1795 | Flags.setOrigAlign(OriginalAlignment); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1796 | |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1797 | Args.push_back(Op); |
| 1798 | ArgRegs.push_back(Arg); |
| 1799 | ArgVTs.push_back(ArgVT); |
| 1800 | ArgFlags.push_back(Flags); |
| 1801 | } |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1802 | |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1803 | // Handle the arguments now that we've gotten them. |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1804 | SmallVector<unsigned, 4> RegArgs; |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1805 | unsigned NumBytes; |
| 1806 | if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes)) |
| 1807 | return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1808 | |
Eric Christopher | 6344a5f | 2011-04-29 00:07:20 +0000 | [diff] [blame] | 1809 | // Issue the call, BLr9 for darwin, BL otherwise. |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1810 | // TODO: Turn this into the table of arm call ops. |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1811 | MachineInstrBuilder MIB; |
Eric Christopher | 872f4a2 | 2011-02-22 01:37:10 +0000 | [diff] [blame] | 1812 | unsigned CallOpc = ARMSelectCallOp(NULL); |
| 1813 | if(isThumb) |
Eric Christopher | c19aadb | 2010-12-21 03:50:43 +0000 | [diff] [blame] | 1814 | // Explicitly adding the predicate here. |
| 1815 | MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1816 | TII.get(CallOpc))) |
| 1817 | .addExternalSymbol(TLI.getLibcallName(Call)); |
Eric Christopher | 872f4a2 | 2011-02-22 01:37:10 +0000 | [diff] [blame] | 1818 | else |
Eric Christopher | c19aadb | 2010-12-21 03:50:43 +0000 | [diff] [blame] | 1819 | // Explicitly adding the predicate here. |
| 1820 | MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1821 | TII.get(CallOpc)) |
| 1822 | .addExternalSymbol(TLI.getLibcallName(Call))); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1823 | |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1824 | // Add implicit physical register uses to the call. |
| 1825 | for (unsigned i = 0, e = RegArgs.size(); i != e; ++i) |
| 1826 | MIB.addReg(RegArgs[i]); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1827 | |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1828 | // Finish off the call including any return values. |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1829 | SmallVector<unsigned, 4> UsedRegs; |
Eric Christopher | a9a7a1a | 2010-09-29 23:11:09 +0000 | [diff] [blame] | 1830 | if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1831 | |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1832 | // Set all unused physreg defs as dead. |
| 1833 | static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1834 | |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 1835 | return true; |
| 1836 | } |
| 1837 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1838 | bool ARMFastISel::SelectCall(const Instruction *I) { |
| 1839 | const CallInst *CI = cast<CallInst>(I); |
| 1840 | const Value *Callee = CI->getCalledValue(); |
| 1841 | |
| 1842 | // Can't handle inline asm or worry about intrinsics yet. |
| 1843 | if (isa<InlineAsm>(Callee) || isa<IntrinsicInst>(CI)) return false; |
| 1844 | |
Eric Christopher | 52f6c03 | 2011-05-02 20:16:33 +0000 | [diff] [blame] | 1845 | // Only handle global variable Callees. |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1846 | const GlobalValue *GV = dyn_cast<GlobalValue>(Callee); |
Eric Christopher | 52f6c03 | 2011-05-02 20:16:33 +0000 | [diff] [blame] | 1847 | if (!GV) |
Eric Christopher | e6ca677 | 2010-10-01 21:33:12 +0000 | [diff] [blame] | 1848 | return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1849 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1850 | // Check the calling convention. |
| 1851 | ImmutableCallSite CS(CI); |
| 1852 | CallingConv::ID CC = CS.getCallingConv(); |
Eric Christopher | 4cf34c6 | 2010-10-18 06:49:12 +0000 | [diff] [blame] | 1853 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1854 | // TODO: Avoid some calling conventions? |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1855 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1856 | // Let SDISel handle vararg functions. |
| 1857 | const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 1858 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 1859 | if (FTy->isVarArg()) |
| 1860 | return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1861 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1862 | // Handle *simple* calls for now. |
| 1863 | const Type *RetTy = I->getType(); |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1864 | MVT RetVT; |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1865 | if (RetTy->isVoidTy()) |
| 1866 | RetVT = MVT::isVoid; |
| 1867 | else if (!isTypeLegal(RetTy, RetVT)) |
| 1868 | return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1869 | |
Eric Christopher | 836c624 | 2010-12-15 23:47:29 +0000 | [diff] [blame] | 1870 | // TODO: For now if we have long calls specified we don't handle the call. |
| 1871 | if (EnableARMLongCalls) return false; |
Eric Christopher | 299bbb2 | 2011-04-29 00:03:10 +0000 | [diff] [blame] | 1872 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1873 | // Set up the argument vectors. |
| 1874 | SmallVector<Value*, 8> Args; |
| 1875 | SmallVector<unsigned, 8> ArgRegs; |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1876 | SmallVector<MVT, 8> ArgVTs; |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1877 | SmallVector<ISD::ArgFlagsTy, 8> ArgFlags; |
| 1878 | Args.reserve(CS.arg_size()); |
| 1879 | ArgRegs.reserve(CS.arg_size()); |
| 1880 | ArgVTs.reserve(CS.arg_size()); |
| 1881 | ArgFlags.reserve(CS.arg_size()); |
| 1882 | for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
| 1883 | i != e; ++i) { |
| 1884 | unsigned Arg = getRegForValue(*i); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1885 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1886 | if (Arg == 0) |
| 1887 | return false; |
| 1888 | ISD::ArgFlagsTy Flags; |
| 1889 | unsigned AttrInd = i - CS.arg_begin() + 1; |
| 1890 | if (CS.paramHasAttr(AttrInd, Attribute::SExt)) |
| 1891 | Flags.setSExt(); |
| 1892 | if (CS.paramHasAttr(AttrInd, Attribute::ZExt)) |
| 1893 | Flags.setZExt(); |
| 1894 | |
| 1895 | // FIXME: Only handle *easy* calls for now. |
| 1896 | if (CS.paramHasAttr(AttrInd, Attribute::InReg) || |
| 1897 | CS.paramHasAttr(AttrInd, Attribute::StructRet) || |
| 1898 | CS.paramHasAttr(AttrInd, Attribute::Nest) || |
| 1899 | CS.paramHasAttr(AttrInd, Attribute::ByVal)) |
| 1900 | return false; |
| 1901 | |
| 1902 | const Type *ArgTy = (*i)->getType(); |
Duncan Sands | 1440e8b | 2010-11-03 11:35:31 +0000 | [diff] [blame] | 1903 | MVT ArgVT; |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1904 | if (!isTypeLegal(ArgTy, ArgVT)) |
| 1905 | return false; |
| 1906 | unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy); |
| 1907 | Flags.setOrigAlign(OriginalAlignment); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1908 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1909 | Args.push_back(*i); |
| 1910 | ArgRegs.push_back(Arg); |
| 1911 | ArgVTs.push_back(ArgVT); |
| 1912 | ArgFlags.push_back(Flags); |
| 1913 | } |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1914 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1915 | // Handle the arguments now that we've gotten them. |
| 1916 | SmallVector<unsigned, 4> RegArgs; |
| 1917 | unsigned NumBytes; |
| 1918 | if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes)) |
| 1919 | return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1920 | |
Eric Christopher | 6344a5f | 2011-04-29 00:07:20 +0000 | [diff] [blame] | 1921 | // Issue the call, BLr9 for darwin, BL otherwise. |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1922 | // TODO: Turn this into the table of arm call ops. |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1923 | MachineInstrBuilder MIB; |
Eric Christopher | 872f4a2 | 2011-02-22 01:37:10 +0000 | [diff] [blame] | 1924 | unsigned CallOpc = ARMSelectCallOp(GV); |
Eric Christopher | 7bb5996 | 2010-11-29 21:56:23 +0000 | [diff] [blame] | 1925 | // Explicitly adding the predicate here. |
Eric Christopher | 872f4a2 | 2011-02-22 01:37:10 +0000 | [diff] [blame] | 1926 | if(isThumb) |
Eric Christopher | c19aadb | 2010-12-21 03:50:43 +0000 | [diff] [blame] | 1927 | // Explicitly adding the predicate here. |
| 1928 | MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1929 | TII.get(CallOpc))) |
| 1930 | .addGlobalAddress(GV, 0, 0); |
Eric Christopher | 872f4a2 | 2011-02-22 01:37:10 +0000 | [diff] [blame] | 1931 | else |
Eric Christopher | c19aadb | 2010-12-21 03:50:43 +0000 | [diff] [blame] | 1932 | // Explicitly adding the predicate here. |
| 1933 | MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 1934 | TII.get(CallOpc)) |
| 1935 | .addGlobalAddress(GV, 0, 0)); |
Eric Christopher | 299bbb2 | 2011-04-29 00:03:10 +0000 | [diff] [blame] | 1936 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1937 | // Add implicit physical register uses to the call. |
| 1938 | for (unsigned i = 0, e = RegArgs.size(); i != e; ++i) |
| 1939 | MIB.addReg(RegArgs[i]); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1940 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1941 | // Finish off the call including any return values. |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1942 | SmallVector<unsigned, 4> UsedRegs; |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1943 | if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1944 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1945 | // Set all unused physreg defs as dead. |
| 1946 | static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI); |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1947 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1948 | return true; |
Eric Christopher | dccd2c3 | 2010-10-11 08:38:55 +0000 | [diff] [blame] | 1949 | |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 1950 | } |
| 1951 | |
Eli Friedman | 76927d73 | 2011-05-25 23:49:02 +0000 | [diff] [blame] | 1952 | bool ARMFastISel::SelectIntCast(const Instruction *I) { |
| 1953 | // On ARM, in general, integer casts don't involve legal types; this code |
| 1954 | // handles promotable integers. The high bits for a type smaller than |
| 1955 | // the register size are assumed to be undefined. |
| 1956 | const Type *DestTy = I->getType(); |
| 1957 | Value *Op = I->getOperand(0); |
| 1958 | const Type *SrcTy = Op->getType(); |
| 1959 | |
| 1960 | EVT SrcVT, DestVT; |
| 1961 | SrcVT = TLI.getValueType(SrcTy, true); |
| 1962 | DestVT = TLI.getValueType(DestTy, true); |
| 1963 | |
| 1964 | if (isa<TruncInst>(I)) { |
| 1965 | if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8) |
| 1966 | return false; |
| 1967 | if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1) |
| 1968 | return false; |
| 1969 | |
| 1970 | unsigned SrcReg = getRegForValue(Op); |
| 1971 | if (!SrcReg) return false; |
| 1972 | |
| 1973 | // Because the high bits are undefined, a truncate doesn't generate |
| 1974 | // any code. |
| 1975 | UpdateValueMap(I, SrcReg); |
| 1976 | return true; |
| 1977 | } |
| 1978 | if (DestVT != MVT::i32 && DestVT != MVT::i16 && DestVT != MVT::i8) |
| 1979 | return false; |
| 1980 | |
| 1981 | unsigned Opc; |
| 1982 | bool isZext = isa<ZExtInst>(I); |
| 1983 | bool isBoolZext = false; |
| 1984 | switch (SrcVT.getSimpleVT().SimpleTy) { |
| 1985 | default: return false; |
| 1986 | case MVT::i16: |
| 1987 | if (isZext) |
| 1988 | Opc = isThumb ? ARM::t2UXTHr : ARM::UXTHr; |
| 1989 | else |
| 1990 | Opc = isThumb ? ARM::t2SXTHr : ARM::SXTHr; |
| 1991 | break; |
| 1992 | case MVT::i8: |
| 1993 | if (isZext) |
| 1994 | Opc = isThumb ? ARM::t2UXTBr : ARM::UXTBr; |
| 1995 | else |
| 1996 | Opc = isThumb ? ARM::t2SXTBr : ARM::SXTBr; |
| 1997 | break; |
| 1998 | case MVT::i1: |
| 1999 | if (isZext) { |
| 2000 | Opc = isThumb ? ARM::t2ANDri : ARM::ANDri; |
| 2001 | isBoolZext = true; |
| 2002 | break; |
| 2003 | } |
| 2004 | return false; |
| 2005 | } |
| 2006 | |
| 2007 | // FIXME: We could save an instruction in many cases by special-casing |
| 2008 | // load instructions. |
| 2009 | unsigned SrcReg = getRegForValue(Op); |
| 2010 | if (!SrcReg) return false; |
| 2011 | |
| 2012 | unsigned DestReg = createResultReg(TLI.getRegClassFor(MVT::i32)); |
| 2013 | MachineInstrBuilder MIB; |
| 2014 | MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg) |
| 2015 | .addReg(SrcReg); |
| 2016 | if (isBoolZext) |
| 2017 | MIB.addImm(1); |
| 2018 | AddOptionalDefs(MIB); |
| 2019 | UpdateValueMap(I, DestReg); |
| 2020 | return true; |
| 2021 | } |
| 2022 | |
Eric Christopher | 56d2b72 | 2010-09-02 23:43:26 +0000 | [diff] [blame] | 2023 | // TODO: SoftFP support. |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 2024 | bool ARMFastISel::TargetSelectInstruction(const Instruction *I) { |
Eric Christopher | ac1a19e | 2010-09-09 01:06:51 +0000 | [diff] [blame] | 2025 | |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 2026 | switch (I->getOpcode()) { |
Eric Christopher | 8300712 | 2010-08-23 21:44:12 +0000 | [diff] [blame] | 2027 | case Instruction::Load: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2028 | return SelectLoad(I); |
Eric Christopher | 543cf05 | 2010-09-01 22:16:27 +0000 | [diff] [blame] | 2029 | case Instruction::Store: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2030 | return SelectStore(I); |
Eric Christopher | e573410 | 2010-09-03 00:35:47 +0000 | [diff] [blame] | 2031 | case Instruction::Br: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2032 | return SelectBranch(I); |
Eric Christopher | d43393a | 2010-09-08 23:13:45 +0000 | [diff] [blame] | 2033 | case Instruction::ICmp: |
| 2034 | case Instruction::FCmp: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2035 | return SelectCmp(I); |
Eric Christopher | 4620360 | 2010-09-09 00:26:48 +0000 | [diff] [blame] | 2036 | case Instruction::FPExt: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2037 | return SelectFPExt(I); |
Eric Christopher | ce07b54 | 2010-09-09 20:26:31 +0000 | [diff] [blame] | 2038 | case Instruction::FPTrunc: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2039 | return SelectFPTrunc(I); |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 2040 | case Instruction::SIToFP: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2041 | return SelectSIToFP(I); |
Eric Christopher | 9a04049 | 2010-09-09 18:54:59 +0000 | [diff] [blame] | 2042 | case Instruction::FPToSI: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2043 | return SelectFPToSI(I); |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 2044 | case Instruction::FAdd: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2045 | return SelectBinaryOp(I, ISD::FADD); |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 2046 | case Instruction::FSub: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2047 | return SelectBinaryOp(I, ISD::FSUB); |
Eric Christopher | bc39b82 | 2010-09-09 00:53:57 +0000 | [diff] [blame] | 2048 | case Instruction::FMul: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2049 | return SelectBinaryOp(I, ISD::FMUL); |
Eric Christopher | bb3e5da | 2010-09-14 23:03:37 +0000 | [diff] [blame] | 2050 | case Instruction::SDiv: |
Eric Christopher | 43b62be | 2010-09-27 06:02:23 +0000 | [diff] [blame] | 2051 | return SelectSDiv(I); |
Eric Christopher | 6a880d6 | 2010-10-11 08:37:26 +0000 | [diff] [blame] | 2052 | case Instruction::SRem: |
| 2053 | return SelectSRem(I); |
Eric Christopher | f9764fa | 2010-09-30 20:49:44 +0000 | [diff] [blame] | 2054 | case Instruction::Call: |
| 2055 | return SelectCall(I); |
Eric Christopher | 3bbd396 | 2010-10-11 08:27:59 +0000 | [diff] [blame] | 2056 | case Instruction::Select: |
| 2057 | return SelectSelect(I); |
Eric Christopher | 4f512ef | 2010-10-22 01:28:00 +0000 | [diff] [blame] | 2058 | case Instruction::Ret: |
| 2059 | return SelectRet(I); |
Eli Friedman | 76927d73 | 2011-05-25 23:49:02 +0000 | [diff] [blame] | 2060 | case Instruction::Trunc: |
| 2061 | case Instruction::ZExt: |
| 2062 | case Instruction::SExt: |
| 2063 | return SelectIntCast(I); |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 2064 | default: break; |
| 2065 | } |
| 2066 | return false; |
| 2067 | } |
| 2068 | |
| 2069 | namespace llvm { |
| 2070 | llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) { |
Eric Christopher | feadddd | 2010-10-11 20:05:22 +0000 | [diff] [blame] | 2071 | // Completely untested on non-darwin. |
| 2072 | const TargetMachine &TM = funcInfo.MF->getTarget(); |
Jim Grosbach | 16cb376 | 2010-11-09 19:22:26 +0000 | [diff] [blame] | 2073 | |
Eric Christopher | aaa8df4 | 2010-11-02 01:21:28 +0000 | [diff] [blame] | 2074 | // Darwin and thumb1 only for now. |
Eric Christopher | feadddd | 2010-10-11 20:05:22 +0000 | [diff] [blame] | 2075 | const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>(); |
Jim Grosbach | 16cb376 | 2010-11-09 19:22:26 +0000 | [diff] [blame] | 2076 | if (Subtarget->isTargetDarwin() && !Subtarget->isThumb1Only() && |
Eric Christopher | aaa8df4 | 2010-11-02 01:21:28 +0000 | [diff] [blame] | 2077 | !DisableARMFastISel) |
Eric Christopher | feadddd | 2010-10-11 20:05:22 +0000 | [diff] [blame] | 2078 | return new ARMFastISel(funcInfo); |
Evan Cheng | 0944795 | 2010-07-26 18:32:55 +0000 | [diff] [blame] | 2079 | return 0; |
Eric Christopher | ab69588 | 2010-07-21 22:26:11 +0000 | [diff] [blame] | 2080 | } |
| 2081 | } |