Dan Gohman | 1adf1b0 | 2008-08-19 21:45:35 +0000 | [diff] [blame] | 1 | //===-- X86FastISel.cpp - X86 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 X86-specific support for the FastISel class. Much |
| 11 | // of the target-specific code is generated by tablegen in the file |
| 12 | // X86GenFastISel.inc, which is #included here. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #include "X86.h" |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 17 | #include "X86InstrBuilder.h" |
Dan Gohman | 1adf1b0 | 2008-08-19 21:45:35 +0000 | [diff] [blame] | 18 | #include "X86ISelLowering.h" |
Evan Cheng | 88e3041 | 2008-09-03 01:04:47 +0000 | [diff] [blame] | 19 | #include "X86RegisterInfo.h" |
| 20 | #include "X86Subtarget.h" |
Dan Gohman | 22bb311 | 2008-08-22 00:20:26 +0000 | [diff] [blame] | 21 | #include "X86TargetMachine.h" |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 22 | #include "llvm/CallingConv.h" |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 23 | #include "llvm/DerivedTypes.h" |
Dan Gohman | e986594 | 2009-02-23 22:03:08 +0000 | [diff] [blame] | 24 | #include "llvm/GlobalVariable.h" |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 25 | #include "llvm/Instructions.h" |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 26 | #include "llvm/IntrinsicInst.h" |
Evan Cheng | c3f44b0 | 2008-09-03 00:03:49 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/FastISel.h" |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineConstantPool.h" |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Owen Anderson | 667d8f7 | 2008-08-29 17:45:56 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 31 | #include "llvm/Support/CallSite.h" |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 32 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
Dan Gohman | 7d04e4a | 2009-05-04 19:50:33 +0000 | [diff] [blame] | 33 | #include "llvm/Target/TargetOptions.h" |
Evan Cheng | c3f44b0 | 2008-09-03 00:03:49 +0000 | [diff] [blame] | 34 | using namespace llvm; |
| 35 | |
Chris Lattner | 087fcf3 | 2009-03-08 18:44:31 +0000 | [diff] [blame] | 36 | namespace { |
| 37 | |
Evan Cheng | c3f44b0 | 2008-09-03 00:03:49 +0000 | [diff] [blame] | 38 | class X86FastISel : public FastISel { |
| 39 | /// Subtarget - Keep a pointer to the X86Subtarget around so that we can |
| 40 | /// make the right decision when generating code for different targets. |
| 41 | const X86Subtarget *Subtarget; |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 42 | |
| 43 | /// StackPtr - Register used as the stack pointer. |
| 44 | /// |
| 45 | unsigned StackPtr; |
| 46 | |
| 47 | /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87 |
| 48 | /// floating point ops. |
| 49 | /// When SSE is available, use it for f32 operations. |
| 50 | /// When SSE2 is available, use it for f64 operations. |
| 51 | bool X86ScalarSSEf64; |
| 52 | bool X86ScalarSSEf32; |
| 53 | |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 54 | public: |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 55 | explicit X86FastISel(MachineFunction &mf, |
Dan Gohman | d57dd5f | 2008-09-23 21:53:34 +0000 | [diff] [blame] | 56 | MachineModuleInfo *mmi, |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 57 | DwarfWriter *dw, |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 58 | DenseMap<const Value *, unsigned> &vm, |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 59 | DenseMap<const BasicBlock *, MachineBasicBlock *> &bm, |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 60 | DenseMap<const AllocaInst *, int> &am |
| 61 | #ifndef NDEBUG |
| 62 | , SmallSet<Instruction*, 8> &cil |
| 63 | #endif |
| 64 | ) |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 65 | : FastISel(mf, mmi, dw, vm, bm, am |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 66 | #ifndef NDEBUG |
| 67 | , cil |
| 68 | #endif |
| 69 | ) { |
Evan Cheng | 88e3041 | 2008-09-03 01:04:47 +0000 | [diff] [blame] | 70 | Subtarget = &TM.getSubtarget<X86Subtarget>(); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 71 | StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP; |
| 72 | X86ScalarSSEf64 = Subtarget->hasSSE2(); |
| 73 | X86ScalarSSEf32 = Subtarget->hasSSE1(); |
Evan Cheng | 88e3041 | 2008-09-03 01:04:47 +0000 | [diff] [blame] | 74 | } |
Evan Cheng | c3f44b0 | 2008-09-03 00:03:49 +0000 | [diff] [blame] | 75 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 76 | virtual bool TargetSelectInstruction(Instruction *I); |
Evan Cheng | c3f44b0 | 2008-09-03 00:03:49 +0000 | [diff] [blame] | 77 | |
Dan Gohman | 1adf1b0 | 2008-08-19 21:45:35 +0000 | [diff] [blame] | 78 | #include "X86GenFastISel.inc" |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 79 | |
| 80 | private: |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 81 | bool X86FastEmitCompare(Value *LHS, Value *RHS, MVT VT); |
| 82 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 83 | bool X86FastEmitLoad(MVT VT, const X86AddressMode &AM, unsigned &RR); |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 84 | |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 85 | bool X86FastEmitStore(MVT VT, Value *Val, |
| 86 | const X86AddressMode &AM); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 87 | bool X86FastEmitStore(MVT VT, unsigned Val, |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 88 | const X86AddressMode &AM); |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 89 | |
| 90 | bool X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT, unsigned Src, MVT SrcVT, |
| 91 | unsigned &ResultReg); |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 92 | |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 93 | bool X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall); |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 94 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 95 | bool X86SelectLoad(Instruction *I); |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 96 | |
| 97 | bool X86SelectStore(Instruction *I); |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 98 | |
| 99 | bool X86SelectCmp(Instruction *I); |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 100 | |
| 101 | bool X86SelectZExt(Instruction *I); |
| 102 | |
| 103 | bool X86SelectBranch(Instruction *I); |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 104 | |
| 105 | bool X86SelectShift(Instruction *I); |
| 106 | |
| 107 | bool X86SelectSelect(Instruction *I); |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 108 | |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 109 | bool X86SelectTrunc(Instruction *I); |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 110 | |
Dan Gohman | 78efce6 | 2008-09-10 21:02:08 +0000 | [diff] [blame] | 111 | bool X86SelectFPExt(Instruction *I); |
| 112 | bool X86SelectFPTrunc(Instruction *I); |
| 113 | |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 114 | bool X86SelectExtractValue(Instruction *I); |
| 115 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 116 | bool X86VisitIntrinsicCall(IntrinsicInst &I); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 117 | bool X86SelectCall(Instruction *I); |
| 118 | |
| 119 | CCAssignFn *CCAssignFnForCall(unsigned CC, bool isTailCall = false); |
| 120 | |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 121 | const X86InstrInfo *getInstrInfo() const { |
Dan Gohman | 97135e1 | 2008-09-26 19:15:30 +0000 | [diff] [blame] | 122 | return getTargetMachine()->getInstrInfo(); |
| 123 | } |
| 124 | const X86TargetMachine *getTargetMachine() const { |
| 125 | return static_cast<const X86TargetMachine *>(&TM); |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 128 | unsigned TargetMaterializeConstant(Constant *C); |
| 129 | |
| 130 | unsigned TargetMaterializeAlloca(AllocaInst *C); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 131 | |
| 132 | /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is |
| 133 | /// computed in an SSE register, not on the X87 floating point stack. |
| 134 | bool isScalarFPTypeInSSEReg(MVT VT) const { |
| 135 | return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2 |
| 136 | (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1 |
| 137 | } |
| 138 | |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 139 | bool isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1 = false); |
Evan Cheng | c3f44b0 | 2008-09-03 00:03:49 +0000 | [diff] [blame] | 140 | }; |
Chris Lattner | 087fcf3 | 2009-03-08 18:44:31 +0000 | [diff] [blame] | 141 | |
| 142 | } // end anonymous namespace. |
Dan Gohman | 99b2182 | 2008-08-28 23:21:34 +0000 | [diff] [blame] | 143 | |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 144 | bool X86FastISel::isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1) { |
| 145 | VT = TLI.getValueType(Ty, /*HandleUnknown=*/true); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 146 | if (VT == MVT::Other || !VT.isSimple()) |
| 147 | // Unhandled type. Halt "fast" selection and bail. |
| 148 | return false; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 149 | |
Dan Gohman | 9b66d73 | 2008-09-30 00:48:39 +0000 | [diff] [blame] | 150 | // For now, require SSE/SSE2 for performing floating-point operations, |
| 151 | // since x87 requires additional work. |
| 152 | if (VT == MVT::f64 && !X86ScalarSSEf64) |
| 153 | return false; |
| 154 | if (VT == MVT::f32 && !X86ScalarSSEf32) |
| 155 | return false; |
| 156 | // Similarly, no f80 support yet. |
| 157 | if (VT == MVT::f80) |
| 158 | return false; |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 159 | // We only handle legal types. For example, on x86-32 the instruction |
| 160 | // selector contains all of the 64-bit instructions from x86-64, |
| 161 | // under the assumption that i64 won't be used if the target doesn't |
| 162 | // support it. |
Evan Cheng | debdea0 | 2008-09-08 17:15:42 +0000 | [diff] [blame] | 163 | return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | #include "X86GenCallingConv.inc" |
| 167 | |
| 168 | /// CCAssignFnForCall - Selects the correct CCAssignFn for a given calling |
| 169 | /// convention. |
| 170 | CCAssignFn *X86FastISel::CCAssignFnForCall(unsigned CC, bool isTaillCall) { |
| 171 | if (Subtarget->is64Bit()) { |
| 172 | if (Subtarget->isTargetWin64()) |
| 173 | return CC_X86_Win64_C; |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 174 | else |
| 175 | return CC_X86_64_C; |
| 176 | } |
| 177 | |
| 178 | if (CC == CallingConv::X86_FastCall) |
| 179 | return CC_X86_32_FastCall; |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 180 | else if (CC == CallingConv::Fast) |
| 181 | return CC_X86_32_FastCC; |
| 182 | else |
| 183 | return CC_X86_32_C; |
| 184 | } |
| 185 | |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 186 | /// X86FastEmitLoad - Emit a machine instruction to load a value of type VT. |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 187 | /// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV. |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 188 | /// Return true and the result register by reference if it is possible. |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 189 | bool X86FastISel::X86FastEmitLoad(MVT VT, const X86AddressMode &AM, |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 190 | unsigned &ResultReg) { |
| 191 | // Get opcode and regclass of the output for the given load instruction. |
| 192 | unsigned Opc = 0; |
| 193 | const TargetRegisterClass *RC = NULL; |
| 194 | switch (VT.getSimpleVT()) { |
| 195 | default: return false; |
| 196 | case MVT::i8: |
| 197 | Opc = X86::MOV8rm; |
| 198 | RC = X86::GR8RegisterClass; |
| 199 | break; |
| 200 | case MVT::i16: |
| 201 | Opc = X86::MOV16rm; |
| 202 | RC = X86::GR16RegisterClass; |
| 203 | break; |
| 204 | case MVT::i32: |
| 205 | Opc = X86::MOV32rm; |
| 206 | RC = X86::GR32RegisterClass; |
| 207 | break; |
| 208 | case MVT::i64: |
| 209 | // Must be in x86-64 mode. |
| 210 | Opc = X86::MOV64rm; |
| 211 | RC = X86::GR64RegisterClass; |
| 212 | break; |
| 213 | case MVT::f32: |
| 214 | if (Subtarget->hasSSE1()) { |
| 215 | Opc = X86::MOVSSrm; |
| 216 | RC = X86::FR32RegisterClass; |
| 217 | } else { |
| 218 | Opc = X86::LD_Fp32m; |
| 219 | RC = X86::RFP32RegisterClass; |
| 220 | } |
| 221 | break; |
| 222 | case MVT::f64: |
| 223 | if (Subtarget->hasSSE2()) { |
| 224 | Opc = X86::MOVSDrm; |
| 225 | RC = X86::FR64RegisterClass; |
| 226 | } else { |
| 227 | Opc = X86::LD_Fp64m; |
| 228 | RC = X86::RFP64RegisterClass; |
| 229 | } |
| 230 | break; |
| 231 | case MVT::f80: |
Dan Gohman | 5af29c2 | 2008-09-26 01:39:32 +0000 | [diff] [blame] | 232 | // No f80 support yet. |
| 233 | return false; |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | ResultReg = createResultReg(RC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 237 | addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM); |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 238 | return true; |
| 239 | } |
| 240 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 241 | /// X86FastEmitStore - Emit a machine instruction to store a value Val of |
| 242 | /// type VT. The address is either pre-computed, consisted of a base ptr, Ptr |
| 243 | /// and a displacement offset, or a GlobalAddress, |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 244 | /// i.e. V. Return true if it is possible. |
| 245 | bool |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 246 | X86FastISel::X86FastEmitStore(MVT VT, unsigned Val, |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 247 | const X86AddressMode &AM) { |
Dan Gohman | 863890e | 2008-09-08 16:31:35 +0000 | [diff] [blame] | 248 | // Get opcode and regclass of the output for the given store instruction. |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 249 | unsigned Opc = 0; |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 250 | switch (VT.getSimpleVT()) { |
Chris Lattner | 241ab47 | 2008-10-15 05:38:32 +0000 | [diff] [blame] | 251 | case MVT::f80: // No f80 support yet. |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 252 | default: return false; |
Chris Lattner | 241ab47 | 2008-10-15 05:38:32 +0000 | [diff] [blame] | 253 | case MVT::i8: Opc = X86::MOV8mr; break; |
| 254 | case MVT::i16: Opc = X86::MOV16mr; break; |
| 255 | case MVT::i32: Opc = X86::MOV32mr; break; |
| 256 | case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode. |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 257 | case MVT::f32: |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 258 | Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m; |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 259 | break; |
| 260 | case MVT::f64: |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 261 | Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m; |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 262 | break; |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 263 | } |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 264 | |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 265 | addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM).addReg(Val); |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 266 | return true; |
| 267 | } |
| 268 | |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 269 | bool X86FastISel::X86FastEmitStore(MVT VT, Value *Val, |
| 270 | const X86AddressMode &AM) { |
| 271 | // Handle 'null' like i32/i64 0. |
| 272 | if (isa<ConstantPointerNull>(Val)) |
| 273 | Val = Constant::getNullValue(TD.getIntPtrType()); |
| 274 | |
| 275 | // If this is a store of a simple constant, fold the constant into the store. |
| 276 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) { |
| 277 | unsigned Opc = 0; |
| 278 | switch (VT.getSimpleVT()) { |
| 279 | default: break; |
| 280 | case MVT::i8: Opc = X86::MOV8mi; break; |
| 281 | case MVT::i16: Opc = X86::MOV16mi; break; |
| 282 | case MVT::i32: Opc = X86::MOV32mi; break; |
| 283 | case MVT::i64: |
| 284 | // Must be a 32-bit sign extended value. |
| 285 | if ((int)CI->getSExtValue() == CI->getSExtValue()) |
| 286 | Opc = X86::MOV64mi32; |
| 287 | break; |
| 288 | } |
| 289 | |
| 290 | if (Opc) { |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 291 | addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM) |
| 292 | .addImm(CI->getSExtValue()); |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 293 | return true; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | unsigned ValReg = getRegForValue(Val); |
| 298 | if (ValReg == 0) |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 299 | return false; |
| 300 | |
| 301 | return X86FastEmitStore(VT, ValReg, AM); |
| 302 | } |
| 303 | |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 304 | /// X86FastEmitExtend - Emit a machine instruction to extend a value Src of |
| 305 | /// type SrcVT to type DstVT using the specified extension opcode Opc (e.g. |
| 306 | /// ISD::SIGN_EXTEND). |
| 307 | bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT, |
| 308 | unsigned Src, MVT SrcVT, |
| 309 | unsigned &ResultReg) { |
Owen Anderson | ac34a00 | 2008-09-11 19:44:55 +0000 | [diff] [blame] | 310 | unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src); |
| 311 | |
| 312 | if (RR != 0) { |
| 313 | ResultReg = RR; |
| 314 | return true; |
| 315 | } else |
| 316 | return false; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 317 | } |
| 318 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 319 | /// X86SelectAddress - Attempt to fill in an address from the given value. |
| 320 | /// |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 321 | bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall) { |
Duncan Sands | 1251388 | 2009-06-03 12:05:18 +0000 | [diff] [blame] | 322 | User *U = NULL; |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 323 | unsigned Opcode = Instruction::UserOp1; |
| 324 | if (Instruction *I = dyn_cast<Instruction>(V)) { |
| 325 | Opcode = I->getOpcode(); |
| 326 | U = I; |
| 327 | } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) { |
| 328 | Opcode = C->getOpcode(); |
| 329 | U = C; |
| 330 | } |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 331 | |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 332 | switch (Opcode) { |
| 333 | default: break; |
| 334 | case Instruction::BitCast: |
| 335 | // Look past bitcasts. |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 336 | return X86SelectAddress(U->getOperand(0), AM, isCall); |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 337 | |
| 338 | case Instruction::IntToPtr: |
| 339 | // Look past no-op inttoptrs. |
| 340 | if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy()) |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 341 | return X86SelectAddress(U->getOperand(0), AM, isCall); |
Dan Gohman | 55fdaec | 2008-12-08 23:50:06 +0000 | [diff] [blame] | 342 | break; |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 343 | |
| 344 | case Instruction::PtrToInt: |
| 345 | // Look past no-op ptrtoints. |
| 346 | if (TLI.getValueType(U->getType()) == TLI.getPointerTy()) |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 347 | return X86SelectAddress(U->getOperand(0), AM, isCall); |
Dan Gohman | 55fdaec | 2008-12-08 23:50:06 +0000 | [diff] [blame] | 348 | break; |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 349 | |
| 350 | case Instruction::Alloca: { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 351 | if (isCall) break; |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 352 | // Do static allocas. |
| 353 | const AllocaInst *A = cast<AllocaInst>(V); |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 354 | DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A); |
Dan Gohman | 97135e1 | 2008-09-26 19:15:30 +0000 | [diff] [blame] | 355 | if (SI != StaticAllocaMap.end()) { |
| 356 | AM.BaseType = X86AddressMode::FrameIndexBase; |
| 357 | AM.Base.FrameIndex = SI->second; |
| 358 | return true; |
| 359 | } |
| 360 | break; |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | case Instruction::Add: { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 364 | if (isCall) break; |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 365 | // Adds of constants are common and easy enough. |
| 366 | if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) { |
Dan Gohman | 09aae46 | 2008-09-26 20:04:15 +0000 | [diff] [blame] | 367 | uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue(); |
| 368 | // They have to fit in the 32-bit signed displacement field though. |
| 369 | if (isInt32(Disp)) { |
| 370 | AM.Disp = (uint32_t)Disp; |
| 371 | return X86SelectAddress(U->getOperand(0), AM, isCall); |
| 372 | } |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 373 | } |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 374 | break; |
| 375 | } |
| 376 | |
| 377 | case Instruction::GetElementPtr: { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 378 | if (isCall) break; |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 379 | // Pattern-match simple GEPs. |
Dan Gohman | 09aae46 | 2008-09-26 20:04:15 +0000 | [diff] [blame] | 380 | uint64_t Disp = (int32_t)AM.Disp; |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 381 | unsigned IndexReg = AM.IndexReg; |
| 382 | unsigned Scale = AM.Scale; |
| 383 | gep_type_iterator GTI = gep_type_begin(U); |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 384 | // Iterate through the indices, folding what we can. Constants can be |
| 385 | // folded, and one dynamic index can be handled, if the scale is supported. |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 386 | for (User::op_iterator i = U->op_begin() + 1, e = U->op_end(); |
| 387 | i != e; ++i, ++GTI) { |
| 388 | Value *Op = *i; |
| 389 | if (const StructType *STy = dyn_cast<StructType>(*GTI)) { |
| 390 | const StructLayout *SL = TD.getStructLayout(STy); |
| 391 | unsigned Idx = cast<ConstantInt>(Op)->getZExtValue(); |
| 392 | Disp += SL->getElementOffset(Idx); |
| 393 | } else { |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 394 | uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType()); |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 395 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) { |
| 396 | // Constant-offset addressing. |
Dan Gohman | 09aae46 | 2008-09-26 20:04:15 +0000 | [diff] [blame] | 397 | Disp += CI->getSExtValue() * S; |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 398 | } else if (IndexReg == 0 && |
Chris Lattner | 4c1b606 | 2009-06-27 05:24:12 +0000 | [diff] [blame] | 399 | (!AM.GV || !Subtarget->isPICStyleRIPRel()) && |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 400 | (S == 1 || S == 2 || S == 4 || S == 8)) { |
| 401 | // Scaled-index addressing. |
| 402 | Scale = S; |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 403 | IndexReg = getRegForGEPIndex(Op); |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 404 | if (IndexReg == 0) |
| 405 | return false; |
| 406 | } else |
| 407 | // Unsupported. |
| 408 | goto unsupported_gep; |
| 409 | } |
| 410 | } |
Dan Gohman | 09aae46 | 2008-09-26 20:04:15 +0000 | [diff] [blame] | 411 | // Check for displacement overflow. |
| 412 | if (!isInt32(Disp)) |
| 413 | break; |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 414 | // Ok, the GEP indices were covered by constant-offset and scaled-index |
| 415 | // addressing. Update the address state and move on to examining the base. |
| 416 | AM.IndexReg = IndexReg; |
| 417 | AM.Scale = Scale; |
Dan Gohman | 09aae46 | 2008-09-26 20:04:15 +0000 | [diff] [blame] | 418 | AM.Disp = (uint32_t)Disp; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 419 | return X86SelectAddress(U->getOperand(0), AM, isCall); |
Dan Gohman | 3589308 | 2008-09-18 23:23:44 +0000 | [diff] [blame] | 420 | unsupported_gep: |
| 421 | // Ok, the GEP indices weren't all covered. |
| 422 | break; |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | // Handle constant address. |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 427 | if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) { |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 428 | // Can't handle alternate code models yet. |
| 429 | if (TM.getCodeModel() != CodeModel::Default && |
| 430 | TM.getCodeModel() != CodeModel::Small) |
| 431 | return false; |
| 432 | |
Dan Gohman | 97135e1 | 2008-09-26 19:15:30 +0000 | [diff] [blame] | 433 | // RIP-relative addresses can't have additional register operands. |
Chris Lattner | 4c1b606 | 2009-06-27 05:24:12 +0000 | [diff] [blame] | 434 | if (Subtarget->isPICStyleRIPRel() && |
Dan Gohman | 97135e1 | 2008-09-26 19:15:30 +0000 | [diff] [blame] | 435 | (AM.Base.Reg != 0 || AM.IndexReg != 0)) |
| 436 | return false; |
| 437 | |
Dan Gohman | e986594 | 2009-02-23 22:03:08 +0000 | [diff] [blame] | 438 | // Can't handle TLS yet. |
| 439 | if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) |
| 440 | if (GVar->isThreadLocal()) |
| 441 | return false; |
| 442 | |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 443 | // Set up the basic address. |
| 444 | AM.GV = GV; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 445 | |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 446 | if (!isCall && |
| 447 | TM.getRelocationModel() == Reloc::PIC_ && |
| 448 | !Subtarget->is64Bit()) |
Dan Gohman | 57c3dac | 2008-09-30 00:58:23 +0000 | [diff] [blame] | 449 | AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF); |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 450 | |
| 451 | // Emit an extra load if the ABI requires it. |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 452 | if (Subtarget->GVRequiresExtraLoad(GV, TM, isCall)) { |
| 453 | // Check to see if we've already materialized this |
| 454 | // value in a register in this block. |
Dan Gohman | f530c92 | 2009-07-02 00:17:47 +0000 | [diff] [blame] | 455 | DenseMap<const Value *, unsigned>::iterator I = LocalValueMap.find(V); |
| 456 | if (I != LocalValueMap.end() && I->second != 0) { |
| 457 | AM.Base.Reg = I->second; |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 458 | AM.GV = 0; |
Dan Gohman | 7e8ef60 | 2008-09-19 23:42:04 +0000 | [diff] [blame] | 459 | return true; |
| 460 | } |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 461 | |
| 462 | // Issue load from stub. |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 463 | unsigned Opc = 0; |
| 464 | const TargetRegisterClass *RC = NULL; |
Dan Gohman | 789ce77 | 2008-09-25 23:34:02 +0000 | [diff] [blame] | 465 | X86AddressMode StubAM; |
| 466 | StubAM.Base.Reg = AM.Base.Reg; |
| 467 | StubAM.GV = AM.GV; |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 468 | |
| 469 | if (TLI.getPointerTy() == MVT::i32) { |
| 470 | Opc = X86::MOV32rm; |
| 471 | RC = X86::GR32RegisterClass; |
| 472 | |
Chris Lattner | 15a380a | 2009-07-09 04:39:06 +0000 | [diff] [blame^] | 473 | if (Subtarget->isPICStyleGOT()) |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 474 | StubAM.GVOpFlags = X86II::MO_GOT; |
| 475 | |
| 476 | } else { |
| 477 | Opc = X86::MOV64rm; |
| 478 | RC = X86::GR64RegisterClass; |
| 479 | |
Chris Lattner | cd714b1 | 2009-07-02 04:22:01 +0000 | [diff] [blame] | 480 | if (TM.getRelocationModel() != Reloc::Static) { |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 481 | StubAM.GVOpFlags = X86II::MO_GOTPCREL; |
Chris Lattner | cd714b1 | 2009-07-02 04:22:01 +0000 | [diff] [blame] | 482 | StubAM.Base.Reg = X86::RIP; |
| 483 | } |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 484 | } |
| 485 | |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 486 | unsigned ResultReg = createResultReg(RC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 487 | addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), StubAM); |
Dan Gohman | 789ce77 | 2008-09-25 23:34:02 +0000 | [diff] [blame] | 488 | |
| 489 | // Now construct the final address. Note that the Disp, Scale, |
| 490 | // and Index values may already be set here. |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 491 | AM.Base.Reg = ResultReg; |
| 492 | AM.GV = 0; |
Dan Gohman | 789ce77 | 2008-09-25 23:34:02 +0000 | [diff] [blame] | 493 | |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 494 | // Prevent loading GV stub multiple times in same MBB. |
| 495 | LocalValueMap[V] = AM.Base.Reg; |
Chris Lattner | 4c1b606 | 2009-06-27 05:24:12 +0000 | [diff] [blame] | 496 | } else if (Subtarget->isPICStyleRIPRel()) { |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 497 | // Use rip-relative addressing if we can. |
| 498 | AM.Base.Reg = X86::RIP; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 499 | } |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 500 | |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 501 | return true; |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 502 | } |
| 503 | |
Dan Gohman | 97135e1 | 2008-09-26 19:15:30 +0000 | [diff] [blame] | 504 | // If all else fails, try to materialize the value in a register. |
Chris Lattner | 4c1b606 | 2009-06-27 05:24:12 +0000 | [diff] [blame] | 505 | if (!AM.GV || !Subtarget->isPICStyleRIPRel()) { |
Dan Gohman | 97135e1 | 2008-09-26 19:15:30 +0000 | [diff] [blame] | 506 | if (AM.Base.Reg == 0) { |
| 507 | AM.Base.Reg = getRegForValue(V); |
| 508 | return AM.Base.Reg != 0; |
| 509 | } |
| 510 | if (AM.IndexReg == 0) { |
| 511 | assert(AM.Scale == 1 && "Scale with no index!"); |
| 512 | AM.IndexReg = getRegForValue(V); |
| 513 | return AM.IndexReg != 0; |
| 514 | } |
| 515 | } |
| 516 | |
| 517 | return false; |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 518 | } |
| 519 | |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 520 | /// X86SelectStore - Select and emit code to implement store instructions. |
| 521 | bool X86FastISel::X86SelectStore(Instruction* I) { |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 522 | MVT VT; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 523 | if (!isTypeLegal(I->getOperand(0)->getType(), VT)) |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 524 | return false; |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 525 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 526 | X86AddressMode AM; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 527 | if (!X86SelectAddress(I->getOperand(1), AM, false)) |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 528 | return false; |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 529 | |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 530 | return X86FastEmitStore(VT, I->getOperand(0), AM); |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 533 | /// X86SelectLoad - Select and emit code to implement load instructions. |
| 534 | /// |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 535 | bool X86FastISel::X86SelectLoad(Instruction *I) { |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 536 | MVT VT; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 537 | if (!isTypeLegal(I->getType(), VT)) |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 538 | return false; |
| 539 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 540 | X86AddressMode AM; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 541 | if (!X86SelectAddress(I->getOperand(0), AM, false)) |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 542 | return false; |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 543 | |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 544 | unsigned ResultReg = 0; |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 545 | if (X86FastEmitLoad(VT, AM, ResultReg)) { |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 546 | UpdateValueMap(I, ResultReg); |
| 547 | return true; |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 548 | } |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 549 | return false; |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 550 | } |
| 551 | |
Chris Lattner | 51ccb3d | 2008-10-15 04:29:23 +0000 | [diff] [blame] | 552 | static unsigned X86ChooseCmpOpcode(MVT VT) { |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 553 | switch (VT.getSimpleVT()) { |
Chris Lattner | 45ac17f | 2008-10-15 04:32:45 +0000 | [diff] [blame] | 554 | default: return 0; |
| 555 | case MVT::i8: return X86::CMP8rr; |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 556 | case MVT::i16: return X86::CMP16rr; |
| 557 | case MVT::i32: return X86::CMP32rr; |
| 558 | case MVT::i64: return X86::CMP64rr; |
| 559 | case MVT::f32: return X86::UCOMISSrr; |
| 560 | case MVT::f64: return X86::UCOMISDrr; |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 561 | } |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 562 | } |
| 563 | |
Chris Lattner | 0e13c78 | 2008-10-15 04:13:29 +0000 | [diff] [blame] | 564 | /// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS |
| 565 | /// of the comparison, return an opcode that works for the compare (e.g. |
| 566 | /// CMP32ri) otherwise return 0. |
Chris Lattner | 45ac17f | 2008-10-15 04:32:45 +0000 | [diff] [blame] | 567 | static unsigned X86ChooseCmpImmediateOpcode(MVT VT, ConstantInt *RHSC) { |
| 568 | switch (VT.getSimpleVT()) { |
Chris Lattner | 0e13c78 | 2008-10-15 04:13:29 +0000 | [diff] [blame] | 569 | // Otherwise, we can't fold the immediate into this comparison. |
Chris Lattner | 45ac17f | 2008-10-15 04:32:45 +0000 | [diff] [blame] | 570 | default: return 0; |
| 571 | case MVT::i8: return X86::CMP8ri; |
| 572 | case MVT::i16: return X86::CMP16ri; |
| 573 | case MVT::i32: return X86::CMP32ri; |
| 574 | case MVT::i64: |
| 575 | // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext |
| 576 | // field. |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 577 | if ((int)RHSC->getSExtValue() == RHSC->getSExtValue()) |
Chris Lattner | 45ac17f | 2008-10-15 04:32:45 +0000 | [diff] [blame] | 578 | return X86::CMP64ri32; |
| 579 | return 0; |
| 580 | } |
Chris Lattner | 0e13c78 | 2008-10-15 04:13:29 +0000 | [diff] [blame] | 581 | } |
| 582 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 583 | bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, MVT VT) { |
| 584 | unsigned Op0Reg = getRegForValue(Op0); |
| 585 | if (Op0Reg == 0) return false; |
| 586 | |
Chris Lattner | d53886b | 2008-10-15 05:18:04 +0000 | [diff] [blame] | 587 | // Handle 'null' like i32/i64 0. |
| 588 | if (isa<ConstantPointerNull>(Op1)) |
| 589 | Op1 = Constant::getNullValue(TD.getIntPtrType()); |
| 590 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 591 | // We have two options: compare with register or immediate. If the RHS of |
| 592 | // the compare is an immediate that we can fold into this compare, use |
| 593 | // CMPri, otherwise use CMPrr. |
| 594 | if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) { |
Chris Lattner | 45ac17f | 2008-10-15 04:32:45 +0000 | [diff] [blame] | 595 | if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) { |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 596 | BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg) |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 597 | .addImm(Op1C->getSExtValue()); |
| 598 | return true; |
| 599 | } |
| 600 | } |
| 601 | |
| 602 | unsigned CompareOpc = X86ChooseCmpOpcode(VT); |
| 603 | if (CompareOpc == 0) return false; |
| 604 | |
| 605 | unsigned Op1Reg = getRegForValue(Op1); |
| 606 | if (Op1Reg == 0) return false; |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 607 | BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg); |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 608 | |
| 609 | return true; |
| 610 | } |
| 611 | |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 612 | bool X86FastISel::X86SelectCmp(Instruction *I) { |
| 613 | CmpInst *CI = cast<CmpInst>(I); |
| 614 | |
Dan Gohman | 9b66d73 | 2008-09-30 00:48:39 +0000 | [diff] [blame] | 615 | MVT VT; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 616 | if (!isTypeLegal(I->getOperand(0)->getType(), VT)) |
Dan Gohman | 4f22bb0 | 2008-09-05 01:33:56 +0000 | [diff] [blame] | 617 | return false; |
| 618 | |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 619 | unsigned ResultReg = createResultReg(&X86::GR8RegClass); |
Chris Lattner | 54aebde | 2008-10-15 03:47:17 +0000 | [diff] [blame] | 620 | unsigned SetCCOpc; |
Chris Lattner | 8aeeeb9 | 2008-10-15 03:52:54 +0000 | [diff] [blame] | 621 | bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0. |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 622 | switch (CI->getPredicate()) { |
| 623 | case CmpInst::FCMP_OEQ: { |
Chris Lattner | 51ccb3d | 2008-10-15 04:29:23 +0000 | [diff] [blame] | 624 | if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT)) |
| 625 | return false; |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 626 | |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 627 | unsigned EReg = createResultReg(&X86::GR8RegClass); |
| 628 | unsigned NPReg = createResultReg(&X86::GR8RegClass); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 629 | BuildMI(MBB, DL, TII.get(X86::SETEr), EReg); |
| 630 | BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg); |
| 631 | BuildMI(MBB, DL, |
| 632 | TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg); |
Chris Lattner | 54aebde | 2008-10-15 03:47:17 +0000 | [diff] [blame] | 633 | UpdateValueMap(I, ResultReg); |
| 634 | return true; |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 635 | } |
| 636 | case CmpInst::FCMP_UNE: { |
Chris Lattner | 51ccb3d | 2008-10-15 04:29:23 +0000 | [diff] [blame] | 637 | if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT)) |
| 638 | return false; |
| 639 | |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 640 | unsigned NEReg = createResultReg(&X86::GR8RegClass); |
| 641 | unsigned PReg = createResultReg(&X86::GR8RegClass); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 642 | BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg); |
| 643 | BuildMI(MBB, DL, TII.get(X86::SETPr), PReg); |
| 644 | BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg); |
Chris Lattner | 54aebde | 2008-10-15 03:47:17 +0000 | [diff] [blame] | 645 | UpdateValueMap(I, ResultReg); |
| 646 | return true; |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 647 | } |
Chris Lattner | 8aeeeb9 | 2008-10-15 03:52:54 +0000 | [diff] [blame] | 648 | case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break; |
| 649 | case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break; |
| 650 | case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break; |
| 651 | case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break; |
| 652 | case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break; |
| 653 | case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break; |
| 654 | case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break; |
| 655 | case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break; |
| 656 | case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break; |
| 657 | case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break; |
| 658 | case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break; |
| 659 | case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break; |
| 660 | |
| 661 | case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break; |
| 662 | case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break; |
| 663 | case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break; |
| 664 | case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break; |
| 665 | case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break; |
| 666 | case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break; |
| 667 | case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break; |
| 668 | case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break; |
| 669 | case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break; |
| 670 | case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break; |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 671 | default: |
| 672 | return false; |
| 673 | } |
| 674 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 675 | Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1); |
Chris Lattner | 8aeeeb9 | 2008-10-15 03:52:54 +0000 | [diff] [blame] | 676 | if (SwapArgs) |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 677 | std::swap(Op0, Op1); |
Chris Lattner | 8aeeeb9 | 2008-10-15 03:52:54 +0000 | [diff] [blame] | 678 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 679 | // Emit a compare of Op0/Op1. |
Chris Lattner | 51ccb3d | 2008-10-15 04:29:23 +0000 | [diff] [blame] | 680 | if (!X86FastEmitCompare(Op0, Op1, VT)) |
| 681 | return false; |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 682 | |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 683 | BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg); |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 684 | UpdateValueMap(I, ResultReg); |
| 685 | return true; |
| 686 | } |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 687 | |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 688 | bool X86FastISel::X86SelectZExt(Instruction *I) { |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 689 | // Handle zero-extension from i1 to i8, which is common. |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 690 | if (I->getType() == Type::Int8Ty && |
| 691 | I->getOperand(0)->getType() == Type::Int1Ty) { |
| 692 | unsigned ResultReg = getRegForValue(I->getOperand(0)); |
Dan Gohman | f52550b | 2008-09-05 01:15:35 +0000 | [diff] [blame] | 693 | if (ResultReg == 0) return false; |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 694 | // Set the high bits to zero. |
| 695 | ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg); |
| 696 | if (ResultReg == 0) return false; |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 697 | UpdateValueMap(I, ResultReg); |
| 698 | return true; |
| 699 | } |
| 700 | |
| 701 | return false; |
| 702 | } |
| 703 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 704 | |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 705 | bool X86FastISel::X86SelectBranch(Instruction *I) { |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 706 | // Unconditional branches are selected by tablegen-generated code. |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 707 | // Handle a conditional branch. |
| 708 | BranchInst *BI = cast<BranchInst>(I); |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 709 | MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)]; |
| 710 | MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)]; |
| 711 | |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 712 | // Fold the common case of a conditional branch with a comparison. |
| 713 | if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) { |
| 714 | if (CI->hasOneUse()) { |
| 715 | MVT VT = TLI.getValueType(CI->getOperand(0)->getType()); |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 716 | |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 717 | // Try to take advantage of fallthrough opportunities. |
| 718 | CmpInst::Predicate Predicate = CI->getPredicate(); |
| 719 | if (MBB->isLayoutSuccessor(TrueMBB)) { |
| 720 | std::swap(TrueMBB, FalseMBB); |
| 721 | Predicate = CmpInst::getInversePredicate(Predicate); |
| 722 | } |
| 723 | |
Chris Lattner | 871d246 | 2008-10-15 03:58:05 +0000 | [diff] [blame] | 724 | bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0. |
| 725 | unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA" |
| 726 | |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 727 | switch (Predicate) { |
Dan Gohman | 7b66e04 | 2008-10-21 18:24:51 +0000 | [diff] [blame] | 728 | case CmpInst::FCMP_OEQ: |
| 729 | std::swap(TrueMBB, FalseMBB); |
| 730 | Predicate = CmpInst::FCMP_UNE; |
| 731 | // FALL THROUGH |
| 732 | case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE; break; |
Chris Lattner | 871d246 | 2008-10-15 03:58:05 +0000 | [diff] [blame] | 733 | case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA; break; |
| 734 | case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE; break; |
| 735 | case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA; break; |
| 736 | case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE; break; |
| 737 | case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE; break; |
| 738 | case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP; break; |
| 739 | case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP; break; |
| 740 | case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE; break; |
| 741 | case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB; break; |
| 742 | case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE; break; |
| 743 | case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break; |
| 744 | case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break; |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 745 | |
Chris Lattner | 871d246 | 2008-10-15 03:58:05 +0000 | [diff] [blame] | 746 | case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE; break; |
| 747 | case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE; break; |
| 748 | case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA; break; |
| 749 | case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE; break; |
| 750 | case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break; |
| 751 | case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break; |
| 752 | case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG; break; |
| 753 | case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE; break; |
| 754 | case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL; break; |
| 755 | case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE; break; |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 756 | default: |
| 757 | return false; |
| 758 | } |
Chris Lattner | 54aebde | 2008-10-15 03:47:17 +0000 | [diff] [blame] | 759 | |
Chris Lattner | 709d829 | 2008-10-15 04:02:26 +0000 | [diff] [blame] | 760 | Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1); |
| 761 | if (SwapArgs) |
| 762 | std::swap(Op0, Op1); |
| 763 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 764 | // Emit a compare of the LHS and RHS, setting the flags. |
| 765 | if (!X86FastEmitCompare(Op0, Op1, VT)) |
| 766 | return false; |
Chris Lattner | 0e13c78 | 2008-10-15 04:13:29 +0000 | [diff] [blame] | 767 | |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 768 | BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB); |
Dan Gohman | 7b66e04 | 2008-10-21 18:24:51 +0000 | [diff] [blame] | 769 | |
| 770 | if (Predicate == CmpInst::FCMP_UNE) { |
| 771 | // X86 requires a second branch to handle UNE (and OEQ, |
| 772 | // which is mapped to UNE above). |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 773 | BuildMI(MBB, DL, TII.get(X86::JP)).addMBB(TrueMBB); |
Dan Gohman | 7b66e04 | 2008-10-21 18:24:51 +0000 | [diff] [blame] | 774 | } |
| 775 | |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 776 | FastEmitBranch(FalseMBB); |
Dan Gohman | 8c3f8b6 | 2008-10-07 22:10:33 +0000 | [diff] [blame] | 777 | MBB->addSuccessor(TrueMBB); |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 778 | return true; |
| 779 | } |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 780 | } else if (ExtractValueInst *EI = |
| 781 | dyn_cast<ExtractValueInst>(BI->getCondition())) { |
| 782 | // Check to see if the branch instruction is from an "arithmetic with |
| 783 | // overflow" intrinsic. The main way these intrinsics are used is: |
| 784 | // |
| 785 | // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2) |
| 786 | // %sum = extractvalue { i32, i1 } %t, 0 |
| 787 | // %obit = extractvalue { i32, i1 } %t, 1 |
| 788 | // br i1 %obit, label %overflow, label %normal |
| 789 | // |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 790 | // The %sum and %obit are converted in an ADD and a SETO/SETB before |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 791 | // reaching the branch. Therefore, we search backwards through the MBB |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 792 | // looking for the SETO/SETB instruction. If an instruction modifies the |
| 793 | // EFLAGS register before we reach the SETO/SETB instruction, then we can't |
| 794 | // convert the branch into a JO/JB instruction. |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 795 | if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){ |
| 796 | if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow || |
| 797 | CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) { |
| 798 | const MachineInstr *SetMI = 0; |
| 799 | unsigned Reg = lookUpRegForValue(EI); |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 800 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 801 | for (MachineBasicBlock::const_reverse_iterator |
| 802 | RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) { |
| 803 | const MachineInstr &MI = *RI; |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 804 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 805 | if (MI.modifiesRegister(Reg)) { |
| 806 | unsigned Src, Dst, SrcSR, DstSR; |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 807 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 808 | if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) { |
| 809 | Reg = Src; |
| 810 | continue; |
Bill Wendling | 9a90132 | 2008-12-10 19:44:24 +0000 | [diff] [blame] | 811 | } |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 812 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 813 | SetMI = &MI; |
| 814 | break; |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 815 | } |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 816 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 817 | const TargetInstrDesc &TID = MI.getDesc(); |
| 818 | if (TID.hasUnmodeledSideEffects() || |
| 819 | TID.hasImplicitDefOfPhysReg(X86::EFLAGS)) |
| 820 | break; |
Bill Wendling | 9a90132 | 2008-12-10 19:44:24 +0000 | [diff] [blame] | 821 | } |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 822 | |
| 823 | if (SetMI) { |
| 824 | unsigned OpCode = SetMI->getOpcode(); |
| 825 | |
| 826 | if (OpCode == X86::SETOr || OpCode == X86::SETBr) { |
Chris Lattner | 8d57b77 | 2009-04-12 07:51:14 +0000 | [diff] [blame] | 827 | BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ? X86::JO : X86::JB)) |
| 828 | .addMBB(TrueMBB); |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 829 | FastEmitBranch(FalseMBB); |
| 830 | MBB->addSuccessor(TrueMBB); |
| 831 | return true; |
| 832 | } |
Bill Wendling | 9a90132 | 2008-12-10 19:44:24 +0000 | [diff] [blame] | 833 | } |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 834 | } |
| 835 | } |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | // Otherwise do a clumsy setcc and re-test it. |
| 839 | unsigned OpReg = getRegForValue(BI->getCondition()); |
| 840 | if (OpReg == 0) return false; |
| 841 | |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 842 | BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg); |
| 843 | BuildMI(MBB, DL, TII.get(X86::JNE)).addMBB(TrueMBB); |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 844 | FastEmitBranch(FalseMBB); |
Dan Gohman | 8c3f8b6 | 2008-10-07 22:10:33 +0000 | [diff] [blame] | 845 | MBB->addSuccessor(TrueMBB); |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 846 | return true; |
| 847 | } |
| 848 | |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 849 | bool X86FastISel::X86SelectShift(Instruction *I) { |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 850 | unsigned CReg = 0, OpReg = 0, OpImm = 0; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 851 | const TargetRegisterClass *RC = NULL; |
| 852 | if (I->getType() == Type::Int8Ty) { |
| 853 | CReg = X86::CL; |
| 854 | RC = &X86::GR8RegClass; |
| 855 | switch (I->getOpcode()) { |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 856 | case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break; |
| 857 | case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break; |
| 858 | case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 859 | default: return false; |
| 860 | } |
| 861 | } else if (I->getType() == Type::Int16Ty) { |
| 862 | CReg = X86::CX; |
| 863 | RC = &X86::GR16RegClass; |
| 864 | switch (I->getOpcode()) { |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 865 | case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break; |
| 866 | case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break; |
| 867 | case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 868 | default: return false; |
| 869 | } |
| 870 | } else if (I->getType() == Type::Int32Ty) { |
| 871 | CReg = X86::ECX; |
| 872 | RC = &X86::GR32RegClass; |
| 873 | switch (I->getOpcode()) { |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 874 | case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break; |
| 875 | case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break; |
| 876 | case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 877 | default: return false; |
| 878 | } |
| 879 | } else if (I->getType() == Type::Int64Ty) { |
| 880 | CReg = X86::RCX; |
| 881 | RC = &X86::GR64RegClass; |
| 882 | switch (I->getOpcode()) { |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 883 | case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break; |
| 884 | case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break; |
| 885 | case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 886 | default: return false; |
| 887 | } |
| 888 | } else { |
| 889 | return false; |
| 890 | } |
| 891 | |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 892 | MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true); |
| 893 | if (VT == MVT::Other || !isTypeLegal(I->getType(), VT)) |
Dan Gohman | f58cb6d | 2008-09-05 21:27:34 +0000 | [diff] [blame] | 894 | return false; |
| 895 | |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 896 | unsigned Op0Reg = getRegForValue(I->getOperand(0)); |
| 897 | if (Op0Reg == 0) return false; |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 898 | |
| 899 | // Fold immediate in shl(x,3). |
| 900 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { |
| 901 | unsigned ResultReg = createResultReg(RC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 902 | BuildMI(MBB, DL, TII.get(OpImm), |
Dan Gohman | b12b1a2 | 2008-12-20 17:19:40 +0000 | [diff] [blame] | 903 | ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff); |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 904 | UpdateValueMap(I, ResultReg); |
| 905 | return true; |
| 906 | } |
| 907 | |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 908 | unsigned Op1Reg = getRegForValue(I->getOperand(1)); |
| 909 | if (Op1Reg == 0) return false; |
| 910 | TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC); |
Dan Gohman | 145b828 | 2008-10-07 21:50:36 +0000 | [diff] [blame] | 911 | |
| 912 | // The shift instruction uses X86::CL. If we defined a super-register |
| 913 | // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what |
| 914 | // we're doing here. |
| 915 | if (CReg != X86::CL) |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 916 | BuildMI(MBB, DL, TII.get(TargetInstrInfo::EXTRACT_SUBREG), X86::CL) |
Dan Gohman | 145b828 | 2008-10-07 21:50:36 +0000 | [diff] [blame] | 917 | .addReg(CReg).addImm(X86::SUBREG_8BIT); |
| 918 | |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 919 | unsigned ResultReg = createResultReg(RC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 920 | BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg); |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 921 | UpdateValueMap(I, ResultReg); |
| 922 | return true; |
| 923 | } |
| 924 | |
| 925 | bool X86FastISel::X86SelectSelect(Instruction *I) { |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 926 | MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true); |
| 927 | if (VT == MVT::Other || !isTypeLegal(I->getType(), VT)) |
| 928 | return false; |
| 929 | |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 930 | unsigned Opc = 0; |
| 931 | const TargetRegisterClass *RC = NULL; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 932 | if (VT.getSimpleVT() == MVT::i16) { |
Dan Gohman | 31d2691 | 2008-09-05 21:13:04 +0000 | [diff] [blame] | 933 | Opc = X86::CMOVE16rr; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 934 | RC = &X86::GR16RegClass; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 935 | } else if (VT.getSimpleVT() == MVT::i32) { |
Dan Gohman | 31d2691 | 2008-09-05 21:13:04 +0000 | [diff] [blame] | 936 | Opc = X86::CMOVE32rr; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 937 | RC = &X86::GR32RegClass; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 938 | } else if (VT.getSimpleVT() == MVT::i64) { |
Dan Gohman | 31d2691 | 2008-09-05 21:13:04 +0000 | [diff] [blame] | 939 | Opc = X86::CMOVE64rr; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 940 | RC = &X86::GR64RegClass; |
| 941 | } else { |
| 942 | return false; |
| 943 | } |
| 944 | |
| 945 | unsigned Op0Reg = getRegForValue(I->getOperand(0)); |
| 946 | if (Op0Reg == 0) return false; |
| 947 | unsigned Op1Reg = getRegForValue(I->getOperand(1)); |
| 948 | if (Op1Reg == 0) return false; |
| 949 | unsigned Op2Reg = getRegForValue(I->getOperand(2)); |
| 950 | if (Op2Reg == 0) return false; |
| 951 | |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 952 | BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg); |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 953 | unsigned ResultReg = createResultReg(RC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 954 | BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg); |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 955 | UpdateValueMap(I, ResultReg); |
| 956 | return true; |
| 957 | } |
| 958 | |
Dan Gohman | 78efce6 | 2008-09-10 21:02:08 +0000 | [diff] [blame] | 959 | bool X86FastISel::X86SelectFPExt(Instruction *I) { |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 960 | // fpext from float to double. |
| 961 | if (Subtarget->hasSSE2() && I->getType() == Type::DoubleTy) { |
| 962 | Value *V = I->getOperand(0); |
| 963 | if (V->getType() == Type::FloatTy) { |
| 964 | unsigned OpReg = getRegForValue(V); |
| 965 | if (OpReg == 0) return false; |
| 966 | unsigned ResultReg = createResultReg(X86::FR64RegisterClass); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 967 | BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg); |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 968 | UpdateValueMap(I, ResultReg); |
| 969 | return true; |
Dan Gohman | 78efce6 | 2008-09-10 21:02:08 +0000 | [diff] [blame] | 970 | } |
| 971 | } |
| 972 | |
| 973 | return false; |
| 974 | } |
| 975 | |
| 976 | bool X86FastISel::X86SelectFPTrunc(Instruction *I) { |
| 977 | if (Subtarget->hasSSE2()) { |
| 978 | if (I->getType() == Type::FloatTy) { |
| 979 | Value *V = I->getOperand(0); |
| 980 | if (V->getType() == Type::DoubleTy) { |
| 981 | unsigned OpReg = getRegForValue(V); |
| 982 | if (OpReg == 0) return false; |
| 983 | unsigned ResultReg = createResultReg(X86::FR32RegisterClass); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 984 | BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg); |
Dan Gohman | 78efce6 | 2008-09-10 21:02:08 +0000 | [diff] [blame] | 985 | UpdateValueMap(I, ResultReg); |
| 986 | return true; |
| 987 | } |
| 988 | } |
| 989 | } |
| 990 | |
| 991 | return false; |
| 992 | } |
| 993 | |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 994 | bool X86FastISel::X86SelectTrunc(Instruction *I) { |
| 995 | if (Subtarget->is64Bit()) |
| 996 | // All other cases should be handled by the tblgen generated code. |
| 997 | return false; |
| 998 | MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); |
| 999 | MVT DstVT = TLI.getValueType(I->getType()); |
Chris Lattner | 44ceb8a | 2009-03-13 16:36:42 +0000 | [diff] [blame] | 1000 | |
| 1001 | // This code only handles truncation to byte right now. |
| 1002 | if (DstVT != MVT::i8 && DstVT != MVT::i1) |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1003 | // All other cases should be handled by the tblgen generated code. |
| 1004 | return false; |
| 1005 | if (SrcVT != MVT::i16 && SrcVT != MVT::i32) |
| 1006 | // All other cases should be handled by the tblgen generated code. |
| 1007 | return false; |
| 1008 | |
| 1009 | unsigned InputReg = getRegForValue(I->getOperand(0)); |
| 1010 | if (!InputReg) |
| 1011 | // Unhandled operand. Halt "fast" selection and bail. |
| 1012 | return false; |
| 1013 | |
Dan Gohman | 6241762 | 2009-04-27 16:33:14 +0000 | [diff] [blame] | 1014 | // First issue a copy to GR16_ABCD or GR32_ABCD. |
Dan Gohman | 21e3dfb | 2009-04-13 16:09:41 +0000 | [diff] [blame] | 1015 | unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr; |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1016 | const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16) |
Dan Gohman | 6241762 | 2009-04-27 16:33:14 +0000 | [diff] [blame] | 1017 | ? X86::GR16_ABCDRegisterClass : X86::GR32_ABCDRegisterClass; |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1018 | unsigned CopyReg = createResultReg(CopyRC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1019 | BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg); |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1020 | |
| 1021 | // Then issue an extract_subreg. |
Chris Lattner | 44ceb8a | 2009-03-13 16:36:42 +0000 | [diff] [blame] | 1022 | unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8, |
Evan Cheng | 536ab13 | 2009-01-22 09:10:11 +0000 | [diff] [blame] | 1023 | CopyReg, X86::SUBREG_8BIT); |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1024 | if (!ResultReg) |
| 1025 | return false; |
| 1026 | |
| 1027 | UpdateValueMap(I, ResultReg); |
| 1028 | return true; |
| 1029 | } |
| 1030 | |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1031 | bool X86FastISel::X86SelectExtractValue(Instruction *I) { |
| 1032 | ExtractValueInst *EI = cast<ExtractValueInst>(I); |
| 1033 | Value *Agg = EI->getAggregateOperand(); |
| 1034 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1035 | if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) { |
| 1036 | switch (CI->getIntrinsicID()) { |
| 1037 | default: break; |
| 1038 | case Intrinsic::sadd_with_overflow: |
| 1039 | case Intrinsic::uadd_with_overflow: |
| 1040 | // Cheat a little. We know that the registers for "add" and "seto" are |
| 1041 | // allocated sequentially. However, we only keep track of the register |
| 1042 | // for "add" in the value map. Use extractvalue's index to get the |
| 1043 | // correct register for "seto". |
| 1044 | UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin()); |
| 1045 | return true; |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1046 | } |
| 1047 | } |
| 1048 | |
| 1049 | return false; |
| 1050 | } |
| 1051 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1052 | bool X86FastISel::X86VisitIntrinsicCall(IntrinsicInst &I) { |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1053 | // FIXME: Handle more intrinsics. |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1054 | switch (I.getIntrinsicID()) { |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1055 | default: return false; |
| 1056 | case Intrinsic::sadd_with_overflow: |
| 1057 | case Intrinsic::uadd_with_overflow: { |
Bill Wendling | c065b3f | 2008-12-09 07:55:31 +0000 | [diff] [blame] | 1058 | // Replace "add with overflow" intrinsics with an "add" instruction followed |
| 1059 | // by a seto/setc instruction. Later on, when the "extractvalue" |
| 1060 | // instructions are encountered, we use the fact that two registers were |
| 1061 | // created sequentially to get the correct registers for the "sum" and the |
| 1062 | // "overflow bit". |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1063 | const Function *Callee = I.getCalledFunction(); |
| 1064 | const Type *RetTy = |
| 1065 | cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0)); |
| 1066 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1067 | MVT VT; |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1068 | if (!isTypeLegal(RetTy, VT)) |
| 1069 | return false; |
| 1070 | |
| 1071 | Value *Op1 = I.getOperand(1); |
| 1072 | Value *Op2 = I.getOperand(2); |
| 1073 | unsigned Reg1 = getRegForValue(Op1); |
| 1074 | unsigned Reg2 = getRegForValue(Op2); |
| 1075 | |
| 1076 | if (Reg1 == 0 || Reg2 == 0) |
| 1077 | // FIXME: Handle values *not* in registers. |
| 1078 | return false; |
| 1079 | |
| 1080 | unsigned OpC = 0; |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1081 | if (VT == MVT::i32) |
| 1082 | OpC = X86::ADD32rr; |
| 1083 | else if (VT == MVT::i64) |
| 1084 | OpC = X86::ADD64rr; |
| 1085 | else |
| 1086 | return false; |
| 1087 | |
| 1088 | unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT)); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1089 | BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2); |
Chris Lattner | 8d57b77 | 2009-04-12 07:51:14 +0000 | [diff] [blame] | 1090 | unsigned DestReg1 = UpdateValueMap(&I, ResultReg); |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1091 | |
Chris Lattner | 8d57b77 | 2009-04-12 07:51:14 +0000 | [diff] [blame] | 1092 | // If the add with overflow is an intra-block value then we just want to |
| 1093 | // create temporaries for it like normal. If it is a cross-block value then |
| 1094 | // UpdateValueMap will return the cross-block register used. Since we |
| 1095 | // *really* want the value to be live in the register pair known by |
| 1096 | // UpdateValueMap, we have to use DestReg1+1 as the destination register in |
| 1097 | // the cross block case. In the non-cross-block case, we should just make |
| 1098 | // another register for the value. |
| 1099 | if (DestReg1 != ResultReg) |
| 1100 | ResultReg = DestReg1+1; |
| 1101 | else |
| 1102 | ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8)); |
| 1103 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1104 | unsigned Opc = X86::SETBr; |
| 1105 | if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow) |
| 1106 | Opc = X86::SETOr; |
| 1107 | BuildMI(MBB, DL, TII.get(Opc), ResultReg); |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1108 | return true; |
| 1109 | } |
| 1110 | } |
| 1111 | } |
| 1112 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1113 | bool X86FastISel::X86SelectCall(Instruction *I) { |
| 1114 | CallInst *CI = cast<CallInst>(I); |
| 1115 | Value *Callee = I->getOperand(0); |
| 1116 | |
| 1117 | // Can't handle inline asm yet. |
| 1118 | if (isa<InlineAsm>(Callee)) |
| 1119 | return false; |
| 1120 | |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1121 | // Handle intrinsic calls. |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1122 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI)) |
| 1123 | return X86VisitIntrinsicCall(*II); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1124 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1125 | // Handle only C and fastcc calling conventions for now. |
| 1126 | CallSite CS(CI); |
| 1127 | unsigned CC = CS.getCallingConv(); |
| 1128 | if (CC != CallingConv::C && |
| 1129 | CC != CallingConv::Fast && |
| 1130 | CC != CallingConv::X86_FastCall) |
| 1131 | return false; |
| 1132 | |
Dan Gohman | 7d04e4a | 2009-05-04 19:50:33 +0000 | [diff] [blame] | 1133 | // On X86, -tailcallopt changes the fastcc ABI. FastISel doesn't |
| 1134 | // handle this for now. |
| 1135 | if (CC == CallingConv::Fast && PerformTailCallOpt) |
| 1136 | return false; |
| 1137 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1138 | // Let SDISel handle vararg functions. |
| 1139 | const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 1140 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 1141 | if (FTy->isVarArg()) |
| 1142 | return false; |
| 1143 | |
| 1144 | // Handle *simple* calls for now. |
| 1145 | const Type *RetTy = CS.getType(); |
| 1146 | MVT RetVT; |
Dan Gohman | b5b6ec6 | 2008-09-17 21:18:49 +0000 | [diff] [blame] | 1147 | if (RetTy == Type::VoidTy) |
| 1148 | RetVT = MVT::isVoid; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 1149 | else if (!isTypeLegal(RetTy, RetVT, true)) |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1150 | return false; |
| 1151 | |
Dan Gohman | b5b6ec6 | 2008-09-17 21:18:49 +0000 | [diff] [blame] | 1152 | // Materialize callee address in a register. FIXME: GV address can be |
| 1153 | // handled with a CALLpcrel32 instead. |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1154 | X86AddressMode CalleeAM; |
| 1155 | if (!X86SelectAddress(Callee, CalleeAM, true)) |
| 1156 | return false; |
Dan Gohman | b5b6ec6 | 2008-09-17 21:18:49 +0000 | [diff] [blame] | 1157 | unsigned CalleeOp = 0; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1158 | GlobalValue *GV = 0; |
Chris Lattner | 553e571 | 2009-06-27 04:50:14 +0000 | [diff] [blame] | 1159 | if (CalleeAM.GV != 0) { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1160 | GV = CalleeAM.GV; |
Chris Lattner | 553e571 | 2009-06-27 04:50:14 +0000 | [diff] [blame] | 1161 | } else if (CalleeAM.Base.Reg != 0) { |
| 1162 | CalleeOp = CalleeAM.Base.Reg; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1163 | } else |
| 1164 | return false; |
Dan Gohman | b5b6ec6 | 2008-09-17 21:18:49 +0000 | [diff] [blame] | 1165 | |
Evan Cheng | debdea0 | 2008-09-08 17:15:42 +0000 | [diff] [blame] | 1166 | // Allow calls which produce i1 results. |
| 1167 | bool AndToI1 = false; |
| 1168 | if (RetVT == MVT::i1) { |
| 1169 | RetVT = MVT::i8; |
| 1170 | AndToI1 = true; |
| 1171 | } |
| 1172 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1173 | // Deal with call operands first. |
Chris Lattner | 241ab47 | 2008-10-15 05:38:32 +0000 | [diff] [blame] | 1174 | SmallVector<Value*, 8> ArgVals; |
| 1175 | SmallVector<unsigned, 8> Args; |
| 1176 | SmallVector<MVT, 8> ArgVTs; |
| 1177 | SmallVector<ISD::ArgFlagsTy, 8> ArgFlags; |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1178 | Args.reserve(CS.arg_size()); |
Chris Lattner | 241ab47 | 2008-10-15 05:38:32 +0000 | [diff] [blame] | 1179 | ArgVals.reserve(CS.arg_size()); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1180 | ArgVTs.reserve(CS.arg_size()); |
| 1181 | ArgFlags.reserve(CS.arg_size()); |
| 1182 | for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
| 1183 | i != e; ++i) { |
| 1184 | unsigned Arg = getRegForValue(*i); |
| 1185 | if (Arg == 0) |
| 1186 | return false; |
| 1187 | ISD::ArgFlagsTy Flags; |
| 1188 | unsigned AttrInd = i - CS.arg_begin() + 1; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1189 | if (CS.paramHasAttr(AttrInd, Attribute::SExt)) |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1190 | Flags.setSExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1191 | if (CS.paramHasAttr(AttrInd, Attribute::ZExt)) |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1192 | Flags.setZExt(); |
| 1193 | |
| 1194 | // FIXME: Only handle *easy* calls for now. |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1195 | if (CS.paramHasAttr(AttrInd, Attribute::InReg) || |
| 1196 | CS.paramHasAttr(AttrInd, Attribute::StructRet) || |
| 1197 | CS.paramHasAttr(AttrInd, Attribute::Nest) || |
| 1198 | CS.paramHasAttr(AttrInd, Attribute::ByVal)) |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1199 | return false; |
| 1200 | |
| 1201 | const Type *ArgTy = (*i)->getType(); |
| 1202 | MVT ArgVT; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 1203 | if (!isTypeLegal(ArgTy, ArgVT)) |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1204 | return false; |
| 1205 | unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy); |
| 1206 | Flags.setOrigAlign(OriginalAlignment); |
| 1207 | |
| 1208 | Args.push_back(Arg); |
Chris Lattner | 241ab47 | 2008-10-15 05:38:32 +0000 | [diff] [blame] | 1209 | ArgVals.push_back(*i); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1210 | ArgVTs.push_back(ArgVT); |
| 1211 | ArgFlags.push_back(Flags); |
| 1212 | } |
| 1213 | |
| 1214 | // Analyze operands of the call, assigning locations to each operand. |
| 1215 | SmallVector<CCValAssign, 16> ArgLocs; |
| 1216 | CCState CCInfo(CC, false, TM, ArgLocs); |
| 1217 | CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC)); |
| 1218 | |
| 1219 | // Get a count of how many bytes are to be pushed on the stack. |
| 1220 | unsigned NumBytes = CCInfo.getNextStackOffset(); |
| 1221 | |
| 1222 | // Issue CALLSEQ_START |
Dan Gohman | 6d4b052 | 2008-10-01 18:28:06 +0000 | [diff] [blame] | 1223 | unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode(); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1224 | BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1225 | |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 1226 | // Process argument: walk the register/memloc assignments, inserting |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1227 | // copies / loads. |
| 1228 | SmallVector<unsigned, 4> RegArgs; |
| 1229 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 1230 | CCValAssign &VA = ArgLocs[i]; |
| 1231 | unsigned Arg = Args[VA.getValNo()]; |
| 1232 | MVT ArgVT = ArgVTs[VA.getValNo()]; |
| 1233 | |
| 1234 | // Promote the value if needed. |
| 1235 | switch (VA.getLocInfo()) { |
| 1236 | default: assert(0 && "Unknown loc info!"); |
| 1237 | case CCValAssign::Full: break; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1238 | case CCValAssign::SExt: { |
| 1239 | bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), |
| 1240 | Arg, ArgVT, Arg); |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1241 | assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted; |
Devang Patel | fd1c6c3 | 2008-12-23 21:56:28 +0000 | [diff] [blame] | 1242 | Emitted = true; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1243 | ArgVT = VA.getLocVT(); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1244 | break; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1245 | } |
| 1246 | case CCValAssign::ZExt: { |
| 1247 | bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), |
| 1248 | Arg, ArgVT, Arg); |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1249 | assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted; |
Devang Patel | fd1c6c3 | 2008-12-23 21:56:28 +0000 | [diff] [blame] | 1250 | Emitted = true; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1251 | ArgVT = VA.getLocVT(); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1252 | break; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1253 | } |
| 1254 | case CCValAssign::AExt: { |
| 1255 | bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), |
| 1256 | Arg, ArgVT, Arg); |
Owen Anderson | b636913 | 2008-09-11 02:41:37 +0000 | [diff] [blame] | 1257 | if (!Emitted) |
| 1258 | Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 1259 | Arg, ArgVT, Arg); |
Owen Anderson | b636913 | 2008-09-11 02:41:37 +0000 | [diff] [blame] | 1260 | if (!Emitted) |
| 1261 | Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), |
| 1262 | Arg, ArgVT, Arg); |
| 1263 | |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1264 | assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1265 | ArgVT = VA.getLocVT(); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1266 | break; |
| 1267 | } |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1268 | } |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1269 | |
| 1270 | if (VA.isRegLoc()) { |
| 1271 | TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT); |
| 1272 | bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(), |
| 1273 | Arg, RC, RC); |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1274 | assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted; |
Devang Patel | fd1c6c3 | 2008-12-23 21:56:28 +0000 | [diff] [blame] | 1275 | Emitted = true; |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1276 | RegArgs.push_back(VA.getLocReg()); |
| 1277 | } else { |
| 1278 | unsigned LocMemOffset = VA.getLocMemOffset(); |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1279 | X86AddressMode AM; |
| 1280 | AM.Base.Reg = StackPtr; |
| 1281 | AM.Disp = LocMemOffset; |
Chris Lattner | 241ab47 | 2008-10-15 05:38:32 +0000 | [diff] [blame] | 1282 | Value *ArgVal = ArgVals[VA.getValNo()]; |
| 1283 | |
| 1284 | // If this is a really simple value, emit this with the Value* version of |
| 1285 | // X86FastEmitStore. If it isn't simple, we don't want to do this, as it |
| 1286 | // can cause us to reevaluate the argument. |
| 1287 | if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal)) |
| 1288 | X86FastEmitStore(ArgVT, ArgVal, AM); |
| 1289 | else |
| 1290 | X86FastEmitStore(ArgVT, Arg, AM); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1291 | } |
| 1292 | } |
| 1293 | |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1294 | // ELF / PIC requires GOT in the EBX register before function calls via PLT |
| 1295 | // GOT pointer. |
Chris Lattner | 15a380a | 2009-07-09 04:39:06 +0000 | [diff] [blame^] | 1296 | if (Subtarget->isPICStyleGOT()) { |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1297 | TargetRegisterClass *RC = X86::GR32RegisterClass; |
Dan Gohman | 57c3dac | 2008-09-30 00:58:23 +0000 | [diff] [blame] | 1298 | unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF); |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1299 | bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC); |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1300 | assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted; |
Devang Patel | fd1c6c3 | 2008-12-23 21:56:28 +0000 | [diff] [blame] | 1301 | Emitted = true; |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1302 | } |
| 1303 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1304 | // Issue the call. |
| 1305 | unsigned CallOpc = CalleeOp |
| 1306 | ? (Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r) |
| 1307 | : (Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32); |
| 1308 | MachineInstrBuilder MIB = CalleeOp |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1309 | ? BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp) |
| 1310 | : BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV); |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1311 | |
| 1312 | // Add an implicit use GOT pointer in EBX. |
Chris Lattner | 15a380a | 2009-07-09 04:39:06 +0000 | [diff] [blame^] | 1313 | if (Subtarget->isPICStyleGOT()) |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1314 | MIB.addReg(X86::EBX); |
| 1315 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1316 | // Add implicit physical register uses to the call. |
Dan Gohman | 8c3f8b6 | 2008-10-07 22:10:33 +0000 | [diff] [blame] | 1317 | for (unsigned i = 0, e = RegArgs.size(); i != e; ++i) |
| 1318 | MIB.addReg(RegArgs[i]); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1319 | |
| 1320 | // Issue CALLSEQ_END |
Dan Gohman | 6d4b052 | 2008-10-01 18:28:06 +0000 | [diff] [blame] | 1321 | unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode(); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1322 | BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1323 | |
| 1324 | // Now handle call return value (if any). |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1325 | if (RetVT.getSimpleVT() != MVT::isVoid) { |
| 1326 | SmallVector<CCValAssign, 16> RVLocs; |
| 1327 | CCState CCInfo(CC, false, TM, RVLocs); |
| 1328 | CCInfo.AnalyzeCallResult(RetVT, RetCC_X86); |
| 1329 | |
| 1330 | // Copy all of the result registers out of their specified physreg. |
| 1331 | assert(RVLocs.size() == 1 && "Can't handle multi-value calls!"); |
| 1332 | MVT CopyVT = RVLocs[0].getValVT(); |
| 1333 | TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT); |
| 1334 | TargetRegisterClass *SrcRC = DstRC; |
| 1335 | |
| 1336 | // If this is a call to a function that returns an fp value on the x87 fp |
| 1337 | // stack, but where we prefer to use the value in xmm registers, copy it |
| 1338 | // out as F80 and use a truncate to move it from fp stack reg to xmm reg. |
| 1339 | if ((RVLocs[0].getLocReg() == X86::ST0 || |
| 1340 | RVLocs[0].getLocReg() == X86::ST1) && |
| 1341 | isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) { |
| 1342 | CopyVT = MVT::f80; |
| 1343 | SrcRC = X86::RSTRegisterClass; |
| 1344 | DstRC = X86::RFP80RegisterClass; |
| 1345 | } |
| 1346 | |
| 1347 | unsigned ResultReg = createResultReg(DstRC); |
| 1348 | bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg, |
| 1349 | RVLocs[0].getLocReg(), DstRC, SrcRC); |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1350 | assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted; |
Devang Patel | fd1c6c3 | 2008-12-23 21:56:28 +0000 | [diff] [blame] | 1351 | Emitted = true; |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1352 | if (CopyVT != RVLocs[0].getValVT()) { |
| 1353 | // Round the F80 the right size, which also moves to the appropriate xmm |
| 1354 | // register. This is accomplished by storing the F80 value in memory and |
| 1355 | // then loading it back. Ewww... |
| 1356 | MVT ResVT = RVLocs[0].getValVT(); |
| 1357 | unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64; |
| 1358 | unsigned MemSize = ResVT.getSizeInBits()/8; |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1359 | int FI = MFI.CreateStackObject(MemSize, MemSize); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1360 | addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1361 | DstRC = ResVT == MVT::f32 |
| 1362 | ? X86::FR32RegisterClass : X86::FR64RegisterClass; |
| 1363 | Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm; |
| 1364 | ResultReg = createResultReg(DstRC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1365 | addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1366 | } |
| 1367 | |
Evan Cheng | debdea0 | 2008-09-08 17:15:42 +0000 | [diff] [blame] | 1368 | if (AndToI1) { |
| 1369 | // Mask out all but lowest bit for some call which produces an i1. |
| 1370 | unsigned AndResult = createResultReg(X86::GR8RegisterClass); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1371 | BuildMI(MBB, DL, |
| 1372 | TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1); |
Evan Cheng | debdea0 | 2008-09-08 17:15:42 +0000 | [diff] [blame] | 1373 | ResultReg = AndResult; |
| 1374 | } |
| 1375 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1376 | UpdateValueMap(I, ResultReg); |
| 1377 | } |
| 1378 | |
| 1379 | return true; |
| 1380 | } |
| 1381 | |
| 1382 | |
Dan Gohman | 99b2182 | 2008-08-28 23:21:34 +0000 | [diff] [blame] | 1383 | bool |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1384 | X86FastISel::TargetSelectInstruction(Instruction *I) { |
Dan Gohman | 99b2182 | 2008-08-28 23:21:34 +0000 | [diff] [blame] | 1385 | switch (I->getOpcode()) { |
| 1386 | default: break; |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 1387 | case Instruction::Load: |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1388 | return X86SelectLoad(I); |
Owen Anderson | 79924eb | 2008-09-04 16:48:33 +0000 | [diff] [blame] | 1389 | case Instruction::Store: |
| 1390 | return X86SelectStore(I); |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 1391 | case Instruction::ICmp: |
| 1392 | case Instruction::FCmp: |
| 1393 | return X86SelectCmp(I); |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 1394 | case Instruction::ZExt: |
| 1395 | return X86SelectZExt(I); |
| 1396 | case Instruction::Br: |
| 1397 | return X86SelectBranch(I); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1398 | case Instruction::Call: |
| 1399 | return X86SelectCall(I); |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 1400 | case Instruction::LShr: |
| 1401 | case Instruction::AShr: |
| 1402 | case Instruction::Shl: |
| 1403 | return X86SelectShift(I); |
| 1404 | case Instruction::Select: |
| 1405 | return X86SelectSelect(I); |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1406 | case Instruction::Trunc: |
| 1407 | return X86SelectTrunc(I); |
Dan Gohman | 78efce6 | 2008-09-10 21:02:08 +0000 | [diff] [blame] | 1408 | case Instruction::FPExt: |
| 1409 | return X86SelectFPExt(I); |
| 1410 | case Instruction::FPTrunc: |
| 1411 | return X86SelectFPTrunc(I); |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1412 | case Instruction::ExtractValue: |
| 1413 | return X86SelectExtractValue(I); |
Dan Gohman | 474d3b3 | 2009-03-13 23:53:06 +0000 | [diff] [blame] | 1414 | case Instruction::IntToPtr: // Deliberate fall-through. |
| 1415 | case Instruction::PtrToInt: { |
| 1416 | MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); |
| 1417 | MVT DstVT = TLI.getValueType(I->getType()); |
| 1418 | if (DstVT.bitsGT(SrcVT)) |
| 1419 | return X86SelectZExt(I); |
| 1420 | if (DstVT.bitsLT(SrcVT)) |
| 1421 | return X86SelectTrunc(I); |
| 1422 | unsigned Reg = getRegForValue(I->getOperand(0)); |
| 1423 | if (Reg == 0) return false; |
| 1424 | UpdateValueMap(I, Reg); |
| 1425 | return true; |
| 1426 | } |
Dan Gohman | 99b2182 | 2008-08-28 23:21:34 +0000 | [diff] [blame] | 1427 | } |
| 1428 | |
| 1429 | return false; |
| 1430 | } |
| 1431 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1432 | unsigned X86FastISel::TargetMaterializeConstant(Constant *C) { |
Evan Cheng | 59fbc80 | 2008-09-09 01:26:59 +0000 | [diff] [blame] | 1433 | MVT VT; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 1434 | if (!isTypeLegal(C->getType(), VT)) |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1435 | return false; |
| 1436 | |
| 1437 | // Get opcode and regclass of the output for the given load instruction. |
| 1438 | unsigned Opc = 0; |
| 1439 | const TargetRegisterClass *RC = NULL; |
| 1440 | switch (VT.getSimpleVT()) { |
| 1441 | default: return false; |
| 1442 | case MVT::i8: |
| 1443 | Opc = X86::MOV8rm; |
| 1444 | RC = X86::GR8RegisterClass; |
| 1445 | break; |
| 1446 | case MVT::i16: |
| 1447 | Opc = X86::MOV16rm; |
| 1448 | RC = X86::GR16RegisterClass; |
| 1449 | break; |
| 1450 | case MVT::i32: |
| 1451 | Opc = X86::MOV32rm; |
| 1452 | RC = X86::GR32RegisterClass; |
| 1453 | break; |
| 1454 | case MVT::i64: |
| 1455 | // Must be in x86-64 mode. |
| 1456 | Opc = X86::MOV64rm; |
| 1457 | RC = X86::GR64RegisterClass; |
| 1458 | break; |
| 1459 | case MVT::f32: |
| 1460 | if (Subtarget->hasSSE1()) { |
| 1461 | Opc = X86::MOVSSrm; |
| 1462 | RC = X86::FR32RegisterClass; |
| 1463 | } else { |
| 1464 | Opc = X86::LD_Fp32m; |
| 1465 | RC = X86::RFP32RegisterClass; |
| 1466 | } |
| 1467 | break; |
| 1468 | case MVT::f64: |
| 1469 | if (Subtarget->hasSSE2()) { |
| 1470 | Opc = X86::MOVSDrm; |
| 1471 | RC = X86::FR64RegisterClass; |
| 1472 | } else { |
| 1473 | Opc = X86::LD_Fp64m; |
| 1474 | RC = X86::RFP64RegisterClass; |
| 1475 | } |
| 1476 | break; |
| 1477 | case MVT::f80: |
Dan Gohman | 5af29c2 | 2008-09-26 01:39:32 +0000 | [diff] [blame] | 1478 | // No f80 support yet. |
| 1479 | return false; |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1480 | } |
| 1481 | |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1482 | // Materialize addresses with LEA instructions. |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1483 | if (isa<GlobalValue>(C)) { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1484 | X86AddressMode AM; |
| 1485 | if (X86SelectAddress(C, AM, false)) { |
| 1486 | if (TLI.getPointerTy() == MVT::i32) |
| 1487 | Opc = X86::LEA32r; |
| 1488 | else |
| 1489 | Opc = X86::LEA64r; |
| 1490 | unsigned ResultReg = createResultReg(RC); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1491 | addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM); |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1492 | return ResultReg; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1493 | } |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 1494 | return 0; |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1495 | } |
| 1496 | |
Owen Anderson | 3b217c6 | 2008-09-06 01:11:01 +0000 | [diff] [blame] | 1497 | // MachineConstantPool wants an explicit alignment. |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1498 | unsigned Align = TD.getPrefTypeAlignment(C->getType()); |
Owen Anderson | 3b217c6 | 2008-09-06 01:11:01 +0000 | [diff] [blame] | 1499 | if (Align == 0) { |
| 1500 | // Alignment of vector types. FIXME! |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 1501 | Align = TD.getTypeAllocSize(C->getType()); |
Owen Anderson | 3b217c6 | 2008-09-06 01:11:01 +0000 | [diff] [blame] | 1502 | } |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1503 | |
Dan Gohman | 5396c99 | 2008-09-30 01:21:32 +0000 | [diff] [blame] | 1504 | // x86-32 PIC requires a PIC base register for constant pools. |
| 1505 | unsigned PICBase = 0; |
Chris Lattner | 89da699 | 2009-06-27 01:31:51 +0000 | [diff] [blame] | 1506 | unsigned char OpFlag = 0; |
Chris Lattner | 15a380a | 2009-07-09 04:39:06 +0000 | [diff] [blame^] | 1507 | if (Subtarget->isPICStyleStub() && |
| 1508 | TM.getRelocationModel() == Reloc::PIC_) { // Not dynamic-no-pic |
| 1509 | OpFlag = X86II::MO_PIC_BASE_OFFSET; |
| 1510 | PICBase = getInstrInfo()->getGlobalBaseReg(&MF); |
| 1511 | } else if (Subtarget->isPICStyleGOT()) { |
| 1512 | OpFlag = X86II::MO_GOTOFF; |
| 1513 | PICBase = getInstrInfo()->getGlobalBaseReg(&MF); |
| 1514 | } else if (Subtarget->isPICStyleRIPRel() && |
| 1515 | TM.getCodeModel() == CodeModel::Small) { |
| 1516 | PICBase = X86::RIP; |
Chris Lattner | 89da699 | 2009-06-27 01:31:51 +0000 | [diff] [blame] | 1517 | } |
Dan Gohman | 5396c99 | 2008-09-30 01:21:32 +0000 | [diff] [blame] | 1518 | |
| 1519 | // Create the load from the constant pool. |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1520 | unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align); |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1521 | unsigned ResultReg = createResultReg(RC); |
Chris Lattner | 89da699 | 2009-06-27 01:31:51 +0000 | [diff] [blame] | 1522 | addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), |
| 1523 | MCPOffset, PICBase, OpFlag); |
Dan Gohman | 5396c99 | 2008-09-30 01:21:32 +0000 | [diff] [blame] | 1524 | |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1525 | return ResultReg; |
| 1526 | } |
| 1527 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1528 | unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) { |
Dan Gohman | 4e6ed5e | 2008-10-03 01:27:49 +0000 | [diff] [blame] | 1529 | // Fail on dynamic allocas. At this point, getRegForValue has already |
| 1530 | // checked its CSE maps, so if we're here trying to handle a dynamic |
| 1531 | // alloca, we're not going to succeed. X86SelectAddress has a |
| 1532 | // check for dynamic allocas, because it's called directly from |
| 1533 | // various places, but TargetMaterializeAlloca also needs a check |
| 1534 | // in order to avoid recursion between getRegForValue, |
| 1535 | // X86SelectAddrss, and TargetMaterializeAlloca. |
| 1536 | if (!StaticAllocaMap.count(C)) |
| 1537 | return 0; |
| 1538 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1539 | X86AddressMode AM; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1540 | if (!X86SelectAddress(C, AM, false)) |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1541 | return 0; |
| 1542 | unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r; |
| 1543 | TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy()); |
| 1544 | unsigned ResultReg = createResultReg(RC); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1545 | addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM); |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1546 | return ResultReg; |
| 1547 | } |
| 1548 | |
Evan Cheng | c3f44b0 | 2008-09-03 00:03:49 +0000 | [diff] [blame] | 1549 | namespace llvm { |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1550 | llvm::FastISel *X86::createFastISel(MachineFunction &mf, |
Dan Gohman | d57dd5f | 2008-09-23 21:53:34 +0000 | [diff] [blame] | 1551 | MachineModuleInfo *mmi, |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 1552 | DwarfWriter *dw, |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1553 | DenseMap<const Value *, unsigned> &vm, |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1554 | DenseMap<const BasicBlock *, MachineBasicBlock *> &bm, |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 1555 | DenseMap<const AllocaInst *, int> &am |
| 1556 | #ifndef NDEBUG |
| 1557 | , SmallSet<Instruction*, 8> &cil |
| 1558 | #endif |
| 1559 | ) { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 1560 | return new X86FastISel(mf, mmi, dw, vm, bm, am |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 1561 | #ifndef NDEBUG |
| 1562 | , cil |
| 1563 | #endif |
| 1564 | ); |
Evan Cheng | c3f44b0 | 2008-09-03 00:03:49 +0000 | [diff] [blame] | 1565 | } |
Dan Gohman | 99b2182 | 2008-08-28 23:21:34 +0000 | [diff] [blame] | 1566 | } |