Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 1 | //===-- FunctionLoweringInfo.cpp ------------------------------------------===// |
| 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 implements routines for translating functions from LLVM IR into |
| 11 | // Machine IR. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Dan Gohman | e784616 | 2010-07-07 16:01:37 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/FunctionLoweringInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/PostOrderIterator.h" |
| 17 | #include "llvm/CodeGen/Analysis.h" |
| 18 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 19 | #include "llvm/CodeGen/MachineFunction.h" |
| 20 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 21 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 22 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 23 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 9a4c9e5 | 2014-03-06 00:46:21 +0000 | [diff] [blame] | 24 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 25 | #include "llvm/IR/DerivedTypes.h" |
| 26 | #include "llvm/IR/Function.h" |
| 27 | #include "llvm/IR/Instructions.h" |
| 28 | #include "llvm/IR/IntrinsicInst.h" |
| 29 | #include "llvm/IR/LLVMContext.h" |
| 30 | #include "llvm/IR/Module.h" |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 31 | #include "llvm/Support/Debug.h" |
| 32 | #include "llvm/Support/ErrorHandling.h" |
| 33 | #include "llvm/Support/MathExtras.h" |
Hans Wennborg | acb842d | 2014-03-05 02:43:26 +0000 | [diff] [blame] | 34 | #include "llvm/Target/TargetFrameLowering.h" |
Chandler Carruth | 9205140 | 2014-03-05 10:30:38 +0000 | [diff] [blame] | 35 | #include "llvm/Target/TargetInstrInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 36 | #include "llvm/Target/TargetLowering.h" |
| 37 | #include "llvm/Target/TargetOptions.h" |
| 38 | #include "llvm/Target/TargetRegisterInfo.h" |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 39 | #include "llvm/Target/TargetSubtargetInfo.h" |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 40 | #include <algorithm> |
| 41 | using namespace llvm; |
| 42 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 43 | #define DEBUG_TYPE "function-lowering-info" |
| 44 | |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 45 | /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by |
| 46 | /// PHI nodes or outside of the basic block that defines it, or used by a |
| 47 | /// switch or atomic instruction, which may expand to multiple basic blocks. |
Dan Gohman | 913c998 | 2010-04-15 04:33:49 +0000 | [diff] [blame] | 48 | static bool isUsedOutsideOfDefiningBlock(const Instruction *I) { |
Dan Gohman | 7c845e4 | 2010-04-20 14:50:13 +0000 | [diff] [blame] | 49 | if (I->use_empty()) return false; |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 50 | if (isa<PHINode>(I)) return true; |
Dan Gohman | 913c998 | 2010-04-15 04:33:49 +0000 | [diff] [blame] | 51 | const BasicBlock *BB = I->getParent(); |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 52 | for (const User *U : I->users()) |
Gabor Greif | 52617fc | 2010-07-09 16:08:33 +0000 | [diff] [blame] | 53 | if (cast<Instruction>(U)->getParent() != BB || isa<PHINode>(U)) |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 54 | return true; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 55 | |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 56 | return false; |
| 57 | } |
| 58 | |
Hans Wennborg | acb842d | 2014-03-05 02:43:26 +0000 | [diff] [blame] | 59 | void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf, |
| 60 | SelectionDAG *DAG) { |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 61 | const TargetLowering *TLI = TM.getSubtargetImpl()->getTargetLowering(); |
Bill Wendling | 0ccf310 | 2013-06-19 20:32:16 +0000 | [diff] [blame] | 62 | |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 63 | Fn = &fn; |
| 64 | MF = &mf; |
| 65 | RegInfo = &MF->getRegInfo(); |
| 66 | |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 67 | // Check whether the function can return without sret-demotion. |
| 68 | SmallVector<ISD::OutputArg, 4> Outs; |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 69 | GetReturnInfo(Fn->getReturnType(), Fn->getAttributes(), Outs, *TLI); |
| 70 | CanLowerReturn = TLI->CanLowerReturn(Fn->getCallingConv(), *MF, |
| 71 | Fn->isVarArg(), |
| 72 | Outs, Fn->getContext()); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 73 | |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 74 | // Initialize the mapping of values to registers. This is only set up for |
| 75 | // instruction values that are used outside of the block that defines |
| 76 | // them. |
Dan Gohman | 913c998 | 2010-04-15 04:33:49 +0000 | [diff] [blame] | 77 | Function::const_iterator BB = Fn->begin(), EB = Fn->end(); |
| 78 | for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
Reid Kleckner | dfbed59 | 2014-01-31 23:45:12 +0000 | [diff] [blame] | 79 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(I)) { |
| 80 | // Don't fold inalloca allocas or other dynamic allocas into the initial |
| 81 | // stack frame allocation, even if they are in the entry block. |
| 82 | if (!AI->isStaticAlloca()) |
| 83 | continue; |
| 84 | |
Dan Gohman | 913c998 | 2010-04-15 04:33:49 +0000 | [diff] [blame] | 85 | if (const ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 86 | Type *Ty = AI->getAllocatedType(); |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 87 | uint64_t TySize = TLI->getDataLayout()->getTypeAllocSize(Ty); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 88 | unsigned Align = |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 89 | std::max((unsigned)TLI->getDataLayout()->getPrefTypeAlignment(Ty), |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 90 | AI->getAlignment()); |
| 91 | |
| 92 | TySize *= CUI->getZExtValue(); // Get total allocated size. |
| 93 | if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects. |
Bill Wendling | 0ff1ef6 | 2010-07-27 01:55:19 +0000 | [diff] [blame] | 94 | |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 95 | StaticAllocaMap[AI] = |
Josh Magee | 22b8ba2 | 2013-12-19 03:17:11 +0000 | [diff] [blame] | 96 | MF->getFrameInfo()->CreateStackObject(TySize, Align, false, AI); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 97 | } |
Reid Kleckner | dfbed59 | 2014-01-31 23:45:12 +0000 | [diff] [blame] | 98 | } |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 99 | |
| 100 | for (; BB != EB; ++BB) |
Eric Christopher | 219d51d | 2012-02-24 01:59:01 +0000 | [diff] [blame] | 101 | for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); |
| 102 | I != E; ++I) { |
Hans Wennborg | acb842d | 2014-03-05 02:43:26 +0000 | [diff] [blame] | 103 | // Look for dynamic allocas. |
| 104 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(I)) { |
| 105 | if (!AI->isStaticAlloca()) { |
| 106 | unsigned Align = std::max( |
| 107 | (unsigned)TLI->getDataLayout()->getPrefTypeAlignment( |
| 108 | AI->getAllocatedType()), |
| 109 | AI->getAlignment()); |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 110 | unsigned StackAlign = |
| 111 | TM.getSubtargetImpl()->getFrameLowering()->getStackAlignment(); |
Hans Wennborg | acb842d | 2014-03-05 02:43:26 +0000 | [diff] [blame] | 112 | if (Align <= StackAlign) |
| 113 | Align = 0; |
| 114 | // Inform the Frame Information that we have variable-sized objects. |
| 115 | MF->getFrameInfo()->CreateVariableSizedObject(Align ? Align : 1, AI); |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | // Look for inline asm that clobbers the SP register. |
| 120 | if (isa<CallInst>(I) || isa<InvokeInst>(I)) { |
| 121 | ImmutableCallSite CS(I); |
Hans Wennborg | 0c72fd2 | 2014-03-05 03:21:23 +0000 | [diff] [blame] | 122 | if (isa<InlineAsm>(CS.getCalledValue())) { |
Hans Wennborg | acb842d | 2014-03-05 02:43:26 +0000 | [diff] [blame] | 123 | unsigned SP = TLI->getStackPointerRegisterToSaveRestore(); |
| 124 | std::vector<TargetLowering::AsmOperandInfo> Ops = |
| 125 | TLI->ParseConstraints(CS); |
| 126 | for (size_t I = 0, E = Ops.size(); I != E; ++I) { |
| 127 | TargetLowering::AsmOperandInfo &Op = Ops[I]; |
| 128 | if (Op.Type == InlineAsm::isClobber) { |
| 129 | // Clobbers don't have SDValue operands, hence SDValue(). |
| 130 | TLI->ComputeConstraintToUse(Op, SDValue(), DAG); |
| 131 | std::pair<unsigned, const TargetRegisterClass*> PhysReg = |
| 132 | TLI->getRegForInlineAsmConstraint(Op.ConstraintCode, |
| 133 | Op.ConstraintVT); |
| 134 | if (PhysReg.first == SP) |
| 135 | MF->getFrameInfo()->setHasInlineAsmWithSPAdjust(true); |
| 136 | } |
| 137 | } |
| 138 | } |
| 139 | } |
| 140 | |
Reid Kleckner | 2d9bb65 | 2014-08-22 21:59:26 +0000 | [diff] [blame] | 141 | // Look for calls to the @llvm.va_start intrinsic. We can omit some |
| 142 | // prologue boilerplate for variadic functions that don't examine their |
| 143 | // arguments. |
| 144 | if (const auto *II = dyn_cast<IntrinsicInst>(I)) { |
| 145 | if (II->getIntrinsicID() == Intrinsic::vastart) |
| 146 | MF->getFrameInfo()->setHasVAStart(true); |
| 147 | } |
| 148 | |
Dan Gohman | 1e936277 | 2010-07-16 17:54:27 +0000 | [diff] [blame] | 149 | // Mark values used outside their block as exported, by allocating |
| 150 | // a virtual register for them. |
Cameron Zwarich | f8b22b3 | 2011-02-22 03:24:52 +0000 | [diff] [blame] | 151 | if (isUsedOutsideOfDefiningBlock(I)) |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 152 | if (!isa<AllocaInst>(I) || |
| 153 | !StaticAllocaMap.count(cast<AllocaInst>(I))) |
| 154 | InitializeRegForValue(I); |
| 155 | |
Dan Gohman | 1e936277 | 2010-07-16 17:54:27 +0000 | [diff] [blame] | 156 | // Collect llvm.dbg.declare information. This is done now instead of |
| 157 | // during the initial isel pass through the IR so that it is done |
| 158 | // in a predictable order. |
| 159 | if (const DbgDeclareInst *DI = dyn_cast<DbgDeclareInst>(I)) { |
| 160 | MachineModuleInfo &MMI = MF->getMMI(); |
Manman Ren | 983a16c | 2013-06-28 05:43:10 +0000 | [diff] [blame] | 161 | DIVariable DIVar(DI->getVariable()); |
| 162 | assert((!DIVar || DIVar.isVariable()) && |
| 163 | "Variable in DbgDeclareInst should be either null or a DIVariable."); |
Dan Gohman | 1e936277 | 2010-07-16 17:54:27 +0000 | [diff] [blame] | 164 | if (MMI.hasDebugInfo() && |
Manman Ren | 983a16c | 2013-06-28 05:43:10 +0000 | [diff] [blame] | 165 | DIVar && |
Dan Gohman | 1e936277 | 2010-07-16 17:54:27 +0000 | [diff] [blame] | 166 | !DI->getDebugLoc().isUnknown()) { |
| 167 | // Don't handle byval struct arguments or VLAs, for example. |
| 168 | // Non-byval arguments are handled here (they refer to the stack |
| 169 | // temporary alloca at this point). |
| 170 | const Value *Address = DI->getAddress(); |
| 171 | if (Address) { |
| 172 | if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address)) |
| 173 | Address = BCI->getOperand(0); |
| 174 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(Address)) { |
| 175 | DenseMap<const AllocaInst *, int>::iterator SI = |
| 176 | StaticAllocaMap.find(AI); |
| 177 | if (SI != StaticAllocaMap.end()) { // Check for VLAs. |
| 178 | int FI = SI->second; |
| 179 | MMI.setVariableDbgInfo(DI->getVariable(), |
| 180 | FI, DI->getDebugLoc()); |
| 181 | } |
| 182 | } |
| 183 | } |
| 184 | } |
| 185 | } |
| 186 | } |
| 187 | |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 188 | // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This |
| 189 | // also creates the initial PHI MachineInstrs, though none of the input |
| 190 | // operands are populated. |
Dan Gohman | f57117d | 2010-04-14 16:30:40 +0000 | [diff] [blame] | 191 | for (BB = Fn->begin(); BB != EB; ++BB) { |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 192 | MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB); |
| 193 | MBBMap[BB] = MBB; |
| 194 | MF->push_back(MBB); |
| 195 | |
| 196 | // Transfer the address-taken flag. This is necessary because there could |
| 197 | // be multiple MachineBasicBlocks corresponding to one BasicBlock, and only |
| 198 | // the first one should be marked. |
| 199 | if (BB->hasAddressTaken()) |
| 200 | MBB->setHasAddressTaken(); |
| 201 | |
| 202 | // Create Machine PHI nodes for LLVM PHI nodes, lowering them as |
| 203 | // appropriate. |
Dan Gohman | 0f055d3 | 2010-04-20 14:46:25 +0000 | [diff] [blame] | 204 | for (BasicBlock::const_iterator I = BB->begin(); |
| 205 | const PHINode *PN = dyn_cast<PHINode>(I); ++I) { |
| 206 | if (PN->use_empty()) continue; |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 207 | |
Rafael Espindola | e53b7d1 | 2011-05-13 15:18:06 +0000 | [diff] [blame] | 208 | // Skip empty types |
| 209 | if (PN->getType()->isEmptyTy()) |
| 210 | continue; |
| 211 | |
Dan Gohman | 7b7f088 | 2010-04-20 14:48:02 +0000 | [diff] [blame] | 212 | DebugLoc DL = PN->getDebugLoc(); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 213 | unsigned PHIReg = ValueMap[PN]; |
| 214 | assert(PHIReg && "PHI node does not have an assigned virtual register!"); |
| 215 | |
| 216 | SmallVector<EVT, 4> ValueVTs; |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 217 | ComputeValueVTs(*TLI, PN->getType(), ValueVTs); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 218 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
| 219 | EVT VT = ValueVTs[vti]; |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 220 | unsigned NumRegisters = TLI->getNumRegisters(Fn->getContext(), VT); |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 221 | const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 222 | for (unsigned i = 0; i != NumRegisters; ++i) |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 223 | BuildMI(MBB, DL, TII->get(TargetOpcode::PHI), PHIReg + i); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 224 | PHIReg += NumRegisters; |
| 225 | } |
| 226 | } |
| 227 | } |
Dan Gohman | 69e8e32 | 2010-04-14 16:32:56 +0000 | [diff] [blame] | 228 | |
| 229 | // Mark landing pad blocks. |
| 230 | for (BB = Fn->begin(); BB != EB; ++BB) |
Dan Gohman | 913c998 | 2010-04-15 04:33:49 +0000 | [diff] [blame] | 231 | if (const InvokeInst *Invoke = dyn_cast<InvokeInst>(BB->getTerminator())) |
Dan Gohman | 69e8e32 | 2010-04-14 16:32:56 +0000 | [diff] [blame] | 232 | MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad(); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | /// clear - Clear out all the function-specific state. This returns this |
| 236 | /// FunctionLoweringInfo to an empty state, ready to be used for a |
| 237 | /// different function. |
| 238 | void FunctionLoweringInfo::clear() { |
Dan Gohman | ad0b3ea | 2010-04-14 17:11:23 +0000 | [diff] [blame] | 239 | assert(CatchInfoFound.size() == CatchInfoLost.size() && |
| 240 | "Not all catch info was assigned to a landing pad!"); |
| 241 | |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 242 | MBBMap.clear(); |
| 243 | ValueMap.clear(); |
| 244 | StaticAllocaMap.clear(); |
| 245 | #ifndef NDEBUG |
| 246 | CatchInfoLost.clear(); |
| 247 | CatchInfoFound.clear(); |
| 248 | #endif |
| 249 | LiveOutRegInfo.clear(); |
Cameron Zwarich | 988faf9 | 2011-02-24 10:00:13 +0000 | [diff] [blame] | 250 | VisitedBBs.clear(); |
Evan Cheng | 6e82245 | 2010-04-28 23:08:54 +0000 | [diff] [blame] | 251 | ArgDbgValues.clear(); |
Devang Patel | 86ec8b3 | 2010-08-31 22:22:42 +0000 | [diff] [blame] | 252 | ByValArgFrameIndexMap.clear(); |
Dan Gohman | d7b5ce3 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 253 | RegFixups.clear(); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 254 | } |
| 255 | |
Dan Gohman | 93f5920 | 2010-07-02 00:10:16 +0000 | [diff] [blame] | 256 | /// CreateReg - Allocate a single virtual register for the given type. |
Patrik Hagglund | 5e6c361 | 2012-12-13 06:34:11 +0000 | [diff] [blame] | 257 | unsigned FunctionLoweringInfo::CreateReg(MVT VT) { |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 258 | return RegInfo->createVirtualRegister( |
| 259 | TM.getSubtargetImpl()->getTargetLowering()->getRegClassFor(VT)); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Dan Gohman | 93f5920 | 2010-07-02 00:10:16 +0000 | [diff] [blame] | 262 | /// CreateRegs - Allocate the appropriate number of virtual registers of |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 263 | /// the correctly promoted or expanded types. Assign these registers |
| 264 | /// consecutive vreg numbers and return the first assigned number. |
| 265 | /// |
| 266 | /// In the case that the given value has struct or array type, this function |
| 267 | /// will assign registers for each member or element. |
| 268 | /// |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 269 | unsigned FunctionLoweringInfo::CreateRegs(Type *Ty) { |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 270 | const TargetLowering *TLI = TM.getSubtargetImpl()->getTargetLowering(); |
Bill Wendling | 0ccf310 | 2013-06-19 20:32:16 +0000 | [diff] [blame] | 271 | |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 272 | SmallVector<EVT, 4> ValueVTs; |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 273 | ComputeValueVTs(*TLI, Ty, ValueVTs); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 274 | |
| 275 | unsigned FirstReg = 0; |
| 276 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 277 | EVT ValueVT = ValueVTs[Value]; |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 278 | MVT RegisterVT = TLI->getRegisterType(Ty->getContext(), ValueVT); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 279 | |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 280 | unsigned NumRegs = TLI->getNumRegisters(Ty->getContext(), ValueVT); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 281 | for (unsigned i = 0; i != NumRegs; ++i) { |
Dan Gohman | 93f5920 | 2010-07-02 00:10:16 +0000 | [diff] [blame] | 282 | unsigned R = CreateReg(RegisterVT); |
Dan Gohman | a3624b6 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 283 | if (!FirstReg) FirstReg = R; |
| 284 | } |
| 285 | } |
| 286 | return FirstReg; |
| 287 | } |
Dan Gohman | ad97b3d | 2009-11-23 17:42:46 +0000 | [diff] [blame] | 288 | |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 289 | /// GetLiveOutRegInfo - Gets LiveOutInfo for a register, returning NULL if the |
| 290 | /// register is a PHI destination and the PHI's LiveOutInfo is not valid. If |
| 291 | /// the register's LiveOutInfo is for a smaller bit width, it is extended to |
| 292 | /// the larger bit width by zero extension. The bit width must be no smaller |
| 293 | /// than the LiveOutInfo's existing bit width. |
| 294 | const FunctionLoweringInfo::LiveOutInfo * |
| 295 | FunctionLoweringInfo::GetLiveOutRegInfo(unsigned Reg, unsigned BitWidth) { |
| 296 | if (!LiveOutRegInfo.inBounds(Reg)) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 297 | return nullptr; |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 298 | |
| 299 | LiveOutInfo *LOI = &LiveOutRegInfo[Reg]; |
| 300 | if (!LOI->IsValid) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 301 | return nullptr; |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 302 | |
Cameron Zwarich | d2f3041 | 2011-02-25 01:10:55 +0000 | [diff] [blame] | 303 | if (BitWidth > LOI->KnownZero.getBitWidth()) { |
Cameron Zwarich | 4c82cd2 | 2011-02-25 01:11:01 +0000 | [diff] [blame] | 304 | LOI->NumSignBits = 1; |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 305 | LOI->KnownZero = LOI->KnownZero.zextOrTrunc(BitWidth); |
| 306 | LOI->KnownOne = LOI->KnownOne.zextOrTrunc(BitWidth); |
| 307 | } |
| 308 | |
| 309 | return LOI; |
| 310 | } |
| 311 | |
| 312 | /// ComputePHILiveOutRegInfo - Compute LiveOutInfo for a PHI's destination |
| 313 | /// register based on the LiveOutInfo of its operands. |
| 314 | void FunctionLoweringInfo::ComputePHILiveOutRegInfo(const PHINode *PN) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 315 | Type *Ty = PN->getType(); |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 316 | if (!Ty->isIntegerTy() || Ty->isVectorTy()) |
| 317 | return; |
| 318 | |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 319 | const TargetLowering *TLI = TM.getSubtargetImpl()->getTargetLowering(); |
Bill Wendling | 0ccf310 | 2013-06-19 20:32:16 +0000 | [diff] [blame] | 320 | |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 321 | SmallVector<EVT, 1> ValueVTs; |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 322 | ComputeValueVTs(*TLI, Ty, ValueVTs); |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 323 | assert(ValueVTs.size() == 1 && |
| 324 | "PHIs with non-vector integer types should have a single VT."); |
| 325 | EVT IntVT = ValueVTs[0]; |
| 326 | |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 327 | if (TLI->getNumRegisters(PN->getContext(), IntVT) != 1) |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 328 | return; |
Bill Wendling | 8db01cb | 2013-06-06 00:11:39 +0000 | [diff] [blame] | 329 | IntVT = TLI->getTypeToTransformTo(PN->getContext(), IntVT); |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 330 | unsigned BitWidth = IntVT.getSizeInBits(); |
| 331 | |
| 332 | unsigned DestReg = ValueMap[PN]; |
| 333 | if (!TargetRegisterInfo::isVirtualRegister(DestReg)) |
| 334 | return; |
| 335 | LiveOutRegInfo.grow(DestReg); |
| 336 | LiveOutInfo &DestLOI = LiveOutRegInfo[DestReg]; |
| 337 | |
| 338 | Value *V = PN->getIncomingValue(0); |
| 339 | if (isa<UndefValue>(V) || isa<ConstantExpr>(V)) { |
| 340 | DestLOI.NumSignBits = 1; |
| 341 | APInt Zero(BitWidth, 0); |
| 342 | DestLOI.KnownZero = Zero; |
| 343 | DestLOI.KnownOne = Zero; |
| 344 | return; |
| 345 | } |
| 346 | |
| 347 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) { |
| 348 | APInt Val = CI->getValue().zextOrTrunc(BitWidth); |
| 349 | DestLOI.NumSignBits = Val.getNumSignBits(); |
| 350 | DestLOI.KnownZero = ~Val; |
| 351 | DestLOI.KnownOne = Val; |
| 352 | } else { |
| 353 | assert(ValueMap.count(V) && "V should have been placed in ValueMap when its" |
| 354 | "CopyToReg node was created."); |
| 355 | unsigned SrcReg = ValueMap[V]; |
| 356 | if (!TargetRegisterInfo::isVirtualRegister(SrcReg)) { |
| 357 | DestLOI.IsValid = false; |
| 358 | return; |
| 359 | } |
| 360 | const LiveOutInfo *SrcLOI = GetLiveOutRegInfo(SrcReg, BitWidth); |
| 361 | if (!SrcLOI) { |
| 362 | DestLOI.IsValid = false; |
| 363 | return; |
| 364 | } |
| 365 | DestLOI = *SrcLOI; |
| 366 | } |
| 367 | |
| 368 | assert(DestLOI.KnownZero.getBitWidth() == BitWidth && |
| 369 | DestLOI.KnownOne.getBitWidth() == BitWidth && |
| 370 | "Masks should have the same bit width as the type."); |
| 371 | |
| 372 | for (unsigned i = 1, e = PN->getNumIncomingValues(); i != e; ++i) { |
| 373 | Value *V = PN->getIncomingValue(i); |
| 374 | if (isa<UndefValue>(V) || isa<ConstantExpr>(V)) { |
| 375 | DestLOI.NumSignBits = 1; |
| 376 | APInt Zero(BitWidth, 0); |
| 377 | DestLOI.KnownZero = Zero; |
| 378 | DestLOI.KnownOne = Zero; |
Eric Christopher | 0713a9d | 2011-06-08 23:55:35 +0000 | [diff] [blame] | 379 | return; |
Cameron Zwarich | a62fc89 | 2011-02-24 10:00:25 +0000 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) { |
| 383 | APInt Val = CI->getValue().zextOrTrunc(BitWidth); |
| 384 | DestLOI.NumSignBits = std::min(DestLOI.NumSignBits, Val.getNumSignBits()); |
| 385 | DestLOI.KnownZero &= ~Val; |
| 386 | DestLOI.KnownOne &= Val; |
| 387 | continue; |
| 388 | } |
| 389 | |
| 390 | assert(ValueMap.count(V) && "V should have been placed in ValueMap when " |
| 391 | "its CopyToReg node was created."); |
| 392 | unsigned SrcReg = ValueMap[V]; |
| 393 | if (!TargetRegisterInfo::isVirtualRegister(SrcReg)) { |
| 394 | DestLOI.IsValid = false; |
| 395 | return; |
| 396 | } |
| 397 | const LiveOutInfo *SrcLOI = GetLiveOutRegInfo(SrcReg, BitWidth); |
| 398 | if (!SrcLOI) { |
| 399 | DestLOI.IsValid = false; |
| 400 | return; |
| 401 | } |
| 402 | DestLOI.NumSignBits = std::min(DestLOI.NumSignBits, SrcLOI->NumSignBits); |
| 403 | DestLOI.KnownZero &= SrcLOI->KnownZero; |
| 404 | DestLOI.KnownOne &= SrcLOI->KnownOne; |
| 405 | } |
| 406 | } |
| 407 | |
Devang Patel | 9d904e1 | 2011-09-08 22:59:09 +0000 | [diff] [blame] | 408 | /// setArgumentFrameIndex - Record frame index for the byval |
Devang Patel | 86ec8b3 | 2010-08-31 22:22:42 +0000 | [diff] [blame] | 409 | /// argument. This overrides previous frame index entry for this argument, |
| 410 | /// if any. |
Devang Patel | 9d904e1 | 2011-09-08 22:59:09 +0000 | [diff] [blame] | 411 | void FunctionLoweringInfo::setArgumentFrameIndex(const Argument *A, |
Eric Christopher | 219d51d | 2012-02-24 01:59:01 +0000 | [diff] [blame] | 412 | int FI) { |
Devang Patel | 86ec8b3 | 2010-08-31 22:22:42 +0000 | [diff] [blame] | 413 | ByValArgFrameIndexMap[A] = FI; |
| 414 | } |
Eric Christopher | 0713a9d | 2011-06-08 23:55:35 +0000 | [diff] [blame] | 415 | |
Devang Patel | 9d904e1 | 2011-09-08 22:59:09 +0000 | [diff] [blame] | 416 | /// getArgumentFrameIndex - Get frame index for the byval argument. |
Devang Patel | 86ec8b3 | 2010-08-31 22:22:42 +0000 | [diff] [blame] | 417 | /// If the argument does not have any assigned frame index then 0 is |
| 418 | /// returned. |
Devang Patel | 9d904e1 | 2011-09-08 22:59:09 +0000 | [diff] [blame] | 419 | int FunctionLoweringInfo::getArgumentFrameIndex(const Argument *A) { |
Eric Christopher | 0713a9d | 2011-06-08 23:55:35 +0000 | [diff] [blame] | 420 | DenseMap<const Argument *, int>::iterator I = |
Devang Patel | 86ec8b3 | 2010-08-31 22:22:42 +0000 | [diff] [blame] | 421 | ByValArgFrameIndexMap.find(A); |
| 422 | if (I != ByValArgFrameIndexMap.end()) |
| 423 | return I->second; |
Eric Christopher | 18c6be7 | 2012-02-23 03:39:43 +0000 | [diff] [blame] | 424 | DEBUG(dbgs() << "Argument does not have assigned frame index!\n"); |
Devang Patel | 86ec8b3 | 2010-08-31 22:22:42 +0000 | [diff] [blame] | 425 | return 0; |
| 426 | } |
| 427 | |
Michael J. Spencer | 8b98bf2 | 2012-02-22 19:06:13 +0000 | [diff] [blame] | 428 | /// ComputeUsesVAFloatArgument - Determine if any floating-point values are |
| 429 | /// being passed to this variadic function, and set the MachineModuleInfo's |
| 430 | /// usesVAFloatArgument flag if so. This flag is used to emit an undefined |
| 431 | /// reference to _fltused on Windows, which will link in MSVCRT's |
| 432 | /// floating-point support. |
| 433 | void llvm::ComputeUsesVAFloatArgument(const CallInst &I, |
| 434 | MachineModuleInfo *MMI) |
| 435 | { |
| 436 | FunctionType *FT = cast<FunctionType>( |
| 437 | I.getCalledValue()->getType()->getContainedType(0)); |
| 438 | if (FT->isVarArg() && !MMI->usesVAFloatArgument()) { |
| 439 | for (unsigned i = 0, e = I.getNumArgOperands(); i != e; ++i) { |
| 440 | Type* T = I.getArgOperand(i)->getType(); |
| 441 | for (po_iterator<Type*> i = po_begin(T), e = po_end(T); |
| 442 | i != e; ++i) { |
| 443 | if (i->isFloatingPointTy()) { |
| 444 | MMI->setUsesVAFloatArgument(true); |
| 445 | return; |
| 446 | } |
| 447 | } |
| 448 | } |
| 449 | } |
| 450 | } |
| 451 | |
Dan Gohman | ad97b3d | 2009-11-23 17:42:46 +0000 | [diff] [blame] | 452 | /// AddCatchInfo - Extract the personality and type infos from an eh.selector |
| 453 | /// call, and add them to the specified machine basic block. |
Dan Gohman | 7deb447 | 2010-04-14 19:53:31 +0000 | [diff] [blame] | 454 | void llvm::AddCatchInfo(const CallInst &I, MachineModuleInfo *MMI, |
Dan Gohman | ad97b3d | 2009-11-23 17:42:46 +0000 | [diff] [blame] | 455 | MachineBasicBlock *MBB) { |
| 456 | // Inform the MachineModuleInfo of the personality for this landing pad. |
Gabor Greif | e4eed70 | 2010-06-25 08:24:59 +0000 | [diff] [blame] | 457 | const ConstantExpr *CE = cast<ConstantExpr>(I.getArgOperand(1)); |
Dan Gohman | ad97b3d | 2009-11-23 17:42:46 +0000 | [diff] [blame] | 458 | assert(CE->getOpcode() == Instruction::BitCast && |
| 459 | isa<Function>(CE->getOperand(0)) && |
| 460 | "Personality should be a function"); |
| 461 | MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0))); |
| 462 | |
| 463 | // Gather all the type infos for this landing pad and pass them along to |
| 464 | // MachineModuleInfo. |
Dan Gohman | bcaf681 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 465 | std::vector<const GlobalVariable *> TyInfo; |
Gabor Greif | 647d9c9 | 2010-06-30 13:45:50 +0000 | [diff] [blame] | 466 | unsigned N = I.getNumArgOperands(); |
Dan Gohman | ad97b3d | 2009-11-23 17:42:46 +0000 | [diff] [blame] | 467 | |
Gabor Greif | 647d9c9 | 2010-06-30 13:45:50 +0000 | [diff] [blame] | 468 | for (unsigned i = N - 1; i > 1; --i) { |
| 469 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(I.getArgOperand(i))) { |
Dan Gohman | ad97b3d | 2009-11-23 17:42:46 +0000 | [diff] [blame] | 470 | unsigned FilterLength = CI->getZExtValue(); |
| 471 | unsigned FirstCatch = i + FilterLength + !FilterLength; |
Gabor Greif | 647d9c9 | 2010-06-30 13:45:50 +0000 | [diff] [blame] | 472 | assert(FirstCatch <= N && "Invalid filter length"); |
Dan Gohman | ad97b3d | 2009-11-23 17:42:46 +0000 | [diff] [blame] | 473 | |
| 474 | if (FirstCatch < N) { |
| 475 | TyInfo.reserve(N - FirstCatch); |
| 476 | for (unsigned j = FirstCatch; j < N; ++j) |
Gabor Greif | 647d9c9 | 2010-06-30 13:45:50 +0000 | [diff] [blame] | 477 | TyInfo.push_back(ExtractTypeInfo(I.getArgOperand(j))); |
Dan Gohman | ad97b3d | 2009-11-23 17:42:46 +0000 | [diff] [blame] | 478 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 479 | TyInfo.clear(); |
| 480 | } |
| 481 | |
| 482 | if (!FilterLength) { |
| 483 | // Cleanup. |
| 484 | MMI->addCleanup(MBB); |
| 485 | } else { |
| 486 | // Filter. |
| 487 | TyInfo.reserve(FilterLength - 1); |
| 488 | for (unsigned j = i + 1; j < FirstCatch; ++j) |
Gabor Greif | 647d9c9 | 2010-06-30 13:45:50 +0000 | [diff] [blame] | 489 | TyInfo.push_back(ExtractTypeInfo(I.getArgOperand(j))); |
Dan Gohman | ad97b3d | 2009-11-23 17:42:46 +0000 | [diff] [blame] | 490 | MMI->addFilterTypeInfo(MBB, TyInfo); |
| 491 | TyInfo.clear(); |
| 492 | } |
| 493 | |
| 494 | N = i; |
| 495 | } |
| 496 | } |
| 497 | |
Gabor Greif | 647d9c9 | 2010-06-30 13:45:50 +0000 | [diff] [blame] | 498 | if (N > 2) { |
| 499 | TyInfo.reserve(N - 2); |
| 500 | for (unsigned j = 2; j < N; ++j) |
| 501 | TyInfo.push_back(ExtractTypeInfo(I.getArgOperand(j))); |
Dan Gohman | ad97b3d | 2009-11-23 17:42:46 +0000 | [diff] [blame] | 502 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 503 | } |
| 504 | } |
| 505 | |
Bill Wendling | 247fd3b | 2011-08-17 21:56:44 +0000 | [diff] [blame] | 506 | /// AddLandingPadInfo - Extract the exception handling information from the |
| 507 | /// landingpad instruction and add them to the specified machine module info. |
| 508 | void llvm::AddLandingPadInfo(const LandingPadInst &I, MachineModuleInfo &MMI, |
| 509 | MachineBasicBlock *MBB) { |
| 510 | MMI.addPersonality(MBB, |
| 511 | cast<Function>(I.getPersonalityFn()->stripPointerCasts())); |
| 512 | |
| 513 | if (I.isCleanup()) |
| 514 | MMI.addCleanup(MBB); |
| 515 | |
| 516 | // FIXME: New EH - Add the clauses in reverse order. This isn't 100% correct, |
| 517 | // but we need to do it this way because of how the DWARF EH emitter |
| 518 | // processes the clauses. |
| 519 | for (unsigned i = I.getNumClauses(); i != 0; --i) { |
| 520 | Value *Val = I.getClause(i - 1); |
| 521 | if (I.isCatch(i - 1)) { |
| 522 | MMI.addCatchTypeInfo(MBB, |
| 523 | dyn_cast<GlobalVariable>(Val->stripPointerCasts())); |
| 524 | } else { |
| 525 | // Add filters in a list. |
| 526 | Constant *CVal = cast<Constant>(Val); |
| 527 | SmallVector<const GlobalVariable*, 4> FilterList; |
| 528 | for (User::op_iterator |
| 529 | II = CVal->op_begin(), IE = CVal->op_end(); II != IE; ++II) |
| 530 | FilterList.push_back(cast<GlobalVariable>((*II)->stripPointerCasts())); |
| 531 | |
| 532 | MMI.addFilterTypeInfo(MBB, FilterList); |
| 533 | } |
| 534 | } |
| 535 | } |