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 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 42 | #include "llvm/CodeGen/Analysis.h" |
David Blaikie | 6d9dbd5 | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 43 | #include "llvm/ADT/Optional.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 44 | #include "llvm/ADT/Statistic.h" |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 45 | #include "llvm/Analysis/BranchProbabilityInfo.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 46 | #include "llvm/Analysis/Loads.h" |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 47 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 48 | #include "llvm/CodeGen/Analysis.h" |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 49 | #include "llvm/CodeGen/FastISel.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 50 | #include "llvm/CodeGen/FunctionLoweringInfo.h" |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 51 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 52 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 53 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 54 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 55 | #include "llvm/CodeGen/StackMaps.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 56 | #include "llvm/IR/DataLayout.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 57 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 58 | #include "llvm/IR/Function.h" |
| 59 | #include "llvm/IR/GlobalVariable.h" |
| 60 | #include "llvm/IR/Instructions.h" |
| 61 | #include "llvm/IR/IntrinsicInst.h" |
| 62 | #include "llvm/IR/Operator.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 63 | #include "llvm/Support/Debug.h" |
| 64 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 65 | #include "llvm/Target/TargetInstrInfo.h" |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 66 | #include "llvm/Target/TargetLowering.h" |
Dan Gohman | bb46633 | 2008-08-20 21:05:57 +0000 | [diff] [blame] | 67 | #include "llvm/Target/TargetMachine.h" |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 68 | #include "llvm/Target/TargetSubtargetInfo.h" |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 69 | using namespace llvm; |
| 70 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 71 | #define DEBUG_TYPE "isel" |
| 72 | |
Chad Rosier | aa5656c | 2011-11-28 19:59:09 +0000 | [diff] [blame] | 73 | STATISTIC(NumFastIselSuccessIndependent, "Number of insts selected by " |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 74 | "target-independent selector"); |
Chad Rosier | aa5656c | 2011-11-28 19:59:09 +0000 | [diff] [blame] | 75 | STATISTIC(NumFastIselSuccessTarget, "Number of insts selected by " |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 76 | "target-specific selector"); |
Chad Rosier | ae6f2cb | 2011-11-29 19:40:47 +0000 | [diff] [blame] | 77 | STATISTIC(NumFastIselDead, "Number of dead insts removed on failure"); |
Chad Rosier | 053e69a | 2011-11-16 21:05:28 +0000 | [diff] [blame] | 78 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 79 | void FastISel::ArgListEntry::setAttributes(ImmutableCallSite *CS, |
| 80 | unsigned AttrIdx) { |
| 81 | IsSExt = CS->paramHasAttr(AttrIdx, Attribute::SExt); |
| 82 | IsZExt = CS->paramHasAttr(AttrIdx, Attribute::ZExt); |
| 83 | IsInReg = CS->paramHasAttr(AttrIdx, Attribute::InReg); |
| 84 | IsSRet = CS->paramHasAttr(AttrIdx, Attribute::StructRet); |
| 85 | IsNest = CS->paramHasAttr(AttrIdx, Attribute::Nest); |
| 86 | IsByVal = CS->paramHasAttr(AttrIdx, Attribute::ByVal); |
| 87 | IsInAlloca = CS->paramHasAttr(AttrIdx, Attribute::InAlloca); |
| 88 | IsReturned = CS->paramHasAttr(AttrIdx, Attribute::Returned); |
| 89 | Alignment = CS->getParamAlignment(AttrIdx); |
| 90 | } |
| 91 | |
| 92 | /// Set the current block to which generated machine instructions will be |
| 93 | /// appended, and clear the local CSE map. |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 94 | void FastISel::startNewBlock() { |
| 95 | LocalValueMap.clear(); |
| 96 | |
Jakob Stoklund Olesen | 1ab111e | 2013-07-04 04:53:49 +0000 | [diff] [blame] | 97 | // Instructions are appended to FuncInfo.MBB. If the basic block already |
Jakob Stoklund Olesen | ef22e0e | 2013-07-04 04:32:39 +0000 | [diff] [blame] | 98 | // contains labels or copies, use the last instruction as the last local |
| 99 | // value. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 100 | EmitStartPt = nullptr; |
Jakob Stoklund Olesen | ef22e0e | 2013-07-04 04:32:39 +0000 | [diff] [blame] | 101 | if (!FuncInfo.MBB->empty()) |
| 102 | EmitStartPt = &FuncInfo.MBB->back(); |
Ivan Krasin | 74af88a | 2011-08-18 22:06:10 +0000 | [diff] [blame] | 103 | LastLocalValue = EmitStartPt; |
| 104 | } |
| 105 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 106 | bool FastISel::lowerArguments() { |
Evan Cheng | 092e5e7 | 2013-02-11 01:27:15 +0000 | [diff] [blame] | 107 | if (!FuncInfo.CanLowerReturn) |
| 108 | // Fallback to SDISel argument lowering code to deal with sret pointer |
| 109 | // parameter. |
| 110 | return false; |
Stephen Lin | 155615d | 2013-07-08 00:37:03 +0000 | [diff] [blame] | 111 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 112 | if (!fastLowerArguments()) |
Evan Cheng | 092e5e7 | 2013-02-11 01:27:15 +0000 | [diff] [blame] | 113 | return false; |
| 114 | |
David Blaikie | 1948910 | 2013-06-21 22:56:30 +0000 | [diff] [blame] | 115 | // Enter arguments into ValueMap for uses in non-entry BBs. |
Evan Cheng | 092e5e7 | 2013-02-11 01:27:15 +0000 | [diff] [blame] | 116 | for (Function::const_arg_iterator I = FuncInfo.Fn->arg_begin(), |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 117 | E = FuncInfo.Fn->arg_end(); |
| 118 | I != E; ++I) { |
David Blaikie | 1948910 | 2013-06-21 22:56:30 +0000 | [diff] [blame] | 119 | DenseMap<const Value *, unsigned>::iterator VI = LocalValueMap.find(I); |
| 120 | assert(VI != LocalValueMap.end() && "Missed an argument?"); |
| 121 | FuncInfo.ValueMap[I] = VI->second; |
Evan Cheng | 092e5e7 | 2013-02-11 01:27:15 +0000 | [diff] [blame] | 122 | } |
| 123 | return true; |
| 124 | } |
| 125 | |
Ivan Krasin | 74af88a | 2011-08-18 22:06:10 +0000 | [diff] [blame] | 126 | void FastISel::flushLocalValueMap() { |
| 127 | LocalValueMap.clear(); |
| 128 | LastLocalValue = EmitStartPt; |
| 129 | recomputeInsertPt(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 130 | SavedInsertPt = FuncInfo.InsertPt; |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 131 | } |
| 132 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 133 | bool FastISel::hasTrivialKill(const Value *V) { |
Dan Gohman | 7f0d695 | 2010-05-14 22:53:18 +0000 | [diff] [blame] | 134 | // Don't consider constants or arguments to have trivial kills. |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 135 | const Instruction *I = dyn_cast<Instruction>(V); |
Dan Gohman | 7f0d695 | 2010-05-14 22:53:18 +0000 | [diff] [blame] | 136 | if (!I) |
| 137 | return false; |
| 138 | |
| 139 | // No-op casts are trivially coalesced by fast-isel. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 140 | if (const auto *Cast = dyn_cast<CastInst>(I)) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 141 | if (Cast->isNoopCast(DL.getIntPtrType(Cast->getContext())) && |
Chandler Carruth | ece6c6b | 2012-11-01 08:07:29 +0000 | [diff] [blame] | 142 | !hasTrivialKill(Cast->getOperand(0))) |
Dan Gohman | 7f0d695 | 2010-05-14 22:53:18 +0000 | [diff] [blame] | 143 | return false; |
| 144 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 145 | // Even the value might have only one use in the LLVM IR, it is possible that |
| 146 | // FastISel might fold the use into another instruction and now there is more |
| 147 | // than one use at the Machine Instruction level. |
| 148 | unsigned Reg = lookUpRegForValue(V); |
| 149 | if (Reg && !MRI.use_empty(Reg)) |
| 150 | return false; |
| 151 | |
Chad Rosier | 22b34cc | 2011-11-15 23:34:05 +0000 | [diff] [blame] | 152 | // GEPs with all zero indices are trivially coalesced by fast-isel. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 153 | if (const auto *GEP = dyn_cast<GetElementPtrInst>(I)) |
Chad Rosier | 22b34cc | 2011-11-15 23:34:05 +0000 | [diff] [blame] | 154 | if (GEP->hasAllZeroIndices() && !hasTrivialKill(GEP->getOperand(0))) |
| 155 | return false; |
| 156 | |
Dan Gohman | 7f0d695 | 2010-05-14 22:53:18 +0000 | [diff] [blame] | 157 | // Only instructions with a single use in the same basic block are considered |
| 158 | // to have trivial kills. |
| 159 | return I->hasOneUse() && |
| 160 | !(I->getOpcode() == Instruction::BitCast || |
| 161 | I->getOpcode() == Instruction::PtrToInt || |
| 162 | I->getOpcode() == Instruction::IntToPtr) && |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 163 | cast<Instruction>(*I->user_begin())->getParent() == I->getParent(); |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 164 | } |
| 165 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 166 | unsigned FastISel::getRegForValue(const Value *V) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 167 | EVT RealVT = TLI.getValueType(V->getType(), /*AllowUnknown=*/true); |
Dan Gohman | 4fd5528 | 2009-04-07 20:40:11 +0000 | [diff] [blame] | 168 | // Don't handle non-simple values in FastISel. |
| 169 | if (!RealVT.isSimple()) |
| 170 | return 0; |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 171 | |
| 172 | // Ignore illegal types. We must do this before looking up the value |
| 173 | // in ValueMap because Arguments are given virtual registers regardless |
| 174 | // of whether FastISel can handle them. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 175 | MVT VT = RealVT.getSimpleVT(); |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 176 | if (!TLI.isTypeLegal(VT)) { |
Eli Friedman | 76927d73 | 2011-05-25 23:49:02 +0000 | [diff] [blame] | 177 | // Handle integer promotions, though, because they're common and easy. |
| 178 | if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16) |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 179 | VT = TLI.getTypeToTransformTo(V->getContext(), VT).getSimpleVT(); |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 180 | else |
| 181 | return 0; |
| 182 | } |
| 183 | |
Eric Christopher | 4e27027 | 2012-03-20 01:07:47 +0000 | [diff] [blame] | 184 | // Look up the value to see if we already have a register for it. |
| 185 | unsigned Reg = lookUpRegForValue(V); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 186 | if (Reg) |
Dan Gohman | 104e4ce | 2008-09-03 23:32:19 +0000 | [diff] [blame] | 187 | return Reg; |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 188 | |
Dan Gohman | 97c94b8 | 2010-05-06 00:02:14 +0000 | [diff] [blame] | 189 | // In bottom-up mode, just create the virtual register which will be used |
| 190 | // to hold the value. It will be materialized later. |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 191 | if (isa<Instruction>(V) && |
| 192 | (!isa<AllocaInst>(V) || |
| 193 | !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) |
| 194 | return FuncInfo.InitializeRegForValue(V); |
Dan Gohman | 97c94b8 | 2010-05-06 00:02:14 +0000 | [diff] [blame] | 195 | |
Eric Christopher | 76ad43c | 2012-10-03 08:10:01 +0000 | [diff] [blame] | 196 | SavePoint SaveInsertPt = enterLocalValueArea(); |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 197 | |
| 198 | // Materialize the value in a register. Emit any instructions in the |
| 199 | // local value area. |
| 200 | Reg = materializeRegForValue(V, VT); |
| 201 | |
Eric Christopher | 76ad43c | 2012-10-03 08:10:01 +0000 | [diff] [blame] | 202 | leaveLocalValueArea(SaveInsertPt); |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 203 | |
| 204 | return Reg; |
Dan Gohman | 1fdc614 | 2010-05-03 23:36:34 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 207 | unsigned FastISel::materializeConstant(const Value *V, MVT VT) { |
Dan Gohman | 1fdc614 | 2010-05-03 23:36:34 +0000 | [diff] [blame] | 208 | unsigned Reg = 0; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 209 | if (const auto *CI = dyn_cast<ConstantInt>(V)) { |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 210 | if (CI->getValue().getActiveBits() <= 64) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 211 | Reg = fastEmit_i(VT, VT, ISD::Constant, CI->getZExtValue()); |
| 212 | } else if (isa<AllocaInst>(V)) |
| 213 | Reg = fastMaterializeAlloca(cast<AllocaInst>(V)); |
| 214 | else if (isa<ConstantPointerNull>(V)) |
Dan Gohman | 1e9e8c3 | 2008-10-07 22:03:27 +0000 | [diff] [blame] | 215 | // Translate this as an integer zero so that it can be |
| 216 | // local-CSE'd with actual integer zeros. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 217 | Reg = getRegForValue( |
| 218 | Constant::getNullValue(DL.getIntPtrType(V->getContext()))); |
| 219 | else if (const auto *CF = dyn_cast<ConstantFP>(V)) { |
| 220 | if (CF->isNullValue()) |
| 221 | Reg = fastMaterializeFloatZero(CF); |
| 222 | else |
Eli Friedman | 2790ba8 | 2011-04-27 22:41:55 +0000 | [diff] [blame] | 223 | // Try to emit the constant directly. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 224 | Reg = fastEmit_f(VT, VT, ISD::ConstantFP, CF); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 225 | |
| 226 | if (!Reg) { |
Dan Gohman | 4183e31 | 2010-04-13 17:07:06 +0000 | [diff] [blame] | 227 | // 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] | 228 | const APFloat &Flt = CF->getValueAPF(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 229 | EVT IntVT = TLI.getPointerTy(); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 230 | |
| 231 | uint64_t x[2]; |
| 232 | uint32_t IntBitWidth = IntVT.getSizeInBits(); |
Dale Johannesen | 23a9855 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 233 | bool isExact; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 234 | (void)Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true, |
| 235 | APFloat::rmTowardZero, &isExact); |
Dale Johannesen | 23a9855 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 236 | if (isExact) { |
Jeffrey Yasskin | 3ba292d | 2011-07-18 21:45:40 +0000 | [diff] [blame] | 237 | APInt IntVal(IntBitWidth, x); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 238 | |
Owen Anderson | e922c02 | 2009-07-22 00:24:57 +0000 | [diff] [blame] | 239 | unsigned IntegerReg = |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 240 | getRegForValue(ConstantInt::get(V->getContext(), IntVal)); |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 241 | if (IntegerReg != 0) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 242 | Reg = fastEmit_r(IntVT.getSimpleVT(), VT, ISD::SINT_TO_FP, IntegerReg, |
| 243 | /*Kill=*/false); |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 244 | } |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 245 | } |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 246 | } else if (const auto *Op = dyn_cast<Operator>(V)) { |
| 247 | if (!selectOperator(Op, Op->getOpcode())) |
Dan Gohman | 20d4be1 | 2010-07-01 02:58:57 +0000 | [diff] [blame] | 248 | if (!isa<Instruction>(Op) || |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 249 | !fastSelectInstruction(cast<Instruction>(Op))) |
Dan Gohman | 20d4be1 | 2010-07-01 02:58:57 +0000 | [diff] [blame] | 250 | return 0; |
Dan Gohman | 37db6cd | 2010-06-21 14:17:46 +0000 | [diff] [blame] | 251 | Reg = lookUpRegForValue(Op); |
Dan Gohman | 205d925 | 2008-08-28 21:19:07 +0000 | [diff] [blame] | 252 | } else if (isa<UndefValue>(V)) { |
Dan Gohman | 104e4ce | 2008-09-03 23:32:19 +0000 | [diff] [blame] | 253 | Reg = createResultReg(TLI.getRegClassFor(VT)); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 254 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 255 | TII.get(TargetOpcode::IMPLICIT_DEF), Reg); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 256 | } |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 257 | return Reg; |
| 258 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 259 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 260 | /// Helper for getRegForValue. This function is called when the value isn't |
| 261 | /// already available in a register and must be materialized with new |
| 262 | /// instructions. |
| 263 | unsigned FastISel::materializeRegForValue(const Value *V, MVT VT) { |
| 264 | unsigned Reg = 0; |
| 265 | // Give the target-specific code a try first. |
| 266 | if (isa<Constant>(V)) |
| 267 | Reg = fastMaterializeConstant(cast<Constant>(V)); |
| 268 | |
| 269 | // If target-specific code couldn't or didn't want to handle the value, then |
| 270 | // give target-independent code a try. |
| 271 | if (!Reg) |
| 272 | Reg = materializeConstant(V, VT); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 273 | |
Dan Gohman | 2ff7fd1 | 2008-09-19 22:16:54 +0000 | [diff] [blame] | 274 | // Don't cache constant materializations in the general ValueMap. |
| 275 | // To do so would require tracking what uses they dominate. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 276 | if (Reg) { |
Dan Gohman | dceffe6 | 2008-09-25 01:28:51 +0000 | [diff] [blame] | 277 | LocalValueMap[V] = Reg; |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 278 | LastLocalValue = MRI.getVRegDef(Reg); |
| 279 | } |
Dan Gohman | 104e4ce | 2008-09-03 23:32:19 +0000 | [diff] [blame] | 280 | return Reg; |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 281 | } |
| 282 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 283 | unsigned FastISel::lookUpRegForValue(const Value *V) { |
Evan Cheng | 59fbc80 | 2008-09-09 01:26:59 +0000 | [diff] [blame] | 284 | // Look up the value to see if we already have a register for it. We |
| 285 | // cache values defined by Instructions across blocks, and other values |
| 286 | // only locally. This is because Instructions already have the SSA |
Dan Gohman | 1fdc614 | 2010-05-03 23:36:34 +0000 | [diff] [blame] | 287 | // def-dominates-use requirement enforced. |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 288 | DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V); |
| 289 | if (I != FuncInfo.ValueMap.end()) |
Dan Gohman | 3193a68 | 2010-06-21 14:21:47 +0000 | [diff] [blame] | 290 | return I->second; |
Eric Christopher | 76ad43c | 2012-10-03 08:10:01 +0000 | [diff] [blame] | 291 | return LocalValueMap[V]; |
Evan Cheng | 59fbc80 | 2008-09-09 01:26:59 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 294 | void FastISel::updateValueMap(const Value *I, unsigned Reg, unsigned NumRegs) { |
Dan Gohman | 40b189e | 2008-09-05 18:18:20 +0000 | [diff] [blame] | 295 | if (!isa<Instruction>(I)) { |
| 296 | LocalValueMap[I] = Reg; |
Eli Friedman | 482feb3 | 2011-05-16 21:06:17 +0000 | [diff] [blame] | 297 | return; |
Dan Gohman | 40b189e | 2008-09-05 18:18:20 +0000 | [diff] [blame] | 298 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 299 | |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 300 | unsigned &AssignedReg = FuncInfo.ValueMap[I]; |
Chris Lattner | c5040ab | 2009-04-12 07:45:01 +0000 | [diff] [blame] | 301 | if (AssignedReg == 0) |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 302 | // Use the new register. |
Chris Lattner | c5040ab | 2009-04-12 07:45:01 +0000 | [diff] [blame] | 303 | AssignedReg = Reg; |
Chris Lattner | 36e3946 | 2009-04-12 07:46:30 +0000 | [diff] [blame] | 304 | else if (Reg != AssignedReg) { |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 305 | // Arrange for uses of AssignedReg to be replaced by uses of Reg. |
Eli Friedman | 482feb3 | 2011-05-16 21:06:17 +0000 | [diff] [blame] | 306 | for (unsigned i = 0; i < NumRegs; i++) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 307 | FuncInfo.RegFixups[AssignedReg + i] = Reg + i; |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 308 | |
| 309 | AssignedReg = Reg; |
Chris Lattner | c5040ab | 2009-04-12 07:45:01 +0000 | [diff] [blame] | 310 | } |
Owen Anderson | cc54e76 | 2008-08-30 00:38:46 +0000 | [diff] [blame] | 311 | } |
| 312 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 313 | std::pair<unsigned, bool> FastISel::getRegForGEPIndex(const Value *Idx) { |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 314 | unsigned IdxN = getRegForValue(Idx); |
| 315 | if (IdxN == 0) |
| 316 | // Unhandled operand. Halt "fast" selection and bail. |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 317 | return std::pair<unsigned, bool>(0, false); |
| 318 | |
| 319 | bool IdxNIsKill = hasTrivialKill(Idx); |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 320 | |
| 321 | // 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] | 322 | MVT PtrVT = TLI.getPointerTy(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 323 | EVT IdxVT = EVT::getEVT(Idx->getType(), /*HandleUnknown=*/false); |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 324 | if (IdxVT.bitsLT(PtrVT)) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 325 | IdxN = fastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND, IdxN, |
| 326 | IdxNIsKill); |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 327 | IdxNIsKill = true; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 328 | } else if (IdxVT.bitsGT(PtrVT)) { |
| 329 | IdxN = |
| 330 | fastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE, IdxN, IdxNIsKill); |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 331 | IdxNIsKill = true; |
| 332 | } |
| 333 | return std::pair<unsigned, bool>(IdxN, IdxNIsKill); |
Dan Gohman | c8a1a3c | 2008-12-08 07:57:47 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 336 | void FastISel::recomputeInsertPt() { |
| 337 | if (getLastLocalValue()) { |
| 338 | FuncInfo.InsertPt = getLastLocalValue(); |
Dan Gohman | c6e59b7 | 2010-07-19 22:48:56 +0000 | [diff] [blame] | 339 | FuncInfo.MBB = FuncInfo.InsertPt->getParent(); |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 340 | ++FuncInfo.InsertPt; |
| 341 | } else |
| 342 | FuncInfo.InsertPt = FuncInfo.MBB->getFirstNonPHI(); |
| 343 | |
| 344 | // Now skip past any EH_LABELs, which must remain at the beginning. |
| 345 | while (FuncInfo.InsertPt != FuncInfo.MBB->end() && |
| 346 | FuncInfo.InsertPt->getOpcode() == TargetOpcode::EH_LABEL) |
| 347 | ++FuncInfo.InsertPt; |
| 348 | } |
| 349 | |
Chad Rosier | ae6f2cb | 2011-11-29 19:40:47 +0000 | [diff] [blame] | 350 | void FastISel::removeDeadCode(MachineBasicBlock::iterator I, |
| 351 | MachineBasicBlock::iterator E) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 352 | assert(I && E && std::distance(I, E) > 0 && "Invalid iterator!"); |
Chad Rosier | ae6f2cb | 2011-11-29 19:40:47 +0000 | [diff] [blame] | 353 | while (I != E) { |
| 354 | MachineInstr *Dead = &*I; |
| 355 | ++I; |
| 356 | Dead->eraseFromParent(); |
Jan Wen Voung | fa785cb | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 357 | ++NumFastIselDead; |
Chad Rosier | ae6f2cb | 2011-11-29 19:40:47 +0000 | [diff] [blame] | 358 | } |
| 359 | recomputeInsertPt(); |
| 360 | } |
| 361 | |
Eric Christopher | 76ad43c | 2012-10-03 08:10:01 +0000 | [diff] [blame] | 362 | FastISel::SavePoint FastISel::enterLocalValueArea() { |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 363 | MachineBasicBlock::iterator OldInsertPt = FuncInfo.InsertPt; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 364 | DebugLoc OldDL = DbgLoc; |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 365 | recomputeInsertPt(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 366 | DbgLoc = DebugLoc(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 367 | SavePoint SP = {OldInsertPt, OldDL}; |
Eric Christopher | 76ad43c | 2012-10-03 08:10:01 +0000 | [diff] [blame] | 368 | return SP; |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 369 | } |
| 370 | |
Eric Christopher | 76ad43c | 2012-10-03 08:10:01 +0000 | [diff] [blame] | 371 | void FastISel::leaveLocalValueArea(SavePoint OldInsertPt) { |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 372 | if (FuncInfo.InsertPt != FuncInfo.MBB->begin()) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 373 | LastLocalValue = std::prev(FuncInfo.InsertPt); |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 374 | |
| 375 | // Restore the previous insert position. |
Eric Christopher | 76ad43c | 2012-10-03 08:10:01 +0000 | [diff] [blame] | 376 | FuncInfo.InsertPt = OldInsertPt.InsertPt; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 377 | DbgLoc = OldInsertPt.DL; |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 378 | } |
| 379 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 380 | bool FastISel::selectBinaryOp(const User *I, unsigned ISDOpcode) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 381 | EVT VT = EVT::getEVT(I->getType(), /*HandleUnknown=*/true); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 382 | if (VT == MVT::Other || !VT.isSimple()) |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 383 | // Unhandled type. Halt "fast" selection and bail. |
| 384 | return false; |
Dan Gohman | 638c683 | 2008-09-05 18:44:22 +0000 | [diff] [blame] | 385 | |
Dan Gohman | b71fea2 | 2008-08-26 20:52:40 +0000 | [diff] [blame] | 386 | // We only handle legal types. For example, on x86-32 the instruction |
| 387 | // selector contains all of the 64-bit instructions from x86-64, |
| 388 | // under the assumption that i64 won't be used if the target doesn't |
| 389 | // support it. |
Dan Gohman | 638c683 | 2008-09-05 18:44:22 +0000 | [diff] [blame] | 390 | if (!TLI.isTypeLegal(VT)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 391 | // MVT::i1 is special. Allow AND, OR, or XOR because they |
Dan Gohman | 638c683 | 2008-09-05 18:44:22 +0000 | [diff] [blame] | 392 | // don't require additional zeroing, which makes them easy. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 393 | if (VT == MVT::i1 && (ISDOpcode == ISD::AND || ISDOpcode == ISD::OR || |
| 394 | ISDOpcode == ISD::XOR)) |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 395 | VT = TLI.getTypeToTransformTo(I->getContext(), VT); |
Dan Gohman | 638c683 | 2008-09-05 18:44:22 +0000 | [diff] [blame] | 396 | else |
| 397 | return false; |
| 398 | } |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 399 | |
Chris Lattner | fff65b3 | 2011-04-17 01:16:47 +0000 | [diff] [blame] | 400 | // Check if the first operand is a constant, and handle it as "ri". At -O0, |
| 401 | // we don't have anything that canonicalizes operand order. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 402 | if (const auto *CI = dyn_cast<ConstantInt>(I->getOperand(0))) |
Chris Lattner | fff65b3 | 2011-04-17 01:16:47 +0000 | [diff] [blame] | 403 | if (isa<Instruction>(I) && cast<Instruction>(I)->isCommutative()) { |
| 404 | unsigned Op1 = getRegForValue(I->getOperand(1)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 405 | if (!Op1) |
| 406 | return false; |
Chris Lattner | fff65b3 | 2011-04-17 01:16:47 +0000 | [diff] [blame] | 407 | bool Op1IsKill = hasTrivialKill(I->getOperand(1)); |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 408 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 409 | unsigned ResultReg = |
| 410 | fastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op1, Op1IsKill, |
| 411 | CI->getZExtValue(), VT.getSimpleVT()); |
| 412 | if (!ResultReg) |
| 413 | return false; |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 414 | |
Chris Lattner | 602fc06 | 2011-04-17 20:23:29 +0000 | [diff] [blame] | 415 | // We successfully emitted code for the given LLVM Instruction. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 416 | updateValueMap(I, ResultReg); |
Chris Lattner | 602fc06 | 2011-04-17 20:23:29 +0000 | [diff] [blame] | 417 | return true; |
Chris Lattner | fff65b3 | 2011-04-17 01:16:47 +0000 | [diff] [blame] | 418 | } |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 419 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 420 | unsigned Op0 = getRegForValue(I->getOperand(0)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 421 | if (!Op0) // Unhandled operand. Halt "fast" selection and bail. |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 422 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 423 | bool Op0IsKill = hasTrivialKill(I->getOperand(0)); |
| 424 | |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 425 | // Check if the second operand is a constant and handle it appropriately. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 426 | if (const auto *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { |
Chris Lattner | 602fc06 | 2011-04-17 20:23:29 +0000 | [diff] [blame] | 427 | uint64_t Imm = CI->getZExtValue(); |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 428 | |
Chris Lattner | f051c1a | 2011-04-18 07:00:40 +0000 | [diff] [blame] | 429 | // Transform "sdiv exact X, 8" -> "sra X, 3". |
| 430 | if (ISDOpcode == ISD::SDIV && isa<BinaryOperator>(I) && |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 431 | cast<BinaryOperator>(I)->isExact() && isPowerOf2_64(Imm)) { |
Chris Lattner | f051c1a | 2011-04-18 07:00:40 +0000 | [diff] [blame] | 432 | Imm = Log2_64(Imm); |
| 433 | ISDOpcode = ISD::SRA; |
| 434 | } |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 435 | |
Chad Rosier | 544b9b4 | 2012-03-22 00:21:17 +0000 | [diff] [blame] | 436 | // Transform "urem x, pow2" -> "and x, pow2-1". |
| 437 | if (ISDOpcode == ISD::UREM && isa<BinaryOperator>(I) && |
| 438 | isPowerOf2_64(Imm)) { |
| 439 | --Imm; |
| 440 | ISDOpcode = ISD::AND; |
| 441 | } |
| 442 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 443 | unsigned ResultReg = fastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op0, |
Chris Lattner | 602fc06 | 2011-04-17 20:23:29 +0000 | [diff] [blame] | 444 | Op0IsKill, Imm, VT.getSimpleVT()); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 445 | if (!ResultReg) |
| 446 | return false; |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 447 | |
Chris Lattner | 602fc06 | 2011-04-17 20:23:29 +0000 | [diff] [blame] | 448 | // We successfully emitted code for the given LLVM Instruction. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 449 | updateValueMap(I, ResultReg); |
Chris Lattner | 602fc06 | 2011-04-17 20:23:29 +0000 | [diff] [blame] | 450 | return true; |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 451 | } |
| 452 | |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 453 | // Check if the second operand is a constant float. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 454 | if (const auto *CF = dyn_cast<ConstantFP>(I->getOperand(1))) { |
| 455 | unsigned ResultReg = fastEmit_rf(VT.getSimpleVT(), VT.getSimpleVT(), |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 456 | ISDOpcode, Op0, Op0IsKill, CF); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 457 | if (ResultReg) { |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 458 | // We successfully emitted code for the given LLVM Instruction. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 459 | updateValueMap(I, ResultReg); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 460 | return true; |
| 461 | } |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 462 | } |
| 463 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 464 | unsigned Op1 = getRegForValue(I->getOperand(1)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 465 | if (!Op1) // Unhandled operand. Halt "fast" selection and bail. |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 466 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 467 | bool Op1IsKill = hasTrivialKill(I->getOperand(1)); |
| 468 | |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 469 | // Now we have both operands in registers. Emit the instruction. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 470 | unsigned ResultReg = fastEmit_rr(VT.getSimpleVT(), VT.getSimpleVT(), |
| 471 | ISDOpcode, Op0, Op0IsKill, Op1, Op1IsKill); |
| 472 | if (!ResultReg) |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 473 | // Target-specific code wasn't able to find a machine opcode for |
| 474 | // the given ISD opcode and type. Halt "fast" selection and bail. |
| 475 | return false; |
| 476 | |
Dan Gohman | 8014e86 | 2008-08-20 00:23:20 +0000 | [diff] [blame] | 477 | // We successfully emitted code for the given LLVM Instruction. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 478 | updateValueMap(I, ResultReg); |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 479 | return true; |
| 480 | } |
| 481 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 482 | bool FastISel::selectGetElementPtr(const User *I) { |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 483 | unsigned N = getRegForValue(I->getOperand(0)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 484 | if (!N) // Unhandled operand. Halt "fast" selection and bail. |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 485 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 486 | bool NIsKill = hasTrivialKill(I->getOperand(0)); |
| 487 | |
Chad Rosier | 478b06c | 2011-11-17 07:15:58 +0000 | [diff] [blame] | 488 | // Keep a running tab of the total offset to coalesce multiple N = N + Offset |
| 489 | // into a single N = N + TotalOffset. |
| 490 | uint64_t TotalOffs = 0; |
| 491 | // FIXME: What's a good SWAG number for MaxOffs? |
| 492 | uint64_t MaxOffs = 2048; |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 493 | Type *Ty = I->getOperand(0)->getType(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 494 | MVT VT = TLI.getPointerTy(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 495 | for (GetElementPtrInst::const_op_iterator OI = I->op_begin() + 1, |
| 496 | E = I->op_end(); |
| 497 | OI != E; ++OI) { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 498 | const Value *Idx = *OI; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 499 | if (auto *StTy = dyn_cast<StructType>(Ty)) { |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 500 | unsigned Field = cast<ConstantInt>(Idx)->getZExtValue(); |
| 501 | if (Field) { |
| 502 | // N = N + Offset |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 503 | TotalOffs += DL.getStructLayout(StTy)->getElementOffset(Field); |
Chad Rosier | 478b06c | 2011-11-17 07:15:58 +0000 | [diff] [blame] | 504 | if (TotalOffs >= MaxOffs) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 505 | N = fastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT); |
| 506 | if (!N) // Unhandled operand. Halt "fast" selection and bail. |
Chad Rosier | 478b06c | 2011-11-17 07:15:58 +0000 | [diff] [blame] | 507 | return false; |
| 508 | NIsKill = true; |
| 509 | TotalOffs = 0; |
| 510 | } |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 511 | } |
| 512 | Ty = StTy->getElementType(Field); |
| 513 | } else { |
| 514 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 515 | |
| 516 | // If this is a constant subscript, handle it quickly. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 517 | if (const auto *CI = dyn_cast<ConstantInt>(Idx)) { |
| 518 | if (CI->isZero()) |
| 519 | continue; |
Chad Rosier | 478b06c | 2011-11-17 07:15:58 +0000 | [diff] [blame] | 520 | // N = N + Offset |
Chad Rosier | 6016a4a | 2012-07-06 17:44:22 +0000 | [diff] [blame] | 521 | TotalOffs += |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 522 | DL.getTypeAllocSize(Ty) * cast<ConstantInt>(CI)->getSExtValue(); |
Chad Rosier | 478b06c | 2011-11-17 07:15:58 +0000 | [diff] [blame] | 523 | if (TotalOffs >= MaxOffs) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 524 | N = fastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT); |
| 525 | if (!N) // Unhandled operand. Halt "fast" selection and bail. |
Chad Rosier | 478b06c | 2011-11-17 07:15:58 +0000 | [diff] [blame] | 526 | return false; |
| 527 | NIsKill = true; |
| 528 | TotalOffs = 0; |
| 529 | } |
| 530 | continue; |
| 531 | } |
| 532 | if (TotalOffs) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 533 | N = fastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT); |
| 534 | if (!N) // Unhandled operand. Halt "fast" selection and bail. |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 535 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 536 | NIsKill = true; |
Chad Rosier | 478b06c | 2011-11-17 07:15:58 +0000 | [diff] [blame] | 537 | TotalOffs = 0; |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 538 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 539 | |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 540 | // N = N + Idx * ElementSize; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 541 | uint64_t ElementSize = DL.getTypeAllocSize(Ty); |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 542 | std::pair<unsigned, bool> Pair = getRegForGEPIndex(Idx); |
| 543 | unsigned IdxN = Pair.first; |
| 544 | bool IdxNIsKill = Pair.second; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 545 | if (!IdxN) // Unhandled operand. Halt "fast" selection and bail. |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 546 | return false; |
| 547 | |
Dan Gohman | 80bc6e2 | 2008-08-26 20:57:08 +0000 | [diff] [blame] | 548 | if (ElementSize != 1) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 549 | IdxN = fastEmit_ri_(VT, ISD::MUL, IdxN, IdxNIsKill, ElementSize, VT); |
| 550 | if (!IdxN) // Unhandled operand. Halt "fast" selection and bail. |
Dan Gohman | 80bc6e2 | 2008-08-26 20:57:08 +0000 | [diff] [blame] | 551 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 552 | IdxNIsKill = true; |
Dan Gohman | 80bc6e2 | 2008-08-26 20:57:08 +0000 | [diff] [blame] | 553 | } |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 554 | N = fastEmit_rr(VT, VT, ISD::ADD, N, NIsKill, IdxN, IdxNIsKill); |
| 555 | if (!N) // Unhandled operand. Halt "fast" selection and bail. |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 556 | return false; |
| 557 | } |
| 558 | } |
Chad Rosier | 478b06c | 2011-11-17 07:15:58 +0000 | [diff] [blame] | 559 | if (TotalOffs) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 560 | N = fastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT); |
| 561 | if (!N) // Unhandled operand. Halt "fast" selection and bail. |
Chad Rosier | 478b06c | 2011-11-17 07:15:58 +0000 | [diff] [blame] | 562 | return false; |
| 563 | } |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 564 | |
| 565 | // We successfully emitted code for the given LLVM Instruction. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 566 | updateValueMap(I, N); |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 567 | return true; |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 568 | } |
| 569 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 570 | bool FastISel::addStackMapLiveVars(SmallVectorImpl<MachineOperand> &Ops, |
| 571 | const CallInst *CI, unsigned StartIdx) { |
| 572 | for (unsigned i = StartIdx, e = CI->getNumArgOperands(); i != e; ++i) { |
| 573 | Value *Val = CI->getArgOperand(i); |
| 574 | // Check for constants and encode them with a StackMaps::ConstantOp prefix. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 575 | if (const auto *C = dyn_cast<ConstantInt>(Val)) { |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 576 | Ops.push_back(MachineOperand::CreateImm(StackMaps::ConstantOp)); |
| 577 | Ops.push_back(MachineOperand::CreateImm(C->getSExtValue())); |
| 578 | } else if (isa<ConstantPointerNull>(Val)) { |
| 579 | Ops.push_back(MachineOperand::CreateImm(StackMaps::ConstantOp)); |
| 580 | Ops.push_back(MachineOperand::CreateImm(0)); |
| 581 | } else if (auto *AI = dyn_cast<AllocaInst>(Val)) { |
| 582 | // Values coming from a stack location also require a sepcial encoding, |
| 583 | // but that is added later on by the target specific frame index |
| 584 | // elimination implementation. |
| 585 | auto SI = FuncInfo.StaticAllocaMap.find(AI); |
| 586 | if (SI != FuncInfo.StaticAllocaMap.end()) |
| 587 | Ops.push_back(MachineOperand::CreateFI(SI->second)); |
| 588 | else |
| 589 | return false; |
| 590 | } else { |
| 591 | unsigned Reg = getRegForValue(Val); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 592 | if (!Reg) |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 593 | return false; |
| 594 | Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/false)); |
| 595 | } |
| 596 | } |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 597 | return true; |
| 598 | } |
| 599 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 600 | bool FastISel::selectStackmap(const CallInst *I) { |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 601 | // void @llvm.experimental.stackmap(i64 <id>, i32 <numShadowBytes>, |
| 602 | // [live variables...]) |
| 603 | assert(I->getCalledFunction()->getReturnType()->isVoidTy() && |
| 604 | "Stackmap cannot return a value."); |
| 605 | |
| 606 | // The stackmap intrinsic only records the live variables (the arguments |
| 607 | // passed to it) and emits NOPS (if requested). Unlike the patchpoint |
| 608 | // intrinsic, this won't be lowered to a function call. This means we don't |
| 609 | // have to worry about calling conventions and target-specific lowering code. |
| 610 | // Instead we perform the call lowering right here. |
| 611 | // |
| 612 | // CALLSEQ_START(0) |
| 613 | // STACKMAP(id, nbytes, ...) |
| 614 | // CALLSEQ_END(0, 0) |
| 615 | // |
| 616 | SmallVector<MachineOperand, 32> Ops; |
| 617 | |
| 618 | // Add the <id> and <numBytes> constants. |
| 619 | assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) && |
| 620 | "Expected a constant integer."); |
| 621 | const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)); |
| 622 | Ops.push_back(MachineOperand::CreateImm(ID->getZExtValue())); |
| 623 | |
| 624 | assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos)) && |
| 625 | "Expected a constant integer."); |
| 626 | const auto *NumBytes = |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 627 | cast<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos)); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 628 | Ops.push_back(MachineOperand::CreateImm(NumBytes->getZExtValue())); |
| 629 | |
| 630 | // Push live variables for the stack map (skipping the first two arguments |
| 631 | // <id> and <numBytes>). |
| 632 | if (!addStackMapLiveVars(Ops, I, 2)) |
| 633 | return false; |
| 634 | |
| 635 | // We are not adding any register mask info here, because the stackmap doesn't |
| 636 | // clobber anything. |
| 637 | |
| 638 | // Add scratch registers as implicit def and early clobber. |
| 639 | CallingConv::ID CC = I->getCallingConv(); |
| 640 | const MCPhysReg *ScratchRegs = TLI.getScratchRegisters(CC); |
| 641 | for (unsigned i = 0; ScratchRegs[i]; ++i) |
| 642 | Ops.push_back(MachineOperand::CreateReg( |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 643 | ScratchRegs[i], /*IsDef=*/true, /*IsImp=*/true, /*IsKill=*/false, |
| 644 | /*IsDead=*/false, /*IsUndef=*/false, /*IsEarlyClobber=*/true)); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 645 | |
| 646 | // Issue CALLSEQ_START |
| 647 | unsigned AdjStackDown = TII.getCallFrameSetupOpcode(); |
| 648 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackDown)) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 649 | .addImm(0); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 650 | |
| 651 | // Issue STACKMAP. |
| 652 | MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 653 | TII.get(TargetOpcode::STACKMAP)); |
| 654 | for (auto const &MO : Ops) |
| 655 | MIB.addOperand(MO); |
| 656 | |
| 657 | // Issue CALLSEQ_END |
| 658 | unsigned AdjStackUp = TII.getCallFrameDestroyOpcode(); |
| 659 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackUp)) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 660 | .addImm(0) |
| 661 | .addImm(0); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 662 | |
| 663 | // Inform the Frame Information that we have a stackmap in this function. |
| 664 | FuncInfo.MF->getFrameInfo()->setHasStackMap(); |
| 665 | |
| 666 | return true; |
| 667 | } |
| 668 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 669 | /// \brief Lower an argument list according to the target calling convention. |
| 670 | /// |
| 671 | /// This is a helper for lowering intrinsics that follow a target calling |
| 672 | /// convention or require stack pointer adjustment. Only a subset of the |
| 673 | /// intrinsic's operands need to participate in the calling convention. |
| 674 | bool FastISel::lowerCallOperands(const CallInst *CI, unsigned ArgIdx, |
| 675 | unsigned NumArgs, const Value *Callee, |
| 676 | bool ForceRetVoidTy, CallLoweringInfo &CLI) { |
| 677 | ArgListTy Args; |
| 678 | Args.reserve(NumArgs); |
| 679 | |
| 680 | // Populate the argument list. |
| 681 | // Attributes for args start at offset 1, after the return attribute. |
| 682 | ImmutableCallSite CS(CI); |
| 683 | for (unsigned ArgI = ArgIdx, ArgE = ArgIdx + NumArgs, AttrI = ArgIdx + 1; |
| 684 | ArgI != ArgE; ++ArgI) { |
| 685 | Value *V = CI->getOperand(ArgI); |
| 686 | |
| 687 | assert(!V->getType()->isEmptyTy() && "Empty type passed to intrinsic."); |
| 688 | |
| 689 | ArgListEntry Entry; |
| 690 | Entry.Val = V; |
| 691 | Entry.Ty = V->getType(); |
| 692 | Entry.setAttributes(&CS, AttrI); |
| 693 | Args.push_back(Entry); |
| 694 | } |
| 695 | |
| 696 | Type *RetTy = ForceRetVoidTy ? Type::getVoidTy(CI->getType()->getContext()) |
| 697 | : CI->getType(); |
| 698 | CLI.setCallee(CI->getCallingConv(), RetTy, Callee, std::move(Args), NumArgs); |
| 699 | |
| 700 | return lowerCallTo(CLI); |
| 701 | } |
| 702 | |
| 703 | bool FastISel::selectPatchpoint(const CallInst *I) { |
| 704 | // void|i64 @llvm.experimental.patchpoint.void|i64(i64 <id>, |
| 705 | // i32 <numBytes>, |
| 706 | // i8* <target>, |
| 707 | // i32 <numArgs>, |
| 708 | // [Args...], |
| 709 | // [live variables...]) |
| 710 | CallingConv::ID CC = I->getCallingConv(); |
| 711 | bool IsAnyRegCC = CC == CallingConv::AnyReg; |
| 712 | bool HasDef = !I->getType()->isVoidTy(); |
| 713 | Value *Callee = I->getOperand(PatchPointOpers::TargetPos); |
| 714 | |
| 715 | // Get the real number of arguments participating in the call <numArgs> |
| 716 | assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::NArgPos)) && |
| 717 | "Expected a constant integer."); |
| 718 | const auto *NumArgsVal = |
| 719 | cast<ConstantInt>(I->getOperand(PatchPointOpers::NArgPos)); |
| 720 | unsigned NumArgs = NumArgsVal->getZExtValue(); |
| 721 | |
| 722 | // Skip the four meta args: <id>, <numNopBytes>, <target>, <numArgs> |
| 723 | // This includes all meta-operands up to but not including CC. |
| 724 | unsigned NumMetaOpers = PatchPointOpers::CCPos; |
| 725 | assert(I->getNumArgOperands() >= NumMetaOpers + NumArgs && |
| 726 | "Not enough arguments provided to the patchpoint intrinsic"); |
| 727 | |
| 728 | // For AnyRegCC the arguments are lowered later on manually. |
| 729 | unsigned NumCallArgs = IsAnyRegCC ? 0 : NumArgs; |
| 730 | CallLoweringInfo CLI; |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 731 | CLI.setIsPatchPoint(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 732 | if (!lowerCallOperands(I, NumMetaOpers, NumCallArgs, Callee, IsAnyRegCC, CLI)) |
| 733 | return false; |
| 734 | |
| 735 | assert(CLI.Call && "No call instruction specified."); |
| 736 | |
| 737 | SmallVector<MachineOperand, 32> Ops; |
| 738 | |
| 739 | // Add an explicit result reg if we use the anyreg calling convention. |
| 740 | if (IsAnyRegCC && HasDef) { |
| 741 | assert(CLI.NumResultRegs == 0 && "Unexpected result register."); |
| 742 | CLI.ResultReg = createResultReg(TLI.getRegClassFor(MVT::i64)); |
| 743 | CLI.NumResultRegs = 1; |
| 744 | Ops.push_back(MachineOperand::CreateReg(CLI.ResultReg, /*IsDef=*/true)); |
| 745 | } |
| 746 | |
| 747 | // Add the <id> and <numBytes> constants. |
| 748 | assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) && |
| 749 | "Expected a constant integer."); |
| 750 | const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)); |
| 751 | Ops.push_back(MachineOperand::CreateImm(ID->getZExtValue())); |
| 752 | |
| 753 | assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos)) && |
| 754 | "Expected a constant integer."); |
| 755 | const auto *NumBytes = |
| 756 | cast<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos)); |
| 757 | Ops.push_back(MachineOperand::CreateImm(NumBytes->getZExtValue())); |
| 758 | |
| 759 | // Assume that the callee is a constant address or null pointer. |
| 760 | // FIXME: handle function symbols in the future. |
| 761 | uint64_t CalleeAddr; |
| 762 | if (const auto *C = dyn_cast<IntToPtrInst>(Callee)) |
| 763 | CalleeAddr = cast<ConstantInt>(C->getOperand(0))->getZExtValue(); |
| 764 | else if (const auto *C = dyn_cast<ConstantExpr>(Callee)) { |
| 765 | if (C->getOpcode() == Instruction::IntToPtr) |
| 766 | CalleeAddr = cast<ConstantInt>(C->getOperand(0))->getZExtValue(); |
| 767 | else |
| 768 | llvm_unreachable("Unsupported ConstantExpr."); |
| 769 | } else if (isa<ConstantPointerNull>(Callee)) |
| 770 | CalleeAddr = 0; |
| 771 | else |
| 772 | llvm_unreachable("Unsupported callee address."); |
| 773 | |
| 774 | Ops.push_back(MachineOperand::CreateImm(CalleeAddr)); |
| 775 | |
| 776 | // Adjust <numArgs> to account for any arguments that have been passed on |
| 777 | // the stack instead. |
| 778 | unsigned NumCallRegArgs = IsAnyRegCC ? NumArgs : CLI.OutRegs.size(); |
| 779 | Ops.push_back(MachineOperand::CreateImm(NumCallRegArgs)); |
| 780 | |
| 781 | // Add the calling convention |
| 782 | Ops.push_back(MachineOperand::CreateImm((unsigned)CC)); |
| 783 | |
| 784 | // Add the arguments we omitted previously. The register allocator should |
| 785 | // place these in any free register. |
| 786 | if (IsAnyRegCC) { |
| 787 | for (unsigned i = NumMetaOpers, e = NumMetaOpers + NumArgs; i != e; ++i) { |
| 788 | unsigned Reg = getRegForValue(I->getArgOperand(i)); |
| 789 | if (!Reg) |
| 790 | return false; |
| 791 | Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/false)); |
| 792 | } |
| 793 | } |
| 794 | |
| 795 | // Push the arguments from the call instruction. |
| 796 | for (auto Reg : CLI.OutRegs) |
| 797 | Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/false)); |
| 798 | |
| 799 | // Push live variables for the stack map. |
| 800 | if (!addStackMapLiveVars(Ops, I, NumMetaOpers + NumArgs)) |
| 801 | return false; |
| 802 | |
| 803 | // Push the register mask info. |
| 804 | Ops.push_back(MachineOperand::CreateRegMask(TRI.getCallPreservedMask(CC))); |
| 805 | |
| 806 | // Add scratch registers as implicit def and early clobber. |
| 807 | const MCPhysReg *ScratchRegs = TLI.getScratchRegisters(CC); |
| 808 | for (unsigned i = 0; ScratchRegs[i]; ++i) |
| 809 | Ops.push_back(MachineOperand::CreateReg( |
| 810 | ScratchRegs[i], /*IsDef=*/true, /*IsImp=*/true, /*IsKill=*/false, |
| 811 | /*IsDead=*/false, /*IsUndef=*/false, /*IsEarlyClobber=*/true)); |
| 812 | |
| 813 | // Add implicit defs (return values). |
| 814 | for (auto Reg : CLI.InRegs) |
| 815 | Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/true, |
| 816 | /*IsImpl=*/true)); |
| 817 | |
| 818 | // Insert the patchpoint instruction before the call generated by the target. |
| 819 | MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, CLI.Call, DbgLoc, |
| 820 | TII.get(TargetOpcode::PATCHPOINT)); |
| 821 | |
| 822 | for (auto &MO : Ops) |
| 823 | MIB.addOperand(MO); |
| 824 | |
| 825 | MIB->setPhysRegsDeadExcept(CLI.InRegs, TRI); |
| 826 | |
| 827 | // Delete the original call instruction. |
| 828 | CLI.Call->eraseFromParent(); |
| 829 | |
| 830 | // Inform the Frame Information that we have a patchpoint in this function. |
| 831 | FuncInfo.MF->getFrameInfo()->setHasPatchPoint(); |
| 832 | |
| 833 | if (CLI.NumResultRegs) |
| 834 | updateValueMap(I, CLI.ResultReg, CLI.NumResultRegs); |
| 835 | return true; |
| 836 | } |
| 837 | |
| 838 | /// Returns an AttributeSet representing the attributes applied to the return |
| 839 | /// value of the given call. |
| 840 | static AttributeSet getReturnAttrs(FastISel::CallLoweringInfo &CLI) { |
| 841 | SmallVector<Attribute::AttrKind, 2> Attrs; |
| 842 | if (CLI.RetSExt) |
| 843 | Attrs.push_back(Attribute::SExt); |
| 844 | if (CLI.RetZExt) |
| 845 | Attrs.push_back(Attribute::ZExt); |
| 846 | if (CLI.IsInReg) |
| 847 | Attrs.push_back(Attribute::InReg); |
| 848 | |
| 849 | return AttributeSet::get(CLI.RetTy->getContext(), AttributeSet::ReturnIndex, |
| 850 | Attrs); |
| 851 | } |
| 852 | |
| 853 | bool FastISel::lowerCallTo(const CallInst *CI, const char *SymName, |
| 854 | unsigned NumArgs) { |
| 855 | ImmutableCallSite CS(CI); |
| 856 | |
| 857 | PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 858 | FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 859 | Type *RetTy = FTy->getReturnType(); |
| 860 | |
| 861 | ArgListTy Args; |
| 862 | Args.reserve(NumArgs); |
| 863 | |
| 864 | // Populate the argument list. |
| 865 | // Attributes for args start at offset 1, after the return attribute. |
| 866 | for (unsigned ArgI = 0; ArgI != NumArgs; ++ArgI) { |
| 867 | Value *V = CI->getOperand(ArgI); |
| 868 | |
| 869 | assert(!V->getType()->isEmptyTy() && "Empty type passed to intrinsic."); |
| 870 | |
| 871 | ArgListEntry Entry; |
| 872 | Entry.Val = V; |
| 873 | Entry.Ty = V->getType(); |
| 874 | Entry.setAttributes(&CS, ArgI + 1); |
| 875 | Args.push_back(Entry); |
| 876 | } |
| 877 | |
| 878 | CallLoweringInfo CLI; |
| 879 | CLI.setCallee(RetTy, FTy, SymName, std::move(Args), CS, NumArgs); |
| 880 | |
| 881 | return lowerCallTo(CLI); |
| 882 | } |
| 883 | |
| 884 | bool FastISel::lowerCallTo(CallLoweringInfo &CLI) { |
| 885 | // Handle the incoming return values from the call. |
| 886 | CLI.clearIns(); |
| 887 | SmallVector<EVT, 4> RetTys; |
| 888 | ComputeValueVTs(TLI, CLI.RetTy, RetTys); |
| 889 | |
| 890 | SmallVector<ISD::OutputArg, 4> Outs; |
| 891 | GetReturnInfo(CLI.RetTy, getReturnAttrs(CLI), Outs, TLI); |
| 892 | |
| 893 | bool CanLowerReturn = TLI.CanLowerReturn( |
| 894 | CLI.CallConv, *FuncInfo.MF, CLI.IsVarArg, Outs, CLI.RetTy->getContext()); |
| 895 | |
| 896 | // FIXME: sret demotion isn't supported yet - bail out. |
| 897 | if (!CanLowerReturn) |
| 898 | return false; |
| 899 | |
| 900 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 901 | EVT VT = RetTys[I]; |
| 902 | MVT RegisterVT = TLI.getRegisterType(CLI.RetTy->getContext(), VT); |
| 903 | unsigned NumRegs = TLI.getNumRegisters(CLI.RetTy->getContext(), VT); |
| 904 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 905 | ISD::InputArg MyFlags; |
| 906 | MyFlags.VT = RegisterVT; |
| 907 | MyFlags.ArgVT = VT; |
| 908 | MyFlags.Used = CLI.IsReturnValueUsed; |
| 909 | if (CLI.RetSExt) |
| 910 | MyFlags.Flags.setSExt(); |
| 911 | if (CLI.RetZExt) |
| 912 | MyFlags.Flags.setZExt(); |
| 913 | if (CLI.IsInReg) |
| 914 | MyFlags.Flags.setInReg(); |
| 915 | CLI.Ins.push_back(MyFlags); |
| 916 | } |
| 917 | } |
| 918 | |
| 919 | // Handle all of the outgoing arguments. |
| 920 | CLI.clearOuts(); |
| 921 | for (auto &Arg : CLI.getArgs()) { |
| 922 | Type *FinalType = Arg.Ty; |
| 923 | if (Arg.IsByVal) |
| 924 | FinalType = cast<PointerType>(Arg.Ty)->getElementType(); |
| 925 | bool NeedsRegBlock = TLI.functionArgumentNeedsConsecutiveRegisters( |
| 926 | FinalType, CLI.CallConv, CLI.IsVarArg); |
| 927 | |
| 928 | ISD::ArgFlagsTy Flags; |
| 929 | if (Arg.IsZExt) |
| 930 | Flags.setZExt(); |
| 931 | if (Arg.IsSExt) |
| 932 | Flags.setSExt(); |
| 933 | if (Arg.IsInReg) |
| 934 | Flags.setInReg(); |
| 935 | if (Arg.IsSRet) |
| 936 | Flags.setSRet(); |
| 937 | if (Arg.IsByVal) |
| 938 | Flags.setByVal(); |
| 939 | if (Arg.IsInAlloca) { |
| 940 | Flags.setInAlloca(); |
| 941 | // Set the byval flag for CCAssignFn callbacks that don't know about |
| 942 | // inalloca. This way we can know how many bytes we should've allocated |
| 943 | // and how many bytes a callee cleanup function will pop. If we port |
| 944 | // inalloca to more targets, we'll have to add custom inalloca handling in |
| 945 | // the various CC lowering callbacks. |
| 946 | Flags.setByVal(); |
| 947 | } |
| 948 | if (Arg.IsByVal || Arg.IsInAlloca) { |
| 949 | PointerType *Ty = cast<PointerType>(Arg.Ty); |
| 950 | Type *ElementTy = Ty->getElementType(); |
| 951 | unsigned FrameSize = DL.getTypeAllocSize(ElementTy); |
| 952 | // For ByVal, alignment should come from FE. BE will guess if this info is |
| 953 | // not there, but there are cases it cannot get right. |
| 954 | unsigned FrameAlign = Arg.Alignment; |
| 955 | if (!FrameAlign) |
| 956 | FrameAlign = TLI.getByValTypeAlignment(ElementTy); |
| 957 | Flags.setByValSize(FrameSize); |
| 958 | Flags.setByValAlign(FrameAlign); |
| 959 | } |
| 960 | if (Arg.IsNest) |
| 961 | Flags.setNest(); |
| 962 | if (NeedsRegBlock) |
| 963 | Flags.setInConsecutiveRegs(); |
| 964 | unsigned OriginalAlignment = DL.getABITypeAlignment(Arg.Ty); |
| 965 | Flags.setOrigAlign(OriginalAlignment); |
| 966 | |
| 967 | CLI.OutVals.push_back(Arg.Val); |
| 968 | CLI.OutFlags.push_back(Flags); |
| 969 | } |
| 970 | |
| 971 | if (!fastLowerCall(CLI)) |
| 972 | return false; |
| 973 | |
| 974 | // Set all unused physreg defs as dead. |
| 975 | assert(CLI.Call && "No call instruction specified."); |
| 976 | CLI.Call->setPhysRegsDeadExcept(CLI.InRegs, TRI); |
| 977 | |
| 978 | if (CLI.NumResultRegs && CLI.CS) |
| 979 | updateValueMap(CLI.CS->getInstruction(), CLI.ResultReg, CLI.NumResultRegs); |
| 980 | |
| 981 | return true; |
| 982 | } |
| 983 | |
| 984 | bool FastISel::lowerCall(const CallInst *CI) { |
| 985 | ImmutableCallSite CS(CI); |
| 986 | |
| 987 | PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 988 | FunctionType *FuncTy = cast<FunctionType>(PT->getElementType()); |
| 989 | Type *RetTy = FuncTy->getReturnType(); |
| 990 | |
| 991 | ArgListTy Args; |
| 992 | ArgListEntry Entry; |
| 993 | Args.reserve(CS.arg_size()); |
| 994 | |
| 995 | for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
| 996 | i != e; ++i) { |
| 997 | Value *V = *i; |
| 998 | |
| 999 | // Skip empty types |
| 1000 | if (V->getType()->isEmptyTy()) |
| 1001 | continue; |
| 1002 | |
| 1003 | Entry.Val = V; |
| 1004 | Entry.Ty = V->getType(); |
| 1005 | |
| 1006 | // Skip the first return-type Attribute to get to params. |
| 1007 | Entry.setAttributes(&CS, i - CS.arg_begin() + 1); |
| 1008 | Args.push_back(Entry); |
| 1009 | } |
| 1010 | |
| 1011 | // Check if target-independent constraints permit a tail call here. |
| 1012 | // Target-dependent constraints are checked within fastLowerCall. |
| 1013 | bool IsTailCall = CI->isTailCall(); |
| 1014 | if (IsTailCall && !isInTailCallPosition(CS, TM)) |
| 1015 | IsTailCall = false; |
| 1016 | |
| 1017 | CallLoweringInfo CLI; |
| 1018 | CLI.setCallee(RetTy, FuncTy, CI->getCalledValue(), std::move(Args), CS) |
| 1019 | .setTailCall(IsTailCall); |
| 1020 | |
| 1021 | return lowerCallTo(CLI); |
| 1022 | } |
| 1023 | |
| 1024 | bool FastISel::selectCall(const User *I) { |
Dan Gohman | a61e73b | 2011-04-26 17:18:34 +0000 | [diff] [blame] | 1025 | const CallInst *Call = cast<CallInst>(I); |
| 1026 | |
| 1027 | // Handle simple inline asms. |
Dan Gohman | 9e15d65 | 2011-10-12 15:56:56 +0000 | [diff] [blame] | 1028 | if (const InlineAsm *IA = dyn_cast<InlineAsm>(Call->getCalledValue())) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1029 | // If the inline asm has side effects, then make sure that no local value |
| 1030 | // lives across by flushing the local value map. |
| 1031 | if (IA->hasSideEffects()) |
| 1032 | flushLocalValueMap(); |
| 1033 | |
Dan Gohman | a61e73b | 2011-04-26 17:18:34 +0000 | [diff] [blame] | 1034 | // Don't attempt to handle constraints. |
| 1035 | if (!IA->getConstraintString().empty()) |
| 1036 | return false; |
| 1037 | |
| 1038 | unsigned ExtraInfo = 0; |
| 1039 | if (IA->hasSideEffects()) |
| 1040 | ExtraInfo |= InlineAsm::Extra_HasSideEffects; |
| 1041 | if (IA->isAlignStack()) |
| 1042 | ExtraInfo |= InlineAsm::Extra_IsAlignStack; |
| 1043 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1044 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
Dan Gohman | a61e73b | 2011-04-26 17:18:34 +0000 | [diff] [blame] | 1045 | TII.get(TargetOpcode::INLINEASM)) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1046 | .addExternalSymbol(IA->getAsmString().c_str()) |
| 1047 | .addImm(ExtraInfo); |
Dan Gohman | a61e73b | 2011-04-26 17:18:34 +0000 | [diff] [blame] | 1048 | return true; |
| 1049 | } |
| 1050 | |
Michael J. Spencer | c9c137b | 2012-02-22 19:06:13 +0000 | [diff] [blame] | 1051 | MachineModuleInfo &MMI = FuncInfo.MF->getMMI(); |
| 1052 | ComputeUsesVAFloatArgument(*Call, &MMI); |
| 1053 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1054 | // Handle intrinsic function calls. |
| 1055 | if (const auto *II = dyn_cast<IntrinsicInst>(Call)) |
| 1056 | return selectIntrinsicCall(II); |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 1057 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1058 | // Usually, it does not make sense to initialize a value, |
| 1059 | // make an unrelated function call and use the value, because |
| 1060 | // it tends to be spilled on the stack. So, we move the pointer |
| 1061 | // to the last local value to the beginning of the block, so that |
| 1062 | // all the values which have already been materialized, |
| 1063 | // appear after the call. It also makes sense to skip intrinsics |
| 1064 | // since they tend to be inlined. |
| 1065 | flushLocalValueMap(); |
| 1066 | |
| 1067 | return lowerCall(Call); |
| 1068 | } |
| 1069 | |
| 1070 | bool FastISel::selectIntrinsicCall(const IntrinsicInst *II) { |
| 1071 | switch (II->getIntrinsicID()) { |
| 1072 | default: |
| 1073 | break; |
| 1074 | // At -O0 we don't care about the lifetime intrinsics. |
Eric Christopher | 9b5d6b8 | 2012-02-17 23:03:39 +0000 | [diff] [blame] | 1075 | case Intrinsic::lifetime_start: |
| 1076 | case Intrinsic::lifetime_end: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1077 | // The donothing intrinsic does, well, nothing. |
Chad Rosier | fd065bb | 2012-07-06 17:33:39 +0000 | [diff] [blame] | 1078 | case Intrinsic::donothing: |
Eric Christopher | 9b5d6b8 | 2012-02-17 23:03:39 +0000 | [diff] [blame] | 1079 | return true; |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 1080 | case Intrinsic::dbg_declare: { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1081 | const DbgDeclareInst *DI = cast<DbgDeclareInst>(II); |
Manman Ren | cbafae6 | 2013-06-28 05:43:10 +0000 | [diff] [blame] | 1082 | DIVariable DIVar(DI->getVariable()); |
Stephen Lin | 155615d | 2013-07-08 00:37:03 +0000 | [diff] [blame] | 1083 | assert((!DIVar || DIVar.isVariable()) && |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1084 | "Variable in DbgDeclareInst should be either null or a DIVariable."); |
| 1085 | if (!DIVar || !FuncInfo.MF->getMMI().hasDebugInfo()) { |
Eric Christopher | bb54d21 | 2012-03-15 21:33:44 +0000 | [diff] [blame] | 1086 | DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 1087 | return true; |
Eric Christopher | bb54d21 | 2012-03-15 21:33:44 +0000 | [diff] [blame] | 1088 | } |
Devang Patel | 7e1e31f | 2009-07-02 22:43:26 +0000 | [diff] [blame] | 1089 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 1090 | const Value *Address = DI->getAddress(); |
Eric Christopher | ccaea7d | 2012-03-15 21:33:47 +0000 | [diff] [blame] | 1091 | if (!Address || isa<UndefValue>(Address)) { |
Eric Christopher | bb54d21 | 2012-03-15 21:33:44 +0000 | [diff] [blame] | 1092 | DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); |
Dale Johannesen | dc91856 | 2010-02-06 02:26:02 +0000 | [diff] [blame] | 1093 | return true; |
Eric Christopher | bb54d21 | 2012-03-15 21:33:44 +0000 | [diff] [blame] | 1094 | } |
Devang Patel | 6fe75aa | 2010-09-14 20:29:31 +0000 | [diff] [blame] | 1095 | |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 1096 | unsigned Offset = 0; |
David Blaikie | 6d9dbd5 | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 1097 | Optional<MachineOperand> Op; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1098 | if (const auto *Arg = dyn_cast<Argument>(Address)) |
Devang Patel | 9aee335 | 2011-09-08 22:59:09 +0000 | [diff] [blame] | 1099 | // Some arguments' frame index is recorded during argument lowering. |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 1100 | Offset = FuncInfo.getArgumentFrameIndex(Arg); |
| 1101 | if (Offset) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1102 | Op = MachineOperand::CreateFI(Offset); |
David Blaikie | 6d9dbd5 | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 1103 | if (!Op) |
| 1104 | if (unsigned Reg = lookUpRegForValue(Address)) |
| 1105 | Op = MachineOperand::CreateReg(Reg, false); |
Eric Christopher | 8c5293c | 2012-03-20 01:07:58 +0000 | [diff] [blame] | 1106 | |
Bill Wendling | 84364a4 | 2012-03-30 00:02:55 +0000 | [diff] [blame] | 1107 | // If we have a VLA that has a "use" in a metadata node that's then used |
| 1108 | // here but it has no other uses, then we have a problem. E.g., |
| 1109 | // |
| 1110 | // int foo (const int *x) { |
| 1111 | // char a[*x]; |
| 1112 | // return 0; |
| 1113 | // } |
| 1114 | // |
| 1115 | // If we assign 'a' a vreg and fast isel later on has to use the selection |
| 1116 | // DAG isel, it will want to copy the value to the vreg. However, there are |
| 1117 | // no uses, which goes counter to what selection DAG isel expects. |
David Blaikie | 6d9dbd5 | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 1118 | if (!Op && !Address->use_empty() && isa<Instruction>(Address) && |
Eric Christopher | 8c5293c | 2012-03-20 01:07:58 +0000 | [diff] [blame] | 1119 | (!isa<AllocaInst>(Address) || |
| 1120 | !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(Address)))) |
David Blaikie | 6d9dbd5 | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 1121 | Op = MachineOperand::CreateReg(FuncInfo.InitializeRegForValue(Address), |
Adrian Prantl | 0a4371a | 2013-09-18 22:08:59 +0000 | [diff] [blame] | 1122 | false); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1123 | |
Adrian Prantl | 0a4371a | 2013-09-18 22:08:59 +0000 | [diff] [blame] | 1124 | if (Op) { |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 1125 | if (Op->isReg()) { |
| 1126 | Op->setIsDebug(true); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1127 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
David Blaikie | 54de36b | 2013-10-14 20:15:04 +0000 | [diff] [blame] | 1128 | TII.get(TargetOpcode::DBG_VALUE), false, Op->getReg(), 0, |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1129 | DI->getVariable(), DI->getExpression()); |
David Blaikie | 54de36b | 2013-10-14 20:15:04 +0000 | [diff] [blame] | 1130 | } else |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1131 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
David Blaikie | 54de36b | 2013-10-14 20:15:04 +0000 | [diff] [blame] | 1132 | TII.get(TargetOpcode::DBG_VALUE)) |
| 1133 | .addOperand(*Op) |
| 1134 | .addImm(0) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1135 | .addMetadata(DI->getVariable()) |
| 1136 | .addMetadata(DI->getExpression()); |
Adrian Prantl | 0a4371a | 2013-09-18 22:08:59 +0000 | [diff] [blame] | 1137 | } else { |
Eric Christopher | 4476bae | 2012-03-20 01:07:53 +0000 | [diff] [blame] | 1138 | // We can't yet handle anything else here because it would require |
| 1139 | // generating code, thus altering codegen because of debug info. |
Adrian Prantl | 5da4e4f | 2013-05-22 18:02:19 +0000 | [diff] [blame] | 1140 | DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); |
Adrian Prantl | 0a4371a | 2013-09-18 22:08:59 +0000 | [diff] [blame] | 1141 | } |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 1142 | return true; |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 1143 | } |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 1144 | case Intrinsic::dbg_value: { |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 1145 | // This form of DBG_VALUE is target-independent. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1146 | const DbgValueInst *DI = cast<DbgValueInst>(II); |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1147 | const MCInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 1148 | const Value *V = DI->getValue(); |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 1149 | if (!V) { |
| 1150 | // Currently the optimizer can produce this; insert an undef to |
| 1151 | // help debugging. Probably the optimizer should not do this. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1152 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1153 | .addReg(0U) |
| 1154 | .addImm(DI->getOffset()) |
| 1155 | .addMetadata(DI->getVariable()) |
| 1156 | .addMetadata(DI->getExpression()); |
| 1157 | } else if (const auto *CI = dyn_cast<ConstantInt>(V)) { |
Devang Patel | 8594d42 | 2011-06-24 20:46:11 +0000 | [diff] [blame] | 1158 | if (CI->getBitWidth() > 64) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1159 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1160 | .addCImm(CI) |
| 1161 | .addImm(DI->getOffset()) |
| 1162 | .addMetadata(DI->getVariable()) |
| 1163 | .addMetadata(DI->getExpression()); |
Chad Rosier | 6016a4a | 2012-07-06 17:44:22 +0000 | [diff] [blame] | 1164 | else |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1165 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1166 | .addImm(CI->getZExtValue()) |
| 1167 | .addImm(DI->getOffset()) |
| 1168 | .addMetadata(DI->getVariable()) |
| 1169 | .addMetadata(DI->getExpression()); |
| 1170 | } else if (const auto *CF = dyn_cast<ConstantFP>(V)) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1171 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1172 | .addFPImm(CF) |
| 1173 | .addImm(DI->getOffset()) |
| 1174 | .addMetadata(DI->getVariable()) |
| 1175 | .addMetadata(DI->getExpression()); |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 1176 | } else if (unsigned Reg = lookUpRegForValue(V)) { |
Adrian Prantl | 818833f | 2013-09-16 23:29:03 +0000 | [diff] [blame] | 1177 | // FIXME: This does not handle register-indirect values at offset 0. |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 1178 | bool IsIndirect = DI->getOffset() != 0; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1179 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, IsIndirect, Reg, |
| 1180 | DI->getOffset(), DI->getVariable(), DI->getExpression()); |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 1181 | } else { |
| 1182 | // We can't yet handle anything else here because it would require |
| 1183 | // generating code, thus altering codegen because of debug info. |
Adrian Prantl | 5da4e4f | 2013-05-22 18:02:19 +0000 | [diff] [blame] | 1184 | DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1185 | } |
Dale Johannesen | 45df761 | 2010-02-26 20:01:55 +0000 | [diff] [blame] | 1186 | return true; |
| 1187 | } |
Eli Friedman | d0118a2 | 2011-05-14 00:47:51 +0000 | [diff] [blame] | 1188 | case Intrinsic::objectsize: { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1189 | ConstantInt *CI = cast<ConstantInt>(II->getArgOperand(1)); |
Eli Friedman | d0118a2 | 2011-05-14 00:47:51 +0000 | [diff] [blame] | 1190 | unsigned long long Res = CI->isZero() ? -1ULL : 0; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1191 | Constant *ResCI = ConstantInt::get(II->getType(), Res); |
Eli Friedman | d0118a2 | 2011-05-14 00:47:51 +0000 | [diff] [blame] | 1192 | unsigned ResultReg = getRegForValue(ResCI); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1193 | if (!ResultReg) |
Eli Friedman | d0118a2 | 2011-05-14 00:47:51 +0000 | [diff] [blame] | 1194 | return false; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1195 | updateValueMap(II, ResultReg); |
Eli Friedman | d0118a2 | 2011-05-14 00:47:51 +0000 | [diff] [blame] | 1196 | return true; |
| 1197 | } |
Chad Rosier | 33947b4 | 2013-03-07 20:42:17 +0000 | [diff] [blame] | 1198 | case Intrinsic::expect: { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1199 | unsigned ResultReg = getRegForValue(II->getArgOperand(0)); |
| 1200 | if (!ResultReg) |
Nick Lewycky | 33cdfe9 | 2013-03-11 21:44:37 +0000 | [diff] [blame] | 1201 | return false; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1202 | updateValueMap(II, ResultReg); |
Chad Rosier | 4fde76d | 2013-03-07 21:38:33 +0000 | [diff] [blame] | 1203 | return true; |
Chad Rosier | 33947b4 | 2013-03-07 20:42:17 +0000 | [diff] [blame] | 1204 | } |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 1205 | case Intrinsic::experimental_stackmap: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1206 | return selectStackmap(II); |
| 1207 | case Intrinsic::experimental_patchpoint_void: |
| 1208 | case Intrinsic::experimental_patchpoint_i64: |
| 1209 | return selectPatchpoint(II); |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 1210 | } |
Dan Gohman | 4183e31 | 2010-04-13 17:07:06 +0000 | [diff] [blame] | 1211 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1212 | return fastLowerIntrinsicCall(II); |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 1213 | } |
| 1214 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1215 | bool FastISel::selectCast(const User *I, unsigned Opcode) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1216 | EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); |
| 1217 | EVT DstVT = TLI.getValueType(I->getType()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1218 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1219 | if (SrcVT == MVT::Other || !SrcVT.isSimple() || DstVT == MVT::Other || |
| 1220 | !DstVT.isSimple()) |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 1221 | // Unhandled type. Halt "fast" selection and bail. |
| 1222 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1223 | |
Eli Friedman | 76927d73 | 2011-05-25 23:49:02 +0000 | [diff] [blame] | 1224 | // Check if the destination type is legal. |
Dan Gohman | 474d3b3 | 2009-03-13 23:53:06 +0000 | [diff] [blame] | 1225 | if (!TLI.isTypeLegal(DstVT)) |
Eli Friedman | 76927d73 | 2011-05-25 23:49:02 +0000 | [diff] [blame] | 1226 | return false; |
Dan Gohman | 474d3b3 | 2009-03-13 23:53:06 +0000 | [diff] [blame] | 1227 | |
Eli Friedman | 76927d73 | 2011-05-25 23:49:02 +0000 | [diff] [blame] | 1228 | // Check if the source operand is legal. |
Dan Gohman | 474d3b3 | 2009-03-13 23:53:06 +0000 | [diff] [blame] | 1229 | if (!TLI.isTypeLegal(SrcVT)) |
Eli Friedman | 76927d73 | 2011-05-25 23:49:02 +0000 | [diff] [blame] | 1230 | return false; |
Dan Gohman | 474d3b3 | 2009-03-13 23:53:06 +0000 | [diff] [blame] | 1231 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1232 | unsigned InputReg = getRegForValue(I->getOperand(0)); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 1233 | if (!InputReg) |
| 1234 | // Unhandled operand. Halt "fast" selection and bail. |
| 1235 | return false; |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 1236 | |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1237 | bool InputRegIsKill = hasTrivialKill(I->getOperand(0)); |
| 1238 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1239 | unsigned ResultReg = fastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), |
| 1240 | Opcode, InputReg, InputRegIsKill); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 1241 | if (!ResultReg) |
| 1242 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1243 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1244 | updateValueMap(I, ResultReg); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 1245 | return true; |
| 1246 | } |
| 1247 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1248 | bool FastISel::selectBitCast(const User *I) { |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 1249 | // If the bitcast doesn't change the type, just use the operand value. |
| 1250 | if (I->getType() == I->getOperand(0)->getType()) { |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1251 | unsigned Reg = getRegForValue(I->getOperand(0)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1252 | if (!Reg) |
Dan Gohman | a318dab | 2008-08-27 20:41:38 +0000 | [diff] [blame] | 1253 | return false; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1254 | updateValueMap(I, Reg); |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 1255 | return true; |
| 1256 | } |
| 1257 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1258 | // Bitcasts of other values become reg-reg copies or BITCAST operators. |
Patrik Hagglund | 3d170e6 | 2012-12-17 14:30:06 +0000 | [diff] [blame] | 1259 | EVT SrcEVT = TLI.getValueType(I->getOperand(0)->getType()); |
| 1260 | EVT DstEVT = TLI.getValueType(I->getType()); |
| 1261 | if (SrcEVT == MVT::Other || DstEVT == MVT::Other || |
| 1262 | !TLI.isTypeLegal(SrcEVT) || !TLI.isTypeLegal(DstEVT)) |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 1263 | // Unhandled type. Halt "fast" selection and bail. |
| 1264 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1265 | |
Patrik Hagglund | 3d170e6 | 2012-12-17 14:30:06 +0000 | [diff] [blame] | 1266 | MVT SrcVT = SrcEVT.getSimpleVT(); |
| 1267 | MVT DstVT = DstEVT.getSimpleVT(); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1268 | unsigned Op0 = getRegForValue(I->getOperand(0)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1269 | if (!Op0) // Unhandled operand. Halt "fast" selection and bail. |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 1270 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1271 | bool Op0IsKill = hasTrivialKill(I->getOperand(0)); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1272 | |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 1273 | // First, try to perform the bitcast by inserting a reg-reg copy. |
| 1274 | unsigned ResultReg = 0; |
Patrik Hagglund | a61b17c | 2012-12-13 06:34:11 +0000 | [diff] [blame] | 1275 | if (SrcVT == DstVT) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1276 | const TargetRegisterClass *SrcClass = TLI.getRegClassFor(SrcVT); |
| 1277 | const TargetRegisterClass *DstClass = TLI.getRegClassFor(DstVT); |
Jakob Stoklund Olesen | e7917bb | 2010-07-11 05:16:54 +0000 | [diff] [blame] | 1278 | // Don't attempt a cross-class copy. It will likely fail. |
| 1279 | if (SrcClass == DstClass) { |
| 1280 | ResultReg = createResultReg(DstClass); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1281 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1282 | TII.get(TargetOpcode::COPY), ResultReg).addReg(Op0); |
Jakob Stoklund Olesen | e7917bb | 2010-07-11 05:16:54 +0000 | [diff] [blame] | 1283 | } |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 1284 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1285 | |
| 1286 | // If the reg-reg copy failed, select a BITCAST opcode. |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 1287 | if (!ResultReg) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1288 | ResultReg = fastEmit_r(SrcVT, DstVT, ISD::BITCAST, Op0, Op0IsKill); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1289 | |
Dan Gohman | ad368ac | 2008-08-27 18:10:19 +0000 | [diff] [blame] | 1290 | if (!ResultReg) |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 1291 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1292 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1293 | updateValueMap(I, ResultReg); |
Owen Anderson | d0533c9 | 2008-08-26 23:46:32 +0000 | [diff] [blame] | 1294 | return true; |
| 1295 | } |
| 1296 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1297 | bool FastISel::selectInstruction(const Instruction *I) { |
Dan Gohman | e8c92dd | 2010-04-23 15:29:50 +0000 | [diff] [blame] | 1298 | // Just before the terminator instruction, insert instructions to |
| 1299 | // feed PHI nodes in successor blocks. |
| 1300 | if (isa<TerminatorInst>(I)) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1301 | if (!handlePHINodesInSuccessorBlocks(I->getParent())) |
Dan Gohman | e8c92dd | 2010-04-23 15:29:50 +0000 | [diff] [blame] | 1302 | return false; |
| 1303 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1304 | DbgLoc = I->getDebugLoc(); |
Dan Gohman | 8ba3aa7 | 2010-04-20 00:48:35 +0000 | [diff] [blame] | 1305 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1306 | SavedInsertPt = FuncInfo.InsertPt; |
Chad Rosier | ae6f2cb | 2011-11-29 19:40:47 +0000 | [diff] [blame] | 1307 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1308 | if (const auto *Call = dyn_cast<CallInst>(I)) { |
Bob Wilson | d49edb7 | 2012-08-03 04:06:28 +0000 | [diff] [blame] | 1309 | const Function *F = Call->getCalledFunction(); |
| 1310 | LibFunc::Func Func; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1311 | |
| 1312 | // As a special case, don't handle calls to builtin library functions that |
| 1313 | // may be translated directly to target instructions. |
Bob Wilson | d49edb7 | 2012-08-03 04:06:28 +0000 | [diff] [blame] | 1314 | if (F && !F->hasLocalLinkage() && F->hasName() && |
| 1315 | LibInfo->getLibFunc(F->getName(), Func) && |
Bob Wilson | 982dc84 | 2012-08-03 21:26:24 +0000 | [diff] [blame] | 1316 | LibInfo->hasOptimizedCodeGen(Func)) |
Bob Wilson | d49edb7 | 2012-08-03 04:06:28 +0000 | [diff] [blame] | 1317 | return false; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1318 | |
| 1319 | // Don't handle Intrinsic::trap if a trap funciton is specified. |
| 1320 | if (F && F->getIntrinsicID() == Intrinsic::trap && |
| 1321 | !TM.Options.getTrapFunctionName().empty()) |
| 1322 | return false; |
Bob Wilson | d49edb7 | 2012-08-03 04:06:28 +0000 | [diff] [blame] | 1323 | } |
| 1324 | |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 1325 | // First, try doing target-independent selection. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1326 | if (!SkipTargetIndependentISel) { |
| 1327 | if (selectOperator(I, I->getOpcode())) { |
| 1328 | ++NumFastIselSuccessIndependent; |
| 1329 | DbgLoc = DebugLoc(); |
| 1330 | return true; |
| 1331 | } |
| 1332 | // Remove dead code. |
Chad Rosier | ae6f2cb | 2011-11-29 19:40:47 +0000 | [diff] [blame] | 1333 | recomputeInsertPt(); |
| 1334 | if (SavedInsertPt != FuncInfo.InsertPt) |
| 1335 | removeDeadCode(FuncInfo.InsertPt, SavedInsertPt); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1336 | SavedInsertPt = FuncInfo.InsertPt; |
Chad Rosier | ae6f2cb | 2011-11-29 19:40:47 +0000 | [diff] [blame] | 1337 | } |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 1338 | // Next, try calling the target to attempt to handle the instruction. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1339 | if (fastSelectInstruction(I)) { |
Jan Wen Voung | fa785cb | 2013-03-08 22:56:31 +0000 | [diff] [blame] | 1340 | ++NumFastIselSuccessTarget; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1341 | DbgLoc = DebugLoc(); |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 1342 | return true; |
Dan Gohman | 8ba3aa7 | 2010-04-20 00:48:35 +0000 | [diff] [blame] | 1343 | } |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1344 | // Remove dead code. |
Chad Rosier | ae6f2cb | 2011-11-29 19:40:47 +0000 | [diff] [blame] | 1345 | recomputeInsertPt(); |
| 1346 | if (SavedInsertPt != FuncInfo.InsertPt) |
| 1347 | removeDeadCode(FuncInfo.InsertPt, SavedInsertPt); |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 1348 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1349 | DbgLoc = DebugLoc(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1350 | // Undo phi node updates, because they will be added again by SelectionDAG. |
| 1351 | if (isa<TerminatorInst>(I)) |
| 1352 | FuncInfo.PHINodesToUpdate.resize(FuncInfo.OrigNumPHINodesToUpdate); |
Dan Gohman | 6e3ff37 | 2009-12-05 01:27:58 +0000 | [diff] [blame] | 1353 | return false; |
Dan Gohman | 40b189e | 2008-09-05 18:18:20 +0000 | [diff] [blame] | 1354 | } |
| 1355 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1356 | /// Emit an unconditional branch to the given block, unless it is the immediate |
| 1357 | /// (fall-through) successor, and update the CFG. |
| 1358 | void FastISel::fastEmitBranch(MachineBasicBlock *MSucc, DebugLoc DbgLoc) { |
Evan Cheng | 092e5e7 | 2013-02-11 01:27:15 +0000 | [diff] [blame] | 1359 | if (FuncInfo.MBB->getBasicBlock()->size() > 1 && |
| 1360 | FuncInfo.MBB->isLayoutSuccessor(MSucc)) { |
Eric Christopher | 18112d8 | 2012-04-10 18:18:10 +0000 | [diff] [blame] | 1361 | // For more accurate line information if this is the only instruction |
| 1362 | // in the block then emit it, otherwise we have the unconditional |
| 1363 | // fall-through case, which needs no instructions. |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 1364 | } else { |
| 1365 | // The unconditional branch case. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1366 | TII.InsertBranch(*FuncInfo.MBB, MSucc, nullptr, |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1367 | SmallVector<MachineOperand, 0>(), DbgLoc); |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 1368 | } |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 1369 | uint32_t BranchWeight = 0; |
| 1370 | if (FuncInfo.BPI) |
| 1371 | BranchWeight = FuncInfo.BPI->getEdgeWeight(FuncInfo.MBB->getBasicBlock(), |
| 1372 | MSucc->getBasicBlock()); |
| 1373 | FuncInfo.MBB->addSuccessor(MSucc, BranchWeight); |
Dan Gohman | d98d620 | 2008-10-02 22:15:21 +0000 | [diff] [blame] | 1374 | } |
| 1375 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1376 | /// Emit an FNeg operation. |
| 1377 | bool FastISel::selectFNeg(const User *I) { |
Dan Gohman | 3d45a85 | 2009-09-03 22:53:57 +0000 | [diff] [blame] | 1378 | unsigned OpReg = getRegForValue(BinaryOperator::getFNegArgument(I)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1379 | if (!OpReg) |
| 1380 | return false; |
Dan Gohman | a6cb641 | 2010-05-11 23:54:07 +0000 | [diff] [blame] | 1381 | bool OpRegIsKill = hasTrivialKill(I); |
| 1382 | |
Dan Gohman | 4a215a1 | 2009-09-11 00:36:43 +0000 | [diff] [blame] | 1383 | // If the target has ISD::FNEG, use it. |
| 1384 | EVT VT = TLI.getValueType(I->getType()); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1385 | unsigned ResultReg = fastEmit_r(VT.getSimpleVT(), VT.getSimpleVT(), ISD::FNEG, |
| 1386 | OpReg, OpRegIsKill); |
| 1387 | if (ResultReg) { |
| 1388 | updateValueMap(I, ResultReg); |
Dan Gohman | 4a215a1 | 2009-09-11 00:36:43 +0000 | [diff] [blame] | 1389 | return true; |
| 1390 | } |
| 1391 | |
Dan Gohman | 5e5abb7 | 2009-09-11 00:34:46 +0000 | [diff] [blame] | 1392 | // Bitcast the value to integer, twiddle the sign bit with xor, |
| 1393 | // and then bitcast it back to floating-point. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1394 | if (VT.getSizeInBits() > 64) |
| 1395 | return false; |
Dan Gohman | 5e5abb7 | 2009-09-11 00:34:46 +0000 | [diff] [blame] | 1396 | EVT IntVT = EVT::getIntegerVT(I->getContext(), VT.getSizeInBits()); |
| 1397 | if (!TLI.isTypeLegal(IntVT)) |
| 1398 | return false; |
| 1399 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1400 | unsigned IntReg = fastEmit_r(VT.getSimpleVT(), IntVT.getSimpleVT(), |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1401 | ISD::BITCAST, OpReg, OpRegIsKill); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1402 | if (!IntReg) |
Dan Gohman | 5e5abb7 | 2009-09-11 00:34:46 +0000 | [diff] [blame] | 1403 | return false; |
| 1404 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1405 | unsigned IntResultReg = fastEmit_ri_( |
| 1406 | IntVT.getSimpleVT(), ISD::XOR, IntReg, /*IsKill=*/true, |
| 1407 | UINT64_C(1) << (VT.getSizeInBits() - 1), IntVT.getSimpleVT()); |
| 1408 | if (!IntResultReg) |
Dan Gohman | 5e5abb7 | 2009-09-11 00:34:46 +0000 | [diff] [blame] | 1409 | return false; |
| 1410 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1411 | ResultReg = fastEmit_r(IntVT.getSimpleVT(), VT.getSimpleVT(), ISD::BITCAST, |
| 1412 | IntResultReg, /*IsKill=*/true); |
| 1413 | if (!ResultReg) |
Dan Gohman | 3d45a85 | 2009-09-03 22:53:57 +0000 | [diff] [blame] | 1414 | return false; |
| 1415 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1416 | updateValueMap(I, ResultReg); |
Dan Gohman | 3d45a85 | 2009-09-03 22:53:57 +0000 | [diff] [blame] | 1417 | return true; |
| 1418 | } |
| 1419 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1420 | bool FastISel::selectExtractValue(const User *U) { |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1421 | const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(U); |
Eli Friedman | a4c920d | 2011-05-16 20:34:53 +0000 | [diff] [blame] | 1422 | if (!EVI) |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1423 | return false; |
| 1424 | |
Eli Friedman | 482feb3 | 2011-05-16 21:06:17 +0000 | [diff] [blame] | 1425 | // Make sure we only try to handle extracts with a legal result. But also |
| 1426 | // allow i1 because it's easy. |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1427 | EVT RealVT = TLI.getValueType(EVI->getType(), /*AllowUnknown=*/true); |
| 1428 | if (!RealVT.isSimple()) |
| 1429 | return false; |
| 1430 | MVT VT = RealVT.getSimpleVT(); |
Eli Friedman | 482feb3 | 2011-05-16 21:06:17 +0000 | [diff] [blame] | 1431 | if (!TLI.isTypeLegal(VT) && VT != MVT::i1) |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1432 | return false; |
| 1433 | |
| 1434 | const Value *Op0 = EVI->getOperand(0); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1435 | Type *AggTy = Op0->getType(); |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1436 | |
| 1437 | // Get the base result register. |
| 1438 | unsigned ResultReg; |
| 1439 | DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(Op0); |
| 1440 | if (I != FuncInfo.ValueMap.end()) |
| 1441 | ResultReg = I->second; |
Eli Friedman | 0b4d96b | 2011-06-06 05:46:34 +0000 | [diff] [blame] | 1442 | else if (isa<Instruction>(Op0)) |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1443 | ResultReg = FuncInfo.InitializeRegForValue(Op0); |
Eli Friedman | 0b4d96b | 2011-06-06 05:46:34 +0000 | [diff] [blame] | 1444 | else |
| 1445 | return false; // fast-isel can't handle aggregate constants at the moment |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1446 | |
| 1447 | // Get the actual result register, which is an offset from the base register. |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1448 | unsigned VTIndex = ComputeLinearIndex(AggTy, EVI->getIndices()); |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1449 | |
| 1450 | SmallVector<EVT, 4> AggValueVTs; |
| 1451 | ComputeValueVTs(TLI, AggTy, AggValueVTs); |
| 1452 | |
| 1453 | for (unsigned i = 0; i < VTIndex; i++) |
| 1454 | ResultReg += TLI.getNumRegisters(FuncInfo.Fn->getContext(), AggValueVTs[i]); |
| 1455 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1456 | updateValueMap(EVI, ResultReg); |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1457 | return true; |
| 1458 | } |
| 1459 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1460 | bool FastISel::selectOperator(const User *I, unsigned Opcode) { |
Dan Gohman | 40b189e | 2008-09-05 18:18:20 +0000 | [diff] [blame] | 1461 | switch (Opcode) { |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1462 | case Instruction::Add: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1463 | return selectBinaryOp(I, ISD::ADD); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1464 | case Instruction::FAdd: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1465 | return selectBinaryOp(I, ISD::FADD); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1466 | case Instruction::Sub: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1467 | return selectBinaryOp(I, ISD::SUB); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1468 | case Instruction::FSub: |
Dan Gohman | 3d45a85 | 2009-09-03 22:53:57 +0000 | [diff] [blame] | 1469 | // FNeg is currently represented in LLVM IR as a special case of FSub. |
| 1470 | if (BinaryOperator::isFNeg(I)) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1471 | return selectFNeg(I); |
| 1472 | return selectBinaryOp(I, ISD::FSUB); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1473 | case Instruction::Mul: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1474 | return selectBinaryOp(I, ISD::MUL); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1475 | case Instruction::FMul: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1476 | return selectBinaryOp(I, ISD::FMUL); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1477 | case Instruction::SDiv: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1478 | return selectBinaryOp(I, ISD::SDIV); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1479 | case Instruction::UDiv: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1480 | return selectBinaryOp(I, ISD::UDIV); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1481 | case Instruction::FDiv: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1482 | return selectBinaryOp(I, ISD::FDIV); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1483 | case Instruction::SRem: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1484 | return selectBinaryOp(I, ISD::SREM); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1485 | case Instruction::URem: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1486 | return selectBinaryOp(I, ISD::UREM); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1487 | case Instruction::FRem: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1488 | return selectBinaryOp(I, ISD::FREM); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1489 | case Instruction::Shl: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1490 | return selectBinaryOp(I, ISD::SHL); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1491 | case Instruction::LShr: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1492 | return selectBinaryOp(I, ISD::SRL); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1493 | case Instruction::AShr: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1494 | return selectBinaryOp(I, ISD::SRA); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1495 | case Instruction::And: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1496 | return selectBinaryOp(I, ISD::AND); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1497 | case Instruction::Or: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1498 | return selectBinaryOp(I, ISD::OR); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1499 | case Instruction::Xor: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1500 | return selectBinaryOp(I, ISD::XOR); |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1501 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1502 | case Instruction::GetElementPtr: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1503 | return selectGetElementPtr(I); |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 1504 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1505 | case Instruction::Br: { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 1506 | const BranchInst *BI = cast<BranchInst>(I); |
Dan Gohman | bdedd44 | 2008-08-20 00:11:48 +0000 | [diff] [blame] | 1507 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1508 | if (BI->isUnconditional()) { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 1509 | const BasicBlock *LLVMSucc = BI->getSuccessor(0); |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 1510 | MachineBasicBlock *MSucc = FuncInfo.MBBMap[LLVMSucc]; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1511 | fastEmitBranch(MSucc, BI->getDebugLoc()); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1512 | return true; |
Owen Anderson | 9d5b416 | 2008-08-27 00:31:01 +0000 | [diff] [blame] | 1513 | } |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1514 | |
| 1515 | // Conditional branches are not handed yet. |
| 1516 | // Halt "fast" selection and bail. |
| 1517 | return false; |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1518 | } |
| 1519 | |
Dan Gohman | 087c850 | 2008-09-05 01:08:41 +0000 | [diff] [blame] | 1520 | case Instruction::Unreachable: |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1521 | if (TM.Options.TrapUnreachable) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1522 | return fastEmit_(MVT::Other, MVT::Other, ISD::TRAP) != 0; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1523 | else |
| 1524 | return true; |
Dan Gohman | 087c850 | 2008-09-05 01:08:41 +0000 | [diff] [blame] | 1525 | |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1526 | case Instruction::Alloca: |
| 1527 | // FunctionLowering has the static-sized case covered. |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 1528 | if (FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(I))) |
Dan Gohman | 0586d91 | 2008-09-10 20:11:02 +0000 | [diff] [blame] | 1529 | return true; |
| 1530 | |
| 1531 | // Dynamic-sized alloca is not handled yet. |
| 1532 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1533 | |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 1534 | case Instruction::Call: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1535 | return selectCall(I); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1536 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1537 | case Instruction::BitCast: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1538 | return selectBitCast(I); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1539 | |
| 1540 | case Instruction::FPToSI: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1541 | return selectCast(I, ISD::FP_TO_SINT); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1542 | case Instruction::ZExt: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1543 | return selectCast(I, ISD::ZERO_EXTEND); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1544 | case Instruction::SExt: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1545 | return selectCast(I, ISD::SIGN_EXTEND); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1546 | case Instruction::Trunc: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1547 | return selectCast(I, ISD::TRUNCATE); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1548 | case Instruction::SIToFP: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1549 | return selectCast(I, ISD::SINT_TO_FP); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1550 | |
| 1551 | case Instruction::IntToPtr: // Deliberate fall-through. |
| 1552 | case Instruction::PtrToInt: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1553 | EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); |
| 1554 | EVT DstVT = TLI.getValueType(I->getType()); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1555 | if (DstVT.bitsGT(SrcVT)) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1556 | return selectCast(I, ISD::ZERO_EXTEND); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1557 | if (DstVT.bitsLT(SrcVT)) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1558 | return selectCast(I, ISD::TRUNCATE); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1559 | unsigned Reg = getRegForValue(I->getOperand(0)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1560 | if (!Reg) |
| 1561 | return false; |
| 1562 | updateValueMap(I, Reg); |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1563 | return true; |
| 1564 | } |
Dan Gohman | d57dd5f | 2008-09-23 21:53:34 +0000 | [diff] [blame] | 1565 | |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1566 | case Instruction::ExtractValue: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1567 | return selectExtractValue(I); |
Eli Friedman | 2586b8f | 2011-05-16 20:27:46 +0000 | [diff] [blame] | 1568 | |
Dan Gohman | ba5be5c | 2010-04-20 15:00:41 +0000 | [diff] [blame] | 1569 | case Instruction::PHI: |
| 1570 | llvm_unreachable("FastISel shouldn't visit PHI nodes!"); |
| 1571 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 1572 | default: |
| 1573 | // Unhandled instruction. Halt "fast" selection and bail. |
| 1574 | return false; |
| 1575 | } |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1576 | } |
| 1577 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1578 | FastISel::FastISel(FunctionLoweringInfo &FuncInfo, |
| 1579 | const TargetLibraryInfo *LibInfo, |
| 1580 | bool SkipTargetIndependentISel) |
| 1581 | : FuncInfo(FuncInfo), MF(FuncInfo.MF), MRI(FuncInfo.MF->getRegInfo()), |
| 1582 | MFI(*FuncInfo.MF->getFrameInfo()), MCP(*FuncInfo.MF->getConstantPool()), |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1583 | TM(FuncInfo.MF->getTarget()), DL(*TM.getDataLayout()), |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1584 | TII(*MF->getSubtarget().getInstrInfo()), |
| 1585 | TLI(*MF->getSubtarget().getTargetLowering()), |
| 1586 | TRI(*MF->getSubtarget().getRegisterInfo()), LibInfo(LibInfo), |
| 1587 | SkipTargetIndependentISel(SkipTargetIndependentISel) {} |
Dan Gohman | bb46633 | 2008-08-20 21:05:57 +0000 | [diff] [blame] | 1588 | |
Dan Gohman | e285a74 | 2008-08-14 21:51:29 +0000 | [diff] [blame] | 1589 | FastISel::~FastISel() {} |
| 1590 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1591 | bool FastISel::fastLowerArguments() { return false; } |
| 1592 | |
| 1593 | bool FastISel::fastLowerCall(CallLoweringInfo & /*CLI*/) { return false; } |
| 1594 | |
| 1595 | bool FastISel::fastLowerIntrinsicCall(const IntrinsicInst * /*II*/) { |
Evan Cheng | 092e5e7 | 2013-02-11 01:27:15 +0000 | [diff] [blame] | 1596 | return false; |
| 1597 | } |
| 1598 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1599 | unsigned FastISel::fastEmit_(MVT, MVT, unsigned) { return 0; } |
| 1600 | |
| 1601 | unsigned FastISel::fastEmit_r(MVT, MVT, unsigned, unsigned /*Op0*/, |
| 1602 | bool /*Op0IsKill*/) { |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1603 | return 0; |
| 1604 | } |
| 1605 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1606 | unsigned FastISel::fastEmit_rr(MVT, MVT, unsigned, unsigned /*Op0*/, |
| 1607 | bool /*Op0IsKill*/, unsigned /*Op1*/, |
| 1608 | bool /*Op1IsKill*/) { |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1609 | return 0; |
| 1610 | } |
| 1611 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1612 | unsigned FastISel::fastEmit_i(MVT, MVT, unsigned, uint64_t /*Imm*/) { |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1613 | return 0; |
| 1614 | } |
| 1615 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1616 | unsigned FastISel::fastEmit_f(MVT, MVT, unsigned, |
| 1617 | const ConstantFP * /*FPImm*/) { |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 1618 | return 0; |
| 1619 | } |
| 1620 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1621 | unsigned FastISel::fastEmit_ri(MVT, MVT, unsigned, unsigned /*Op0*/, |
| 1622 | bool /*Op0IsKill*/, uint64_t /*Imm*/) { |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 1623 | return 0; |
| 1624 | } |
| 1625 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1626 | unsigned FastISel::fastEmit_rf(MVT, MVT, unsigned, unsigned /*Op0*/, |
| 1627 | bool /*Op0IsKill*/, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 1628 | const ConstantFP * /*FPImm*/) { |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 1629 | return 0; |
| 1630 | } |
| 1631 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1632 | unsigned FastISel::fastEmit_rri(MVT, MVT, unsigned, unsigned /*Op0*/, |
| 1633 | bool /*Op0IsKill*/, unsigned /*Op1*/, |
| 1634 | bool /*Op1IsKill*/, uint64_t /*Imm*/) { |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 1635 | return 0; |
| 1636 | } |
| 1637 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1638 | /// This method is a wrapper of fastEmit_ri. It first tries to emit an |
| 1639 | /// instruction with an immediate operand using fastEmit_ri. |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 1640 | /// If that fails, it materializes the immediate into a register and try |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1641 | /// fastEmit_rr instead. |
| 1642 | unsigned FastISel::fastEmit_ri_(MVT VT, unsigned Opcode, unsigned Op0, |
| 1643 | bool Op0IsKill, uint64_t Imm, MVT ImmType) { |
Chris Lattner | 602fc06 | 2011-04-17 20:23:29 +0000 | [diff] [blame] | 1644 | // If this is a multiply by a power of two, emit this as a shift left. |
| 1645 | if (Opcode == ISD::MUL && isPowerOf2_64(Imm)) { |
| 1646 | Opcode = ISD::SHL; |
| 1647 | Imm = Log2_64(Imm); |
Chris Lattner | 090ca91 | 2011-04-18 06:55:51 +0000 | [diff] [blame] | 1648 | } else if (Opcode == ISD::UDIV && isPowerOf2_64(Imm)) { |
| 1649 | // div x, 8 -> srl x, 3 |
| 1650 | Opcode = ISD::SRL; |
| 1651 | Imm = Log2_64(Imm); |
Chris Lattner | 602fc06 | 2011-04-17 20:23:29 +0000 | [diff] [blame] | 1652 | } |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 1653 | |
Chris Lattner | 602fc06 | 2011-04-17 20:23:29 +0000 | [diff] [blame] | 1654 | // Horrible hack (to be removed), check to make sure shift amounts are |
| 1655 | // in-range. |
| 1656 | if ((Opcode == ISD::SHL || Opcode == ISD::SRA || Opcode == ISD::SRL) && |
| 1657 | Imm >= VT.getSizeInBits()) |
| 1658 | return 0; |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 1659 | |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 1660 | // First check if immediate type is legal. If not, we can't use the ri form. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1661 | unsigned ResultReg = fastEmit_ri(VT, VT, Opcode, Op0, Op0IsKill, Imm); |
| 1662 | if (ResultReg) |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 1663 | return ResultReg; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1664 | unsigned MaterialReg = fastEmit_i(ImmType, ImmType, ISD::Constant, Imm); |
| 1665 | if (!MaterialReg) { |
Eli Friedman | b2b03fc | 2011-04-29 23:34:52 +0000 | [diff] [blame] | 1666 | // This is a bit ugly/slow, but failing here means falling out of |
| 1667 | // fast-isel, which would be very slow. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1668 | IntegerType *ITy = |
| 1669 | IntegerType::get(FuncInfo.Fn->getContext(), VT.getSizeInBits()); |
Eli Friedman | b2b03fc | 2011-04-29 23:34:52 +0000 | [diff] [blame] | 1670 | MaterialReg = getRegForValue(ConstantInt::get(ITy, Imm)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1671 | if (!MaterialReg) |
| 1672 | return 0; |
Eli Friedman | b2b03fc | 2011-04-29 23:34:52 +0000 | [diff] [blame] | 1673 | } |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1674 | return fastEmit_rr(VT, VT, Opcode, Op0, Op0IsKill, MaterialReg, |
| 1675 | /*IsKill=*/true); |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1676 | } |
| 1677 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1678 | unsigned FastISel::createResultReg(const TargetRegisterClass *RC) { |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1679 | return MRI.createVirtualRegister(RC); |
Evan Cheng | 83785c8 | 2008-08-20 22:45:34 +0000 | [diff] [blame] | 1680 | } |
| 1681 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1682 | unsigned FastISel::constrainOperandRegClass(const MCInstrDesc &II, unsigned Op, |
| 1683 | unsigned OpNum) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1684 | if (TargetRegisterInfo::isVirtualRegister(Op)) { |
| 1685 | const TargetRegisterClass *RegClass = |
| 1686 | TII.getRegClass(II, OpNum, &TRI, *FuncInfo.MF); |
| 1687 | if (!MRI.constrainRegClass(Op, RegClass)) { |
| 1688 | // If it's not legal to COPY between the register classes, something |
| 1689 | // has gone very wrong before we got here. |
| 1690 | unsigned NewOp = createResultReg(RegClass); |
| 1691 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1692 | TII.get(TargetOpcode::COPY), NewOp).addReg(Op); |
| 1693 | return NewOp; |
| 1694 | } |
| 1695 | } |
| 1696 | return Op; |
| 1697 | } |
| 1698 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1699 | unsigned FastISel::fastEmitInst_(unsigned MachineInstOpcode, |
| 1700 | const TargetRegisterClass *RC) { |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1701 | unsigned ResultReg = createResultReg(RC); |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1702 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1703 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1704 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg); |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1705 | return ResultReg; |
| 1706 | } |
| 1707 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1708 | unsigned FastISel::fastEmitInst_r(unsigned MachineInstOpcode, |
| 1709 | const TargetRegisterClass *RC, unsigned Op0, |
| 1710 | bool Op0IsKill) { |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1711 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1712 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1713 | unsigned ResultReg = createResultReg(RC); |
| 1714 | Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); |
| 1715 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1716 | if (II.getNumDefs() >= 1) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1717 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1718 | .addReg(Op0, getKillRegState(Op0IsKill)); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1719 | else { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1720 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1721 | .addReg(Op0, getKillRegState(Op0IsKill)); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1722 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1723 | TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1724 | } |
| 1725 | |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1726 | return ResultReg; |
| 1727 | } |
| 1728 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1729 | unsigned FastISel::fastEmitInst_rr(unsigned MachineInstOpcode, |
| 1730 | const TargetRegisterClass *RC, unsigned Op0, |
| 1731 | bool Op0IsKill, unsigned Op1, |
| 1732 | bool Op1IsKill) { |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1733 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1734 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1735 | unsigned ResultReg = createResultReg(RC); |
| 1736 | Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); |
| 1737 | Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1); |
| 1738 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1739 | if (II.getNumDefs() >= 1) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1740 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1741 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1742 | .addReg(Op1, getKillRegState(Op1IsKill)); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1743 | else { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1744 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1745 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1746 | .addReg(Op1, getKillRegState(Op1IsKill)); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1747 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1748 | TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1749 | } |
Dan Gohman | b0cf29c | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1750 | return ResultReg; |
| 1751 | } |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1752 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1753 | unsigned FastISel::fastEmitInst_rrr(unsigned MachineInstOpcode, |
| 1754 | const TargetRegisterClass *RC, unsigned Op0, |
| 1755 | bool Op0IsKill, unsigned Op1, |
| 1756 | bool Op1IsKill, unsigned Op2, |
| 1757 | bool Op2IsKill) { |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1758 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
Owen Anderson | d71867a | 2011-05-05 17:59:04 +0000 | [diff] [blame] | 1759 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1760 | unsigned ResultReg = createResultReg(RC); |
| 1761 | Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); |
| 1762 | Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1); |
| 1763 | Op2 = constrainOperandRegClass(II, Op2, II.getNumDefs() + 2); |
| 1764 | |
Owen Anderson | d71867a | 2011-05-05 17:59:04 +0000 | [diff] [blame] | 1765 | if (II.getNumDefs() >= 1) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1766 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1767 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1768 | .addReg(Op1, getKillRegState(Op1IsKill)) |
| 1769 | .addReg(Op2, getKillRegState(Op2IsKill)); |
Owen Anderson | d71867a | 2011-05-05 17:59:04 +0000 | [diff] [blame] | 1770 | else { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1771 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1772 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1773 | .addReg(Op1, getKillRegState(Op1IsKill)) |
| 1774 | .addReg(Op2, getKillRegState(Op2IsKill)); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1775 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1776 | TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); |
Owen Anderson | d71867a | 2011-05-05 17:59:04 +0000 | [diff] [blame] | 1777 | } |
| 1778 | return ResultReg; |
| 1779 | } |
| 1780 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1781 | unsigned FastISel::fastEmitInst_ri(unsigned MachineInstOpcode, |
| 1782 | const TargetRegisterClass *RC, unsigned Op0, |
| 1783 | bool Op0IsKill, uint64_t Imm) { |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1784 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
Owen Anderson | 2ce5bf1 | 2011-03-11 21:33:55 +0000 | [diff] [blame] | 1785 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1786 | unsigned ResultReg = createResultReg(RC); |
| 1787 | Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); |
| 1788 | |
Owen Anderson | 2ce5bf1 | 2011-03-11 21:33:55 +0000 | [diff] [blame] | 1789 | if (II.getNumDefs() >= 1) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1790 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1791 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1792 | .addImm(Imm); |
Owen Anderson | 2ce5bf1 | 2011-03-11 21:33:55 +0000 | [diff] [blame] | 1793 | else { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1794 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1795 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1796 | .addImm(Imm); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1797 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1798 | TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); |
Owen Anderson | 2ce5bf1 | 2011-03-11 21:33:55 +0000 | [diff] [blame] | 1799 | } |
| 1800 | return ResultReg; |
| 1801 | } |
| 1802 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1803 | unsigned FastISel::fastEmitInst_rii(unsigned MachineInstOpcode, |
| 1804 | const TargetRegisterClass *RC, unsigned Op0, |
| 1805 | bool Op0IsKill, uint64_t Imm1, |
| 1806 | uint64_t Imm2) { |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1807 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 1808 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1809 | unsigned ResultReg = createResultReg(RC); |
| 1810 | Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); |
| 1811 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1812 | if (II.getNumDefs() >= 1) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1813 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1814 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1815 | .addImm(Imm1) |
| 1816 | .addImm(Imm2); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1817 | else { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1818 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1819 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1820 | .addImm(Imm1) |
| 1821 | .addImm(Imm2); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1822 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1823 | TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1824 | } |
Dan Gohman | 10df0fa | 2008-08-27 01:09:54 +0000 | [diff] [blame] | 1825 | return ResultReg; |
| 1826 | } |
| 1827 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1828 | unsigned FastISel::fastEmitInst_rf(unsigned MachineInstOpcode, |
| 1829 | const TargetRegisterClass *RC, unsigned Op0, |
| 1830 | bool Op0IsKill, const ConstantFP *FPImm) { |
| 1831 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
| 1832 | |
| 1833 | unsigned ResultReg = createResultReg(RC); |
| 1834 | Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); |
| 1835 | |
| 1836 | if (II.getNumDefs() >= 1) |
| 1837 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
| 1838 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1839 | .addFPImm(FPImm); |
| 1840 | else { |
| 1841 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
| 1842 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1843 | .addFPImm(FPImm); |
| 1844 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1845 | TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); |
| 1846 | } |
| 1847 | return ResultReg; |
| 1848 | } |
| 1849 | |
| 1850 | unsigned FastISel::fastEmitInst_rri(unsigned MachineInstOpcode, |
| 1851 | const TargetRegisterClass *RC, unsigned Op0, |
| 1852 | bool Op0IsKill, unsigned Op1, |
| 1853 | bool Op1IsKill, uint64_t Imm) { |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1854 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1855 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1856 | unsigned ResultReg = createResultReg(RC); |
| 1857 | Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); |
| 1858 | Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1); |
| 1859 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1860 | if (II.getNumDefs() >= 1) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1861 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1862 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1863 | .addReg(Op1, getKillRegState(Op1IsKill)) |
| 1864 | .addImm(Imm); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1865 | else { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1866 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1867 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1868 | .addReg(Op1, getKillRegState(Op1IsKill)) |
| 1869 | .addImm(Imm); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1870 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1871 | TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1872 | } |
Dan Gohman | d5fe57d | 2008-08-21 01:41:07 +0000 | [diff] [blame] | 1873 | return ResultReg; |
| 1874 | } |
Owen Anderson | 6d0c25e | 2008-08-25 20:20:32 +0000 | [diff] [blame] | 1875 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1876 | unsigned FastISel::fastEmitInst_rrii(unsigned MachineInstOpcode, |
Manman Ren | 68f2557 | 2012-06-01 19:33:18 +0000 | [diff] [blame] | 1877 | const TargetRegisterClass *RC, |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1878 | unsigned Op0, bool Op0IsKill, unsigned Op1, |
| 1879 | bool Op1IsKill, uint64_t Imm1, |
| 1880 | uint64_t Imm2) { |
Manman Ren | 68f2557 | 2012-06-01 19:33:18 +0000 | [diff] [blame] | 1881 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
| 1882 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1883 | unsigned ResultReg = createResultReg(RC); |
| 1884 | Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); |
| 1885 | Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1); |
| 1886 | |
Manman Ren | 68f2557 | 2012-06-01 19:33:18 +0000 | [diff] [blame] | 1887 | if (II.getNumDefs() >= 1) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1888 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1889 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1890 | .addReg(Op1, getKillRegState(Op1IsKill)) |
| 1891 | .addImm(Imm1) |
| 1892 | .addImm(Imm2); |
Manman Ren | 68f2557 | 2012-06-01 19:33:18 +0000 | [diff] [blame] | 1893 | else { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1894 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1895 | .addReg(Op0, getKillRegState(Op0IsKill)) |
| 1896 | .addReg(Op1, getKillRegState(Op1IsKill)) |
| 1897 | .addImm(Imm1) |
| 1898 | .addImm(Imm2); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1899 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1900 | TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); |
Manman Ren | 68f2557 | 2012-06-01 19:33:18 +0000 | [diff] [blame] | 1901 | } |
| 1902 | return ResultReg; |
| 1903 | } |
| 1904 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1905 | unsigned FastISel::fastEmitInst_i(unsigned MachineInstOpcode, |
| 1906 | const TargetRegisterClass *RC, uint64_t Imm) { |
Owen Anderson | 6d0c25e | 2008-08-25 20:20:32 +0000 | [diff] [blame] | 1907 | unsigned ResultReg = createResultReg(RC); |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1908 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1909 | |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1910 | if (II.getNumDefs() >= 1) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1911 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
| 1912 | .addImm(Imm); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1913 | else { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1914 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II).addImm(Imm); |
| 1915 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1916 | TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); |
Evan Cheng | 5960e4e | 2008-09-08 08:38:20 +0000 | [diff] [blame] | 1917 | } |
Owen Anderson | 6d0c25e | 2008-08-25 20:20:32 +0000 | [diff] [blame] | 1918 | return ResultReg; |
Evan Cheng | b41aec5 | 2008-08-25 22:20:39 +0000 | [diff] [blame] | 1919 | } |
Owen Anderson | 8970f00 | 2008-08-27 22:30:02 +0000 | [diff] [blame] | 1920 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1921 | unsigned FastISel::fastEmitInst_ii(unsigned MachineInstOpcode, |
| 1922 | const TargetRegisterClass *RC, uint64_t Imm1, |
| 1923 | uint64_t Imm2) { |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 1924 | unsigned ResultReg = createResultReg(RC); |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1925 | const MCInstrDesc &II = TII.get(MachineInstOpcode); |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 1926 | |
| 1927 | if (II.getNumDefs() >= 1) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1928 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1929 | .addImm(Imm1) |
| 1930 | .addImm(Imm2); |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 1931 | else { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1932 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II).addImm(Imm1) |
| 1933 | .addImm(Imm2); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1934 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, |
| 1935 | TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); |
Owen Anderson | d74ea77 | 2011-04-22 23:38:06 +0000 | [diff] [blame] | 1936 | } |
| 1937 | return ResultReg; |
| 1938 | } |
| 1939 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1940 | unsigned FastISel::fastEmitInst_extractsubreg(MVT RetVT, unsigned Op0, |
| 1941 | bool Op0IsKill, uint32_t Idx) { |
Evan Cheng | 536ab13 | 2009-01-22 09:10:11 +0000 | [diff] [blame] | 1942 | unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT)); |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 1943 | assert(TargetRegisterInfo::isVirtualRegister(Op0) && |
| 1944 | "Cannot yet extract from physregs"); |
Jakob Stoklund Olesen | ee0d5d4 | 2012-05-20 06:38:37 +0000 | [diff] [blame] | 1945 | const TargetRegisterClass *RC = MRI.getRegClass(Op0); |
| 1946 | MRI.constrainRegClass(Op0, TRI.getSubClassWithSubReg(RC, Idx)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1947 | BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY), |
| 1948 | ResultReg).addReg(Op0, getKillRegState(Op0IsKill), Idx); |
Owen Anderson | 8970f00 | 2008-08-27 22:30:02 +0000 | [diff] [blame] | 1949 | return ResultReg; |
| 1950 | } |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 1951 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1952 | /// Emit MachineInstrs to compute the value of Op with all but the least |
| 1953 | /// significant bit set to zero. |
| 1954 | unsigned FastISel::fastEmitZExtFromI1(MVT VT, unsigned Op0, bool Op0IsKill) { |
| 1955 | return fastEmit_ri(VT, VT, ISD::AND, Op0, Op0IsKill, 1); |
Dan Gohman | 14ea1ec | 2009-03-13 20:42:20 +0000 | [diff] [blame] | 1956 | } |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1957 | |
| 1958 | /// HandlePHINodesInSuccessorBlocks - Handle PHI nodes in successor blocks. |
| 1959 | /// Emit code to ensure constants are copied into registers when needed. |
| 1960 | /// Remember the virtual registers that need to be added to the Machine PHI |
| 1961 | /// nodes as input. We cannot just directly add them, because expansion |
| 1962 | /// might result in multiple MBB's for one BB. As such, the start of the |
| 1963 | /// BB might correspond to a different MBB than the end. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1964 | bool FastISel::handlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) { |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1965 | const TerminatorInst *TI = LLVMBB->getTerminator(); |
| 1966 | |
| 1967 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1968 | FuncInfo.OrigNumPHINodesToUpdate = FuncInfo.PHINodesToUpdate.size(); |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1969 | |
| 1970 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 1971 | // from this block. |
| 1972 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 1973 | const BasicBlock *SuccBB = TI->getSuccessor(succ); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1974 | if (!isa<PHINode>(SuccBB->begin())) |
| 1975 | continue; |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 1976 | MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB]; |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1977 | |
| 1978 | // If this terminator has multiple identical successors (common for |
| 1979 | // switches), only handle each succ once. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1980 | if (!SuccsHandled.insert(SuccMBB).second) |
| 1981 | continue; |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1982 | |
| 1983 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 1984 | |
| 1985 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 1986 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 1987 | // emitted yet. |
| 1988 | for (BasicBlock::const_iterator I = SuccBB->begin(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1989 | const auto *PN = dyn_cast<PHINode>(I); ++I) { |
Dan Gohman | fb95f89 | 2010-05-07 01:10:20 +0000 | [diff] [blame] | 1990 | |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1991 | // Ignore dead phi's. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1992 | if (PN->use_empty()) |
| 1993 | continue; |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 1994 | |
| 1995 | // Only handle legal types. Two interesting things to note here. First, |
| 1996 | // by bailing out early, we may leave behind some dead instructions, |
| 1997 | // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its |
Chris Lattner | 7a2bdde | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 1998 | // own moves. Second, this check is necessary because FastISel doesn't |
Dan Gohman | 89496d0 | 2010-07-02 00:10:16 +0000 | [diff] [blame] | 1999 | // use CreateRegs to create registers, so it always creates |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 2000 | // exactly one register for each non-void instruction. |
| 2001 | EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true); |
| 2002 | if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { |
Chad Rosier | 2f2d1d7 | 2012-02-04 00:39:19 +0000 | [diff] [blame] | 2003 | // Handle integer promotions, though, because they're common and easy. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2004 | if (!(VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)) { |
| 2005 | FuncInfo.PHINodesToUpdate.resize(FuncInfo.OrigNumPHINodesToUpdate); |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 2006 | return false; |
| 2007 | } |
| 2008 | } |
| 2009 | |
| 2010 | const Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 2011 | |
Dan Gohman | fb95f89 | 2010-05-07 01:10:20 +0000 | [diff] [blame] | 2012 | // Set the DebugLoc for the copy. Prefer the location of the operand |
| 2013 | // if there is one; use the location of the PHI otherwise. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2014 | DbgLoc = PN->getDebugLoc(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2015 | if (const auto *Inst = dyn_cast<Instruction>(PHIOp)) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2016 | DbgLoc = Inst->getDebugLoc(); |
Dan Gohman | fb95f89 | 2010-05-07 01:10:20 +0000 | [diff] [blame] | 2017 | |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 2018 | unsigned Reg = getRegForValue(PHIOp); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2019 | if (!Reg) { |
| 2020 | FuncInfo.PHINodesToUpdate.resize(FuncInfo.OrigNumPHINodesToUpdate); |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 2021 | return false; |
| 2022 | } |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 2023 | FuncInfo.PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg)); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2024 | DbgLoc = DebugLoc(); |
Dan Gohman | f81eca0 | 2010-04-22 20:46:50 +0000 | [diff] [blame] | 2025 | } |
| 2026 | } |
| 2027 | |
| 2028 | return true; |
| 2029 | } |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2030 | |
| 2031 | bool FastISel::tryToFoldLoad(const LoadInst *LI, const Instruction *FoldInst) { |
Eli Bendersky | 462123f | 2013-04-19 23:26:18 +0000 | [diff] [blame] | 2032 | assert(LI->hasOneUse() && |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2033 | "tryToFoldLoad expected a LoadInst with a single use"); |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2034 | // We know that the load has a single use, but don't know what it is. If it |
| 2035 | // isn't one of the folded instructions, then we can't succeed here. Handle |
| 2036 | // this by scanning the single-use users of the load until we get to FoldInst. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2037 | unsigned MaxUsers = 6; // Don't scan down huge single-use chains of instrs. |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2038 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2039 | const Instruction *TheUser = LI->user_back(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2040 | while (TheUser != FoldInst && // Scan up until we find FoldInst. |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2041 | // Stay in the right block. |
| 2042 | TheUser->getParent() == FoldInst->getParent() && |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2043 | --MaxUsers) { // Don't scan too far. |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2044 | // If there are multiple or no uses of this instruction, then bail out. |
| 2045 | if (!TheUser->hasOneUse()) |
| 2046 | return false; |
| 2047 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2048 | TheUser = TheUser->user_back(); |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2049 | } |
| 2050 | |
| 2051 | // If we didn't find the fold instruction, then we failed to collapse the |
| 2052 | // sequence. |
| 2053 | if (TheUser != FoldInst) |
| 2054 | return false; |
| 2055 | |
| 2056 | // Don't try to fold volatile loads. Target has to deal with alignment |
| 2057 | // constraints. |
Eli Bendersky | 462123f | 2013-04-19 23:26:18 +0000 | [diff] [blame] | 2058 | if (LI->isVolatile()) |
| 2059 | return false; |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2060 | |
| 2061 | // Figure out which vreg this is going into. If there is no assigned vreg yet |
| 2062 | // then there actually was no reference to it. Perhaps the load is referenced |
| 2063 | // by a dead instruction. |
| 2064 | unsigned LoadReg = getRegForValue(LI); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2065 | if (!LoadReg) |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2066 | return false; |
| 2067 | |
Eli Bendersky | 462123f | 2013-04-19 23:26:18 +0000 | [diff] [blame] | 2068 | // We can't fold if this vreg has no uses or more than one use. Multiple uses |
| 2069 | // may mean that the instruction got lowered to multiple MIs, or the use of |
| 2070 | // the loaded value ended up being multiple operands of the result. |
| 2071 | if (!MRI.hasOneUse(LoadReg)) |
| 2072 | return false; |
| 2073 | |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2074 | MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(LoadReg); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2075 | MachineInstr *User = RI->getParent(); |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2076 | |
| 2077 | // Set the insertion point properly. Folding the load can cause generation of |
Eli Bendersky | 462123f | 2013-04-19 23:26:18 +0000 | [diff] [blame] | 2078 | // other random instructions (like sign extends) for addressing modes; make |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2079 | // sure they get inserted in a logical place before the new instruction. |
| 2080 | FuncInfo.InsertPt = User; |
| 2081 | FuncInfo.MBB = User->getParent(); |
| 2082 | |
| 2083 | // Ask the target to try folding the load. |
| 2084 | return tryToFoldLoadIntoMI(User, RI.getOperandNo(), LI); |
| 2085 | } |
| 2086 | |
Bob Wilson | cc70523 | 2013-11-15 19:09:27 +0000 | [diff] [blame] | 2087 | bool FastISel::canFoldAddIntoGEP(const User *GEP, const Value *Add) { |
| 2088 | // Must be an add. |
| 2089 | if (!isa<AddOperator>(Add)) |
| 2090 | return false; |
| 2091 | // Type size needs to match. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2092 | if (DL.getTypeSizeInBits(GEP->getType()) != |
| 2093 | DL.getTypeSizeInBits(Add->getType())) |
Bob Wilson | cc70523 | 2013-11-15 19:09:27 +0000 | [diff] [blame] | 2094 | return false; |
| 2095 | // Must be in the same basic block. |
| 2096 | if (isa<Instruction>(Add) && |
| 2097 | FuncInfo.MBBMap[cast<Instruction>(Add)->getParent()] != FuncInfo.MBB) |
| 2098 | return false; |
| 2099 | // Must have a constant operand. |
| 2100 | return isa<ConstantInt>(cast<AddOperator>(Add)->getOperand(1)); |
| 2101 | } |
Eli Bendersky | 75299e3 | 2013-04-19 22:29:18 +0000 | [diff] [blame] | 2102 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 2103 | MachineMemOperand * |
| 2104 | FastISel::createMachineMemOperandFor(const Instruction *I) const { |
| 2105 | const Value *Ptr; |
| 2106 | Type *ValTy; |
| 2107 | unsigned Alignment; |
| 2108 | unsigned Flags; |
| 2109 | bool IsVolatile; |
| 2110 | |
| 2111 | if (const auto *LI = dyn_cast<LoadInst>(I)) { |
| 2112 | Alignment = LI->getAlignment(); |
| 2113 | IsVolatile = LI->isVolatile(); |
| 2114 | Flags = MachineMemOperand::MOLoad; |
| 2115 | Ptr = LI->getPointerOperand(); |
| 2116 | ValTy = LI->getType(); |
| 2117 | } else if (const auto *SI = dyn_cast<StoreInst>(I)) { |
| 2118 | Alignment = SI->getAlignment(); |
| 2119 | IsVolatile = SI->isVolatile(); |
| 2120 | Flags = MachineMemOperand::MOStore; |
| 2121 | Ptr = SI->getPointerOperand(); |
| 2122 | ValTy = SI->getValueOperand()->getType(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2123 | } else |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 2124 | return nullptr; |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 2125 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2126 | bool IsNonTemporal = I->getMetadata(LLVMContext::MD_nontemporal) != nullptr; |
| 2127 | bool IsInvariant = I->getMetadata(LLVMContext::MD_invariant_load) != nullptr; |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 2128 | const MDNode *Ranges = I->getMetadata(LLVMContext::MD_range); |
| 2129 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2130 | AAMDNodes AAInfo; |
| 2131 | I->getAAMetadata(AAInfo); |
| 2132 | |
| 2133 | if (Alignment == 0) // Ensure that codegen never sees alignment 0. |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 2134 | Alignment = DL.getABITypeAlignment(ValTy); |
| 2135 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2136 | unsigned Size = DL.getTypeStoreSize(ValTy); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 2137 | |
| 2138 | if (IsVolatile) |
| 2139 | Flags |= MachineMemOperand::MOVolatile; |
| 2140 | if (IsNonTemporal) |
| 2141 | Flags |= MachineMemOperand::MONonTemporal; |
| 2142 | if (IsInvariant) |
| 2143 | Flags |= MachineMemOperand::MOInvariant; |
| 2144 | |
| 2145 | return FuncInfo.MF->getMachineMemOperand(MachinePointerInfo(Ptr), Flags, Size, |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2146 | Alignment, AAInfo, Ranges); |
| 2147 | } |
| 2148 | |
| 2149 | CmpInst::Predicate FastISel::optimizeCmpPredicate(const CmpInst *CI) const { |
| 2150 | // If both operands are the same, then try to optimize or fold the cmp. |
| 2151 | CmpInst::Predicate Predicate = CI->getPredicate(); |
| 2152 | if (CI->getOperand(0) != CI->getOperand(1)) |
| 2153 | return Predicate; |
| 2154 | |
| 2155 | switch (Predicate) { |
| 2156 | default: llvm_unreachable("Invalid predicate!"); |
| 2157 | case CmpInst::FCMP_FALSE: Predicate = CmpInst::FCMP_FALSE; break; |
| 2158 | case CmpInst::FCMP_OEQ: Predicate = CmpInst::FCMP_ORD; break; |
| 2159 | case CmpInst::FCMP_OGT: Predicate = CmpInst::FCMP_FALSE; break; |
| 2160 | case CmpInst::FCMP_OGE: Predicate = CmpInst::FCMP_ORD; break; |
| 2161 | case CmpInst::FCMP_OLT: Predicate = CmpInst::FCMP_FALSE; break; |
| 2162 | case CmpInst::FCMP_OLE: Predicate = CmpInst::FCMP_ORD; break; |
| 2163 | case CmpInst::FCMP_ONE: Predicate = CmpInst::FCMP_FALSE; break; |
| 2164 | case CmpInst::FCMP_ORD: Predicate = CmpInst::FCMP_ORD; break; |
| 2165 | case CmpInst::FCMP_UNO: Predicate = CmpInst::FCMP_UNO; break; |
| 2166 | case CmpInst::FCMP_UEQ: Predicate = CmpInst::FCMP_TRUE; break; |
| 2167 | case CmpInst::FCMP_UGT: Predicate = CmpInst::FCMP_UNO; break; |
| 2168 | case CmpInst::FCMP_UGE: Predicate = CmpInst::FCMP_TRUE; break; |
| 2169 | case CmpInst::FCMP_ULT: Predicate = CmpInst::FCMP_UNO; break; |
| 2170 | case CmpInst::FCMP_ULE: Predicate = CmpInst::FCMP_TRUE; break; |
| 2171 | case CmpInst::FCMP_UNE: Predicate = CmpInst::FCMP_UNO; break; |
| 2172 | case CmpInst::FCMP_TRUE: Predicate = CmpInst::FCMP_TRUE; break; |
| 2173 | |
| 2174 | case CmpInst::ICMP_EQ: Predicate = CmpInst::FCMP_TRUE; break; |
| 2175 | case CmpInst::ICMP_NE: Predicate = CmpInst::FCMP_FALSE; break; |
| 2176 | case CmpInst::ICMP_UGT: Predicate = CmpInst::FCMP_FALSE; break; |
| 2177 | case CmpInst::ICMP_UGE: Predicate = CmpInst::FCMP_TRUE; break; |
| 2178 | case CmpInst::ICMP_ULT: Predicate = CmpInst::FCMP_FALSE; break; |
| 2179 | case CmpInst::ICMP_ULE: Predicate = CmpInst::FCMP_TRUE; break; |
| 2180 | case CmpInst::ICMP_SGT: Predicate = CmpInst::FCMP_FALSE; break; |
| 2181 | case CmpInst::ICMP_SGE: Predicate = CmpInst::FCMP_TRUE; break; |
| 2182 | case CmpInst::ICMP_SLT: Predicate = CmpInst::FCMP_FALSE; break; |
| 2183 | case CmpInst::ICMP_SLE: Predicate = CmpInst::FCMP_TRUE; break; |
| 2184 | } |
| 2185 | |
| 2186 | return Predicate; |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 2187 | } |