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 | |
Chris Lattner | ff7727f | 2009-07-09 06:41:35 +0000 | [diff] [blame] | 443 | // Okay, we've committed to selecting this global. Set up the basic address. |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 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_ && |
Chris Lattner | 75cdf27 | 2009-07-09 06:59:17 +0000 | [diff] [blame^] | 448 | !Subtarget->is64Bit()) { |
| 449 | // FIXME: How do we know Base.Reg is free?? |
Dan Gohman | 57c3dac | 2008-09-30 00:58:23 +0000 | [diff] [blame] | 450 | AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF); |
Chris Lattner | 75cdf27 | 2009-07-09 06:59:17 +0000 | [diff] [blame^] | 451 | } |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 452 | |
Chris Lattner | ff7727f | 2009-07-09 06:41:35 +0000 | [diff] [blame] | 453 | // If the ABI doesn't require an extra load, return a direct reference to |
| 454 | // the global. |
| 455 | if (!Subtarget->GVRequiresExtraLoad(GV, TM, isCall)) { |
| 456 | if (Subtarget->isPICStyleRIPRel()) { |
| 457 | // Use rip-relative addressing if we can. Above we verified that the |
| 458 | // base and index registers are unused. |
| 459 | assert(AM.Base.Reg == 0 && AM.IndexReg == 0); |
| 460 | AM.Base.Reg = X86::RIP; |
Chris Lattner | 75cdf27 | 2009-07-09 06:59:17 +0000 | [diff] [blame^] | 461 | } else if (Subtarget->isPICStyleStub() && |
| 462 | TM.getRelocationModel() == Reloc::PIC_) { |
| 463 | AM.GVOpFlags = X86II::MO_PIC_BASE_OFFSET; |
| 464 | } else if (Subtarget->isPICStyleGOT()) { |
| 465 | AM.GVOpFlags = X86II::MO_GOTOFF; |
Dan Gohman | 7e8ef60 | 2008-09-19 23:42:04 +0000 | [diff] [blame] | 466 | } |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 467 | |
Chris Lattner | ff7727f | 2009-07-09 06:41:35 +0000 | [diff] [blame] | 468 | return true; |
| 469 | } |
| 470 | |
| 471 | // Check to see if we've already materialized this stub loaded value into a |
| 472 | // register in this block. If so, just reuse it. |
| 473 | DenseMap<const Value*, unsigned>::iterator I = LocalValueMap.find(V); |
| 474 | unsigned LoadReg; |
| 475 | if (I != LocalValueMap.end() && I->second != 0) { |
| 476 | LoadReg = I->second; |
| 477 | } else { |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 478 | // Issue load from stub. |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 479 | unsigned Opc = 0; |
| 480 | const TargetRegisterClass *RC = NULL; |
Dan Gohman | 789ce77 | 2008-09-25 23:34:02 +0000 | [diff] [blame] | 481 | X86AddressMode StubAM; |
| 482 | StubAM.Base.Reg = AM.Base.Reg; |
Chris Lattner | 75cdf27 | 2009-07-09 06:59:17 +0000 | [diff] [blame^] | 483 | StubAM.GV = GV; |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 484 | |
Chris Lattner | 75cdf27 | 2009-07-09 06:59:17 +0000 | [diff] [blame^] | 485 | if (TLI.getPointerTy() == MVT::i64) { |
| 486 | Opc = X86::MOV64rm; |
| 487 | RC = X86::GR64RegisterClass; |
| 488 | |
| 489 | if (Subtarget->isPICStyleRIPRel()) { |
| 490 | StubAM.GVOpFlags = X86II::MO_GOTPCREL; |
| 491 | StubAM.Base.Reg = X86::RIP; |
| 492 | } |
| 493 | |
| 494 | } else { |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 495 | Opc = X86::MOV32rm; |
| 496 | RC = X86::GR32RegisterClass; |
| 497 | |
Chris Lattner | 15a380a | 2009-07-09 04:39:06 +0000 | [diff] [blame] | 498 | if (Subtarget->isPICStyleGOT()) |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 499 | StubAM.GVOpFlags = X86II::MO_GOT; |
Chris Lattner | 75cdf27 | 2009-07-09 06:59:17 +0000 | [diff] [blame^] | 500 | else if (Subtarget->isPICStyleStub()) { |
| 501 | // In darwin, we have multiple different stub types, and we have both |
| 502 | // PIC and -mdynamic-no-pic. Determine whether we have a stub |
| 503 | // reference and/or whether the reference is relative to the PIC base |
| 504 | // or not. |
| 505 | bool IsPIC = TM.getRelocationModel() == Reloc::PIC_; |
| 506 | |
| 507 | if (!GV->hasHiddenVisibility()) { |
| 508 | // Non-hidden $non_lazy_ptr reference. |
| 509 | StubAM.GVOpFlags = IsPIC ? X86II::MO_DARWIN_NONLAZY_PIC_BASE : |
| 510 | X86II::MO_DARWIN_NONLAZY; |
| 511 | } else { |
| 512 | // Hidden $non_lazy_ptr reference. |
| 513 | StubAM.GVOpFlags = IsPIC ? X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE: |
| 514 | X86II::MO_DARWIN_HIDDEN_NONLAZY; |
| 515 | } |
Chris Lattner | cd714b1 | 2009-07-02 04:22:01 +0000 | [diff] [blame] | 516 | } |
Chris Lattner | 35c28ec | 2009-07-01 03:27:19 +0000 | [diff] [blame] | 517 | } |
Chris Lattner | ff7727f | 2009-07-09 06:41:35 +0000 | [diff] [blame] | 518 | |
| 519 | LoadReg = createResultReg(RC); |
| 520 | addFullAddress(BuildMI(MBB, DL, TII.get(Opc), LoadReg), StubAM); |
| 521 | |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 522 | // Prevent loading GV stub multiple times in same MBB. |
Chris Lattner | ff7727f | 2009-07-09 06:41:35 +0000 | [diff] [blame] | 523 | LocalValueMap[V] = LoadReg; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 524 | } |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 525 | |
Chris Lattner | ff7727f | 2009-07-09 06:41:35 +0000 | [diff] [blame] | 526 | // Now construct the final address. Note that the Disp, Scale, |
| 527 | // and Index values may already be set here. |
| 528 | AM.Base.Reg = LoadReg; |
| 529 | AM.GV = 0; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 530 | return true; |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Dan Gohman | 97135e1 | 2008-09-26 19:15:30 +0000 | [diff] [blame] | 533 | // If all else fails, try to materialize the value in a register. |
Chris Lattner | 4c1b606 | 2009-06-27 05:24:12 +0000 | [diff] [blame] | 534 | if (!AM.GV || !Subtarget->isPICStyleRIPRel()) { |
Dan Gohman | 97135e1 | 2008-09-26 19:15:30 +0000 | [diff] [blame] | 535 | if (AM.Base.Reg == 0) { |
| 536 | AM.Base.Reg = getRegForValue(V); |
| 537 | return AM.Base.Reg != 0; |
| 538 | } |
| 539 | if (AM.IndexReg == 0) { |
| 540 | assert(AM.Scale == 1 && "Scale with no index!"); |
| 541 | AM.IndexReg = getRegForValue(V); |
| 542 | return AM.IndexReg != 0; |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | return false; |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 549 | /// X86SelectStore - Select and emit code to implement store instructions. |
| 550 | bool X86FastISel::X86SelectStore(Instruction* I) { |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 551 | MVT VT; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 552 | if (!isTypeLegal(I->getOperand(0)->getType(), VT)) |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 553 | return false; |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 554 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 555 | X86AddressMode AM; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 556 | if (!X86SelectAddress(I->getOperand(1), AM, false)) |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 557 | return false; |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 558 | |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 559 | return X86FastEmitStore(VT, I->getOperand(0), AM); |
Owen Anderson | a3971df | 2008-09-04 07:08:58 +0000 | [diff] [blame] | 560 | } |
| 561 | |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 562 | /// X86SelectLoad - Select and emit code to implement load instructions. |
| 563 | /// |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 564 | bool X86FastISel::X86SelectLoad(Instruction *I) { |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 565 | MVT VT; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 566 | if (!isTypeLegal(I->getType(), VT)) |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 567 | return false; |
| 568 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 569 | X86AddressMode AM; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 570 | if (!X86SelectAddress(I->getOperand(0), AM, false)) |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 571 | return false; |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 572 | |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 573 | unsigned ResultReg = 0; |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 574 | if (X86FastEmitLoad(VT, AM, ResultReg)) { |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 575 | UpdateValueMap(I, ResultReg); |
| 576 | return true; |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 577 | } |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 578 | return false; |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 579 | } |
| 580 | |
Chris Lattner | 51ccb3d | 2008-10-15 04:29:23 +0000 | [diff] [blame] | 581 | static unsigned X86ChooseCmpOpcode(MVT VT) { |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 582 | switch (VT.getSimpleVT()) { |
Chris Lattner | 45ac17f | 2008-10-15 04:32:45 +0000 | [diff] [blame] | 583 | default: return 0; |
| 584 | case MVT::i8: return X86::CMP8rr; |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 585 | case MVT::i16: return X86::CMP16rr; |
| 586 | case MVT::i32: return X86::CMP32rr; |
| 587 | case MVT::i64: return X86::CMP64rr; |
| 588 | case MVT::f32: return X86::UCOMISSrr; |
| 589 | case MVT::f64: return X86::UCOMISDrr; |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 590 | } |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 591 | } |
| 592 | |
Chris Lattner | 0e13c78 | 2008-10-15 04:13:29 +0000 | [diff] [blame] | 593 | /// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS |
| 594 | /// of the comparison, return an opcode that works for the compare (e.g. |
| 595 | /// CMP32ri) otherwise return 0. |
Chris Lattner | 45ac17f | 2008-10-15 04:32:45 +0000 | [diff] [blame] | 596 | static unsigned X86ChooseCmpImmediateOpcode(MVT VT, ConstantInt *RHSC) { |
| 597 | switch (VT.getSimpleVT()) { |
Chris Lattner | 0e13c78 | 2008-10-15 04:13:29 +0000 | [diff] [blame] | 598 | // Otherwise, we can't fold the immediate into this comparison. |
Chris Lattner | 45ac17f | 2008-10-15 04:32:45 +0000 | [diff] [blame] | 599 | default: return 0; |
| 600 | case MVT::i8: return X86::CMP8ri; |
| 601 | case MVT::i16: return X86::CMP16ri; |
| 602 | case MVT::i32: return X86::CMP32ri; |
| 603 | case MVT::i64: |
| 604 | // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext |
| 605 | // field. |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 606 | if ((int)RHSC->getSExtValue() == RHSC->getSExtValue()) |
Chris Lattner | 45ac17f | 2008-10-15 04:32:45 +0000 | [diff] [blame] | 607 | return X86::CMP64ri32; |
| 608 | return 0; |
| 609 | } |
Chris Lattner | 0e13c78 | 2008-10-15 04:13:29 +0000 | [diff] [blame] | 610 | } |
| 611 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 612 | bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, MVT VT) { |
| 613 | unsigned Op0Reg = getRegForValue(Op0); |
| 614 | if (Op0Reg == 0) return false; |
| 615 | |
Chris Lattner | d53886b | 2008-10-15 05:18:04 +0000 | [diff] [blame] | 616 | // Handle 'null' like i32/i64 0. |
| 617 | if (isa<ConstantPointerNull>(Op1)) |
| 618 | Op1 = Constant::getNullValue(TD.getIntPtrType()); |
| 619 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 620 | // We have two options: compare with register or immediate. If the RHS of |
| 621 | // the compare is an immediate that we can fold into this compare, use |
| 622 | // CMPri, otherwise use CMPrr. |
| 623 | if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) { |
Chris Lattner | 45ac17f | 2008-10-15 04:32:45 +0000 | [diff] [blame] | 624 | if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) { |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 625 | BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg) |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 626 | .addImm(Op1C->getSExtValue()); |
| 627 | return true; |
| 628 | } |
| 629 | } |
| 630 | |
| 631 | unsigned CompareOpc = X86ChooseCmpOpcode(VT); |
| 632 | if (CompareOpc == 0) return false; |
| 633 | |
| 634 | unsigned Op1Reg = getRegForValue(Op1); |
| 635 | if (Op1Reg == 0) return false; |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 636 | BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg); |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 637 | |
| 638 | return true; |
| 639 | } |
| 640 | |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 641 | bool X86FastISel::X86SelectCmp(Instruction *I) { |
| 642 | CmpInst *CI = cast<CmpInst>(I); |
| 643 | |
Dan Gohman | 9b66d73 | 2008-09-30 00:48:39 +0000 | [diff] [blame] | 644 | MVT VT; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 645 | if (!isTypeLegal(I->getOperand(0)->getType(), VT)) |
Dan Gohman | 4f22bb0 | 2008-09-05 01:33:56 +0000 | [diff] [blame] | 646 | return false; |
| 647 | |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 648 | unsigned ResultReg = createResultReg(&X86::GR8RegClass); |
Chris Lattner | 54aebde | 2008-10-15 03:47:17 +0000 | [diff] [blame] | 649 | unsigned SetCCOpc; |
Chris Lattner | 8aeeeb9 | 2008-10-15 03:52:54 +0000 | [diff] [blame] | 650 | bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0. |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 651 | switch (CI->getPredicate()) { |
| 652 | case CmpInst::FCMP_OEQ: { |
Chris Lattner | 51ccb3d | 2008-10-15 04:29:23 +0000 | [diff] [blame] | 653 | if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT)) |
| 654 | return false; |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 655 | |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 656 | unsigned EReg = createResultReg(&X86::GR8RegClass); |
| 657 | unsigned NPReg = createResultReg(&X86::GR8RegClass); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 658 | BuildMI(MBB, DL, TII.get(X86::SETEr), EReg); |
| 659 | BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg); |
| 660 | BuildMI(MBB, DL, |
| 661 | TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg); |
Chris Lattner | 54aebde | 2008-10-15 03:47:17 +0000 | [diff] [blame] | 662 | UpdateValueMap(I, ResultReg); |
| 663 | return true; |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 664 | } |
| 665 | case CmpInst::FCMP_UNE: { |
Chris Lattner | 51ccb3d | 2008-10-15 04:29:23 +0000 | [diff] [blame] | 666 | if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT)) |
| 667 | return false; |
| 668 | |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 669 | unsigned NEReg = createResultReg(&X86::GR8RegClass); |
| 670 | unsigned PReg = createResultReg(&X86::GR8RegClass); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 671 | BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg); |
| 672 | BuildMI(MBB, DL, TII.get(X86::SETPr), PReg); |
| 673 | BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg); |
Chris Lattner | 54aebde | 2008-10-15 03:47:17 +0000 | [diff] [blame] | 674 | UpdateValueMap(I, ResultReg); |
| 675 | return true; |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 676 | } |
Chris Lattner | 8aeeeb9 | 2008-10-15 03:52:54 +0000 | [diff] [blame] | 677 | case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break; |
| 678 | case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break; |
| 679 | case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break; |
| 680 | case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break; |
| 681 | case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break; |
| 682 | case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break; |
| 683 | case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break; |
| 684 | case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break; |
| 685 | case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break; |
| 686 | case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break; |
| 687 | case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break; |
| 688 | case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break; |
| 689 | |
| 690 | case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break; |
| 691 | case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break; |
| 692 | case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break; |
| 693 | case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break; |
| 694 | case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break; |
| 695 | case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break; |
| 696 | case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break; |
| 697 | case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break; |
| 698 | case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break; |
| 699 | case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break; |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 700 | default: |
| 701 | return false; |
| 702 | } |
| 703 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 704 | Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1); |
Chris Lattner | 8aeeeb9 | 2008-10-15 03:52:54 +0000 | [diff] [blame] | 705 | if (SwapArgs) |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 706 | std::swap(Op0, Op1); |
Chris Lattner | 8aeeeb9 | 2008-10-15 03:52:54 +0000 | [diff] [blame] | 707 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 708 | // Emit a compare of Op0/Op1. |
Chris Lattner | 51ccb3d | 2008-10-15 04:29:23 +0000 | [diff] [blame] | 709 | if (!X86FastEmitCompare(Op0, Op1, VT)) |
| 710 | return false; |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 711 | |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 712 | BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg); |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 713 | UpdateValueMap(I, ResultReg); |
| 714 | return true; |
| 715 | } |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 716 | |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 717 | bool X86FastISel::X86SelectZExt(Instruction *I) { |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 718 | // Handle zero-extension from i1 to i8, which is common. |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 719 | if (I->getType() == Type::Int8Ty && |
| 720 | I->getOperand(0)->getType() == Type::Int1Ty) { |
| 721 | unsigned ResultReg = getRegForValue(I->getOperand(0)); |
Dan Gohman | f52550b | 2008-09-05 01:15:35 +0000 | [diff] [blame] | 722 | if (ResultReg == 0) return false; |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 723 | // Set the high bits to zero. |
| 724 | ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg); |
| 725 | if (ResultReg == 0) return false; |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 726 | UpdateValueMap(I, ResultReg); |
| 727 | return true; |
| 728 | } |
| 729 | |
| 730 | return false; |
| 731 | } |
| 732 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 733 | |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 734 | bool X86FastISel::X86SelectBranch(Instruction *I) { |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 735 | // Unconditional branches are selected by tablegen-generated code. |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 736 | // Handle a conditional branch. |
| 737 | BranchInst *BI = cast<BranchInst>(I); |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 738 | MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)]; |
| 739 | MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)]; |
| 740 | |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 741 | // Fold the common case of a conditional branch with a comparison. |
| 742 | if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) { |
| 743 | if (CI->hasOneUse()) { |
| 744 | MVT VT = TLI.getValueType(CI->getOperand(0)->getType()); |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 745 | |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 746 | // Try to take advantage of fallthrough opportunities. |
| 747 | CmpInst::Predicate Predicate = CI->getPredicate(); |
| 748 | if (MBB->isLayoutSuccessor(TrueMBB)) { |
| 749 | std::swap(TrueMBB, FalseMBB); |
| 750 | Predicate = CmpInst::getInversePredicate(Predicate); |
| 751 | } |
| 752 | |
Chris Lattner | 871d246 | 2008-10-15 03:58:05 +0000 | [diff] [blame] | 753 | bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0. |
| 754 | unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA" |
| 755 | |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 756 | switch (Predicate) { |
Dan Gohman | 7b66e04 | 2008-10-21 18:24:51 +0000 | [diff] [blame] | 757 | case CmpInst::FCMP_OEQ: |
| 758 | std::swap(TrueMBB, FalseMBB); |
| 759 | Predicate = CmpInst::FCMP_UNE; |
| 760 | // FALL THROUGH |
| 761 | case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE; break; |
Chris Lattner | 871d246 | 2008-10-15 03:58:05 +0000 | [diff] [blame] | 762 | case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA; break; |
| 763 | case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE; break; |
| 764 | case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA; break; |
| 765 | case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE; break; |
| 766 | case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE; break; |
| 767 | case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP; break; |
| 768 | case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP; break; |
| 769 | case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE; break; |
| 770 | case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB; break; |
| 771 | case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE; break; |
| 772 | case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break; |
| 773 | case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break; |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 774 | |
Chris Lattner | 871d246 | 2008-10-15 03:58:05 +0000 | [diff] [blame] | 775 | case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE; break; |
| 776 | case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE; break; |
| 777 | case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA; break; |
| 778 | case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE; break; |
| 779 | case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break; |
| 780 | case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break; |
| 781 | case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG; break; |
| 782 | case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE; break; |
| 783 | case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL; break; |
| 784 | case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE; break; |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 785 | default: |
| 786 | return false; |
| 787 | } |
Chris Lattner | 54aebde | 2008-10-15 03:47:17 +0000 | [diff] [blame] | 788 | |
Chris Lattner | 709d829 | 2008-10-15 04:02:26 +0000 | [diff] [blame] | 789 | Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1); |
| 790 | if (SwapArgs) |
| 791 | std::swap(Op0, Op1); |
| 792 | |
Chris Lattner | 9a08a61 | 2008-10-15 04:26:38 +0000 | [diff] [blame] | 793 | // Emit a compare of the LHS and RHS, setting the flags. |
| 794 | if (!X86FastEmitCompare(Op0, Op1, VT)) |
| 795 | return false; |
Chris Lattner | 0e13c78 | 2008-10-15 04:13:29 +0000 | [diff] [blame] | 796 | |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 797 | BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB); |
Dan Gohman | 7b66e04 | 2008-10-21 18:24:51 +0000 | [diff] [blame] | 798 | |
| 799 | if (Predicate == CmpInst::FCMP_UNE) { |
| 800 | // X86 requires a second branch to handle UNE (and OEQ, |
| 801 | // which is mapped to UNE above). |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 802 | BuildMI(MBB, DL, TII.get(X86::JP)).addMBB(TrueMBB); |
Dan Gohman | 7b66e04 | 2008-10-21 18:24:51 +0000 | [diff] [blame] | 803 | } |
| 804 | |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 805 | FastEmitBranch(FalseMBB); |
Dan Gohman | 8c3f8b6 | 2008-10-07 22:10:33 +0000 | [diff] [blame] | 806 | MBB->addSuccessor(TrueMBB); |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 807 | return true; |
| 808 | } |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 809 | } else if (ExtractValueInst *EI = |
| 810 | dyn_cast<ExtractValueInst>(BI->getCondition())) { |
| 811 | // Check to see if the branch instruction is from an "arithmetic with |
| 812 | // overflow" intrinsic. The main way these intrinsics are used is: |
| 813 | // |
| 814 | // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2) |
| 815 | // %sum = extractvalue { i32, i1 } %t, 0 |
| 816 | // %obit = extractvalue { i32, i1 } %t, 1 |
| 817 | // br i1 %obit, label %overflow, label %normal |
| 818 | // |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 819 | // 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] | 820 | // reaching the branch. Therefore, we search backwards through the MBB |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 821 | // looking for the SETO/SETB instruction. If an instruction modifies the |
| 822 | // EFLAGS register before we reach the SETO/SETB instruction, then we can't |
| 823 | // convert the branch into a JO/JB instruction. |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 824 | if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){ |
| 825 | if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow || |
| 826 | CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) { |
| 827 | const MachineInstr *SetMI = 0; |
| 828 | unsigned Reg = lookUpRegForValue(EI); |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 829 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 830 | for (MachineBasicBlock::const_reverse_iterator |
| 831 | RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) { |
| 832 | const MachineInstr &MI = *RI; |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 833 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 834 | if (MI.modifiesRegister(Reg)) { |
| 835 | unsigned Src, Dst, SrcSR, DstSR; |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 836 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 837 | if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) { |
| 838 | Reg = Src; |
| 839 | continue; |
Bill Wendling | 9a90132 | 2008-12-10 19:44:24 +0000 | [diff] [blame] | 840 | } |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 841 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 842 | SetMI = &MI; |
| 843 | break; |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 844 | } |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 845 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 846 | const TargetInstrDesc &TID = MI.getDesc(); |
| 847 | if (TID.hasUnmodeledSideEffects() || |
| 848 | TID.hasImplicitDefOfPhysReg(X86::EFLAGS)) |
| 849 | break; |
Bill Wendling | 9a90132 | 2008-12-10 19:44:24 +0000 | [diff] [blame] | 850 | } |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 851 | |
| 852 | if (SetMI) { |
| 853 | unsigned OpCode = SetMI->getOpcode(); |
| 854 | |
| 855 | if (OpCode == X86::SETOr || OpCode == X86::SETBr) { |
Chris Lattner | 8d57b77 | 2009-04-12 07:51:14 +0000 | [diff] [blame] | 856 | BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ? X86::JO : X86::JB)) |
| 857 | .addMBB(TrueMBB); |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 858 | FastEmitBranch(FalseMBB); |
| 859 | MBB->addSuccessor(TrueMBB); |
| 860 | return true; |
| 861 | } |
Bill Wendling | 9a90132 | 2008-12-10 19:44:24 +0000 | [diff] [blame] | 862 | } |
Bill Wendling | 30a64a7 | 2008-12-09 23:19:12 +0000 | [diff] [blame] | 863 | } |
| 864 | } |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 865 | } |
| 866 | |
| 867 | // Otherwise do a clumsy setcc and re-test it. |
| 868 | unsigned OpReg = getRegForValue(BI->getCondition()); |
| 869 | if (OpReg == 0) return false; |
| 870 | |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 871 | BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg); |
| 872 | BuildMI(MBB, DL, TII.get(X86::JNE)).addMBB(TrueMBB); |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 873 | FastEmitBranch(FalseMBB); |
Dan Gohman | 8c3f8b6 | 2008-10-07 22:10:33 +0000 | [diff] [blame] | 874 | MBB->addSuccessor(TrueMBB); |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 875 | return true; |
| 876 | } |
| 877 | |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 878 | bool X86FastISel::X86SelectShift(Instruction *I) { |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 879 | unsigned CReg = 0, OpReg = 0, OpImm = 0; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 880 | const TargetRegisterClass *RC = NULL; |
| 881 | if (I->getType() == Type::Int8Ty) { |
| 882 | CReg = X86::CL; |
| 883 | RC = &X86::GR8RegClass; |
| 884 | switch (I->getOpcode()) { |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 885 | case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break; |
| 886 | case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break; |
| 887 | case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 888 | default: return false; |
| 889 | } |
| 890 | } else if (I->getType() == Type::Int16Ty) { |
| 891 | CReg = X86::CX; |
| 892 | RC = &X86::GR16RegClass; |
| 893 | switch (I->getOpcode()) { |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 894 | case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break; |
| 895 | case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break; |
| 896 | case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 897 | default: return false; |
| 898 | } |
| 899 | } else if (I->getType() == Type::Int32Ty) { |
| 900 | CReg = X86::ECX; |
| 901 | RC = &X86::GR32RegClass; |
| 902 | switch (I->getOpcode()) { |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 903 | case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break; |
| 904 | case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break; |
| 905 | case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 906 | default: return false; |
| 907 | } |
| 908 | } else if (I->getType() == Type::Int64Ty) { |
| 909 | CReg = X86::RCX; |
| 910 | RC = &X86::GR64RegClass; |
| 911 | switch (I->getOpcode()) { |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 912 | case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break; |
| 913 | case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break; |
| 914 | case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 915 | default: return false; |
| 916 | } |
| 917 | } else { |
| 918 | return false; |
| 919 | } |
| 920 | |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 921 | MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true); |
| 922 | if (VT == MVT::Other || !isTypeLegal(I->getType(), VT)) |
Dan Gohman | f58cb6d | 2008-09-05 21:27:34 +0000 | [diff] [blame] | 923 | return false; |
| 924 | |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 925 | unsigned Op0Reg = getRegForValue(I->getOperand(0)); |
| 926 | if (Op0Reg == 0) return false; |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 927 | |
| 928 | // Fold immediate in shl(x,3). |
| 929 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { |
| 930 | unsigned ResultReg = createResultReg(RC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 931 | BuildMI(MBB, DL, TII.get(OpImm), |
Dan Gohman | b12b1a2 | 2008-12-20 17:19:40 +0000 | [diff] [blame] | 932 | ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff); |
Chris Lattner | 743922e | 2008-09-21 21:44:29 +0000 | [diff] [blame] | 933 | UpdateValueMap(I, ResultReg); |
| 934 | return true; |
| 935 | } |
| 936 | |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 937 | unsigned Op1Reg = getRegForValue(I->getOperand(1)); |
| 938 | if (Op1Reg == 0) return false; |
| 939 | TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC); |
Dan Gohman | 145b828 | 2008-10-07 21:50:36 +0000 | [diff] [blame] | 940 | |
| 941 | // The shift instruction uses X86::CL. If we defined a super-register |
| 942 | // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what |
| 943 | // we're doing here. |
| 944 | if (CReg != X86::CL) |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 945 | BuildMI(MBB, DL, TII.get(TargetInstrInfo::EXTRACT_SUBREG), X86::CL) |
Dan Gohman | 145b828 | 2008-10-07 21:50:36 +0000 | [diff] [blame] | 946 | .addReg(CReg).addImm(X86::SUBREG_8BIT); |
| 947 | |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 948 | unsigned ResultReg = createResultReg(RC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 949 | BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg); |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 950 | UpdateValueMap(I, ResultReg); |
| 951 | return true; |
| 952 | } |
| 953 | |
| 954 | bool X86FastISel::X86SelectSelect(Instruction *I) { |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 955 | MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true); |
| 956 | if (VT == MVT::Other || !isTypeLegal(I->getType(), VT)) |
| 957 | return false; |
| 958 | |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 959 | unsigned Opc = 0; |
| 960 | const TargetRegisterClass *RC = NULL; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 961 | if (VT.getSimpleVT() == MVT::i16) { |
Dan Gohman | 31d2691 | 2008-09-05 21:13:04 +0000 | [diff] [blame] | 962 | Opc = X86::CMOVE16rr; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 963 | RC = &X86::GR16RegClass; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 964 | } else if (VT.getSimpleVT() == MVT::i32) { |
Dan Gohman | 31d2691 | 2008-09-05 21:13:04 +0000 | [diff] [blame] | 965 | Opc = X86::CMOVE32rr; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 966 | RC = &X86::GR32RegClass; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 967 | } else if (VT.getSimpleVT() == MVT::i64) { |
Dan Gohman | 31d2691 | 2008-09-05 21:13:04 +0000 | [diff] [blame] | 968 | Opc = X86::CMOVE64rr; |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 969 | RC = &X86::GR64RegClass; |
| 970 | } else { |
| 971 | return false; |
| 972 | } |
| 973 | |
| 974 | unsigned Op0Reg = getRegForValue(I->getOperand(0)); |
| 975 | if (Op0Reg == 0) return false; |
| 976 | unsigned Op1Reg = getRegForValue(I->getOperand(1)); |
| 977 | if (Op1Reg == 0) return false; |
| 978 | unsigned Op2Reg = getRegForValue(I->getOperand(2)); |
| 979 | if (Op2Reg == 0) return false; |
| 980 | |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 981 | BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg); |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 982 | unsigned ResultReg = createResultReg(RC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 983 | BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg); |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 984 | UpdateValueMap(I, ResultReg); |
| 985 | return true; |
| 986 | } |
| 987 | |
Dan Gohman | 78efce6 | 2008-09-10 21:02:08 +0000 | [diff] [blame] | 988 | bool X86FastISel::X86SelectFPExt(Instruction *I) { |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 989 | // fpext from float to double. |
| 990 | if (Subtarget->hasSSE2() && I->getType() == Type::DoubleTy) { |
| 991 | Value *V = I->getOperand(0); |
| 992 | if (V->getType() == Type::FloatTy) { |
| 993 | unsigned OpReg = getRegForValue(V); |
| 994 | if (OpReg == 0) return false; |
| 995 | unsigned ResultReg = createResultReg(X86::FR64RegisterClass); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 996 | BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg); |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 997 | UpdateValueMap(I, ResultReg); |
| 998 | return true; |
Dan Gohman | 78efce6 | 2008-09-10 21:02:08 +0000 | [diff] [blame] | 999 | } |
| 1000 | } |
| 1001 | |
| 1002 | return false; |
| 1003 | } |
| 1004 | |
| 1005 | bool X86FastISel::X86SelectFPTrunc(Instruction *I) { |
| 1006 | if (Subtarget->hasSSE2()) { |
| 1007 | if (I->getType() == Type::FloatTy) { |
| 1008 | Value *V = I->getOperand(0); |
| 1009 | if (V->getType() == Type::DoubleTy) { |
| 1010 | unsigned OpReg = getRegForValue(V); |
| 1011 | if (OpReg == 0) return false; |
| 1012 | unsigned ResultReg = createResultReg(X86::FR32RegisterClass); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1013 | BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg); |
Dan Gohman | 78efce6 | 2008-09-10 21:02:08 +0000 | [diff] [blame] | 1014 | UpdateValueMap(I, ResultReg); |
| 1015 | return true; |
| 1016 | } |
| 1017 | } |
| 1018 | } |
| 1019 | |
| 1020 | return false; |
| 1021 | } |
| 1022 | |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1023 | bool X86FastISel::X86SelectTrunc(Instruction *I) { |
| 1024 | if (Subtarget->is64Bit()) |
| 1025 | // All other cases should be handled by the tblgen generated code. |
| 1026 | return false; |
| 1027 | MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); |
| 1028 | MVT DstVT = TLI.getValueType(I->getType()); |
Chris Lattner | 44ceb8a | 2009-03-13 16:36:42 +0000 | [diff] [blame] | 1029 | |
| 1030 | // This code only handles truncation to byte right now. |
| 1031 | if (DstVT != MVT::i8 && DstVT != MVT::i1) |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1032 | // All other cases should be handled by the tblgen generated code. |
| 1033 | return false; |
| 1034 | if (SrcVT != MVT::i16 && SrcVT != MVT::i32) |
| 1035 | // All other cases should be handled by the tblgen generated code. |
| 1036 | return false; |
| 1037 | |
| 1038 | unsigned InputReg = getRegForValue(I->getOperand(0)); |
| 1039 | if (!InputReg) |
| 1040 | // Unhandled operand. Halt "fast" selection and bail. |
| 1041 | return false; |
| 1042 | |
Dan Gohman | 6241762 | 2009-04-27 16:33:14 +0000 | [diff] [blame] | 1043 | // First issue a copy to GR16_ABCD or GR32_ABCD. |
Dan Gohman | 21e3dfb | 2009-04-13 16:09:41 +0000 | [diff] [blame] | 1044 | unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr; |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1045 | const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16) |
Dan Gohman | 6241762 | 2009-04-27 16:33:14 +0000 | [diff] [blame] | 1046 | ? X86::GR16_ABCDRegisterClass : X86::GR32_ABCDRegisterClass; |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1047 | unsigned CopyReg = createResultReg(CopyRC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1048 | BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg); |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1049 | |
| 1050 | // Then issue an extract_subreg. |
Chris Lattner | 44ceb8a | 2009-03-13 16:36:42 +0000 | [diff] [blame] | 1051 | unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8, |
Evan Cheng | 536ab13 | 2009-01-22 09:10:11 +0000 | [diff] [blame] | 1052 | CopyReg, X86::SUBREG_8BIT); |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1053 | if (!ResultReg) |
| 1054 | return false; |
| 1055 | |
| 1056 | UpdateValueMap(I, ResultReg); |
| 1057 | return true; |
| 1058 | } |
| 1059 | |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1060 | bool X86FastISel::X86SelectExtractValue(Instruction *I) { |
| 1061 | ExtractValueInst *EI = cast<ExtractValueInst>(I); |
| 1062 | Value *Agg = EI->getAggregateOperand(); |
| 1063 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1064 | if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) { |
| 1065 | switch (CI->getIntrinsicID()) { |
| 1066 | default: break; |
| 1067 | case Intrinsic::sadd_with_overflow: |
| 1068 | case Intrinsic::uadd_with_overflow: |
| 1069 | // Cheat a little. We know that the registers for "add" and "seto" are |
| 1070 | // allocated sequentially. However, we only keep track of the register |
| 1071 | // for "add" in the value map. Use extractvalue's index to get the |
| 1072 | // correct register for "seto". |
| 1073 | UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin()); |
| 1074 | return true; |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1075 | } |
| 1076 | } |
| 1077 | |
| 1078 | return false; |
| 1079 | } |
| 1080 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1081 | bool X86FastISel::X86VisitIntrinsicCall(IntrinsicInst &I) { |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1082 | // FIXME: Handle more intrinsics. |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1083 | switch (I.getIntrinsicID()) { |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1084 | default: return false; |
| 1085 | case Intrinsic::sadd_with_overflow: |
| 1086 | case Intrinsic::uadd_with_overflow: { |
Bill Wendling | c065b3f | 2008-12-09 07:55:31 +0000 | [diff] [blame] | 1087 | // Replace "add with overflow" intrinsics with an "add" instruction followed |
| 1088 | // by a seto/setc instruction. Later on, when the "extractvalue" |
| 1089 | // instructions are encountered, we use the fact that two registers were |
| 1090 | // created sequentially to get the correct registers for the "sum" and the |
| 1091 | // "overflow bit". |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1092 | const Function *Callee = I.getCalledFunction(); |
| 1093 | const Type *RetTy = |
| 1094 | cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0)); |
| 1095 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1096 | MVT VT; |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1097 | if (!isTypeLegal(RetTy, VT)) |
| 1098 | return false; |
| 1099 | |
| 1100 | Value *Op1 = I.getOperand(1); |
| 1101 | Value *Op2 = I.getOperand(2); |
| 1102 | unsigned Reg1 = getRegForValue(Op1); |
| 1103 | unsigned Reg2 = getRegForValue(Op2); |
| 1104 | |
| 1105 | if (Reg1 == 0 || Reg2 == 0) |
| 1106 | // FIXME: Handle values *not* in registers. |
| 1107 | return false; |
| 1108 | |
| 1109 | unsigned OpC = 0; |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1110 | if (VT == MVT::i32) |
| 1111 | OpC = X86::ADD32rr; |
| 1112 | else if (VT == MVT::i64) |
| 1113 | OpC = X86::ADD64rr; |
| 1114 | else |
| 1115 | return false; |
| 1116 | |
| 1117 | unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT)); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1118 | BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2); |
Chris Lattner | 8d57b77 | 2009-04-12 07:51:14 +0000 | [diff] [blame] | 1119 | unsigned DestReg1 = UpdateValueMap(&I, ResultReg); |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1120 | |
Chris Lattner | 8d57b77 | 2009-04-12 07:51:14 +0000 | [diff] [blame] | 1121 | // If the add with overflow is an intra-block value then we just want to |
| 1122 | // create temporaries for it like normal. If it is a cross-block value then |
| 1123 | // UpdateValueMap will return the cross-block register used. Since we |
| 1124 | // *really* want the value to be live in the register pair known by |
| 1125 | // UpdateValueMap, we have to use DestReg1+1 as the destination register in |
| 1126 | // the cross block case. In the non-cross-block case, we should just make |
| 1127 | // another register for the value. |
| 1128 | if (DestReg1 != ResultReg) |
| 1129 | ResultReg = DestReg1+1; |
| 1130 | else |
| 1131 | ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8)); |
| 1132 | |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1133 | unsigned Opc = X86::SETBr; |
| 1134 | if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow) |
| 1135 | Opc = X86::SETOr; |
| 1136 | BuildMI(MBB, DL, TII.get(Opc), ResultReg); |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1137 | return true; |
| 1138 | } |
| 1139 | } |
| 1140 | } |
| 1141 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1142 | bool X86FastISel::X86SelectCall(Instruction *I) { |
| 1143 | CallInst *CI = cast<CallInst>(I); |
| 1144 | Value *Callee = I->getOperand(0); |
| 1145 | |
| 1146 | // Can't handle inline asm yet. |
| 1147 | if (isa<InlineAsm>(Callee)) |
| 1148 | return false; |
| 1149 | |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1150 | // Handle intrinsic calls. |
Chris Lattner | a9a4225 | 2009-04-12 07:36:01 +0000 | [diff] [blame] | 1151 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI)) |
| 1152 | return X86VisitIntrinsicCall(*II); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1153 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1154 | // Handle only C and fastcc calling conventions for now. |
| 1155 | CallSite CS(CI); |
| 1156 | unsigned CC = CS.getCallingConv(); |
| 1157 | if (CC != CallingConv::C && |
| 1158 | CC != CallingConv::Fast && |
| 1159 | CC != CallingConv::X86_FastCall) |
| 1160 | return false; |
| 1161 | |
Dan Gohman | 7d04e4a | 2009-05-04 19:50:33 +0000 | [diff] [blame] | 1162 | // On X86, -tailcallopt changes the fastcc ABI. FastISel doesn't |
| 1163 | // handle this for now. |
| 1164 | if (CC == CallingConv::Fast && PerformTailCallOpt) |
| 1165 | return false; |
| 1166 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1167 | // Let SDISel handle vararg functions. |
| 1168 | const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 1169 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 1170 | if (FTy->isVarArg()) |
| 1171 | return false; |
| 1172 | |
| 1173 | // Handle *simple* calls for now. |
| 1174 | const Type *RetTy = CS.getType(); |
| 1175 | MVT RetVT; |
Dan Gohman | b5b6ec6 | 2008-09-17 21:18:49 +0000 | [diff] [blame] | 1176 | if (RetTy == Type::VoidTy) |
| 1177 | RetVT = MVT::isVoid; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 1178 | else if (!isTypeLegal(RetTy, RetVT, true)) |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1179 | return false; |
| 1180 | |
Dan Gohman | b5b6ec6 | 2008-09-17 21:18:49 +0000 | [diff] [blame] | 1181 | // Materialize callee address in a register. FIXME: GV address can be |
| 1182 | // handled with a CALLpcrel32 instead. |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1183 | X86AddressMode CalleeAM; |
| 1184 | if (!X86SelectAddress(Callee, CalleeAM, true)) |
| 1185 | return false; |
Dan Gohman | b5b6ec6 | 2008-09-17 21:18:49 +0000 | [diff] [blame] | 1186 | unsigned CalleeOp = 0; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1187 | GlobalValue *GV = 0; |
Chris Lattner | 553e571 | 2009-06-27 04:50:14 +0000 | [diff] [blame] | 1188 | if (CalleeAM.GV != 0) { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1189 | GV = CalleeAM.GV; |
Chris Lattner | 553e571 | 2009-06-27 04:50:14 +0000 | [diff] [blame] | 1190 | } else if (CalleeAM.Base.Reg != 0) { |
| 1191 | CalleeOp = CalleeAM.Base.Reg; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1192 | } else |
| 1193 | return false; |
Dan Gohman | b5b6ec6 | 2008-09-17 21:18:49 +0000 | [diff] [blame] | 1194 | |
Evan Cheng | debdea0 | 2008-09-08 17:15:42 +0000 | [diff] [blame] | 1195 | // Allow calls which produce i1 results. |
| 1196 | bool AndToI1 = false; |
| 1197 | if (RetVT == MVT::i1) { |
| 1198 | RetVT = MVT::i8; |
| 1199 | AndToI1 = true; |
| 1200 | } |
| 1201 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1202 | // Deal with call operands first. |
Chris Lattner | 241ab47 | 2008-10-15 05:38:32 +0000 | [diff] [blame] | 1203 | SmallVector<Value*, 8> ArgVals; |
| 1204 | SmallVector<unsigned, 8> Args; |
| 1205 | SmallVector<MVT, 8> ArgVTs; |
| 1206 | SmallVector<ISD::ArgFlagsTy, 8> ArgFlags; |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1207 | Args.reserve(CS.arg_size()); |
Chris Lattner | 241ab47 | 2008-10-15 05:38:32 +0000 | [diff] [blame] | 1208 | ArgVals.reserve(CS.arg_size()); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1209 | ArgVTs.reserve(CS.arg_size()); |
| 1210 | ArgFlags.reserve(CS.arg_size()); |
| 1211 | for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
| 1212 | i != e; ++i) { |
| 1213 | unsigned Arg = getRegForValue(*i); |
| 1214 | if (Arg == 0) |
| 1215 | return false; |
| 1216 | ISD::ArgFlagsTy Flags; |
| 1217 | unsigned AttrInd = i - CS.arg_begin() + 1; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1218 | if (CS.paramHasAttr(AttrInd, Attribute::SExt)) |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1219 | Flags.setSExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1220 | if (CS.paramHasAttr(AttrInd, Attribute::ZExt)) |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1221 | Flags.setZExt(); |
| 1222 | |
| 1223 | // FIXME: Only handle *easy* calls for now. |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1224 | if (CS.paramHasAttr(AttrInd, Attribute::InReg) || |
| 1225 | CS.paramHasAttr(AttrInd, Attribute::StructRet) || |
| 1226 | CS.paramHasAttr(AttrInd, Attribute::Nest) || |
| 1227 | CS.paramHasAttr(AttrInd, Attribute::ByVal)) |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1228 | return false; |
| 1229 | |
| 1230 | const Type *ArgTy = (*i)->getType(); |
| 1231 | MVT ArgVT; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 1232 | if (!isTypeLegal(ArgTy, ArgVT)) |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1233 | return false; |
| 1234 | unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy); |
| 1235 | Flags.setOrigAlign(OriginalAlignment); |
| 1236 | |
| 1237 | Args.push_back(Arg); |
Chris Lattner | 241ab47 | 2008-10-15 05:38:32 +0000 | [diff] [blame] | 1238 | ArgVals.push_back(*i); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1239 | ArgVTs.push_back(ArgVT); |
| 1240 | ArgFlags.push_back(Flags); |
| 1241 | } |
| 1242 | |
| 1243 | // Analyze operands of the call, assigning locations to each operand. |
| 1244 | SmallVector<CCValAssign, 16> ArgLocs; |
| 1245 | CCState CCInfo(CC, false, TM, ArgLocs); |
| 1246 | CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC)); |
| 1247 | |
| 1248 | // Get a count of how many bytes are to be pushed on the stack. |
| 1249 | unsigned NumBytes = CCInfo.getNextStackOffset(); |
| 1250 | |
| 1251 | // Issue CALLSEQ_START |
Dan Gohman | 6d4b052 | 2008-10-01 18:28:06 +0000 | [diff] [blame] | 1252 | unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode(); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1253 | BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1254 | |
Chris Lattner | 438949a | 2008-10-15 05:30:52 +0000 | [diff] [blame] | 1255 | // Process argument: walk the register/memloc assignments, inserting |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1256 | // copies / loads. |
| 1257 | SmallVector<unsigned, 4> RegArgs; |
| 1258 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 1259 | CCValAssign &VA = ArgLocs[i]; |
| 1260 | unsigned Arg = Args[VA.getValNo()]; |
| 1261 | MVT ArgVT = ArgVTs[VA.getValNo()]; |
| 1262 | |
| 1263 | // Promote the value if needed. |
| 1264 | switch (VA.getLocInfo()) { |
| 1265 | default: assert(0 && "Unknown loc info!"); |
| 1266 | case CCValAssign::Full: break; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1267 | case CCValAssign::SExt: { |
| 1268 | bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), |
| 1269 | Arg, ArgVT, Arg); |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1270 | assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted; |
Devang Patel | fd1c6c3 | 2008-12-23 21:56:28 +0000 | [diff] [blame] | 1271 | Emitted = true; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1272 | ArgVT = VA.getLocVT(); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1273 | break; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1274 | } |
| 1275 | case CCValAssign::ZExt: { |
| 1276 | bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), |
| 1277 | Arg, ArgVT, Arg); |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1278 | assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted; |
Devang Patel | fd1c6c3 | 2008-12-23 21:56:28 +0000 | [diff] [blame] | 1279 | Emitted = true; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1280 | ArgVT = VA.getLocVT(); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1281 | break; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1282 | } |
| 1283 | case CCValAssign::AExt: { |
| 1284 | bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), |
| 1285 | Arg, ArgVT, Arg); |
Owen Anderson | b636913 | 2008-09-11 02:41:37 +0000 | [diff] [blame] | 1286 | if (!Emitted) |
| 1287 | Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 1288 | Arg, ArgVT, Arg); |
Owen Anderson | b636913 | 2008-09-11 02:41:37 +0000 | [diff] [blame] | 1289 | if (!Emitted) |
| 1290 | Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), |
| 1291 | Arg, ArgVT, Arg); |
| 1292 | |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1293 | assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted; |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1294 | ArgVT = VA.getLocVT(); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1295 | break; |
| 1296 | } |
Evan Cheng | 24e3a90 | 2008-09-08 06:35:17 +0000 | [diff] [blame] | 1297 | } |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1298 | |
| 1299 | if (VA.isRegLoc()) { |
| 1300 | TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT); |
| 1301 | bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(), |
| 1302 | Arg, RC, RC); |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1303 | assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted; |
Devang Patel | fd1c6c3 | 2008-12-23 21:56:28 +0000 | [diff] [blame] | 1304 | Emitted = true; |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1305 | RegArgs.push_back(VA.getLocReg()); |
| 1306 | } else { |
| 1307 | unsigned LocMemOffset = VA.getLocMemOffset(); |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1308 | X86AddressMode AM; |
| 1309 | AM.Base.Reg = StackPtr; |
| 1310 | AM.Disp = LocMemOffset; |
Chris Lattner | 241ab47 | 2008-10-15 05:38:32 +0000 | [diff] [blame] | 1311 | Value *ArgVal = ArgVals[VA.getValNo()]; |
| 1312 | |
| 1313 | // If this is a really simple value, emit this with the Value* version of |
| 1314 | // X86FastEmitStore. If it isn't simple, we don't want to do this, as it |
| 1315 | // can cause us to reevaluate the argument. |
| 1316 | if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal)) |
| 1317 | X86FastEmitStore(ArgVT, ArgVal, AM); |
| 1318 | else |
| 1319 | X86FastEmitStore(ArgVT, Arg, AM); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1320 | } |
| 1321 | } |
| 1322 | |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1323 | // ELF / PIC requires GOT in the EBX register before function calls via PLT |
| 1324 | // GOT pointer. |
Chris Lattner | 15a380a | 2009-07-09 04:39:06 +0000 | [diff] [blame] | 1325 | if (Subtarget->isPICStyleGOT()) { |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1326 | TargetRegisterClass *RC = X86::GR32RegisterClass; |
Dan Gohman | 57c3dac | 2008-09-30 00:58:23 +0000 | [diff] [blame] | 1327 | unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF); |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1328 | bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC); |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1329 | assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted; |
Devang Patel | fd1c6c3 | 2008-12-23 21:56:28 +0000 | [diff] [blame] | 1330 | Emitted = true; |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1331 | } |
Chris Lattner | 51e8eab | 2009-07-09 06:34:26 +0000 | [diff] [blame] | 1332 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1333 | // Issue the call. |
Chris Lattner | 51e8eab | 2009-07-09 06:34:26 +0000 | [diff] [blame] | 1334 | MachineInstrBuilder MIB; |
| 1335 | if (CalleeOp) { |
| 1336 | // Register-indirect call. |
| 1337 | unsigned CallOpc = Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r; |
| 1338 | MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp); |
| 1339 | |
| 1340 | } else { |
| 1341 | // Direct call. |
| 1342 | assert(GV && "Not a direct call"); |
| 1343 | unsigned CallOpc = |
| 1344 | Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32; |
| 1345 | |
| 1346 | // See if we need any target-specific flags on the GV operand. |
| 1347 | unsigned char OpFlags = 0; |
| 1348 | |
| 1349 | // On ELF targets, in both X86-64 and X86-32 mode, direct calls to |
| 1350 | // external symbols most go through the PLT in PIC mode. If the symbol |
| 1351 | // has hidden or protected visibility, or if it is static or local, then |
| 1352 | // we don't need to use the PLT - we can directly call it. |
| 1353 | if (Subtarget->isTargetELF() && |
| 1354 | TM.getRelocationModel() == Reloc::PIC_ && |
| 1355 | GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) { |
| 1356 | OpFlags = X86II::MO_PLT; |
| 1357 | } else if (Subtarget->isPICStyleStub() && |
| 1358 | (GV->isDeclaration() || GV->isWeakForLinker()) && |
| 1359 | Subtarget->getDarwinVers() < 9) { |
| 1360 | // PC-relative references to external symbols should go through $stub, |
| 1361 | // unless we're building with the leopard linker or later, which |
| 1362 | // automatically synthesizes these stubs. |
| 1363 | OpFlags = X86II::MO_DARWIN_STUB; |
| 1364 | } |
| 1365 | |
| 1366 | |
| 1367 | MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV, 0, OpFlags); |
| 1368 | } |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1369 | |
| 1370 | // Add an implicit use GOT pointer in EBX. |
Chris Lattner | 15a380a | 2009-07-09 04:39:06 +0000 | [diff] [blame] | 1371 | if (Subtarget->isPICStyleGOT()) |
Dan Gohman | 2cc3aa4 | 2008-09-25 15:24:26 +0000 | [diff] [blame] | 1372 | MIB.addReg(X86::EBX); |
| 1373 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1374 | // Add implicit physical register uses to the call. |
Dan Gohman | 8c3f8b6 | 2008-10-07 22:10:33 +0000 | [diff] [blame] | 1375 | for (unsigned i = 0, e = RegArgs.size(); i != e; ++i) |
| 1376 | MIB.addReg(RegArgs[i]); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1377 | |
| 1378 | // Issue CALLSEQ_END |
Dan Gohman | 6d4b052 | 2008-10-01 18:28:06 +0000 | [diff] [blame] | 1379 | unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode(); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1380 | BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1381 | |
| 1382 | // Now handle call return value (if any). |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1383 | if (RetVT.getSimpleVT() != MVT::isVoid) { |
| 1384 | SmallVector<CCValAssign, 16> RVLocs; |
| 1385 | CCState CCInfo(CC, false, TM, RVLocs); |
| 1386 | CCInfo.AnalyzeCallResult(RetVT, RetCC_X86); |
| 1387 | |
| 1388 | // Copy all of the result registers out of their specified physreg. |
| 1389 | assert(RVLocs.size() == 1 && "Can't handle multi-value calls!"); |
| 1390 | MVT CopyVT = RVLocs[0].getValVT(); |
| 1391 | TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT); |
| 1392 | TargetRegisterClass *SrcRC = DstRC; |
| 1393 | |
| 1394 | // If this is a call to a function that returns an fp value on the x87 fp |
| 1395 | // stack, but where we prefer to use the value in xmm registers, copy it |
| 1396 | // out as F80 and use a truncate to move it from fp stack reg to xmm reg. |
| 1397 | if ((RVLocs[0].getLocReg() == X86::ST0 || |
| 1398 | RVLocs[0].getLocReg() == X86::ST1) && |
| 1399 | isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) { |
| 1400 | CopyVT = MVT::f80; |
| 1401 | SrcRC = X86::RSTRegisterClass; |
| 1402 | DstRC = X86::RFP80RegisterClass; |
| 1403 | } |
| 1404 | |
| 1405 | unsigned ResultReg = createResultReg(DstRC); |
| 1406 | bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg, |
| 1407 | RVLocs[0].getLocReg(), DstRC, SrcRC); |
Chris Lattner | a33649e | 2008-12-19 17:03:38 +0000 | [diff] [blame] | 1408 | assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted; |
Devang Patel | fd1c6c3 | 2008-12-23 21:56:28 +0000 | [diff] [blame] | 1409 | Emitted = true; |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1410 | if (CopyVT != RVLocs[0].getValVT()) { |
| 1411 | // Round the F80 the right size, which also moves to the appropriate xmm |
| 1412 | // register. This is accomplished by storing the F80 value in memory and |
| 1413 | // then loading it back. Ewww... |
| 1414 | MVT ResVT = RVLocs[0].getValVT(); |
| 1415 | unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64; |
| 1416 | unsigned MemSize = ResVT.getSizeInBits()/8; |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1417 | int FI = MFI.CreateStackObject(MemSize, MemSize); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1418 | addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1419 | DstRC = ResVT == MVT::f32 |
| 1420 | ? X86::FR32RegisterClass : X86::FR64RegisterClass; |
| 1421 | Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm; |
| 1422 | ResultReg = createResultReg(DstRC); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1423 | addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1424 | } |
| 1425 | |
Evan Cheng | debdea0 | 2008-09-08 17:15:42 +0000 | [diff] [blame] | 1426 | if (AndToI1) { |
| 1427 | // Mask out all but lowest bit for some call which produces an i1. |
| 1428 | unsigned AndResult = createResultReg(X86::GR8RegisterClass); |
Dale Johannesen | 8d13f8f | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1429 | BuildMI(MBB, DL, |
| 1430 | TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1); |
Evan Cheng | debdea0 | 2008-09-08 17:15:42 +0000 | [diff] [blame] | 1431 | ResultReg = AndResult; |
| 1432 | } |
| 1433 | |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1434 | UpdateValueMap(I, ResultReg); |
| 1435 | } |
| 1436 | |
| 1437 | return true; |
| 1438 | } |
| 1439 | |
| 1440 | |
Dan Gohman | 99b2182 | 2008-08-28 23:21:34 +0000 | [diff] [blame] | 1441 | bool |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1442 | X86FastISel::TargetSelectInstruction(Instruction *I) { |
Dan Gohman | 99b2182 | 2008-08-28 23:21:34 +0000 | [diff] [blame] | 1443 | switch (I->getOpcode()) { |
| 1444 | default: break; |
Evan Cheng | 8b19e56 | 2008-09-03 06:44:39 +0000 | [diff] [blame] | 1445 | case Instruction::Load: |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1446 | return X86SelectLoad(I); |
Owen Anderson | 79924eb | 2008-09-04 16:48:33 +0000 | [diff] [blame] | 1447 | case Instruction::Store: |
| 1448 | return X86SelectStore(I); |
Dan Gohman | 6e3f05f | 2008-09-04 23:26:51 +0000 | [diff] [blame] | 1449 | case Instruction::ICmp: |
| 1450 | case Instruction::FCmp: |
| 1451 | return X86SelectCmp(I); |
Dan Gohman | d89ae99 | 2008-09-05 01:06:14 +0000 | [diff] [blame] | 1452 | case Instruction::ZExt: |
| 1453 | return X86SelectZExt(I); |
| 1454 | case Instruction::Br: |
| 1455 | return X86SelectBranch(I); |
Evan Cheng | f3d4efe | 2008-09-07 09:09:33 +0000 | [diff] [blame] | 1456 | case Instruction::Call: |
| 1457 | return X86SelectCall(I); |
Dan Gohman | c39f4db | 2008-09-05 18:30:08 +0000 | [diff] [blame] | 1458 | case Instruction::LShr: |
| 1459 | case Instruction::AShr: |
| 1460 | case Instruction::Shl: |
| 1461 | return X86SelectShift(I); |
| 1462 | case Instruction::Select: |
| 1463 | return X86SelectSelect(I); |
Evan Cheng | 10a8d9c | 2008-09-07 08:47:42 +0000 | [diff] [blame] | 1464 | case Instruction::Trunc: |
| 1465 | return X86SelectTrunc(I); |
Dan Gohman | 78efce6 | 2008-09-10 21:02:08 +0000 | [diff] [blame] | 1466 | case Instruction::FPExt: |
| 1467 | return X86SelectFPExt(I); |
| 1468 | case Instruction::FPTrunc: |
| 1469 | return X86SelectFPTrunc(I); |
Bill Wendling | 52370a1 | 2008-12-09 02:42:50 +0000 | [diff] [blame] | 1470 | case Instruction::ExtractValue: |
| 1471 | return X86SelectExtractValue(I); |
Dan Gohman | 474d3b3 | 2009-03-13 23:53:06 +0000 | [diff] [blame] | 1472 | case Instruction::IntToPtr: // Deliberate fall-through. |
| 1473 | case Instruction::PtrToInt: { |
| 1474 | MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); |
| 1475 | MVT DstVT = TLI.getValueType(I->getType()); |
| 1476 | if (DstVT.bitsGT(SrcVT)) |
| 1477 | return X86SelectZExt(I); |
| 1478 | if (DstVT.bitsLT(SrcVT)) |
| 1479 | return X86SelectTrunc(I); |
| 1480 | unsigned Reg = getRegForValue(I->getOperand(0)); |
| 1481 | if (Reg == 0) return false; |
| 1482 | UpdateValueMap(I, Reg); |
| 1483 | return true; |
| 1484 | } |
Dan Gohman | 99b2182 | 2008-08-28 23:21:34 +0000 | [diff] [blame] | 1485 | } |
| 1486 | |
| 1487 | return false; |
| 1488 | } |
| 1489 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1490 | unsigned X86FastISel::TargetMaterializeConstant(Constant *C) { |
Evan Cheng | 59fbc80 | 2008-09-09 01:26:59 +0000 | [diff] [blame] | 1491 | MVT VT; |
Chris Lattner | 160f6cc | 2008-10-15 05:07:36 +0000 | [diff] [blame] | 1492 | if (!isTypeLegal(C->getType(), VT)) |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1493 | return false; |
| 1494 | |
| 1495 | // Get opcode and regclass of the output for the given load instruction. |
| 1496 | unsigned Opc = 0; |
| 1497 | const TargetRegisterClass *RC = NULL; |
| 1498 | switch (VT.getSimpleVT()) { |
| 1499 | default: return false; |
| 1500 | case MVT::i8: |
| 1501 | Opc = X86::MOV8rm; |
| 1502 | RC = X86::GR8RegisterClass; |
| 1503 | break; |
| 1504 | case MVT::i16: |
| 1505 | Opc = X86::MOV16rm; |
| 1506 | RC = X86::GR16RegisterClass; |
| 1507 | break; |
| 1508 | case MVT::i32: |
| 1509 | Opc = X86::MOV32rm; |
| 1510 | RC = X86::GR32RegisterClass; |
| 1511 | break; |
| 1512 | case MVT::i64: |
| 1513 | // Must be in x86-64 mode. |
| 1514 | Opc = X86::MOV64rm; |
| 1515 | RC = X86::GR64RegisterClass; |
| 1516 | break; |
| 1517 | case MVT::f32: |
| 1518 | if (Subtarget->hasSSE1()) { |
| 1519 | Opc = X86::MOVSSrm; |
| 1520 | RC = X86::FR32RegisterClass; |
| 1521 | } else { |
| 1522 | Opc = X86::LD_Fp32m; |
| 1523 | RC = X86::RFP32RegisterClass; |
| 1524 | } |
| 1525 | break; |
| 1526 | case MVT::f64: |
| 1527 | if (Subtarget->hasSSE2()) { |
| 1528 | Opc = X86::MOVSDrm; |
| 1529 | RC = X86::FR64RegisterClass; |
| 1530 | } else { |
| 1531 | Opc = X86::LD_Fp64m; |
| 1532 | RC = X86::RFP64RegisterClass; |
| 1533 | } |
| 1534 | break; |
| 1535 | case MVT::f80: |
Dan Gohman | 5af29c2 | 2008-09-26 01:39:32 +0000 | [diff] [blame] | 1536 | // No f80 support yet. |
| 1537 | return false; |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1538 | } |
| 1539 | |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1540 | // Materialize addresses with LEA instructions. |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1541 | if (isa<GlobalValue>(C)) { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1542 | X86AddressMode AM; |
| 1543 | if (X86SelectAddress(C, AM, false)) { |
| 1544 | if (TLI.getPointerTy() == MVT::i32) |
| 1545 | Opc = X86::LEA32r; |
| 1546 | else |
| 1547 | Opc = X86::LEA64r; |
| 1548 | unsigned ResultReg = createResultReg(RC); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1549 | addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM); |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1550 | return ResultReg; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1551 | } |
Evan Cheng | 0de588f | 2008-09-05 21:00:03 +0000 | [diff] [blame] | 1552 | return 0; |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1553 | } |
| 1554 | |
Owen Anderson | 3b217c6 | 2008-09-06 01:11:01 +0000 | [diff] [blame] | 1555 | // MachineConstantPool wants an explicit alignment. |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1556 | unsigned Align = TD.getPrefTypeAlignment(C->getType()); |
Owen Anderson | 3b217c6 | 2008-09-06 01:11:01 +0000 | [diff] [blame] | 1557 | if (Align == 0) { |
| 1558 | // Alignment of vector types. FIXME! |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 1559 | Align = TD.getTypeAllocSize(C->getType()); |
Owen Anderson | 3b217c6 | 2008-09-06 01:11:01 +0000 | [diff] [blame] | 1560 | } |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1561 | |
Dan Gohman | 5396c99 | 2008-09-30 01:21:32 +0000 | [diff] [blame] | 1562 | // x86-32 PIC requires a PIC base register for constant pools. |
| 1563 | unsigned PICBase = 0; |
Chris Lattner | 89da699 | 2009-06-27 01:31:51 +0000 | [diff] [blame] | 1564 | unsigned char OpFlag = 0; |
Chris Lattner | 15a380a | 2009-07-09 04:39:06 +0000 | [diff] [blame] | 1565 | if (Subtarget->isPICStyleStub() && |
| 1566 | TM.getRelocationModel() == Reloc::PIC_) { // Not dynamic-no-pic |
| 1567 | OpFlag = X86II::MO_PIC_BASE_OFFSET; |
| 1568 | PICBase = getInstrInfo()->getGlobalBaseReg(&MF); |
| 1569 | } else if (Subtarget->isPICStyleGOT()) { |
| 1570 | OpFlag = X86II::MO_GOTOFF; |
| 1571 | PICBase = getInstrInfo()->getGlobalBaseReg(&MF); |
| 1572 | } else if (Subtarget->isPICStyleRIPRel() && |
| 1573 | TM.getCodeModel() == CodeModel::Small) { |
| 1574 | PICBase = X86::RIP; |
Chris Lattner | 89da699 | 2009-06-27 01:31:51 +0000 | [diff] [blame] | 1575 | } |
Dan Gohman | 5396c99 | 2008-09-30 01:21:32 +0000 | [diff] [blame] | 1576 | |
| 1577 | // Create the load from the constant pool. |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1578 | unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align); |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1579 | unsigned ResultReg = createResultReg(RC); |
Chris Lattner | 89da699 | 2009-06-27 01:31:51 +0000 | [diff] [blame] | 1580 | addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), |
| 1581 | MCPOffset, PICBase, OpFlag); |
Dan Gohman | 5396c99 | 2008-09-30 01:21:32 +0000 | [diff] [blame] | 1582 | |
Owen Anderson | 95267a1 | 2008-09-05 00:06:23 +0000 | [diff] [blame] | 1583 | return ResultReg; |
| 1584 | } |
| 1585 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1586 | unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) { |
Dan Gohman | 4e6ed5e | 2008-10-03 01:27:49 +0000 | [diff] [blame] | 1587 | // Fail on dynamic allocas. At this point, getRegForValue has already |
| 1588 | // checked its CSE maps, so if we're here trying to handle a dynamic |
| 1589 | // alloca, we're not going to succeed. X86SelectAddress has a |
| 1590 | // check for dynamic allocas, because it's called directly from |
| 1591 | // various places, but TargetMaterializeAlloca also needs a check |
| 1592 | // in order to avoid recursion between getRegForValue, |
| 1593 | // X86SelectAddrss, and TargetMaterializeAlloca. |
| 1594 | if (!StaticAllocaMap.count(C)) |
| 1595 | return 0; |
| 1596 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1597 | X86AddressMode AM; |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 1598 | if (!X86SelectAddress(C, AM, false)) |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1599 | return 0; |
| 1600 | unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r; |
| 1601 | TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy()); |
| 1602 | unsigned ResultReg = createResultReg(RC); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1603 | addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM); |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1604 | return ResultReg; |
| 1605 | } |
| 1606 | |
Evan Cheng | c3f44b0 | 2008-09-03 00:03:49 +0000 | [diff] [blame] | 1607 | namespace llvm { |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1608 | llvm::FastISel *X86::createFastISel(MachineFunction &mf, |
Dan Gohman | d57dd5f | 2008-09-23 21:53:34 +0000 | [diff] [blame] | 1609 | MachineModuleInfo *mmi, |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 1610 | DwarfWriter *dw, |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1611 | DenseMap<const Value *, unsigned> &vm, |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1612 | DenseMap<const BasicBlock *, MachineBasicBlock *> &bm, |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 1613 | DenseMap<const AllocaInst *, int> &am |
| 1614 | #ifndef NDEBUG |
| 1615 | , SmallSet<Instruction*, 8> &cil |
| 1616 | #endif |
| 1617 | ) { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 1618 | return new X86FastISel(mf, mmi, dw, vm, bm, am |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 1619 | #ifndef NDEBUG |
| 1620 | , cil |
| 1621 | #endif |
| 1622 | ); |
Evan Cheng | c3f44b0 | 2008-09-03 00:03:49 +0000 | [diff] [blame] | 1623 | } |
Dan Gohman | 99b2182 | 2008-08-28 23:21:34 +0000 | [diff] [blame] | 1624 | } |