Dan Gohman | 3b172f1 | 2010-04-22 20:06:42 +0000 | [diff] [blame] | 1 | //===-- FastISel.cpp - Implementation of the FastISel class ---------------===// |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 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 contains the implementation of the FastISel class. |
| 11 | // |
Dan Gohman | 5ec9efd | 2008-09-30 20:48:29 +0000 | [diff] [blame] | 12 | // "Fast" instruction selection is designed to emit very poor code quickly. |
| 13 | // Also, it is not designed to be able to do much lowering, so most illegal |
Chris Lattner | 44d2a98 | 2008-10-13 01:59:13 +0000 | [diff] [blame] | 14 | // types (e.g. i64 on 32-bit targets) and operations are not supported. It is |
| 15 | // also not intended to be able to do much optimization, except in a few cases |
| 16 | // where doing optimizations reduces overall compile time. For example, folding |
| 17 | // constants into immediate fields is often done, because it's cheap and it |
| 18 | // reduces the number of instructions later phases have to examine. |
Dan Gohman | 5ec9efd | 2008-09-30 20:48:29 +0000 | [diff] [blame] | 19 | // |
| 20 | // "Fast" instruction selection is able to fail gracefully and transfer |
| 21 | // control to the SelectionDAG selector for operations that it doesn't |
Chris Lattner | 44d2a98 | 2008-10-13 01:59:13 +0000 | [diff] [blame] | 22 | // support. In many cases, this allows us to avoid duplicating a lot of |
Dan Gohman | 5ec9efd | 2008-09-30 20:48:29 +0000 | [diff] [blame] | 23 | // the complicated lowering logic that SelectionDAG currently has. |
| 24 | // |
| 25 | // The intended use for "fast" instruction selection is "-O0" mode |
| 26 | // compilation, where the quality of the generated code is irrelevant when |
Chris Lattner | 44d2a98 | 2008-10-13 01:59:13 +0000 | [diff] [blame] | 27 | // weighed against the speed at which the code can be generated. Also, |
Dan Gohman | 5ec9efd | 2008-09-30 20:48:29 +0000 | [diff] [blame] | 28 | // at -O0, the LLVM optimizers are not running, and this makes the |
| 29 | // compile time of codegen a much higher portion of the overall compile |
Chris Lattner | 44d2a98 | 2008-10-13 01:59:13 +0000 | [diff] [blame] | 30 | // time. Despite its limitations, "fast" instruction selection is able to |
Dan Gohman | 5ec9efd | 2008-09-30 20:48:29 +0000 | [diff] [blame] | 31 | // handle enough code on its own to provide noticeable overall speedups |
| 32 | // in -O0 compiles. |
| 33 | // |
| 34 | // Basic operations are supported in a target-independent way, by reading |
| 35 | // the same instruction descriptions that the SelectionDAG selector reads, |
| 36 | // and identifying simple arithmetic operations that can be directly selected |
Chris Lattner | 44d2a98 | 2008-10-13 01:59:13 +0000 | [diff] [blame] | 37 | // from simple operators. More complicated operations currently require |
Dan Gohman | 5ec9efd | 2008-09-30 20:48:29 +0000 | [diff] [blame] | 38 | // target-specific code. |
| 39 | // |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 40 | //===----------------------------------------------------------------------===// |
| 41 | |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 42 | #include "llvm/Function.h" |
| 43 | #include "llvm/GlobalVariable.h" |
Dan Gohman | 6f2766d | 2008-08-19 22:31:46 +0000 | [diff] [blame] | 44 | #include "llvm/Instructions.h" |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 45 | #include "llvm/IntrinsicInst.h" |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 46 | #include "llvm/CodeGen/FastISel.h" |
Dan Gohman | 4c3fd9f | 2010-07-07 16:01:37 +0000 | [diff] [blame] | 47 | #include "llvm/CodeGen/FunctionLoweringInfo.h" |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 48 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 49 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 50 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 51 | #include "llvm/Analysis/DebugInfo.h" |
Dan Gohman | 7fbcc98 | 2010-07-01 03:49:38 +0000 | [diff] [blame] | 52 | #include "llvm/Analysis/Loads.h" |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 53 | #include "llvm/Target/TargetData.h" |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 54 | #include "llvm/Target/TargetInstrInfo.h" |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 55 | #include "llvm/Target/TargetLowering.h" |
Dan Gohman | bb46633 | 2008-08-20 21:05:57 +0000 | [diff] [blame] | 56 | #include "llvm/Target/TargetMachine.h" |
Dan Gohman | ba5be5c | 2010-04-20 15:00:41 +0000 | [diff] [blame] | 57 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 58 | using namespace llvm; |
| 59 | |
Dan Gohman | 4df83ed | 2010-07-07 19:20:32 +0000 | [diff] [blame] | 60 | /// startNewBlock - Set the current block to which generated machine |
| 61 | /// instructions will be appended, and clear the local CSE map. |
| 62 | /// |
| 63 | void FastISel::startNewBlock() { |
| 64 | LocalValueMap.clear(); |
| 65 | |
| 66 | // Start out as end(), meaining no local-value instructions have |
| 67 | // been emitted. |
| 68 | LastLocalValue = FuncInfo.MBB->end(); |
| 69 | } |
| 70 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 71 | bool FastISel::hasTrivialKill(const Value *V) const { |
Dan Gohman | 7f0d695 | 2010-05-14 22:53:18 +0000 | [diff] [blame] | 72 | // Don't consider constants or arguments to have trivial kills. |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 73 | const Instruction *I = dyn_cast<Instruction>(V); |
Dan Gohman | 7f0d695 | 2010-05-14 22:53:18 +0000 | [diff] [blame] | 74 | if (!I) |
| 75 | return false; |
| 76 | |
| 77 | // No-op casts are trivially coalesced by fast-isel. |
| 78 | if (const CastInst *Cast = dyn_cast<CastInst>(I)) |
| 79 | if (Cast->isNoopCast(TD.getIntPtrType(Cast->getContext())) && |
| 80 | !hasTrivialKill(Cast->getOperand(0))) |
| 81 | return false; |
| 82 | |
| 83 | // Only instructions with a single use in the same basic block are considered |
| 84 | // to have trivial kills. |
| 85 | return I->hasOneUse() && |
| 86 | !(I->getOpcode() == Instruction::BitCast || |
| 87 | I->getOpcode() == Instruction::PtrToInt || |
| 88 | I->getOpcode() == Instruction::IntToPtr) && |
Dan Gohman | e1308d8 | 2010-05-13 19:19:32 +0000 | [diff] [blame] | 89 | cast<Instruction>(I->use_begin())->getParent() == I->getParent(); |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 92 | unsigned FastISel::getRegForValue(const Value *V) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 93 | EVT RealVT = TLI.getValueType(V->getType(), /*AllowUnknown=*/true); |
Dan Gohman | 4fd5528 | 2009-04-07 20:40:11 +0000 | [diff] [blame] | 94 | // Don't handle non-simple values in FastISel. |
| 95 | if (!RealVT.isSimple()) |
| 96 | return 0; |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 97 | |
| 98 | // Ignore illegal types. We must do this before looking up the value |
| 99 | // in ValueMap because Arguments are given virtual registers regardless |
| 100 | // of whether FastISel can handle them. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 101 | MVT VT = RealVT.getSimpleVT(); |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 102 | if (!TLI.isTypeLegal(VT)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 103 | // Promote MVT::i1 to a legal type though, because it's common and easy. |
| 104 | if (VT == MVT::i1) |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 105 | VT = TLI.getTypeToTransformTo(V->getContext(), VT).getSimpleVT(); |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 106 | else |
| 107 | return 0; |
| 108 | } |
| 109 | |
Dan Gohman | 104e4ce | 2008-09-03 23:32:19 +0000 | [diff] [blame] | 110 | // Look up the value to see if we already have a register for it. We |
| 111 | // cache values defined by Instructions across blocks, and other values |
| 112 | // only locally. This is because Instructions already have the SSA |
Dan Gohman | 5c9cf19 | 2010-01-12 04:30:26 +0000 | [diff] [blame] | 113 | // def-dominates-use requirement enforced. |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 114 | DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V); |
| 115 | if (I != FuncInfo.ValueMap.end()) |
Dan Gohman | eddc114 | 2010-05-25 21:59:42 +0000 | [diff] [blame] | 116 | return I->second; |
Dan Gohman | 104e4ce | 2008-09-03 23:32:19 +0000 | [diff] [blame] | 117 | unsigned Reg = LocalValueMap[V]; |
| 118 | if (Reg != 0) |
| 119 | return Reg; |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 120 | |
Dan Gohman | 97c94b8 | 2010-05-06 00:02:14 +0000 | [diff] [blame] | 121 | // In bottom-up mode, just create the virtual register which will be used |
| 122 | // to hold the value. It will be materialized later. |
Dan Gohman | 49dcb0f | 2010-07-07 23:52:58 +0000 | [diff] [blame] | 123 | if (isa<Instruction>(V) && |
| 124 | (!isa<AllocaInst>(V) || |
| 125 | !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) { |
Dan Gohman | 97c94b8 | 2010-05-06 00:02:14 +0000 | [diff] [blame] | 126 | Reg = createResultReg(TLI.getRegClassFor(VT)); |
Dan Gohman | 4df83ed | 2010-07-07 19:20:32 +0000 | [diff] [blame] | 127 | FuncInfo.ValueMap[V] = Reg; |
Dan Gohman | 97c94b8 | 2010-05-06 00:02:14 +0000 | [diff] [blame] | 128 | return Reg; |
| 129 | } |
| 130 | |
Dan Gohman | 1fdc614 | 2010-05-03 23:36:34 +0000 | [diff] [blame] | 131 | return materializeRegForValue(V, VT); |
| 132 | } |
| 133 | |
| 134 | /// materializeRegForValue - Helper for getRegForVale. This function is |
| 135 | /// called when the value isn't already available in a register and must |
| 136 | /// be materialized with new instructions. |
| 137 | unsigned FastISel::materializeRegForValue(const Value *V, MVT VT) { |
| 138 | unsigned Reg = 0; |
| 139 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 140 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 141 | if (CI->getValue().getActiveBits() <= 64) |
| 142 | Reg = FastEmit_i(VT, VT, ISD::Constant, CI->getZExtValue()); |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 143 | } else if (isa<AllocaInst>(V)) { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 144 | Reg = TargetMaterializeAlloca(cast<AllocaInst>(V)); |
Dan Gohman | 205d925 | 2008-08-28 21:19:07 +0000 | [diff] [blame] | 145 | } else if (isa<ConstantPointerNull>(V)) { |
Dan Gohman | 1e9e8c3 | 2008-10-07 22:03:27 +0000 | [diff] [blame] | 146 | // Translate this as an integer zero so that it can be |
| 147 | // local-CSE'd with actual integer zeros. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 148 | Reg = |
| 149 | getRegForValue(Constant::getNullValue(TD.getIntPtrType(V->getContext()))); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 150 | } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) { |
Dan Gohman | 4183e31 | 2010-04-13 17:07:06 +0000 | [diff] [blame] | 151 | // Try to emit the constant directly. |
Dan Gohman | 104e4ce | 2008-09-03 23:32:19 +0000 | [diff] [blame] | 152 | Reg = FastEmit_f(VT, VT, ISD::ConstantFP, CF); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 153 | |
| 154 | if (!Reg) { |
Dan Gohman | 4183e31 | 2010-04-13 17:07:06 +0000 | [diff] [blame] | 155 | // Try to emit the constant by using an integer constant with a cast. |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 156 | const APFloat &Flt = CF->getValueAPF(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 157 | EVT IntVT = TLI.getPointerTy(); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 158 | |
| 159 | uint64_t x[2]; |
| 160 | uint32_t IntBitWidth = IntVT.getSizeInBits(); |
Dale Johannesen | 23a9855 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 161 | bool isExact; |
| 162 | (void) Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true, |
| 163 | APFloat::rmTowardZero, &isExact); |
| 164 | if (isExact) { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 165 | APInt IntVal(IntBitWidth, 2, x); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 166 | |
Owen Anderson | e922c02 | 2009-07-22 00:24:57 +0000 | [diff] [blame] | 167 | unsigned IntegerReg = |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 168 | getRegForValue(ConstantInt::get(V->getContext(), IntVal)); |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 169 | if (IntegerReg != 0) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 170 | Reg = FastEmit_r(IntVT.getSimpleVT(), VT, ISD::SINT_TO_FP, |
| 171 | IntegerReg, /*Kill=*/false); |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 172 | } |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 173 | } |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 174 | } else if (const Operator *Op = dyn_cast<Operator>(V)) { |
Dan Gohman | 20d4be1 | 2010-07-01 02:58:57 +0000 | [diff] [blame] | 175 | if (!SelectOperator(Op, Op->getOpcode())) |
| 176 | if (!isa<Instruction>(Op) || |
| 177 | !TargetSelectInstruction(cast<Instruction>(Op))) |
| 178 | return 0; |
Dan Gohman | 37db6cd | 2010-06-21 14:17:46 +0000 | [diff] [blame] | 179 | Reg = lookUpRegForValue(Op); |
Dan Gohman | 205d925 | 2008-08-28 21:19:07 +0000 | [diff] [blame] | 180 | } else if (isa<UndefValue>(V)) { |
Dan Gohman | 104e4ce | 2008-09-03 23:32:19 +0000 | [diff] [blame] | 181 | Reg = createResultReg(TLI.getRegClassFor(VT)); |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 182 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, |
| 183 | TII.get(TargetOpcode::IMPLICIT_DEF), Reg); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 184 | } |
Owen Anderson | d5d81a4 | 2008-09-03 17:51:57 +0000 | [diff] [blame] | 185 | |
Dan Gohman | dceffe6 | 2008-09-25 01:28:51 +0000 | [diff] [blame] | 186 | // If target-independent code couldn't handle the value, give target-specific |
| 187 | // code a try. |
Owen Anderson | 6e60745 | 2008-09-05 23:36:01 +0000 | [diff] [blame] | 188 | if (!Reg && isa<Constant>(V)) |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 189 | Reg = TargetMaterializeConstant(cast<Constant>(V)); |
Owen Anderson | 6e60745 | 2008-09-05 23:36:01 +0000 | [diff] [blame] | 190 | |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 191 | // Don't cache constant materializations in the general ValueMap. |
| 192 | // To do so would require tracking what uses they dominate. |
Dan Gohman | 4df83ed | 2010-07-07 19:20:32 +0000 | [diff] [blame] | 193 | if (Reg != 0) { |
Dan Gohman | dceffe6 | 2008-09-25 01:28:51 +0000 | [diff] [blame] | 194 | LocalValueMap[V] = Reg; |
Dan Gohman | 4df83ed | 2010-07-07 19:20:32 +0000 | [diff] [blame] | 195 | LastLocalValue = MRI.getVRegDef(Reg); |
| 196 | } |
Dan Gohman | 104e4ce | 2008-09-03 23:32:19 +0000 | [diff] [blame] | 197 | return Reg; |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 200 | unsigned FastISel::lookUpRegForValue(const Value *V) { |
Evan Cheng | 59fbc80 | 2008-09-09 01:26:59 +0000 | [diff] [blame] | 201 | // Look up the value to see if we already have a register for it. We |
| 202 | // cache values defined by Instructions across blocks, and other values |
| 203 | // only locally. This is because Instructions already have the SSA |
Dan Gohman | 1fdc614 | 2010-05-03 23:36:34 +0000 | [diff] [blame] | 204 | // def-dominates-use requirement enforced. |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 205 | DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V); |
| 206 | if (I != FuncInfo.ValueMap.end()) |
Dan Gohman | 3193a68 | 2010-06-21 14:21:47 +0000 | [diff] [blame] | 207 | return I->second; |
Evan Cheng | 59fbc80 | 2008-09-09 01:26:59 +0000 | [diff] [blame] | 208 | return LocalValueMap[V]; |
| 209 | } |
| 210 | |
Owen Anderson | cc54e76 | 2008-08-30 00:38:46 +0000 | [diff] [blame] | 211 | /// UpdateValueMap - Update the value map to include the new mapping for this |
| 212 | /// instruction, or insert an extra copy to get the result in a previous |
| 213 | /// determined register. |
| 214 | /// NOTE: This is only necessary because we might select a block that uses |
| 215 | /// a value before we select the block that defines the value. It might be |
| 216 | /// possible to fix this by selecting blocks in reverse postorder. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 217 | unsigned FastISel::UpdateValueMap(const Value *I, unsigned Reg) { |
Dan Gohman | 40b189e | 2008-09-05 18:18:20 +0000 | [diff] [blame] | 218 | if (!isa<Instruction>(I)) { |
| 219 | LocalValueMap[I] = Reg; |
Chris Lattner | c5040ab | 2009-04-12 07:45:01 +0000 | [diff] [blame] | 220 | return Reg; |
Dan Gohman | 40b189e | 2008-09-05 18:18:20 +0000 | [diff] [blame] | 221 | } |
Chris Lattner | c5040ab | 2009-04-12 07:45:01 +0000 | [diff] [blame] | 222 | |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 223 | unsigned &AssignedReg = FuncInfo.ValueMap[I]; |
Chris Lattner | c5040ab | 2009-04-12 07:45:01 +0000 | [diff] [blame] | 224 | if (AssignedReg == 0) |
Dan Gohman | 4df83ed | 2010-07-07 19:20:32 +0000 | [diff] [blame] | 225 | // Use the new register. |
Chris Lattner | c5040ab | 2009-04-12 07:45:01 +0000 | [diff] [blame] | 226 | AssignedReg = Reg; |
Chris Lattner | 36e3946 | 2009-04-12 07:46:30 +0000 | [diff] [blame] | 227 | else if (Reg != AssignedReg) { |
Dan Gohman | 4df83ed | 2010-07-07 19:20:32 +0000 | [diff] [blame] | 228 | // We already have a register for this value. Replace uses of |
| 229 | // the existing register with uses of the new one. |
| 230 | MRI.replaceRegWith(AssignedReg, Reg); |
| 231 | // Replace uses of the existing register in PHINodesToUpdate too. |
| 232 | for (unsigned i = 0, e = FuncInfo.PHINodesToUpdate.size(); i != e; ++i) |
| 233 | if (FuncInfo.PHINodesToUpdate[i].second == AssignedReg) |
| 234 | FuncInfo.PHINodesToUpdate[i].second = Reg; |
| 235 | // And update the ValueMap. |
| 236 | AssignedReg = Reg; |
Chris Lattner | c5040ab | 2009-04-12 07:45:01 +0000 | [diff] [blame] | 237 | } |
Dan Gohman | 4df83ed | 2010-07-07 19:20:32 +0000 | [diff] [blame] | 238 | |
Chris Lattner | c5040ab | 2009-04-12 07:45:01 +0000 | [diff] [blame] | 239 | return AssignedReg; |
Owen Anderson | cc54e76 | 2008-08-30 00:38:46 +0000 | [diff] [blame] | 240 | } |
| 241 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 242 | std::pair<unsigned, bool> FastISel::getRegForGEPIndex(const Value *Idx) { |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 243 | unsigned IdxN = getRegForValue(Idx); |
| 244 | if (IdxN == 0) |
| 245 | // Unhandled operand. Halt "fast" selection and bail. |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 246 | return std::pair<unsigned, bool>(0, false); |
| 247 | |
| 248 | bool IdxNIsKill = hasTrivialKill(Idx); |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 249 | |
| 250 | // If the index is smaller or larger than intptr_t, truncate or extend it. |
Owen Anderson | 766b5ef | 2009-08-11 21:59:30 +0000 | [diff] [blame] | 251 | MVT PtrVT = TLI.getPointerTy(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 252 | EVT IdxVT = EVT::getEVT(Idx->getType(), /*HandleUnknown=*/false); |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 253 | if (IdxVT.bitsLT(PtrVT)) { |
| 254 | IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND, |
| 255 | IdxN, IdxNIsKill); |
| 256 | IdxNIsKill = true; |
| 257 | } |
| 258 | else if (IdxVT.bitsGT(PtrVT)) { |
| 259 | IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE, |
| 260 | IdxN, IdxNIsKill); |
| 261 | IdxNIsKill = true; |
| 262 | } |
| 263 | return std::pair<unsigned, bool>(IdxN, IdxNIsKill); |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 266 | /// SelectBinaryOp - Select and emit code for a binary operator instruction, |
| 267 | /// which has an opcode which directly corresponds to the given ISD opcode. |
| 268 | /// |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 269 | bool FastISel::SelectBinaryOp(const User *I, unsigned ISDOpcode) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 270 | EVT VT = EVT::getEVT(I->getType(), /*HandleUnknown=*/true); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 271 | if (VT == MVT::Other || !VT.isSimple()) |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 272 | // Unhandled type. Halt "fast" selection and bail. |
| 273 | return false; |
Dan Gohman | 638c683 | 2008-09-05 18:44:22 +0000 | [diff] [blame] | 274 | |
Dan Gohman | b71fea2 | 2008-08-26 20:52:40 +0000 | [diff] [blame] | 275 | // We only handle legal types. For example, on x86-32 the instruction |
| 276 | // selector contains all of the 64-bit instructions from x86-64, |
| 277 | // under the assumption that i64 won't be used if the target doesn't |
| 278 | // support it. |
Dan Gohman | 638c683 | 2008-09-05 18:44:22 +0000 | [diff] [blame] | 279 | if (!TLI.isTypeLegal(VT)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 280 | // MVT::i1 is special. Allow AND, OR, or XOR because they |
Dan Gohman | 638c683 | 2008-09-05 18:44:22 +0000 | [diff] [blame] | 281 | // don't require additional zeroing, which makes them easy. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 282 | if (VT == MVT::i1 && |
Dan Gohman | 5dd9c2e | 2008-09-25 17:22:52 +0000 | [diff] [blame] | 283 | (ISDOpcode == ISD::AND || ISDOpcode == ISD::OR || |
| 284 | ISDOpcode == ISD::XOR)) |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 285 | VT = TLI.getTypeToTransformTo(I->getContext(), VT); |
Dan Gohman | 638c683 | 2008-09-05 18:44:22 +0000 | [diff] [blame] | 286 | else |
| 287 | return false; |
| 288 | } |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 289 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 290 | unsigned Op0 = getRegForValue(I->getOperand(0)); |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 291 | if (Op0 == 0) |
| 292 | // Unhandled operand. Halt "fast" selection and bail. |
| 293 | return false; |
| 294 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 295 | bool Op0IsKill = hasTrivialKill(I->getOperand(0)); |
| 296 | |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 297 | // Check if the second operand is a constant and handle it appropriately. |
| 298 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 299 | unsigned ResultReg = FastEmit_ri(VT.getSimpleVT(), VT.getSimpleVT(), |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 300 | ISDOpcode, Op0, Op0IsKill, |
| 301 | CI->getZExtValue()); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 302 | if (ResultReg != 0) { |
| 303 | // We successfully emitted code for the given LLVM Instruction. |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 304 | UpdateValueMap(I, ResultReg); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 305 | return true; |
| 306 | } |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 307 | } |
| 308 | |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 309 | // Check if the second operand is a constant float. |
| 310 | if (ConstantFP *CF = dyn_cast<ConstantFP>(I->getOperand(1))) { |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 311 | unsigned ResultReg = FastEmit_rf(VT.getSimpleVT(), VT.getSimpleVT(), |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 312 | ISDOpcode, Op0, Op0IsKill, CF); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 313 | if (ResultReg != 0) { |
| 314 | // We successfully emitted code for the given LLVM Instruction. |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 315 | UpdateValueMap(I, ResultReg); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 316 | return true; |
| 317 | } |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 318 | } |
| 319 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 320 | unsigned Op1 = getRegForValue(I->getOperand(1)); |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 321 | if (Op1 == 0) |
| 322 | // Unhandled operand. Halt "fast" selection and bail. |
| 323 | return false; |
| 324 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 325 | bool Op1IsKill = hasTrivialKill(I->getOperand(1)); |
| 326 | |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 327 | // Now we have both operands in registers. Emit the instruction. |
Owen Anderson | 0f84e4e | 2008-08-25 23:58:18 +0000 | [diff] [blame] | 328 | unsigned ResultReg = FastEmit_rr(VT.getSimpleVT(), VT.getSimpleVT(), |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 329 | ISDOpcode, |
| 330 | Op0, Op0IsKill, |
| 331 | Op1, Op1IsKill); |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 332 | if (ResultReg == 0) |
| 333 | // Target-specific code wasn't able to find a machine opcode for |
| 334 | // the given ISD opcode and type. Halt "fast" selection and bail. |
| 335 | return false; |
| 336 | |
Dan Gohman | 8014e86 | 2008-08-20 00:23:20 +0000 | [diff] [blame] | 337 | // We successfully emitted code for the given LLVM Instruction. |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 338 | UpdateValueMap(I, ResultReg); |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 339 | return true; |
| 340 | } |
| 341 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 342 | bool FastISel::SelectGetElementPtr(const User *I) { |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 343 | unsigned N = getRegForValue(I->getOperand(0)); |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 344 | if (N == 0) |
| 345 | // Unhandled operand. Halt "fast" selection and bail. |
| 346 | return false; |
| 347 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 348 | bool NIsKill = hasTrivialKill(I->getOperand(0)); |
| 349 | |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 350 | const Type *Ty = I->getOperand(0)->getType(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 351 | MVT VT = TLI.getPointerTy(); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 352 | for (GetElementPtrInst::const_op_iterator OI = I->op_begin()+1, |
| 353 | E = I->op_end(); OI != E; ++OI) { |
| 354 | const Value *Idx = *OI; |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 355 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
| 356 | unsigned Field = cast<ConstantInt>(Idx)->getZExtValue(); |
| 357 | if (Field) { |
| 358 | // N = N + Offset |
| 359 | uint64_t Offs = TD.getStructLayout(StTy)->getElementOffset(Field); |
| 360 | // FIXME: This can be optimized by combining the add with a |
| 361 | // subsequent one. |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 362 | N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, Offs, VT); |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 363 | if (N == 0) |
| 364 | // Unhandled operand. Halt "fast" selection and bail. |
| 365 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 366 | NIsKill = true; |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 367 | } |
| 368 | Ty = StTy->getElementType(Field); |
| 369 | } else { |
| 370 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 371 | |
| 372 | // If this is a constant subscript, handle it quickly. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 373 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
Dan Gohman | e368b46 | 2010-06-18 14:22:04 +0000 | [diff] [blame] | 374 | if (CI->isZero()) continue; |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 375 | uint64_t Offs = |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 376 | TD.getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue(); |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 377 | N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, Offs, VT); |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 378 | if (N == 0) |
| 379 | // Unhandled operand. Halt "fast" selection and bail. |
| 380 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 381 | NIsKill = true; |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 382 | continue; |
| 383 | } |
| 384 | |
| 385 | // N = N + Idx * ElementSize; |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 386 | uint64_t ElementSize = TD.getTypeAllocSize(Ty); |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 387 | std::pair<unsigned, bool> Pair = getRegForGEPIndex(Idx); |
| 388 | unsigned IdxN = Pair.first; |
| 389 | bool IdxNIsKill = Pair.second; |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 390 | if (IdxN == 0) |
| 391 | // Unhandled operand. Halt "fast" selection and bail. |
| 392 | return false; |
| 393 | |
Dan Gohman | 80bc6e2 | 2008-08-26 20:57:08 +0000 | [diff] [blame] | 394 | if (ElementSize != 1) { |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 395 | IdxN = FastEmit_ri_(VT, ISD::MUL, IdxN, IdxNIsKill, ElementSize, VT); |
Dan Gohman | 80bc6e2 | 2008-08-26 20:57:08 +0000 | [diff] [blame] | 396 | if (IdxN == 0) |
| 397 | // Unhandled operand. Halt "fast" selection and bail. |
| 398 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 399 | IdxNIsKill = true; |
Dan Gohman | 80bc6e2 | 2008-08-26 20:57:08 +0000 | [diff] [blame] | 400 | } |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 401 | N = FastEmit_rr(VT, VT, ISD::ADD, N, NIsKill, IdxN, IdxNIsKill); |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 402 | if (N == 0) |
| 403 | // Unhandled operand. Halt "fast" selection and bail. |
| 404 | return false; |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | // We successfully emitted code for the given LLVM Instruction. |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 409 | UpdateValueMap(I, N); |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 410 | return true; |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 411 | } |
| 412 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 413 | bool FastISel::SelectCall(const User *I) { |
| 414 | const Function *F = cast<CallInst>(I)->getCalledFunction(); |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 415 | if (!F) return false; |
| 416 | |
Dan Gohman | 4183e31 | 2010-04-13 17:07:06 +0000 | [diff] [blame] | 417 | // Handle selected intrinsic function calls. |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 418 | unsigned IID = F->getIntrinsicID(); |
| 419 | switch (IID) { |
| 420 | default: break; |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 421 | case Intrinsic::dbg_declare: { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 422 | const DbgDeclareInst *DI = cast<DbgDeclareInst>(I); |
Devang Patel | 02f0dbd | 2010-05-07 22:04:20 +0000 | [diff] [blame] | 423 | if (!DIVariable(DI->getVariable()).Verify() || |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 424 | !FuncInfo.MF->getMMI().hasDebugInfo()) |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 425 | return true; |
| 426 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 427 | const Value *Address = DI->getAddress(); |
Dale Johannesen | dc91856 | 2010-02-06 02:26:02 +0000 | [diff] [blame] | 428 | if (!Address) |
| 429 | return true; |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 430 | if (isa<UndefValue>(Address)) |
| 431 | return true; |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 432 | const AllocaInst *AI = dyn_cast<AllocaInst>(Address); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 433 | // Don't handle byval struct arguments or VLAs, for example. |
Dale Johannesen | 7dc7840 | 2010-04-25 21:03:54 +0000 | [diff] [blame] | 434 | // Note that if we have a byval struct argument, fast ISel is turned off; |
| 435 | // those are handled in SelectionDAGBuilder. |
Devang Patel | 54fc4d6 | 2010-04-28 19:27:33 +0000 | [diff] [blame] | 436 | if (AI) { |
| 437 | DenseMap<const AllocaInst*, int>::iterator SI = |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 438 | FuncInfo.StaticAllocaMap.find(AI); |
| 439 | if (SI == FuncInfo.StaticAllocaMap.end()) break; // VLAs. |
Devang Patel | 54fc4d6 | 2010-04-28 19:27:33 +0000 | [diff] [blame] | 440 | int FI = SI->second; |
| 441 | if (!DI->getDebugLoc().isUnknown()) |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 442 | FuncInfo.MF->getMMI().setVariableDbgInfo(DI->getVariable(), |
| 443 | FI, DI->getDebugLoc()); |
Devang Patel | 54fc4d6 | 2010-04-28 19:27:33 +0000 | [diff] [blame] | 444 | } else |
| 445 | // Building the map above is target independent. Generating DBG_VALUE |
| 446 | // inline is target dependent; do this now. |
| 447 | (void)TargetSelectInstruction(cast<Instruction>(I)); |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 448 | return true; |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 449 | } |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 450 | case Intrinsic::dbg_value: { |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 451 | // This form of DBG_VALUE is target-independent. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 452 | const DbgValueInst *DI = cast<DbgValueInst>(I); |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 453 | const TargetInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 454 | const Value *V = DI->getValue(); |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 455 | if (!V) { |
| 456 | // Currently the optimizer can produce this; insert an undef to |
| 457 | // help debugging. Probably the optimizer should not do this. |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 458 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
| 459 | .addReg(0U).addImm(DI->getOffset()) |
| 460 | .addMetadata(DI->getVariable()); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 461 | } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 462 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
| 463 | .addImm(CI->getZExtValue()).addImm(DI->getOffset()) |
| 464 | .addMetadata(DI->getVariable()); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 465 | } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 466 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
| 467 | .addFPImm(CF).addImm(DI->getOffset()) |
| 468 | .addMetadata(DI->getVariable()); |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 469 | } else if (unsigned Reg = lookUpRegForValue(V)) { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 470 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
| 471 | .addReg(Reg, RegState::Debug).addImm(DI->getOffset()) |
| 472 | .addMetadata(DI->getVariable()); |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 473 | } else { |
| 474 | // We can't yet handle anything else here because it would require |
| 475 | // generating code, thus altering codegen because of debug info. |
| 476 | // Insert an undef so we can see what we dropped. |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 477 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
| 478 | .addReg(0U).addImm(DI->getOffset()) |
| 479 | .addMetadata(DI->getVariable()); |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 480 | } |
| 481 | return true; |
| 482 | } |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 483 | case Intrinsic::eh_exception: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 484 | EVT VT = TLI.getValueType(I->getType()); |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 485 | switch (TLI.getOperationAction(ISD::EXCEPTIONADDR, VT)) { |
| 486 | default: break; |
| 487 | case TargetLowering::Expand: { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 488 | assert(FuncInfo.MBB->isLandingPad() && |
| 489 | "Call to eh.exception not in landing pad!"); |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 490 | unsigned Reg = TLI.getExceptionAddressRegister(); |
| 491 | const TargetRegisterClass *RC = TLI.getRegClassFor(VT); |
| 492 | unsigned ResultReg = createResultReg(RC); |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 493 | bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt, |
| 494 | ResultReg, Reg, RC, RC, DL); |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 495 | assert(InsertedCopy && "Can't copy address registers!"); |
Evan Cheng | 24ac408 | 2008-11-24 07:09:49 +0000 | [diff] [blame] | 496 | InsertedCopy = InsertedCopy; |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 497 | UpdateValueMap(I, ResultReg); |
| 498 | return true; |
| 499 | } |
| 500 | } |
| 501 | break; |
| 502 | } |
Duncan Sands | b01bbdc | 2009-10-14 16:11:37 +0000 | [diff] [blame] | 503 | case Intrinsic::eh_selector: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 504 | EVT VT = TLI.getValueType(I->getType()); |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 505 | switch (TLI.getOperationAction(ISD::EHSELECTION, VT)) { |
| 506 | default: break; |
| 507 | case TargetLowering::Expand: { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 508 | if (FuncInfo.MBB->isLandingPad()) |
| 509 | AddCatchInfo(*cast<CallInst>(I), &FuncInfo.MF->getMMI(), FuncInfo.MBB); |
Chris Lattner | ed3a806 | 2010-04-05 06:05:26 +0000 | [diff] [blame] | 510 | else { |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 511 | #ifndef NDEBUG |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 512 | FuncInfo.CatchInfoLost.insert(cast<CallInst>(I)); |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 513 | #endif |
Chris Lattner | ed3a806 | 2010-04-05 06:05:26 +0000 | [diff] [blame] | 514 | // FIXME: Mark exception selector register as live in. Hack for PR1508. |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 515 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 516 | if (Reg) FuncInfo.MBB->addLiveIn(Reg); |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 517 | } |
Chris Lattner | ed3a806 | 2010-04-05 06:05:26 +0000 | [diff] [blame] | 518 | |
| 519 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
| 520 | EVT SrcVT = TLI.getPointerTy(); |
| 521 | const TargetRegisterClass *RC = TLI.getRegClassFor(SrcVT); |
| 522 | unsigned ResultReg = createResultReg(RC); |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 523 | bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt, |
| 524 | ResultReg, Reg, RC, RC, DL); |
Chris Lattner | ed3a806 | 2010-04-05 06:05:26 +0000 | [diff] [blame] | 525 | assert(InsertedCopy && "Can't copy address registers!"); |
| 526 | InsertedCopy = InsertedCopy; |
| 527 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 528 | bool ResultRegIsKill = hasTrivialKill(I); |
| 529 | |
Chris Lattner | ed3a806 | 2010-04-05 06:05:26 +0000 | [diff] [blame] | 530 | // Cast the register to the type of the selector. |
| 531 | if (SrcVT.bitsGT(MVT::i32)) |
| 532 | ResultReg = FastEmit_r(SrcVT.getSimpleVT(), MVT::i32, ISD::TRUNCATE, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 533 | ResultReg, ResultRegIsKill); |
Chris Lattner | ed3a806 | 2010-04-05 06:05:26 +0000 | [diff] [blame] | 534 | else if (SrcVT.bitsLT(MVT::i32)) |
| 535 | ResultReg = FastEmit_r(SrcVT.getSimpleVT(), MVT::i32, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 536 | ISD::SIGN_EXTEND, ResultReg, ResultRegIsKill); |
Chris Lattner | ed3a806 | 2010-04-05 06:05:26 +0000 | [diff] [blame] | 537 | if (ResultReg == 0) |
| 538 | // Unhandled operand. Halt "fast" selection and bail. |
| 539 | return false; |
| 540 | |
| 541 | UpdateValueMap(I, ResultReg); |
| 542 | |
Dan Gohman | dd5b58a | 2008-10-14 23:54:11 +0000 | [diff] [blame] | 543 | return true; |
| 544 | } |
| 545 | } |
| 546 | break; |
| 547 | } |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 548 | } |
Dan Gohman | 4183e31 | 2010-04-13 17:07:06 +0000 | [diff] [blame] | 549 | |
| 550 | // An arbitrary call. Bail. |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 551 | return false; |
| 552 | } |
| 553 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 554 | bool FastISel::SelectCast(const User *I, unsigned Opcode) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 555 | EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); |
| 556 | EVT DstVT = TLI.getValueType(I->getType()); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 557 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 558 | if (SrcVT == MVT::Other || !SrcVT.isSimple() || |
| 559 | DstVT == MVT::Other || !DstVT.isSimple()) |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 560 | // Unhandled type. Halt "fast" selection and bail. |
| 561 | return false; |
| 562 | |
Dan Gohman | 474d3b3 | 2009-03-13 23:53:06 +0000 | [diff] [blame] | 563 | // Check if the destination type is legal. Or as a special case, |
| 564 | // it may be i1 if we're doing a truncate because that's |
| 565 | // easy and somewhat common. |
| 566 | if (!TLI.isTypeLegal(DstVT)) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 567 | if (DstVT != MVT::i1 || Opcode != ISD::TRUNCATE) |
Dan Gohman | 91b6f97 | 2008-10-03 01:28:47 +0000 | [diff] [blame] | 568 | // Unhandled type. Halt "fast" selection and bail. |
| 569 | return false; |
Dan Gohman | 474d3b3 | 2009-03-13 23:53:06 +0000 | [diff] [blame] | 570 | |
| 571 | // Check if the source operand is legal. Or as a special case, |
| 572 | // it may be i1 if we're doing zero-extension because that's |
| 573 | // easy and somewhat common. |
| 574 | if (!TLI.isTypeLegal(SrcVT)) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 575 | if (SrcVT != MVT::i1 || Opcode != ISD::ZERO_EXTEND) |
Dan Gohman | 474d3b3 | 2009-03-13 23:53:06 +0000 | [diff] [blame] | 576 | // Unhandled type. Halt "fast" selection and bail. |
| 577 | return false; |
| 578 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 579 | unsigned InputReg = getRegForValue(I->getOperand(0)); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 580 | if (!InputReg) |
| 581 | // Unhandled operand. Halt "fast" selection and bail. |
| 582 | return false; |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 583 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 584 | bool InputRegIsKill = hasTrivialKill(I->getOperand(0)); |
| 585 | |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 586 | // If the operand is i1, arrange for the high bits in the register to be zero. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 587 | if (SrcVT == MVT::i1) { |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 588 | SrcVT = TLI.getTypeToTransformTo(I->getContext(), SrcVT); |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 589 | InputReg = FastEmitZExtFromI1(SrcVT.getSimpleVT(), InputReg, InputRegIsKill); |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 590 | if (!InputReg) |
| 591 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 592 | InputRegIsKill = true; |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 593 | } |
Dan Gohman | 474d3b3 | 2009-03-13 23:53:06 +0000 | [diff] [blame] | 594 | // If the result is i1, truncate to the target's type for i1 first. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 595 | if (DstVT == MVT::i1) |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 596 | DstVT = TLI.getTypeToTransformTo(I->getContext(), DstVT); |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 597 | |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 598 | unsigned ResultReg = FastEmit_r(SrcVT.getSimpleVT(), |
| 599 | DstVT.getSimpleVT(), |
| 600 | Opcode, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 601 | InputReg, InputRegIsKill); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 602 | if (!ResultReg) |
| 603 | return false; |
| 604 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 605 | UpdateValueMap(I, ResultReg); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 606 | return true; |
| 607 | } |
| 608 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 609 | bool FastISel::SelectBitCast(const User *I) { |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 610 | // If the bitcast doesn't change the type, just use the operand value. |
| 611 | if (I->getType() == I->getOperand(0)->getType()) { |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 612 | unsigned Reg = getRegForValue(I->getOperand(0)); |
Dan Gohman | a318dab | 2008-08-27 20:41:38 +0000 | [diff] [blame] | 613 | if (Reg == 0) |
| 614 | return false; |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 615 | UpdateValueMap(I, Reg); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 616 | return true; |
| 617 | } |
| 618 | |
| 619 | // Bitcasts of other values become reg-reg copies or BIT_CONVERT operators. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 620 | EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); |
| 621 | EVT DstVT = TLI.getValueType(I->getType()); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 622 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 623 | if (SrcVT == MVT::Other || !SrcVT.isSimple() || |
| 624 | DstVT == MVT::Other || !DstVT.isSimple() || |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 625 | !TLI.isTypeLegal(SrcVT) || !TLI.isTypeLegal(DstVT)) |
| 626 | // Unhandled type. Halt "fast" selection and bail. |
| 627 | return false; |
| 628 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 629 | unsigned Op0 = getRegForValue(I->getOperand(0)); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 630 | if (Op0 == 0) |
| 631 | // Unhandled operand. Halt "fast" selection and bail. |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 632 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 633 | |
| 634 | bool Op0IsKill = hasTrivialKill(I->getOperand(0)); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 635 | |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 636 | // First, try to perform the bitcast by inserting a reg-reg copy. |
| 637 | unsigned ResultReg = 0; |
| 638 | if (SrcVT.getSimpleVT() == DstVT.getSimpleVT()) { |
| 639 | TargetRegisterClass* SrcClass = TLI.getRegClassFor(SrcVT); |
| 640 | TargetRegisterClass* DstClass = TLI.getRegClassFor(DstVT); |
| 641 | ResultReg = createResultReg(DstClass); |
| 642 | |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 643 | bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt, |
| 644 | ResultReg, Op0, |
| 645 | DstClass, SrcClass, DL); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 646 | if (!InsertedCopy) |
| 647 | ResultReg = 0; |
| 648 | } |
| 649 | |
| 650 | // If the reg-reg copy failed, select a BIT_CONVERT opcode. |
| 651 | if (!ResultReg) |
| 652 | ResultReg = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 653 | ISD::BIT_CONVERT, Op0, Op0IsKill); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 654 | |
| 655 | if (!ResultReg) |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 656 | return false; |
| 657 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 658 | UpdateValueMap(I, ResultReg); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 659 | return true; |
| 660 | } |
| 661 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 662 | bool |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 663 | FastISel::SelectInstruction(const Instruction *I) { |
Dan Gohman | e8c92dd | 2010-04-23 15:29:50 +0000 | [diff] [blame] | 664 | // Just before the terminator instruction, insert instructions to |
| 665 | // feed PHI nodes in successor blocks. |
| 666 | if (isa<TerminatorInst>(I)) |
| 667 | if (!HandlePHINodesInSuccessorBlocks(I->getParent())) |
| 668 | return false; |
| 669 | |
Dan Gohman | 8ba3aa7 | 2010-04-20 00:48:35 +0000 | [diff] [blame] | 670 | DL = I->getDebugLoc(); |
| 671 | |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 672 | // First, try doing target-independent selection. |
Dan Gohman | 8ba3aa7 | 2010-04-20 00:48:35 +0000 | [diff] [blame] | 673 | if (SelectOperator(I, I->getOpcode())) { |
| 674 | DL = DebugLoc(); |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 675 | return true; |
Dan Gohman | 8ba3aa7 | 2010-04-20 00:48:35 +0000 | [diff] [blame] | 676 | } |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 677 | |
| 678 | // Next, try calling the target to attempt to handle the instruction. |
Dan Gohman | 8ba3aa7 | 2010-04-20 00:48:35 +0000 | [diff] [blame] | 679 | if (TargetSelectInstruction(I)) { |
| 680 | DL = DebugLoc(); |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 681 | return true; |
Dan Gohman | 8ba3aa7 | 2010-04-20 00:48:35 +0000 | [diff] [blame] | 682 | } |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 683 | |
Dan Gohman | 8ba3aa7 | 2010-04-20 00:48:35 +0000 | [diff] [blame] | 684 | DL = DebugLoc(); |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 685 | return false; |
Dan Gohman | 40b189e | 2008-09-05 18:18:20 +0000 | [diff] [blame] | 686 | } |
| 687 | |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 688 | /// FastEmitBranch - Emit an unconditional branch to the given block, |
| 689 | /// unless it is the immediate (fall-through) successor, and update |
| 690 | /// the CFG. |
| 691 | void |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 692 | FastISel::FastEmitBranch(MachineBasicBlock *MSucc, DebugLoc DL) { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 693 | if (FuncInfo.MBB->isLayoutSuccessor(MSucc)) { |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 694 | // The unconditional fall-through case, which needs no instructions. |
| 695 | } else { |
| 696 | // The unconditional branch case. |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 697 | TII.InsertBranch(*FuncInfo.MBB, MSucc, NULL, |
| 698 | SmallVector<MachineOperand, 0>(), DL); |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 699 | } |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 700 | FuncInfo.MBB->addSuccessor(MSucc); |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 701 | } |
| 702 | |
Dan Gohman | 3d45a85 | 2009-09-03 22:53:57 +0000 | [diff] [blame] | 703 | /// SelectFNeg - Emit an FNeg operation. |
| 704 | /// |
| 705 | bool |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 706 | FastISel::SelectFNeg(const User *I) { |
Dan Gohman | 3d45a85 | 2009-09-03 22:53:57 +0000 | [diff] [blame] | 707 | unsigned OpReg = getRegForValue(BinaryOperator::getFNegArgument(I)); |
| 708 | if (OpReg == 0) return false; |
| 709 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 710 | bool OpRegIsKill = hasTrivialKill(I); |
| 711 | |
Dan Gohman | 4a215a1 | 2009-09-11 00:36:43 +0000 | [diff] [blame] | 712 | // If the target has ISD::FNEG, use it. |
| 713 | EVT VT = TLI.getValueType(I->getType()); |
| 714 | unsigned ResultReg = FastEmit_r(VT.getSimpleVT(), VT.getSimpleVT(), |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 715 | ISD::FNEG, OpReg, OpRegIsKill); |
Dan Gohman | 4a215a1 | 2009-09-11 00:36:43 +0000 | [diff] [blame] | 716 | if (ResultReg != 0) { |
| 717 | UpdateValueMap(I, ResultReg); |
| 718 | return true; |
| 719 | } |
| 720 | |
Dan Gohman | 5e5abb7 | 2009-09-11 00:34:46 +0000 | [diff] [blame] | 721 | // Bitcast the value to integer, twiddle the sign bit with xor, |
| 722 | // and then bitcast it back to floating-point. |
Dan Gohman | 3d45a85 | 2009-09-03 22:53:57 +0000 | [diff] [blame] | 723 | if (VT.getSizeInBits() > 64) return false; |
Dan Gohman | 5e5abb7 | 2009-09-11 00:34:46 +0000 | [diff] [blame] | 724 | EVT IntVT = EVT::getIntegerVT(I->getContext(), VT.getSizeInBits()); |
| 725 | if (!TLI.isTypeLegal(IntVT)) |
| 726 | return false; |
| 727 | |
| 728 | unsigned IntReg = FastEmit_r(VT.getSimpleVT(), IntVT.getSimpleVT(), |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 729 | ISD::BIT_CONVERT, OpReg, OpRegIsKill); |
Dan Gohman | 5e5abb7 | 2009-09-11 00:34:46 +0000 | [diff] [blame] | 730 | if (IntReg == 0) |
| 731 | return false; |
| 732 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 733 | unsigned IntResultReg = FastEmit_ri_(IntVT.getSimpleVT(), ISD::XOR, |
| 734 | IntReg, /*Kill=*/true, |
Dan Gohman | 5e5abb7 | 2009-09-11 00:34:46 +0000 | [diff] [blame] | 735 | UINT64_C(1) << (VT.getSizeInBits()-1), |
| 736 | IntVT.getSimpleVT()); |
| 737 | if (IntResultReg == 0) |
| 738 | return false; |
| 739 | |
| 740 | ResultReg = FastEmit_r(IntVT.getSimpleVT(), VT.getSimpleVT(), |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 741 | ISD::BIT_CONVERT, IntResultReg, /*Kill=*/true); |
Dan Gohman | 3d45a85 | 2009-09-03 22:53:57 +0000 | [diff] [blame] | 742 | if (ResultReg == 0) |
| 743 | return false; |
| 744 | |
| 745 | UpdateValueMap(I, ResultReg); |
| 746 | return true; |
| 747 | } |
| 748 | |
Dan Gohman | 40b189e | 2008-09-05 18:18:20 +0000 | [diff] [blame] | 749 | bool |
Dan Gohman | 7fbcc98 | 2010-07-01 03:49:38 +0000 | [diff] [blame] | 750 | FastISel::SelectLoad(const User *I) { |
| 751 | LoadInst *LI = const_cast<LoadInst *>(cast<LoadInst>(I)); |
| 752 | |
| 753 | // For a load from an alloca, make a limited effort to find the value |
| 754 | // already available in a register, avoiding redundant loads. |
| 755 | if (!LI->isVolatile() && isa<AllocaInst>(LI->getPointerOperand())) { |
| 756 | BasicBlock::iterator ScanFrom = LI; |
| 757 | if (const Value *V = FindAvailableLoadedValue(LI->getPointerOperand(), |
| 758 | LI->getParent(), ScanFrom)) { |
Dan Gohman | 4df83ed | 2010-07-07 19:20:32 +0000 | [diff] [blame] | 759 | if (!isa<Instruction>(V) || |
| 760 | cast<Instruction>(V)->getParent() == LI->getParent() || |
| 761 | (isa<AllocaInst>(V) && FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) { |
Dan Gohman | 7fbcc98 | 2010-07-01 03:49:38 +0000 | [diff] [blame] | 762 | unsigned ResultReg = getRegForValue(V); |
| 763 | if (ResultReg != 0) { |
| 764 | UpdateValueMap(I, ResultReg); |
| 765 | return true; |
| 766 | } |
Dan Gohman | 4df83ed | 2010-07-07 19:20:32 +0000 | [diff] [blame] | 767 | } |
Dan Gohman | 7fbcc98 | 2010-07-01 03:49:38 +0000 | [diff] [blame] | 768 | } |
| 769 | } |
| 770 | |
| 771 | return false; |
| 772 | } |
| 773 | |
| 774 | bool |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 775 | FastISel::SelectOperator(const User *I, unsigned Opcode) { |
Dan Gohman | 40b189e | 2008-09-05 18:18:20 +0000 | [diff] [blame] | 776 | switch (Opcode) { |
Dan Gohman | 7fbcc98 | 2010-07-01 03:49:38 +0000 | [diff] [blame] | 777 | case Instruction::Load: |
| 778 | return SelectLoad(I); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 779 | case Instruction::Add: |
| 780 | return SelectBinaryOp(I, ISD::ADD); |
| 781 | case Instruction::FAdd: |
| 782 | return SelectBinaryOp(I, ISD::FADD); |
| 783 | case Instruction::Sub: |
| 784 | return SelectBinaryOp(I, ISD::SUB); |
| 785 | case Instruction::FSub: |
Dan Gohman | 3d45a85 | 2009-09-03 22:53:57 +0000 | [diff] [blame] | 786 | // FNeg is currently represented in LLVM IR as a special case of FSub. |
| 787 | if (BinaryOperator::isFNeg(I)) |
| 788 | return SelectFNeg(I); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 789 | return SelectBinaryOp(I, ISD::FSUB); |
| 790 | case Instruction::Mul: |
| 791 | return SelectBinaryOp(I, ISD::MUL); |
| 792 | case Instruction::FMul: |
| 793 | return SelectBinaryOp(I, ISD::FMUL); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 794 | case Instruction::SDiv: |
| 795 | return SelectBinaryOp(I, ISD::SDIV); |
| 796 | case Instruction::UDiv: |
| 797 | return SelectBinaryOp(I, ISD::UDIV); |
| 798 | case Instruction::FDiv: |
| 799 | return SelectBinaryOp(I, ISD::FDIV); |
| 800 | case Instruction::SRem: |
| 801 | return SelectBinaryOp(I, ISD::SREM); |
| 802 | case Instruction::URem: |
| 803 | return SelectBinaryOp(I, ISD::UREM); |
| 804 | case Instruction::FRem: |
| 805 | return SelectBinaryOp(I, ISD::FREM); |
| 806 | case Instruction::Shl: |
| 807 | return SelectBinaryOp(I, ISD::SHL); |
| 808 | case Instruction::LShr: |
| 809 | return SelectBinaryOp(I, ISD::SRL); |
| 810 | case Instruction::AShr: |
| 811 | return SelectBinaryOp(I, ISD::SRA); |
| 812 | case Instruction::And: |
| 813 | return SelectBinaryOp(I, ISD::AND); |
| 814 | case Instruction::Or: |
| 815 | return SelectBinaryOp(I, ISD::OR); |
| 816 | case Instruction::Xor: |
| 817 | return SelectBinaryOp(I, ISD::XOR); |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 818 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 819 | case Instruction::GetElementPtr: |
| 820 | return SelectGetElementPtr(I); |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 821 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 822 | case Instruction::Br: { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 823 | const BranchInst *BI = cast<BranchInst>(I); |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 824 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 825 | if (BI->isUnconditional()) { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 826 | const BasicBlock *LLVMSucc = BI->getSuccessor(0); |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 827 | MachineBasicBlock *MSucc = FuncInfo.MBBMap[LLVMSucc]; |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 828 | FastEmitBranch(MSucc, BI->getDebugLoc()); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 829 | return true; |
Owen Anderson | 9d5b416 | 2008-08-27 00:31:01 +0000 | [diff] [blame] | 830 | } |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 831 | |
| 832 | // Conditional branches are not handed yet. |
| 833 | // Halt "fast" selection and bail. |
| 834 | return false; |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 835 | } |
| 836 | |
Dan Gohman | 087c850 | 2008-09-05 01:08:41 +0000 | [diff] [blame] | 837 | case Instruction::Unreachable: |
| 838 | // Nothing to emit. |
| 839 | return true; |
| 840 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 841 | case Instruction::Alloca: |
| 842 | // FunctionLowering has the static-sized case covered. |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 843 | if (FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(I))) |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 844 | return true; |
| 845 | |
| 846 | // Dynamic-sized alloca is not handled yet. |
| 847 | return false; |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 848 | |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 849 | case Instruction::Call: |
| 850 | return SelectCall(I); |
| 851 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 852 | case Instruction::BitCast: |
| 853 | return SelectBitCast(I); |
| 854 | |
| 855 | case Instruction::FPToSI: |
| 856 | return SelectCast(I, ISD::FP_TO_SINT); |
| 857 | case Instruction::ZExt: |
| 858 | return SelectCast(I, ISD::ZERO_EXTEND); |
| 859 | case Instruction::SExt: |
| 860 | return SelectCast(I, ISD::SIGN_EXTEND); |
| 861 | case Instruction::Trunc: |
| 862 | return SelectCast(I, ISD::TRUNCATE); |
| 863 | case Instruction::SIToFP: |
| 864 | return SelectCast(I, ISD::SINT_TO_FP); |
| 865 | |
| 866 | case Instruction::IntToPtr: // Deliberate fall-through. |
| 867 | case Instruction::PtrToInt: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 868 | EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); |
| 869 | EVT DstVT = TLI.getValueType(I->getType()); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 870 | if (DstVT.bitsGT(SrcVT)) |
| 871 | return SelectCast(I, ISD::ZERO_EXTEND); |
| 872 | if (DstVT.bitsLT(SrcVT)) |
| 873 | return SelectCast(I, ISD::TRUNCATE); |
| 874 | unsigned Reg = getRegForValue(I->getOperand(0)); |
| 875 | if (Reg == 0) return false; |
| 876 | UpdateValueMap(I, Reg); |
| 877 | return true; |
| 878 | } |
Dan Gohman | d57dd5f | 2008-09-23 21:53:34 +0000 | [diff] [blame] | 879 | |
Dan Gohman | ba5be5c | 2010-04-20 15:00:41 +0000 | [diff] [blame] | 880 | case Instruction::PHI: |
| 881 | llvm_unreachable("FastISel shouldn't visit PHI nodes!"); |
| 882 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 883 | default: |
| 884 | // Unhandled instruction. Halt "fast" selection and bail. |
| 885 | return false; |
| 886 | } |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 887 | } |
| 888 | |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 889 | FastISel::FastISel(FunctionLoweringInfo &funcInfo) |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 890 | : FuncInfo(funcInfo), |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 891 | MRI(FuncInfo.MF->getRegInfo()), |
| 892 | MFI(*FuncInfo.MF->getFrameInfo()), |
| 893 | MCP(*FuncInfo.MF->getConstantPool()), |
| 894 | TM(FuncInfo.MF->getTarget()), |
Dan Gohman | 22bb311 | 2008-08-22 00:20:26 +0000 | [diff] [blame] | 895 | TD(*TM.getTargetData()), |
| 896 | TII(*TM.getInstrInfo()), |
Dan Gohman | a7a0ed7 | 2010-05-05 23:58:35 +0000 | [diff] [blame] | 897 | TLI(*TM.getTargetLowering()), |
Dan Gohman | 4df83ed | 2010-07-07 19:20:32 +0000 | [diff] [blame] | 898 | TRI(*TM.getRegisterInfo()) { |
Dan Gohman | bb46633 | 2008-08-20 21:05:57 +0000 | [diff] [blame] | 899 | } |
| 900 | |
Dan Gohman | e285a74 | 2008-08-14 21:51:29 +0000 | [diff] [blame] | 901 | FastISel::~FastISel() {} |
| 902 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 903 | unsigned FastISel::FastEmit_(MVT, MVT, |
Dan Gohman | 7c3ecb6 | 2010-01-05 22:26:32 +0000 | [diff] [blame] | 904 | unsigned) { |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 905 | return 0; |
| 906 | } |
| 907 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 908 | unsigned FastISel::FastEmit_r(MVT, MVT, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 909 | unsigned, |
| 910 | unsigned /*Op0*/, bool /*Op0IsKill*/) { |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 911 | return 0; |
| 912 | } |
| 913 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 914 | unsigned FastISel::FastEmit_rr(MVT, MVT, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 915 | unsigned, |
| 916 | unsigned /*Op0*/, bool /*Op0IsKill*/, |
| 917 | unsigned /*Op1*/, bool /*Op1IsKill*/) { |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 918 | return 0; |
| 919 | } |
| 920 | |
Dan Gohman | 7c3ecb6 | 2010-01-05 22:26:32 +0000 | [diff] [blame] | 921 | unsigned FastISel::FastEmit_i(MVT, MVT, unsigned, uint64_t /*Imm*/) { |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 922 | return 0; |
| 923 | } |
| 924 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 925 | unsigned FastISel::FastEmit_f(MVT, MVT, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 926 | unsigned, const ConstantFP * /*FPImm*/) { |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 927 | return 0; |
| 928 | } |
| 929 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 930 | unsigned FastISel::FastEmit_ri(MVT, MVT, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 931 | unsigned, |
| 932 | unsigned /*Op0*/, bool /*Op0IsKill*/, |
Owen Anderson | 0f84e4e | 2008-08-25 23:58:18 +0000 | [diff] [blame] | 933 | uint64_t /*Imm*/) { |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 934 | return 0; |
| 935 | } |
| 936 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 937 | unsigned FastISel::FastEmit_rf(MVT, MVT, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 938 | unsigned, |
| 939 | unsigned /*Op0*/, bool /*Op0IsKill*/, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 940 | const ConstantFP * /*FPImm*/) { |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 941 | return 0; |
| 942 | } |
| 943 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 944 | unsigned FastISel::FastEmit_rri(MVT, MVT, |
Dan Gohman | 7c3ecb6 | 2010-01-05 22:26:32 +0000 | [diff] [blame] | 945 | unsigned, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 946 | unsigned /*Op0*/, bool /*Op0IsKill*/, |
| 947 | unsigned /*Op1*/, bool /*Op1IsKill*/, |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 948 | uint64_t /*Imm*/) { |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 949 | return 0; |
| 950 | } |
| 951 | |
| 952 | /// FastEmit_ri_ - This method is a wrapper of FastEmit_ri. It first tries |
| 953 | /// to emit an instruction with an immediate operand using FastEmit_ri. |
| 954 | /// If that fails, it materializes the immediate into a register and try |
| 955 | /// FastEmit_rr instead. |
Dan Gohman | 7c3ecb6 | 2010-01-05 22:26:32 +0000 | [diff] [blame] | 956 | unsigned FastISel::FastEmit_ri_(MVT VT, unsigned Opcode, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 957 | unsigned Op0, bool Op0IsKill, |
| 958 | uint64_t Imm, MVT ImmType) { |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 959 | // First check if immediate type is legal. If not, we can't use the ri form. |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 960 | unsigned ResultReg = FastEmit_ri(VT, VT, Opcode, Op0, Op0IsKill, Imm); |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 961 | if (ResultReg != 0) |
| 962 | return ResultReg; |
Owen Anderson | 0f84e4e | 2008-08-25 23:58:18 +0000 | [diff] [blame] | 963 | unsigned MaterialReg = FastEmit_i(ImmType, ImmType, ISD::Constant, Imm); |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 964 | if (MaterialReg == 0) |
| 965 | return 0; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 966 | return FastEmit_rr(VT, VT, Opcode, |
| 967 | Op0, Op0IsKill, |
| 968 | MaterialReg, /*Kill=*/true); |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 969 | } |
| 970 | |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 971 | /// FastEmit_rf_ - This method is a wrapper of FastEmit_ri. It first tries |
| 972 | /// to emit an instruction with a floating-point immediate operand using |
| 973 | /// FastEmit_rf. If that fails, it materializes the immediate into a register |
| 974 | /// and try FastEmit_rr instead. |
Dan Gohman | 7c3ecb6 | 2010-01-05 22:26:32 +0000 | [diff] [blame] | 975 | unsigned FastISel::FastEmit_rf_(MVT VT, unsigned Opcode, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 976 | unsigned Op0, bool Op0IsKill, |
| 977 | const ConstantFP *FPImm, MVT ImmType) { |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 978 | // First check if immediate type is legal. If not, we can't use the rf form. |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 979 | unsigned ResultReg = FastEmit_rf(VT, VT, Opcode, Op0, Op0IsKill, FPImm); |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 980 | if (ResultReg != 0) |
| 981 | return ResultReg; |
| 982 | |
| 983 | // Materialize the constant in a register. |
| 984 | unsigned MaterialReg = FastEmit_f(ImmType, ImmType, ISD::ConstantFP, FPImm); |
| 985 | if (MaterialReg == 0) { |
Dan Gohman | 96a9999 | 2008-08-27 18:01:42 +0000 | [diff] [blame] | 986 | // If the target doesn't have a way to directly enter a floating-point |
| 987 | // value into a register, use an alternate approach. |
| 988 | // TODO: The current approach only supports floating-point constants |
| 989 | // that can be constructed by conversion from integer values. This should |
| 990 | // be replaced by code that creates a load from a constant-pool entry, |
| 991 | // which will require some target-specific work. |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 992 | const APFloat &Flt = FPImm->getValueAPF(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 993 | EVT IntVT = TLI.getPointerTy(); |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 994 | |
| 995 | uint64_t x[2]; |
| 996 | uint32_t IntBitWidth = IntVT.getSizeInBits(); |
Dale Johannesen | 23a9855 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 997 | bool isExact; |
| 998 | (void) Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true, |
| 999 | APFloat::rmTowardZero, &isExact); |
| 1000 | if (!isExact) |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 1001 | return 0; |
| 1002 | APInt IntVal(IntBitWidth, 2, x); |
| 1003 | |
| 1004 | unsigned IntegerReg = FastEmit_i(IntVT.getSimpleVT(), IntVT.getSimpleVT(), |
| 1005 | ISD::Constant, IntVal.getZExtValue()); |
| 1006 | if (IntegerReg == 0) |
| 1007 | return 0; |
| 1008 | MaterialReg = FastEmit_r(IntVT.getSimpleVT(), VT, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1009 | ISD::SINT_TO_FP, IntegerReg, /*Kill=*/true); |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 1010 | if (MaterialReg == 0) |
| 1011 | return 0; |
| 1012 | } |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1013 | return FastEmit_rr(VT, VT, Opcode, |
| 1014 | Op0, Op0IsKill, |
| 1015 | MaterialReg, /*Kill=*/true); |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 1016 | } |
| 1017 | |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1018 | unsigned FastISel::createResultReg(const TargetRegisterClass* RC) { |
| 1019 | return MRI.createVirtualRegister(RC); |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1022 | unsigned FastISel::FastEmitInst_(unsigned MachineInstOpcode, |
Dan Gohman | 77ad796 | 2008-08-20 18:09:38 +0000 | [diff] [blame] | 1023 | const TargetRegisterClass* RC) { |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1024 | unsigned ResultReg = createResultReg(RC); |
Dan Gohman | bb46633 | 2008-08-20 21:05:57 +0000 | [diff] [blame] | 1025 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1026 | |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1027 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg); |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1028 | return ResultReg; |
| 1029 | } |
| 1030 | |
| 1031 | unsigned FastISel::FastEmitInst_r(unsigned MachineInstOpcode, |
| 1032 | const TargetRegisterClass *RC, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1033 | unsigned Op0, bool Op0IsKill) { |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1034 | unsigned ResultReg = createResultReg(RC); |
Dan Gohman | bb46633 | 2008-08-20 21:05:57 +0000 | [diff] [blame] | 1035 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1036 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1037 | if (II.getNumDefs() >= 1) |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1038 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
| 1039 | .addReg(Op0, Op0IsKill * RegState::Kill); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1040 | else { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1041 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
| 1042 | .addReg(Op0, Op0IsKill * RegState::Kill); |
| 1043 | bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt, |
| 1044 | ResultReg, II.ImplicitDefs[0], |
| 1045 | RC, RC, DL); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1046 | if (!InsertedCopy) |
| 1047 | ResultReg = 0; |
| 1048 | } |
| 1049 | |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1050 | return ResultReg; |
| 1051 | } |
| 1052 | |
| 1053 | unsigned FastISel::FastEmitInst_rr(unsigned MachineInstOpcode, |
| 1054 | const TargetRegisterClass *RC, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1055 | unsigned Op0, bool Op0IsKill, |
| 1056 | unsigned Op1, bool Op1IsKill) { |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1057 | unsigned ResultReg = createResultReg(RC); |
Dan Gohman | bb46633 | 2008-08-20 21:05:57 +0000 | [diff] [blame] | 1058 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1059 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1060 | if (II.getNumDefs() >= 1) |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1061 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1062 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 1063 | .addReg(Op1, Op1IsKill * RegState::Kill); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1064 | else { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1065 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1066 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 1067 | .addReg(Op1, Op1IsKill * RegState::Kill); |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1068 | bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt, |
| 1069 | ResultReg, II.ImplicitDefs[0], |
| 1070 | RC, RC, DL); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1071 | if (!InsertedCopy) |
| 1072 | ResultReg = 0; |
| 1073 | } |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1074 | return ResultReg; |
| 1075 | } |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1076 | |
| 1077 | unsigned FastISel::FastEmitInst_ri(unsigned MachineInstOpcode, |
| 1078 | const TargetRegisterClass *RC, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1079 | unsigned Op0, bool Op0IsKill, |
| 1080 | uint64_t Imm) { |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1081 | unsigned ResultReg = createResultReg(RC); |
| 1082 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 1083 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1084 | if (II.getNumDefs() >= 1) |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1085 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1086 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 1087 | .addImm(Imm); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1088 | else { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1089 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1090 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 1091 | .addImm(Imm); |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1092 | bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt, |
| 1093 | ResultReg, II.ImplicitDefs[0], |
| 1094 | RC, RC, DL); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1095 | if (!InsertedCopy) |
| 1096 | ResultReg = 0; |
| 1097 | } |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1098 | return ResultReg; |
| 1099 | } |
| 1100 | |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 1101 | unsigned FastISel::FastEmitInst_rf(unsigned MachineInstOpcode, |
| 1102 | const TargetRegisterClass *RC, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1103 | unsigned Op0, bool Op0IsKill, |
| 1104 | const ConstantFP *FPImm) { |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 1105 | unsigned ResultReg = createResultReg(RC); |
| 1106 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 1107 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1108 | if (II.getNumDefs() >= 1) |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1109 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1110 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 1111 | .addFPImm(FPImm); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1112 | else { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1113 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1114 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 1115 | .addFPImm(FPImm); |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1116 | bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt, |
| 1117 | ResultReg, II.ImplicitDefs[0], |
| 1118 | RC, RC, DL); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1119 | if (!InsertedCopy) |
| 1120 | ResultReg = 0; |
| 1121 | } |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 1122 | return ResultReg; |
| 1123 | } |
| 1124 | |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1125 | unsigned FastISel::FastEmitInst_rri(unsigned MachineInstOpcode, |
| 1126 | const TargetRegisterClass *RC, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1127 | unsigned Op0, bool Op0IsKill, |
| 1128 | unsigned Op1, bool Op1IsKill, |
| 1129 | uint64_t Imm) { |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1130 | unsigned ResultReg = createResultReg(RC); |
| 1131 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 1132 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1133 | if (II.getNumDefs() >= 1) |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1134 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1135 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 1136 | .addReg(Op1, Op1IsKill * RegState::Kill) |
| 1137 | .addImm(Imm); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1138 | else { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1139 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1140 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 1141 | .addReg(Op1, Op1IsKill * RegState::Kill) |
| 1142 | .addImm(Imm); |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1143 | bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt, |
| 1144 | ResultReg, II.ImplicitDefs[0], |
| 1145 | RC, RC, DL); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1146 | if (!InsertedCopy) |
| 1147 | ResultReg = 0; |
| 1148 | } |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1149 | return ResultReg; |
| 1150 | } |
Owen Anderson | 6d0c25e | 2008-08-25 20:20:32 +0000 | [diff] [blame] | 1151 | |
| 1152 | unsigned FastISel::FastEmitInst_i(unsigned MachineInstOpcode, |
| 1153 | const TargetRegisterClass *RC, |
| 1154 | uint64_t Imm) { |
| 1155 | unsigned ResultReg = createResultReg(RC); |
| 1156 | const TargetInstrDesc &II = TII.get(MachineInstOpcode); |
| 1157 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1158 | if (II.getNumDefs() >= 1) |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1159 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg).addImm(Imm); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1160 | else { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1161 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II).addImm(Imm); |
| 1162 | bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt, |
| 1163 | ResultReg, II.ImplicitDefs[0], |
| 1164 | RC, RC, DL); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1165 | if (!InsertedCopy) |
| 1166 | ResultReg = 0; |
| 1167 | } |
Owen Anderson | 6d0c25e | 2008-08-25 20:20:32 +0000 | [diff] [blame] | 1168 | return ResultReg; |
Evan Cheng | b41aec5 | 2008-08-25 22:20:39 +0000 | [diff] [blame] | 1169 | } |
Owen Anderson | 8970f00 | 2008-08-27 22:30:02 +0000 | [diff] [blame] | 1170 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1171 | unsigned FastISel::FastEmitInst_extractsubreg(MVT RetVT, |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1172 | unsigned Op0, bool Op0IsKill, |
| 1173 | uint32_t Idx) { |
Owen Anderson | 40a468f | 2008-08-28 17:47:37 +0000 | [diff] [blame] | 1174 | const TargetRegisterClass* RC = MRI.getRegClass(Op0); |
Owen Anderson | 8970f00 | 2008-08-27 22:30:02 +0000 | [diff] [blame] | 1175 | |
Evan Cheng | 536ab13 | 2009-01-22 09:10:11 +0000 | [diff] [blame] | 1176 | unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT)); |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 1177 | const TargetInstrDesc &II = TII.get(TargetOpcode::EXTRACT_SUBREG); |
Owen Anderson | 8970f00 | 2008-08-27 22:30:02 +0000 | [diff] [blame] | 1178 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1179 | if (II.getNumDefs() >= 1) |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1180 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1181 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 1182 | .addImm(Idx); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1183 | else { |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1184 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II) |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1185 | .addReg(Op0, Op0IsKill * RegState::Kill) |
| 1186 | .addImm(Idx); |
Dan Gohman | eabaed2 | 2010-07-07 16:47:08 +0000 | [diff] [blame] | 1187 | bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt, |
| 1188 | ResultReg, II.ImplicitDefs[0], |
| 1189 | RC, RC, DL); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1190 | if (!InsertedCopy) |
| 1191 | ResultReg = 0; |
| 1192 | } |
Owen Anderson | 8970f00 | 2008-08-27 22:30:02 +0000 | [diff] [blame] | 1193 | return ResultReg; |
| 1194 | } |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 1195 | |
| 1196 | /// FastEmitZExtFromI1 - Emit MachineInstrs to compute the value of Op |
| 1197 | /// with all but the least significant bit set to zero. |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1198 | unsigned FastISel::FastEmitZExtFromI1(MVT VT, unsigned Op0, bool Op0IsKill) { |
| 1199 | return FastEmit_ri(VT, VT, ISD::AND, Op0, Op0IsKill, 1); |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 1200 | } |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1201 | |
| 1202 | /// HandlePHINodesInSuccessorBlocks - Handle PHI nodes in successor blocks. |
| 1203 | /// Emit code to ensure constants are copied into registers when needed. |
| 1204 | /// Remember the virtual registers that need to be added to the Machine PHI |
| 1205 | /// nodes as input. We cannot just directly add them, because expansion |
| 1206 | /// might result in multiple MBB's for one BB. As such, the start of the |
| 1207 | /// BB might correspond to a different MBB than the end. |
| 1208 | bool FastISel::HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) { |
| 1209 | const TerminatorInst *TI = LLVMBB->getTerminator(); |
| 1210 | |
| 1211 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 1212 | unsigned OrigNumPHINodesToUpdate = FuncInfo.PHINodesToUpdate.size(); |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1213 | |
| 1214 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 1215 | // from this block. |
| 1216 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 1217 | const BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 1218 | if (!isa<PHINode>(SuccBB->begin())) continue; |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 1219 | MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB]; |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1220 | |
| 1221 | // If this terminator has multiple identical successors (common for |
| 1222 | // switches), only handle each succ once. |
| 1223 | if (!SuccsHandled.insert(SuccMBB)) continue; |
| 1224 | |
| 1225 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 1226 | |
| 1227 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 1228 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 1229 | // emitted yet. |
| 1230 | for (BasicBlock::const_iterator I = SuccBB->begin(); |
| 1231 | const PHINode *PN = dyn_cast<PHINode>(I); ++I) { |
Dan Gohman | fb95f89 | 2010-05-07 01:10:20 +0000 | [diff] [blame] | 1232 | |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1233 | // Ignore dead phi's. |
| 1234 | if (PN->use_empty()) continue; |
| 1235 | |
| 1236 | // Only handle legal types. Two interesting things to note here. First, |
| 1237 | // by bailing out early, we may leave behind some dead instructions, |
| 1238 | // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its |
| 1239 | // own moves. Second, this check is necessary becuase FastISel doesn't |
Dan Gohman | 89496d0 | 2010-07-02 00:10:16 +0000 | [diff] [blame] | 1240 | // use CreateRegs to create registers, so it always creates |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1241 | // exactly one register for each non-void instruction. |
| 1242 | EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true); |
| 1243 | if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { |
| 1244 | // Promote MVT::i1. |
| 1245 | if (VT == MVT::i1) |
| 1246 | VT = TLI.getTypeToTransformTo(LLVMBB->getContext(), VT); |
| 1247 | else { |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 1248 | FuncInfo.PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1249 | return false; |
| 1250 | } |
| 1251 | } |
| 1252 | |
| 1253 | const Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 1254 | |
Dan Gohman | fb95f89 | 2010-05-07 01:10:20 +0000 | [diff] [blame] | 1255 | // Set the DebugLoc for the copy. Prefer the location of the operand |
| 1256 | // if there is one; use the location of the PHI otherwise. |
| 1257 | DL = PN->getDebugLoc(); |
| 1258 | if (const Instruction *Inst = dyn_cast<Instruction>(PHIOp)) |
| 1259 | DL = Inst->getDebugLoc(); |
| 1260 | |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1261 | unsigned Reg = getRegForValue(PHIOp); |
| 1262 | if (Reg == 0) { |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 1263 | FuncInfo.PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1264 | return false; |
| 1265 | } |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 1266 | FuncInfo.PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg)); |
Dan Gohman | fb95f89 | 2010-05-07 01:10:20 +0000 | [diff] [blame] | 1267 | DL = DebugLoc(); |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1268 | } |
| 1269 | } |
| 1270 | |
| 1271 | return true; |
| 1272 | } |