Chris Lattner | 8494d08 | 2002-10-28 01:16:38 +0000 | [diff] [blame] | 1 | //===-- MachineFunction.cpp -----------------------------------------------===// |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 8494d08 | 2002-10-28 01:16:38 +0000 | [diff] [blame] | 10 | // Collect native machine code information for a function. This allows |
| 11 | // target-specific information about the generated code to be stored with each |
| 12 | // function. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
Chris Lattner | eda6bd7 | 2002-02-03 07:54:50 +0000 | [diff] [blame] | 15 | |
David Greene | 8230a93 | 2009-08-19 22:16:11 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/MachineFunction.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/STLExtras.h" |
| 18 | #include "llvm/ADT/SmallString.h" |
| 19 | #include "llvm/Analysis/ConstantFolding.h" |
Chris Lattner | e32fad4 | 2012-01-27 01:47:28 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineConstantPool.h" |
Chris Lattner | a10fff5 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Chris Lattner | a10fff5 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineInstr.h" |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Chris Lattner | 9f53dcd | 2010-04-05 05:49:50 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Chris Lattner | a10fff5 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Chris Lattner | 4cbb97b | 2003-12-20 10:20:58 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/Passes.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 28 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 9a4c9e5 | 2014-03-06 00:46:21 +0000 | [diff] [blame] | 29 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 30 | #include "llvm/IR/Function.h" |
Chris Lattner | 273735b | 2010-01-26 05:58:28 +0000 | [diff] [blame] | 31 | #include "llvm/MC/MCAsmInfo.h" |
| 32 | #include "llvm/MC/MCContext.h" |
David Greene | 6671011 | 2010-01-04 23:39:17 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Debug.h" |
Chris Lattner | bd7286e | 2006-10-03 20:19:23 +0000 | [diff] [blame] | 34 | #include "llvm/Support/GraphWriter.h" |
Chris Lattner | 0c19df4 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 35 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 36 | #include "llvm/Target/TargetFrameLowering.h" |
| 37 | #include "llvm/Target/TargetLowering.h" |
| 38 | #include "llvm/Target/TargetMachine.h" |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 39 | #include "llvm/Target/TargetSubtargetInfo.h" |
Chris Lattner | 9a3478e | 2003-12-20 09:17:07 +0000 | [diff] [blame] | 40 | using namespace llvm; |
Chris Lattner | eda6bd7 | 2002-02-03 07:54:50 +0000 | [diff] [blame] | 41 | |
Chandler Carruth | e96dd89 | 2014-04-21 22:55:11 +0000 | [diff] [blame] | 42 | #define DEBUG_TYPE "codegen" |
| 43 | |
Chris Lattner | 6715952 | 2010-01-26 04:35:26 +0000 | [diff] [blame] | 44 | //===----------------------------------------------------------------------===// |
Chris Lattner | 6d8a6c6 | 2002-10-28 01:12:41 +0000 | [diff] [blame] | 45 | // MachineFunction implementation |
Chris Lattner | 6715952 | 2010-01-26 04:35:26 +0000 | [diff] [blame] | 46 | //===----------------------------------------------------------------------===// |
Chris Lattner | e6074aa | 2005-01-29 18:41:25 +0000 | [diff] [blame] | 47 | |
Chris Lattner | f2471ec | 2009-09-15 22:44:26 +0000 | [diff] [blame] | 48 | // Out of line virtual method. |
| 49 | MachineFunctionInfo::~MachineFunctionInfo() {} |
| 50 | |
Dan Gohman | 804c95d | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 51 | void ilist_traits<MachineBasicBlock>::deleteNode(MachineBasicBlock *MBB) { |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 52 | MBB->getParent()->DeleteMachineBasicBlock(MBB); |
Tanya Lattner | a578cb7 | 2004-05-24 06:11:51 +0000 | [diff] [blame] | 53 | } |
Chris Lattner | 6d8a6c6 | 2002-10-28 01:12:41 +0000 | [diff] [blame] | 54 | |
Dan Gohman | 913c998 | 2010-04-15 04:33:49 +0000 | [diff] [blame] | 55 | MachineFunction::MachineFunction(const Function *F, const TargetMachine &TM, |
Nicolas Geoffray | 3dbe6cc | 2010-10-31 20:38:38 +0000 | [diff] [blame] | 56 | unsigned FunctionNum, MachineModuleInfo &mmi, |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 57 | GCModuleInfo *gmi) |
| 58 | : Fn(F), Target(TM), STI(TM.getSubtargetImpl()), Ctx(mmi.getContext()), |
| 59 | MMI(mmi), GMI(gmi) { |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 60 | if (TM.getSubtargetImpl()->getRegisterInfo()) |
Eric Christopher | ce40dbc | 2014-08-12 08:00:56 +0000 | [diff] [blame^] | 61 | RegInfo = new (Allocator) MachineRegisterInfo(this); |
Matthijs Kooijman | c8d7988 | 2008-10-13 12:37:16 +0000 | [diff] [blame] | 62 | else |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 63 | RegInfo = nullptr; |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 64 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 65 | MFInfo = nullptr; |
Bill Wendling | a5c536e | 2013-08-01 21:42:05 +0000 | [diff] [blame] | 66 | FrameInfo = |
| 67 | new (Allocator) MachineFrameInfo(TM,!F->hasFnAttribute("no-realign-stack")); |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 68 | |
Bill Wendling | 698e84f | 2012-12-30 10:32:01 +0000 | [diff] [blame] | 69 | if (Fn->getAttributes().hasAttribute(AttributeSet::FunctionIndex, |
| 70 | Attribute::StackAlignment)) |
Bill Wendling | 9be7759 | 2012-09-21 15:26:31 +0000 | [diff] [blame] | 71 | FrameInfo->ensureMaxAlignment(Fn->getAttributes(). |
Bill Wendling | 698e84f | 2012-12-30 10:32:01 +0000 | [diff] [blame] | 72 | getStackAlignment(AttributeSet::FunctionIndex)); |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 73 | |
| 74 | ConstantPool = new (Allocator) MachineConstantPool(TM); |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 75 | Alignment = |
| 76 | TM.getSubtargetImpl()->getTargetLowering()->getMinFunctionAlignment(); |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 77 | |
Eli Friedman | 2518f83 | 2011-05-06 20:34:06 +0000 | [diff] [blame] | 78 | // FIXME: Shouldn't use pref alignment if explicit alignment is set on Fn. |
Bill Wendling | 698e84f | 2012-12-30 10:32:01 +0000 | [diff] [blame] | 79 | if (!Fn->getAttributes().hasAttribute(AttributeSet::FunctionIndex, |
| 80 | Attribute::OptimizeForSize)) |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 81 | Alignment = std::max( |
| 82 | Alignment, |
| 83 | TM.getSubtargetImpl()->getTargetLowering()->getPrefFunctionAlignment()); |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 84 | |
Chris Lattner | 6715952 | 2010-01-26 04:35:26 +0000 | [diff] [blame] | 85 | FunctionNumber = FunctionNum; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 86 | JumpTableInfo = nullptr; |
Chris Lattner | 448fb45 | 2002-12-25 05:03:22 +0000 | [diff] [blame] | 87 | } |
| 88 | |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 89 | MachineFunction::~MachineFunction() { |
Jakob Stoklund Olesen | dc5285f | 2013-01-05 05:05:51 +0000 | [diff] [blame] | 90 | // Don't call destructors on MachineInstr and MachineOperand. All of their |
| 91 | // memory comes from the BumpPtrAllocator which is about to be purged. |
| 92 | // |
| 93 | // Do call MachineBasicBlock destructors, it contains std::vectors. |
| 94 | for (iterator I = begin(), E = end(); I != E; I = BasicBlocks.erase(I)) |
| 95 | I->Insts.clearAndLeakNodesUnsafely(); |
| 96 | |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 97 | InstructionRecycler.clear(Allocator); |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 98 | OperandRecycler.clear(Allocator); |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 99 | BasicBlockRecycler.clear(Allocator); |
Bill Wendling | 7f7eb8a | 2009-06-25 00:32:48 +0000 | [diff] [blame] | 100 | if (RegInfo) { |
| 101 | RegInfo->~MachineRegisterInfo(); |
| 102 | Allocator.Deallocate(RegInfo); |
| 103 | } |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 104 | if (MFInfo) { |
Bill Wendling | 7f7eb8a | 2009-06-25 00:32:48 +0000 | [diff] [blame] | 105 | MFInfo->~MachineFunctionInfo(); |
| 106 | Allocator.Deallocate(MFInfo); |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 107 | } |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 108 | |
| 109 | FrameInfo->~MachineFrameInfo(); |
| 110 | Allocator.Deallocate(FrameInfo); |
| 111 | |
| 112 | ConstantPool->~MachineConstantPool(); |
| 113 | Allocator.Deallocate(ConstantPool); |
| 114 | |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 115 | if (JumpTableInfo) { |
| 116 | JumpTableInfo->~MachineJumpTableInfo(); |
| 117 | Allocator.Deallocate(JumpTableInfo); |
| 118 | } |
Chris Lattner | 214808f | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 121 | /// getOrCreateJumpTableInfo - Get the JumpTableInfo for this function, if it |
| 122 | /// does already exist, allocate one. |
| 123 | MachineJumpTableInfo *MachineFunction:: |
| 124 | getOrCreateJumpTableInfo(unsigned EntryKind) { |
| 125 | if (JumpTableInfo) return JumpTableInfo; |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 126 | |
Dan Gohman | 01c65a2 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 127 | JumpTableInfo = new (Allocator) |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 128 | MachineJumpTableInfo((MachineJumpTableInfo::JTEntryKind)EntryKind); |
| 129 | return JumpTableInfo; |
| 130 | } |
Chris Lattner | 64fd948 | 2006-10-03 19:18:57 +0000 | [diff] [blame] | 131 | |
Reid Kleckner | 9c65821 | 2014-04-10 22:58:43 +0000 | [diff] [blame] | 132 | /// Should we be emitting segmented stack stuff for the function |
| 133 | bool MachineFunction::shouldSplitStack() { |
| 134 | return getFunction()->hasFnAttribute("split-stack"); |
| 135 | } |
| 136 | |
Chris Lattner | 64fd948 | 2006-10-03 19:18:57 +0000 | [diff] [blame] | 137 | /// RenumberBlocks - This discards all of the MachineBasicBlock numbers and |
| 138 | /// recomputes them. This guarantees that the MBB numbers are sequential, |
| 139 | /// dense, and match the ordering of the blocks within the function. If a |
| 140 | /// specific MachineBasicBlock is specified, only that block and those after |
| 141 | /// it are renumbered. |
| 142 | void MachineFunction::RenumberBlocks(MachineBasicBlock *MBB) { |
| 143 | if (empty()) { MBBNumbering.clear(); return; } |
| 144 | MachineFunction::iterator MBBI, E = end(); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 145 | if (MBB == nullptr) |
Chris Lattner | 64fd948 | 2006-10-03 19:18:57 +0000 | [diff] [blame] | 146 | MBBI = begin(); |
| 147 | else |
| 148 | MBBI = MBB; |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 149 | |
Chris Lattner | 64fd948 | 2006-10-03 19:18:57 +0000 | [diff] [blame] | 150 | // Figure out the block number this should have. |
| 151 | unsigned BlockNo = 0; |
Chris Lattner | bd7286e | 2006-10-03 20:19:23 +0000 | [diff] [blame] | 152 | if (MBBI != begin()) |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 153 | BlockNo = std::prev(MBBI)->getNumber() + 1; |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 154 | |
Chris Lattner | 64fd948 | 2006-10-03 19:18:57 +0000 | [diff] [blame] | 155 | for (; MBBI != E; ++MBBI, ++BlockNo) { |
| 156 | if (MBBI->getNumber() != (int)BlockNo) { |
| 157 | // Remove use of the old number. |
| 158 | if (MBBI->getNumber() != -1) { |
| 159 | assert(MBBNumbering[MBBI->getNumber()] == &*MBBI && |
| 160 | "MBB number mismatch!"); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 161 | MBBNumbering[MBBI->getNumber()] = nullptr; |
Chris Lattner | 64fd948 | 2006-10-03 19:18:57 +0000 | [diff] [blame] | 162 | } |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 163 | |
Chris Lattner | 64fd948 | 2006-10-03 19:18:57 +0000 | [diff] [blame] | 164 | // If BlockNo is already taken, set that block's number to -1. |
| 165 | if (MBBNumbering[BlockNo]) |
| 166 | MBBNumbering[BlockNo]->setNumber(-1); |
| 167 | |
| 168 | MBBNumbering[BlockNo] = MBBI; |
| 169 | MBBI->setNumber(BlockNo); |
| 170 | } |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 171 | } |
Chris Lattner | 64fd948 | 2006-10-03 19:18:57 +0000 | [diff] [blame] | 172 | |
| 173 | // Okay, all the blocks are renumbered. If we have compactified the block |
| 174 | // numbering, shrink MBBNumbering now. |
| 175 | assert(BlockNo <= MBBNumbering.size() && "Mismatch!"); |
| 176 | MBBNumbering.resize(BlockNo); |
| 177 | } |
| 178 | |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 179 | /// CreateMachineInstr - Allocate a new MachineInstr. Use this instead |
| 180 | /// of `new MachineInstr'. |
| 181 | /// |
| 182 | MachineInstr * |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 183 | MachineFunction::CreateMachineInstr(const MCInstrDesc &MCID, |
Bill Wendling | e3c7836 | 2009-02-03 00:55:04 +0000 | [diff] [blame] | 184 | DebugLoc DL, bool NoImp) { |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 185 | return new (InstructionRecycler.Allocate<MachineInstr>(Allocator)) |
Jakob Stoklund Olesen | ac4210e | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 186 | MachineInstr(*this, MCID, DL, NoImp); |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 187 | } |
Chris Lattner | 64fd948 | 2006-10-03 19:18:57 +0000 | [diff] [blame] | 188 | |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 189 | /// CloneMachineInstr - Create a new MachineInstr which is a copy of the |
Dan Gohman | 4a61882 | 2010-02-10 16:03:48 +0000 | [diff] [blame] | 190 | /// 'Orig' instruction, identical in all ways except the instruction |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 191 | /// has no parent, prev, or next. |
| 192 | /// |
| 193 | MachineInstr * |
| 194 | MachineFunction::CloneMachineInstr(const MachineInstr *Orig) { |
| 195 | return new (InstructionRecycler.Allocate<MachineInstr>(Allocator)) |
| 196 | MachineInstr(*this, *Orig); |
| 197 | } |
| 198 | |
| 199 | /// DeleteMachineInstr - Delete the given MachineInstr. |
| 200 | /// |
Jakob Stoklund Olesen | dc5285f | 2013-01-05 05:05:51 +0000 | [diff] [blame] | 201 | /// This function also serves as the MachineInstr destructor - the real |
| 202 | /// ~MachineInstr() destructor must be empty. |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 203 | void |
| 204 | MachineFunction::DeleteMachineInstr(MachineInstr *MI) { |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 205 | // Strip it for parts. The operand array and the MI object itself are |
| 206 | // independently recyclable. |
| 207 | if (MI->Operands) |
| 208 | deallocateOperandArray(MI->CapOperands, MI->Operands); |
Jakob Stoklund Olesen | dc5285f | 2013-01-05 05:05:51 +0000 | [diff] [blame] | 209 | // Don't call ~MachineInstr() which must be trivial anyway because |
| 210 | // ~MachineFunction drops whole lists of MachineInstrs wihout calling their |
| 211 | // destructors. |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 212 | InstructionRecycler.Deallocate(Allocator, MI); |
| 213 | } |
| 214 | |
| 215 | /// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use this |
| 216 | /// instead of `new MachineBasicBlock'. |
| 217 | /// |
| 218 | MachineBasicBlock * |
| 219 | MachineFunction::CreateMachineBasicBlock(const BasicBlock *bb) { |
| 220 | return new (BasicBlockRecycler.Allocate<MachineBasicBlock>(Allocator)) |
| 221 | MachineBasicBlock(*this, bb); |
| 222 | } |
| 223 | |
| 224 | /// DeleteMachineBasicBlock - Delete the given MachineBasicBlock. |
| 225 | /// |
| 226 | void |
| 227 | MachineFunction::DeleteMachineBasicBlock(MachineBasicBlock *MBB) { |
| 228 | assert(MBB->getParent() == this && "MBB parent mismatch!"); |
| 229 | MBB->~MachineBasicBlock(); |
| 230 | BasicBlockRecycler.Deallocate(Allocator, MBB); |
| 231 | } |
| 232 | |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 233 | MachineMemOperand * |
Chris Lattner | 00ca0b8 | 2010-09-21 04:32:08 +0000 | [diff] [blame] | 234 | MachineFunction::getMachineMemOperand(MachinePointerInfo PtrInfo, unsigned f, |
Dan Gohman | a94cc6d | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 235 | uint64_t s, unsigned base_alignment, |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 236 | const AAMDNodes &AAInfo, |
Rafael Espindola | 80c540e | 2012-03-31 18:14:00 +0000 | [diff] [blame] | 237 | const MDNode *Ranges) { |
Dan Gohman | a94cc6d | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 238 | return new (Allocator) MachineMemOperand(PtrInfo, f, s, base_alignment, |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 239 | AAInfo, Ranges); |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | MachineMemOperand * |
| 243 | MachineFunction::getMachineMemOperand(const MachineMemOperand *MMO, |
| 244 | int64_t Offset, uint64_t Size) { |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 245 | if (MMO->getValue()) |
| 246 | return new (Allocator) |
| 247 | MachineMemOperand(MachinePointerInfo(MMO->getValue(), |
| 248 | MMO->getOffset()+Offset), |
| 249 | MMO->getFlags(), Size, |
| 250 | MMO->getBaseAlignment(), nullptr); |
Dan Gohman | 01c65a2 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 251 | return new (Allocator) |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 252 | MachineMemOperand(MachinePointerInfo(MMO->getPseudoValue(), |
Chris Lattner | 00ca0b8 | 2010-09-21 04:32:08 +0000 | [diff] [blame] | 253 | MMO->getOffset()+Offset), |
Dan Gohman | a94cc6d | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 254 | MMO->getFlags(), Size, |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 255 | MMO->getBaseAlignment(), nullptr); |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | MachineInstr::mmo_iterator |
| 259 | MachineFunction::allocateMemRefsArray(unsigned long Num) { |
| 260 | return Allocator.Allocate<MachineMemOperand *>(Num); |
| 261 | } |
| 262 | |
Dan Gohman | dd76bb2 | 2009-10-09 18:10:05 +0000 | [diff] [blame] | 263 | std::pair<MachineInstr::mmo_iterator, MachineInstr::mmo_iterator> |
| 264 | MachineFunction::extractLoadMemRefs(MachineInstr::mmo_iterator Begin, |
| 265 | MachineInstr::mmo_iterator End) { |
| 266 | // Count the number of load mem refs. |
| 267 | unsigned Num = 0; |
| 268 | for (MachineInstr::mmo_iterator I = Begin; I != End; ++I) |
| 269 | if ((*I)->isLoad()) |
| 270 | ++Num; |
| 271 | |
| 272 | // Allocate a new array and populate it with the load information. |
| 273 | MachineInstr::mmo_iterator Result = allocateMemRefsArray(Num); |
| 274 | unsigned Index = 0; |
| 275 | for (MachineInstr::mmo_iterator I = Begin; I != End; ++I) { |
| 276 | if ((*I)->isLoad()) { |
| 277 | if (!(*I)->isStore()) |
| 278 | // Reuse the MMO. |
| 279 | Result[Index] = *I; |
| 280 | else { |
| 281 | // Clone the MMO and unset the store flag. |
| 282 | MachineMemOperand *JustLoad = |
Chris Lattner | b5f4920 | 2010-09-21 04:46:39 +0000 | [diff] [blame] | 283 | getMachineMemOperand((*I)->getPointerInfo(), |
Dan Gohman | dd76bb2 | 2009-10-09 18:10:05 +0000 | [diff] [blame] | 284 | (*I)->getFlags() & ~MachineMemOperand::MOStore, |
Dan Gohman | a94cc6d | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 285 | (*I)->getSize(), (*I)->getBaseAlignment(), |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 286 | (*I)->getAAInfo()); |
Dan Gohman | dd76bb2 | 2009-10-09 18:10:05 +0000 | [diff] [blame] | 287 | Result[Index] = JustLoad; |
| 288 | } |
| 289 | ++Index; |
| 290 | } |
| 291 | } |
| 292 | return std::make_pair(Result, Result + Num); |
| 293 | } |
| 294 | |
| 295 | std::pair<MachineInstr::mmo_iterator, MachineInstr::mmo_iterator> |
| 296 | MachineFunction::extractStoreMemRefs(MachineInstr::mmo_iterator Begin, |
| 297 | MachineInstr::mmo_iterator End) { |
| 298 | // Count the number of load mem refs. |
| 299 | unsigned Num = 0; |
| 300 | for (MachineInstr::mmo_iterator I = Begin; I != End; ++I) |
| 301 | if ((*I)->isStore()) |
| 302 | ++Num; |
| 303 | |
| 304 | // Allocate a new array and populate it with the store information. |
| 305 | MachineInstr::mmo_iterator Result = allocateMemRefsArray(Num); |
| 306 | unsigned Index = 0; |
| 307 | for (MachineInstr::mmo_iterator I = Begin; I != End; ++I) { |
| 308 | if ((*I)->isStore()) { |
| 309 | if (!(*I)->isLoad()) |
| 310 | // Reuse the MMO. |
| 311 | Result[Index] = *I; |
| 312 | else { |
| 313 | // Clone the MMO and unset the load flag. |
| 314 | MachineMemOperand *JustStore = |
Chris Lattner | b5f4920 | 2010-09-21 04:46:39 +0000 | [diff] [blame] | 315 | getMachineMemOperand((*I)->getPointerInfo(), |
Dan Gohman | dd76bb2 | 2009-10-09 18:10:05 +0000 | [diff] [blame] | 316 | (*I)->getFlags() & ~MachineMemOperand::MOLoad, |
Dan Gohman | a94cc6d | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 317 | (*I)->getSize(), (*I)->getBaseAlignment(), |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 318 | (*I)->getAAInfo()); |
Dan Gohman | dd76bb2 | 2009-10-09 18:10:05 +0000 | [diff] [blame] | 319 | Result[Index] = JustStore; |
| 320 | } |
| 321 | ++Index; |
| 322 | } |
| 323 | } |
| 324 | return std::make_pair(Result, Result + Num); |
| 325 | } |
| 326 | |
Manman Ren | 19f49ac | 2012-09-11 22:23:19 +0000 | [diff] [blame] | 327 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 328 | void MachineFunction::dump() const { |
David Greene | 6671011 | 2010-01-04 23:39:17 +0000 | [diff] [blame] | 329 | print(dbgs()); |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 330 | } |
Manman Ren | 742534c | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 331 | #endif |
Chris Lattner | 214808f | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 332 | |
Craig Topper | a538d83 | 2012-08-22 06:07:19 +0000 | [diff] [blame] | 333 | StringRef MachineFunction::getName() const { |
| 334 | assert(getFunction() && "No function!"); |
| 335 | return getFunction()->getName(); |
| 336 | } |
| 337 | |
Jakob Stoklund Olesen | b705023 | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 338 | void MachineFunction::print(raw_ostream &OS, SlotIndexes *Indexes) const { |
David Blaikie | c8c2920 | 2012-08-22 17:18:53 +0000 | [diff] [blame] | 339 | OS << "# Machine code for function " << getName() << ": "; |
Jakob Stoklund Olesen | 6c08534 | 2012-03-27 17:17:16 +0000 | [diff] [blame] | 340 | if (RegInfo) { |
| 341 | OS << (RegInfo->isSSA() ? "SSA" : "Post SSA"); |
| 342 | if (!RegInfo->tracksLiveness()) |
| 343 | OS << ", not tracking liveness"; |
| 344 | } |
| 345 | OS << '\n'; |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 346 | |
| 347 | // Print Frame Information |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 348 | FrameInfo->print(*this, OS); |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 349 | |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 350 | // Print JumpTable Information |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 351 | if (JumpTableInfo) |
| 352 | JumpTableInfo->print(OS); |
Chris Lattner | c6807e8 | 2003-01-13 00:23:03 +0000 | [diff] [blame] | 353 | |
| 354 | // Print Constant Pool |
Chris Lattner | 22d4bfc | 2009-08-23 01:12:47 +0000 | [diff] [blame] | 355 | ConstantPool->print(OS); |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 356 | |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 357 | const TargetRegisterInfo *TRI = getSubtarget().getRegisterInfo(); |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 358 | |
Matthijs Kooijman | c8d7988 | 2008-10-13 12:37:16 +0000 | [diff] [blame] | 359 | if (RegInfo && !RegInfo->livein_empty()) { |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 360 | OS << "Function Live Ins: "; |
Chris Lattner | a10fff5 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 361 | for (MachineRegisterInfo::livein_iterator |
| 362 | I = RegInfo->livein_begin(), E = RegInfo->livein_end(); I != E; ++I) { |
Jakob Stoklund Olesen | 6297a71 | 2011-05-02 20:06:30 +0000 | [diff] [blame] | 363 | OS << PrintReg(I->first, TRI); |
Chris Lattner | 52d0c78 | 2006-05-16 05:55:30 +0000 | [diff] [blame] | 364 | if (I->second) |
Jakob Stoklund Olesen | 6297a71 | 2011-05-02 20:06:30 +0000 | [diff] [blame] | 365 | OS << " in " << PrintReg(I->second, TRI); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 366 | if (std::next(I) != E) |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 367 | OS << ", "; |
Chris Lattner | d4d10ff | 2005-08-31 22:34:59 +0000 | [diff] [blame] | 368 | } |
Chris Lattner | 22d4bfc | 2009-08-23 01:12:47 +0000 | [diff] [blame] | 369 | OS << '\n'; |
Chris Lattner | d4d10ff | 2005-08-31 22:34:59 +0000 | [diff] [blame] | 370 | } |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 371 | |
Alexey Samsonov | 41b977d | 2014-04-30 18:29:51 +0000 | [diff] [blame] | 372 | for (const auto &BB : *this) { |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 373 | OS << '\n'; |
Alexey Samsonov | 41b977d | 2014-04-30 18:29:51 +0000 | [diff] [blame] | 374 | BB.print(OS, Indexes); |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 375 | } |
Brian Gaeke | 2fe0ac9 | 2004-03-29 21:58:31 +0000 | [diff] [blame] | 376 | |
David Blaikie | c8c2920 | 2012-08-22 17:18:53 +0000 | [diff] [blame] | 377 | OS << "\n# End machine code for function " << getName() << ".\n\n"; |
Chris Lattner | 214808f | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 378 | } |
| 379 | |
Alkis Evlogimenos | 2c422bb | 2004-07-08 00:47:58 +0000 | [diff] [blame] | 380 | namespace llvm { |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 381 | template<> |
| 382 | struct DOTGraphTraits<const MachineFunction*> : public DefaultDOTGraphTraits { |
Tobias Grosser | 90d3340 | 2009-11-30 12:38:13 +0000 | [diff] [blame] | 383 | |
| 384 | DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} |
| 385 | |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 386 | static std::string getGraphName(const MachineFunction *F) { |
Craig Topper | a538d83 | 2012-08-22 06:07:19 +0000 | [diff] [blame] | 387 | return "CFG for '" + F->getName().str() + "' function"; |
Alkis Evlogimenos | 2c422bb | 2004-07-08 00:47:58 +0000 | [diff] [blame] | 388 | } |
| 389 | |
Tobias Grosser | dd7f2e7 | 2009-11-30 12:38:47 +0000 | [diff] [blame] | 390 | std::string getNodeLabel(const MachineBasicBlock *Node, |
| 391 | const MachineFunction *Graph) { |
Chris Lattner | 565449d | 2009-08-23 03:13:20 +0000 | [diff] [blame] | 392 | std::string OutStr; |
| 393 | { |
| 394 | raw_string_ostream OSS(OutStr); |
Jakob Stoklund Olesen | 80717dd | 2010-10-30 01:26:19 +0000 | [diff] [blame] | 395 | |
| 396 | if (isSimple()) { |
| 397 | OSS << "BB#" << Node->getNumber(); |
| 398 | if (const BasicBlock *BB = Node->getBasicBlock()) |
| 399 | OSS << ": " << BB->getName(); |
| 400 | } else |
Chris Lattner | 565449d | 2009-08-23 03:13:20 +0000 | [diff] [blame] | 401 | Node->print(OSS); |
Alkis Evlogimenos | 2c422bb | 2004-07-08 00:47:58 +0000 | [diff] [blame] | 402 | } |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 403 | |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 404 | if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); |
| 405 | |
| 406 | // Process string output to make it nicer... |
| 407 | for (unsigned i = 0; i != OutStr.length(); ++i) |
| 408 | if (OutStr[i] == '\n') { // Left justify |
| 409 | OutStr[i] = '\\'; |
| 410 | OutStr.insert(OutStr.begin()+i+1, 'l'); |
| 411 | } |
| 412 | return OutStr; |
| 413 | } |
| 414 | }; |
Alkis Evlogimenos | 2c422bb | 2004-07-08 00:47:58 +0000 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | void MachineFunction::viewCFG() const |
| 418 | { |
Jim Laskey | d00db25 | 2005-10-12 12:09:05 +0000 | [diff] [blame] | 419 | #ifndef NDEBUG |
David Blaikie | c8c2920 | 2012-08-22 17:18:53 +0000 | [diff] [blame] | 420 | ViewGraph(this, "mf" + getName()); |
Reid Spencer | ee7eaa2 | 2006-06-27 16:49:46 +0000 | [diff] [blame] | 421 | #else |
Dan Gohman | 7692014 | 2010-07-07 17:28:45 +0000 | [diff] [blame] | 422 | errs() << "MachineFunction::viewCFG is only available in debug builds on " |
Daniel Dunbar | 34ee203 | 2009-08-23 08:50:52 +0000 | [diff] [blame] | 423 | << "systems with Graphviz or gv!\n"; |
Reid Spencer | ee7eaa2 | 2006-06-27 16:49:46 +0000 | [diff] [blame] | 424 | #endif // NDEBUG |
Alkis Evlogimenos | 2c422bb | 2004-07-08 00:47:58 +0000 | [diff] [blame] | 425 | } |
| 426 | |
| 427 | void MachineFunction::viewCFGOnly() const |
| 428 | { |
Owen Anderson | b70adf2 | 2009-06-24 17:37:09 +0000 | [diff] [blame] | 429 | #ifndef NDEBUG |
David Blaikie | c8c2920 | 2012-08-22 17:18:53 +0000 | [diff] [blame] | 430 | ViewGraph(this, "mf" + getName(), true); |
Owen Anderson | b70adf2 | 2009-06-24 17:37:09 +0000 | [diff] [blame] | 431 | #else |
Dan Gohman | 7692014 | 2010-07-07 17:28:45 +0000 | [diff] [blame] | 432 | errs() << "MachineFunction::viewCFGOnly is only available in debug builds on " |
Daniel Dunbar | 34ee203 | 2009-08-23 08:50:52 +0000 | [diff] [blame] | 433 | << "systems with Graphviz or gv!\n"; |
Owen Anderson | b70adf2 | 2009-06-24 17:37:09 +0000 | [diff] [blame] | 434 | #endif // NDEBUG |
Alkis Evlogimenos | 2c422bb | 2004-07-08 00:47:58 +0000 | [diff] [blame] | 435 | } |
| 436 | |
Bob Wilson | f8b8547 | 2009-04-20 18:36:57 +0000 | [diff] [blame] | 437 | /// addLiveIn - Add the specified physical register as a live-in value and |
| 438 | /// create a corresponding virtual register for it. |
| 439 | unsigned MachineFunction::addLiveIn(unsigned PReg, |
Devang Patel | f3292b2 | 2011-02-21 23:21:26 +0000 | [diff] [blame] | 440 | const TargetRegisterClass *RC) { |
Evan Cheng | 1b79bab | 2010-05-24 21:33:37 +0000 | [diff] [blame] | 441 | MachineRegisterInfo &MRI = getRegInfo(); |
| 442 | unsigned VReg = MRI.getLiveInVirtReg(PReg); |
| 443 | if (VReg) { |
Quentin Colombet | 18b779e | 2013-12-12 00:15:47 +0000 | [diff] [blame] | 444 | const TargetRegisterClass *VRegRC = MRI.getRegClass(VReg); |
| 445 | (void)VRegRC; |
| 446 | // A physical register can be added several times. |
| 447 | // Between two calls, the register class of the related virtual register |
| 448 | // may have been constrained to match some operation constraints. |
| 449 | // In that case, check that the current register class includes the |
| 450 | // physical register and is a sub class of the specified RC. |
| 451 | assert((VRegRC == RC || (VRegRC->contains(PReg) && |
| 452 | RC->hasSubClassEq(VRegRC))) && |
| 453 | "Register class mismatch!"); |
Evan Cheng | 1b79bab | 2010-05-24 21:33:37 +0000 | [diff] [blame] | 454 | return VReg; |
| 455 | } |
| 456 | VReg = MRI.createVirtualRegister(RC); |
| 457 | MRI.addLiveIn(PReg, VReg); |
Bob Wilson | f8b8547 | 2009-04-20 18:36:57 +0000 | [diff] [blame] | 458 | return VReg; |
| 459 | } |
| 460 | |
Chris Lattner | 8a785d7 | 2010-01-26 06:28:43 +0000 | [diff] [blame] | 461 | /// getJTISymbol - Return the MCSymbol for the specified non-empty jump table. |
Bill Wendling | 3632171 | 2010-06-29 22:34:52 +0000 | [diff] [blame] | 462 | /// If isLinkerPrivate is specified, an 'l' label is returned, otherwise a |
| 463 | /// normal 'L' label is returned. |
NAKAMURA Takumi | c403be1 | 2014-06-25 12:40:56 +0000 | [diff] [blame] | 464 | MCSymbol *MachineFunction::getJTISymbol(unsigned JTI, MCContext &Ctx, |
Bill Wendling | 3632171 | 2010-06-29 22:34:52 +0000 | [diff] [blame] | 465 | bool isLinkerPrivate) const { |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 466 | const DataLayout *DL = getSubtarget().getDataLayout(); |
Chris Lattner | 8a785d7 | 2010-01-26 06:28:43 +0000 | [diff] [blame] | 467 | assert(JumpTableInfo && "No jump tables"); |
Chandler Carruth | c07bd40 | 2010-01-27 10:27:10 +0000 | [diff] [blame] | 468 | assert(JTI < JumpTableInfo->getJumpTables().size() && "Invalid JTI!"); |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 469 | |
Rafael Espindola | 5887356 | 2014-01-03 19:21:54 +0000 | [diff] [blame] | 470 | const char *Prefix = isLinkerPrivate ? DL->getLinkerPrivateGlobalPrefix() : |
| 471 | DL->getPrivateGlobalPrefix(); |
Alp Toker | e69170a | 2014-06-26 22:52:05 +0000 | [diff] [blame] | 472 | SmallString<60> Name; |
| 473 | raw_svector_ostream(Name) |
| 474 | << Prefix << "JTI" << getFunctionNumber() << '_' << JTI; |
Chris Lattner | 9897043 | 2010-03-30 18:10:53 +0000 | [diff] [blame] | 475 | return Ctx.GetOrCreateSymbol(Name.str()); |
Chris Lattner | 8a785d7 | 2010-01-26 06:28:43 +0000 | [diff] [blame] | 476 | } |
| 477 | |
Chris Lattner | 7077efe | 2010-11-14 22:48:15 +0000 | [diff] [blame] | 478 | /// getPICBaseSymbol - Return a function-local symbol to represent the PIC |
| 479 | /// base. |
| 480 | MCSymbol *MachineFunction::getPICBaseSymbol() const { |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 481 | const DataLayout *DL = getSubtarget().getDataLayout(); |
Rafael Espindola | 5887356 | 2014-01-03 19:21:54 +0000 | [diff] [blame] | 482 | return Ctx.GetOrCreateSymbol(Twine(DL->getPrivateGlobalPrefix())+ |
Chris Lattner | 7077efe | 2010-11-14 22:48:15 +0000 | [diff] [blame] | 483 | Twine(getFunctionNumber())+"$pb"); |
| 484 | } |
Chris Lattner | 8a785d7 | 2010-01-26 06:28:43 +0000 | [diff] [blame] | 485 | |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 486 | //===----------------------------------------------------------------------===// |
Chris Lattner | ca4362f | 2002-12-28 21:08:26 +0000 | [diff] [blame] | 487 | // MachineFrameInfo implementation |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 488 | //===----------------------------------------------------------------------===// |
| 489 | |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 490 | const TargetFrameLowering *MachineFrameInfo::getFrameLowering() const { |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 491 | return TM.getSubtargetImpl()->getFrameLowering(); |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 492 | } |
| 493 | |
Manman Ren | 26c73f9 | 2012-12-04 00:26:44 +0000 | [diff] [blame] | 494 | /// ensureMaxAlignment - Make sure the function is at least Align bytes |
| 495 | /// aligned. |
| 496 | void MachineFrameInfo::ensureMaxAlignment(unsigned Align) { |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 497 | if (!getFrameLowering()->isStackRealignable() || !RealignOption) |
| 498 | assert(Align <= getFrameLowering()->getStackAlignment() && |
Manman Ren | f563941 | 2012-12-04 00:52:33 +0000 | [diff] [blame] | 499 | "For targets without stack realignment, Align is out of limit!"); |
Manman Ren | 26c73f9 | 2012-12-04 00:26:44 +0000 | [diff] [blame] | 500 | if (MaxAlignment < Align) MaxAlignment = Align; |
| 501 | } |
| 502 | |
Manman Ren | f563941 | 2012-12-04 00:52:33 +0000 | [diff] [blame] | 503 | /// clampStackAlignment - Clamp the alignment if requested and emit a warning. |
Bob Wilson | 67bbf3a | 2013-02-08 20:35:15 +0000 | [diff] [blame] | 504 | static inline unsigned clampStackAlignment(bool ShouldClamp, unsigned Align, |
| 505 | unsigned StackAlign) { |
| 506 | if (!ShouldClamp || Align <= StackAlign) |
| 507 | return Align; |
| 508 | DEBUG(dbgs() << "Warning: requested alignment " << Align |
| 509 | << " exceeds the stack alignment " << StackAlign |
| 510 | << " when stack realignment is off" << '\n'); |
Manman Ren | f563941 | 2012-12-04 00:52:33 +0000 | [diff] [blame] | 511 | return StackAlign; |
| 512 | } |
| 513 | |
Bob Wilson | 67bbf3a | 2013-02-08 20:35:15 +0000 | [diff] [blame] | 514 | /// CreateStackObject - Create a new statically sized stack object, returning |
| 515 | /// a nonnegative identifier to represent it. |
Manman Ren | 26c73f9 | 2012-12-04 00:26:44 +0000 | [diff] [blame] | 516 | /// |
Bob Wilson | 67bbf3a | 2013-02-08 20:35:15 +0000 | [diff] [blame] | 517 | int MachineFrameInfo::CreateStackObject(uint64_t Size, unsigned Alignment, |
Josh Magee | 22b8ba2 | 2013-12-19 03:17:11 +0000 | [diff] [blame] | 518 | bool isSS, const AllocaInst *Alloca) { |
Manman Ren | 26c73f9 | 2012-12-04 00:26:44 +0000 | [diff] [blame] | 519 | assert(Size != 0 && "Cannot allocate zero size stack objects!"); |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 520 | Alignment = |
| 521 | clampStackAlignment(!getFrameLowering()->isStackRealignable() || |
| 522 | !RealignOption, |
| 523 | Alignment, getFrameLowering()->getStackAlignment()); |
Josh Magee | 22b8ba2 | 2013-12-19 03:17:11 +0000 | [diff] [blame] | 524 | Objects.push_back(StackObject(Size, Alignment, 0, false, isSS, Alloca)); |
Manman Ren | 26c73f9 | 2012-12-04 00:26:44 +0000 | [diff] [blame] | 525 | int Index = (int)Objects.size() - NumFixedObjects - 1; |
| 526 | assert(Index >= 0 && "Bad frame index!"); |
| 527 | ensureMaxAlignment(Alignment); |
| 528 | return Index; |
| 529 | } |
| 530 | |
| 531 | /// CreateSpillStackObject - Create a new statically sized stack object that |
| 532 | /// represents a spill slot, returning a nonnegative identifier to represent |
| 533 | /// it. |
| 534 | /// |
| 535 | int MachineFrameInfo::CreateSpillStackObject(uint64_t Size, |
| 536 | unsigned Alignment) { |
NAKAMURA Takumi | c403be1 | 2014-06-25 12:40:56 +0000 | [diff] [blame] | 537 | Alignment = clampStackAlignment( |
| 538 | !getFrameLowering()->isStackRealignable() || !RealignOption, Alignment, |
| 539 | getFrameLowering()->getStackAlignment()); |
Josh Magee | 22b8ba2 | 2013-12-19 03:17:11 +0000 | [diff] [blame] | 540 | CreateStackObject(Size, Alignment, true); |
Manman Ren | 26c73f9 | 2012-12-04 00:26:44 +0000 | [diff] [blame] | 541 | int Index = (int)Objects.size() - NumFixedObjects - 1; |
| 542 | ensureMaxAlignment(Alignment); |
| 543 | return Index; |
| 544 | } |
| 545 | |
| 546 | /// CreateVariableSizedObject - Notify the MachineFrameInfo object that a |
| 547 | /// variable sized object has been created. This must be created whenever a |
| 548 | /// variable sized object is created, whether or not the index returned is |
| 549 | /// actually used. |
| 550 | /// |
Josh Magee | 22b8ba2 | 2013-12-19 03:17:11 +0000 | [diff] [blame] | 551 | int MachineFrameInfo::CreateVariableSizedObject(unsigned Alignment, |
| 552 | const AllocaInst *Alloca) { |
Manman Ren | 26c73f9 | 2012-12-04 00:26:44 +0000 | [diff] [blame] | 553 | HasVarSizedObjects = true; |
NAKAMURA Takumi | c403be1 | 2014-06-25 12:40:56 +0000 | [diff] [blame] | 554 | Alignment = clampStackAlignment( |
| 555 | !getFrameLowering()->isStackRealignable() || !RealignOption, Alignment, |
| 556 | getFrameLowering()->getStackAlignment()); |
Josh Magee | 22b8ba2 | 2013-12-19 03:17:11 +0000 | [diff] [blame] | 557 | Objects.push_back(StackObject(0, Alignment, 0, false, false, Alloca)); |
Manman Ren | 26c73f9 | 2012-12-04 00:26:44 +0000 | [diff] [blame] | 558 | ensureMaxAlignment(Alignment); |
| 559 | return (int)Objects.size()-NumFixedObjects-1; |
| 560 | } |
| 561 | |
Chris Lattner | 6068832 | 2008-01-25 07:19:06 +0000 | [diff] [blame] | 562 | /// CreateFixedObject - Create a new object at a fixed location on the stack. |
| 563 | /// All fixed objects should be created before other objects are created for |
| 564 | /// efficiency. By default, fixed objects are immutable. This returns an |
| 565 | /// index with a negative value. |
| 566 | /// |
| 567 | int MachineFrameInfo::CreateFixedObject(uint64_t Size, int64_t SPOffset, |
Evan Cheng | 0664a67 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 568 | bool Immutable) { |
Chris Lattner | 6068832 | 2008-01-25 07:19:06 +0000 | [diff] [blame] | 569 | assert(Size != 0 && "Cannot allocate zero size fixed stack objects!"); |
Evan Cheng | f3aeb2c | 2010-07-04 18:52:05 +0000 | [diff] [blame] | 570 | // The alignment of the frame index can be determined from its offset from |
| 571 | // the incoming frame position. If the frame object is at offset 32 and |
| 572 | // the stack is guaranteed to be 16-byte aligned, then we know that the |
| 573 | // object is 16-byte aligned. |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 574 | unsigned StackAlign = getFrameLowering()->getStackAlignment(); |
Evan Cheng | f3aeb2c | 2010-07-04 18:52:05 +0000 | [diff] [blame] | 575 | unsigned Align = MinAlign(SPOffset, StackAlign); |
NAKAMURA Takumi | c403be1 | 2014-06-25 12:40:56 +0000 | [diff] [blame] | 576 | Align = clampStackAlignment(!getFrameLowering()->isStackRealignable() || |
| 577 | !RealignOption, |
| 578 | Align, getFrameLowering()->getStackAlignment()); |
Evan Cheng | f3aeb2c | 2010-07-04 18:52:05 +0000 | [diff] [blame] | 579 | Objects.insert(Objects.begin(), StackObject(Size, Align, SPOffset, Immutable, |
Nadav Rotem | 7c277da | 2012-09-06 09:17:37 +0000 | [diff] [blame] | 580 | /*isSS*/ false, |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 581 | /*Alloca*/ nullptr)); |
Chris Lattner | 6068832 | 2008-01-25 07:19:06 +0000 | [diff] [blame] | 582 | return -++NumFixedObjects; |
| 583 | } |
| 584 | |
NAKAMURA Takumi | 1db5995 | 2014-06-25 12:41:52 +0000 | [diff] [blame] | 585 | /// CreateFixedSpillStackObject - Create a spill slot at a fixed location |
| 586 | /// on the stack. Returns an index with a negative value. |
| 587 | int MachineFrameInfo::CreateFixedSpillStackObject(uint64_t Size, |
| 588 | int64_t SPOffset) { |
| 589 | unsigned StackAlign = getFrameLowering()->getStackAlignment(); |
| 590 | unsigned Align = MinAlign(SPOffset, StackAlign); |
| 591 | Align = clampStackAlignment(!getFrameLowering()->isStackRealignable() || |
| 592 | !RealignOption, |
| 593 | Align, getFrameLowering()->getStackAlignment()); |
| 594 | Objects.insert(Objects.begin(), StackObject(Size, Align, SPOffset, |
| 595 | /*Immutable*/ true, |
| 596 | /*isSS*/ true, |
| 597 | /*Alloca*/ nullptr)); |
| 598 | return -++NumFixedObjects; |
| 599 | } |
Chris Lattner | 6068832 | 2008-01-25 07:19:06 +0000 | [diff] [blame] | 600 | |
Jakob Stoklund Olesen | 3de4a60 | 2009-08-13 16:19:33 +0000 | [diff] [blame] | 601 | BitVector |
| 602 | MachineFrameInfo::getPristineRegs(const MachineBasicBlock *MBB) const { |
| 603 | assert(MBB && "MBB must be valid"); |
| 604 | const MachineFunction *MF = MBB->getParent(); |
| 605 | assert(MF && "MBB must be part of a MachineFunction"); |
| 606 | const TargetMachine &TM = MF->getTarget(); |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 607 | const TargetRegisterInfo *TRI = TM.getSubtargetImpl()->getRegisterInfo(); |
Jakob Stoklund Olesen | 3de4a60 | 2009-08-13 16:19:33 +0000 | [diff] [blame] | 608 | BitVector BV(TRI->getNumRegs()); |
| 609 | |
| 610 | // Before CSI is calculated, no registers are considered pristine. They can be |
| 611 | // freely used and PEI will make sure they are saved. |
| 612 | if (!isCalleeSavedInfoValid()) |
| 613 | return BV; |
| 614 | |
Craig Topper | 840beec | 2014-04-04 05:16:06 +0000 | [diff] [blame] | 615 | for (const MCPhysReg *CSR = TRI->getCalleeSavedRegs(MF); CSR && *CSR; ++CSR) |
Jakob Stoklund Olesen | 3de4a60 | 2009-08-13 16:19:33 +0000 | [diff] [blame] | 616 | BV.set(*CSR); |
| 617 | |
| 618 | // The entry MBB always has all CSRs pristine. |
| 619 | if (MBB == &MF->front()) |
| 620 | return BV; |
| 621 | |
| 622 | // On other MBBs the saved CSRs are not pristine. |
| 623 | const std::vector<CalleeSavedInfo> &CSI = getCalleeSavedInfo(); |
| 624 | for (std::vector<CalleeSavedInfo>::const_iterator I = CSI.begin(), |
| 625 | E = CSI.end(); I != E; ++I) |
| 626 | BV.reset(I->getReg()); |
| 627 | |
| 628 | return BV; |
| 629 | } |
| 630 | |
Hal Finkel | 628ba12 | 2013-03-14 21:15:20 +0000 | [diff] [blame] | 631 | unsigned MachineFrameInfo::estimateStackSize(const MachineFunction &MF) const { |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 632 | const TargetFrameLowering *TFI = MF.getSubtarget().getFrameLowering(); |
| 633 | const TargetRegisterInfo *RegInfo = MF.getSubtarget().getRegisterInfo(); |
Hal Finkel | 628ba12 | 2013-03-14 21:15:20 +0000 | [diff] [blame] | 634 | unsigned MaxAlign = getMaxAlignment(); |
| 635 | int Offset = 0; |
| 636 | |
| 637 | // This code is very, very similar to PEI::calculateFrameObjectOffsets(). |
| 638 | // It really should be refactored to share code. Until then, changes |
| 639 | // should keep in mind that there's tight coupling between the two. |
| 640 | |
| 641 | for (int i = getObjectIndexBegin(); i != 0; ++i) { |
| 642 | int FixedOff = -getObjectOffset(i); |
| 643 | if (FixedOff > Offset) Offset = FixedOff; |
| 644 | } |
| 645 | for (unsigned i = 0, e = getObjectIndexEnd(); i != e; ++i) { |
| 646 | if (isDeadObjectIndex(i)) |
| 647 | continue; |
| 648 | Offset += getObjectSize(i); |
| 649 | unsigned Align = getObjectAlignment(i); |
| 650 | // Adjust to alignment boundary |
| 651 | Offset = (Offset+Align-1)/Align*Align; |
| 652 | |
| 653 | MaxAlign = std::max(Align, MaxAlign); |
| 654 | } |
| 655 | |
| 656 | if (adjustsStack() && TFI->hasReservedCallFrame(MF)) |
| 657 | Offset += getMaxCallFrameSize(); |
| 658 | |
| 659 | // Round up the size to a multiple of the alignment. If the function has |
| 660 | // any calls or alloca's, align to the target's StackAlignment value to |
| 661 | // ensure that the callee's frame or the alloca data is suitably aligned; |
| 662 | // otherwise, for leaf functions, align to the TransientStackAlignment |
| 663 | // value. |
| 664 | unsigned StackAlign; |
| 665 | if (adjustsStack() || hasVarSizedObjects() || |
| 666 | (RegInfo->needsStackRealignment(MF) && getObjectIndexEnd() != 0)) |
| 667 | StackAlign = TFI->getStackAlignment(); |
| 668 | else |
| 669 | StackAlign = TFI->getTransientStackAlignment(); |
| 670 | |
| 671 | // If the frame pointer is eliminated, all frame offsets will be relative to |
| 672 | // SP not FP. Align to MaxAlign so this works. |
| 673 | StackAlign = std::max(StackAlign, MaxAlign); |
| 674 | unsigned AlignMask = StackAlign - 1; |
| 675 | Offset = (Offset + AlignMask) & ~uint64_t(AlignMask); |
| 676 | |
| 677 | return (unsigned)Offset; |
| 678 | } |
Jakob Stoklund Olesen | 3de4a60 | 2009-08-13 16:19:33 +0000 | [diff] [blame] | 679 | |
Chris Lattner | 22d4bfc | 2009-08-23 01:12:47 +0000 | [diff] [blame] | 680 | void MachineFrameInfo::print(const MachineFunction &MF, raw_ostream &OS) const{ |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 681 | if (Objects.empty()) return; |
| 682 | |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 683 | const TargetFrameLowering *FI = MF.getSubtarget().getFrameLowering(); |
Matthijs Kooijman | 2530f5f | 2008-11-03 11:16:43 +0000 | [diff] [blame] | 684 | int ValOffset = (FI ? FI->getOffsetOfLocalArea() : 0); |
Chris Lattner | eb45c98 | 2003-01-16 18:35:57 +0000 | [diff] [blame] | 685 | |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 686 | OS << "Frame Objects:\n"; |
| 687 | |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 688 | for (unsigned i = 0, e = Objects.size(); i != e; ++i) { |
| 689 | const StackObject &SO = Objects[i]; |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 690 | OS << " fi#" << (int)(i-NumFixedObjects) << ": "; |
Evan Cheng | 6d56368 | 2008-02-27 03:04:06 +0000 | [diff] [blame] | 691 | if (SO.Size == ~0ULL) { |
| 692 | OS << "dead\n"; |
| 693 | continue; |
| 694 | } |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 695 | if (SO.Size == 0) |
| 696 | OS << "variable sized"; |
| 697 | else |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 698 | OS << "size=" << SO.Size; |
| 699 | OS << ", align=" << SO.Alignment; |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 700 | |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 701 | if (i < NumFixedObjects) |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 702 | OS << ", fixed"; |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 703 | if (i < NumFixedObjects || SO.SPOffset != -1) { |
Chris Lattner | 9bd98ea | 2007-04-25 04:20:54 +0000 | [diff] [blame] | 704 | int64_t Off = SO.SPOffset - ValOffset; |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 705 | OS << ", at location [SP"; |
Chris Lattner | eb45c98 | 2003-01-16 18:35:57 +0000 | [diff] [blame] | 706 | if (Off > 0) |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 707 | OS << "+" << Off; |
Chris Lattner | eb45c98 | 2003-01-16 18:35:57 +0000 | [diff] [blame] | 708 | else if (Off < 0) |
Alkis Evlogimenos | 58350a7 | 2004-09-05 18:41:35 +0000 | [diff] [blame] | 709 | OS << Off; |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 710 | OS << "]"; |
| 711 | } |
| 712 | OS << "\n"; |
| 713 | } |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 714 | } |
| 715 | |
Manman Ren | 19f49ac | 2012-09-11 22:23:19 +0000 | [diff] [blame] | 716 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Chris Lattner | eb45c98 | 2003-01-16 18:35:57 +0000 | [diff] [blame] | 717 | void MachineFrameInfo::dump(const MachineFunction &MF) const { |
David Greene | 6671011 | 2010-01-04 23:39:17 +0000 | [diff] [blame] | 718 | print(MF, dbgs()); |
Chris Lattner | eb45c98 | 2003-01-16 18:35:57 +0000 | [diff] [blame] | 719 | } |
Manman Ren | 742534c | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 720 | #endif |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 721 | |
Chris Lattner | 3252564 | 2002-12-28 20:37:16 +0000 | [diff] [blame] | 722 | //===----------------------------------------------------------------------===// |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 723 | // MachineJumpTableInfo implementation |
| 724 | //===----------------------------------------------------------------------===// |
| 725 | |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 726 | /// getEntrySize - Return the size of each entry in the jump table. |
Micah Villmow | cdfe20b | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 727 | unsigned MachineJumpTableInfo::getEntrySize(const DataLayout &TD) const { |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 728 | // The size of a jump table entry is 4 bytes unless the entry is just the |
| 729 | // address of a block, in which case it is the pointer size. |
| 730 | switch (getEntryKind()) { |
| 731 | case MachineJumpTableInfo::EK_BlockAddress: |
Chandler Carruth | 5da3f05 | 2012-11-01 09:14:31 +0000 | [diff] [blame] | 732 | return TD.getPointerSize(); |
Akira Hatanaka | f0b0844 | 2012-02-03 04:33:00 +0000 | [diff] [blame] | 733 | case MachineJumpTableInfo::EK_GPRel64BlockAddress: |
| 734 | return 8; |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 735 | case MachineJumpTableInfo::EK_GPRel32BlockAddress: |
| 736 | case MachineJumpTableInfo::EK_LabelDifference32: |
Chris Lattner | 5fc4160 | 2010-01-26 04:05:28 +0000 | [diff] [blame] | 737 | case MachineJumpTableInfo::EK_Custom32: |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 738 | return 4; |
Richard Osborne | 6d3e92d | 2010-03-11 14:58:16 +0000 | [diff] [blame] | 739 | case MachineJumpTableInfo::EK_Inline: |
| 740 | return 0; |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 741 | } |
Craig Topper | accd351 | 2012-02-06 08:17:43 +0000 | [diff] [blame] | 742 | llvm_unreachable("Unknown jump table encoding!"); |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | /// getEntryAlignment - Return the alignment of each entry in the jump table. |
Micah Villmow | cdfe20b | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 746 | unsigned MachineJumpTableInfo::getEntryAlignment(const DataLayout &TD) const { |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 747 | // The alignment of a jump table entry is the alignment of int32 unless the |
| 748 | // entry is just the address of a block, in which case it is the pointer |
| 749 | // alignment. |
| 750 | switch (getEntryKind()) { |
| 751 | case MachineJumpTableInfo::EK_BlockAddress: |
Chandler Carruth | 5da3f05 | 2012-11-01 09:14:31 +0000 | [diff] [blame] | 752 | return TD.getPointerABIAlignment(); |
Akira Hatanaka | f0b0844 | 2012-02-03 04:33:00 +0000 | [diff] [blame] | 753 | case MachineJumpTableInfo::EK_GPRel64BlockAddress: |
| 754 | return TD.getABIIntegerTypeAlignment(64); |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 755 | case MachineJumpTableInfo::EK_GPRel32BlockAddress: |
| 756 | case MachineJumpTableInfo::EK_LabelDifference32: |
Chris Lattner | 5fc4160 | 2010-01-26 04:05:28 +0000 | [diff] [blame] | 757 | case MachineJumpTableInfo::EK_Custom32: |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 758 | return TD.getABIIntegerTypeAlignment(32); |
Richard Osborne | 6d3e92d | 2010-03-11 14:58:16 +0000 | [diff] [blame] | 759 | case MachineJumpTableInfo::EK_Inline: |
| 760 | return 1; |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 761 | } |
Craig Topper | accd351 | 2012-02-06 08:17:43 +0000 | [diff] [blame] | 762 | llvm_unreachable("Unknown jump table encoding!"); |
Chris Lattner | b6db2c6 | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 763 | } |
| 764 | |
Bob Wilson | 3c7cde4 | 2010-03-18 18:42:41 +0000 | [diff] [blame] | 765 | /// createJumpTableIndex - Create a new jump table entry in the jump table info. |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 766 | /// |
Bob Wilson | 3c7cde4 | 2010-03-18 18:42:41 +0000 | [diff] [blame] | 767 | unsigned MachineJumpTableInfo::createJumpTableIndex( |
Chris Lattner | cde339c | 2006-10-28 18:17:09 +0000 | [diff] [blame] | 768 | const std::vector<MachineBasicBlock*> &DestBBs) { |
Chris Lattner | 28328f9 | 2006-10-28 18:11:20 +0000 | [diff] [blame] | 769 | assert(!DestBBs.empty() && "Cannot create an empty jump table!"); |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 770 | JumpTables.push_back(MachineJumpTableEntry(DestBBs)); |
| 771 | return JumpTables.size()-1; |
| 772 | } |
| 773 | |
Dan Gohman | 505065c | 2009-04-15 01:18:49 +0000 | [diff] [blame] | 774 | /// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update |
| 775 | /// the jump tables to branch to New instead. |
Chris Lattner | 273735b | 2010-01-26 05:58:28 +0000 | [diff] [blame] | 776 | bool MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old, |
| 777 | MachineBasicBlock *New) { |
Dan Gohman | 505065c | 2009-04-15 01:18:49 +0000 | [diff] [blame] | 778 | assert(Old != New && "Not making a change?"); |
| 779 | bool MadeChange = false; |
Jim Grosbach | 9c8609e | 2009-11-14 20:09:13 +0000 | [diff] [blame] | 780 | for (size_t i = 0, e = JumpTables.size(); i != e; ++i) |
| 781 | ReplaceMBBInJumpTable(i, Old, New); |
| 782 | return MadeChange; |
| 783 | } |
| 784 | |
| 785 | /// ReplaceMBBInJumpTable - If Old is a target of the jump tables, update |
| 786 | /// the jump table to branch to New instead. |
Chris Lattner | 273735b | 2010-01-26 05:58:28 +0000 | [diff] [blame] | 787 | bool MachineJumpTableInfo::ReplaceMBBInJumpTable(unsigned Idx, |
| 788 | MachineBasicBlock *Old, |
| 789 | MachineBasicBlock *New) { |
Jim Grosbach | 9c8609e | 2009-11-14 20:09:13 +0000 | [diff] [blame] | 790 | assert(Old != New && "Not making a change?"); |
| 791 | bool MadeChange = false; |
| 792 | MachineJumpTableEntry &JTE = JumpTables[Idx]; |
| 793 | for (size_t j = 0, e = JTE.MBBs.size(); j != e; ++j) |
| 794 | if (JTE.MBBs[j] == Old) { |
| 795 | JTE.MBBs[j] = New; |
| 796 | MadeChange = true; |
| 797 | } |
Dan Gohman | 505065c | 2009-04-15 01:18:49 +0000 | [diff] [blame] | 798 | return MadeChange; |
| 799 | } |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 800 | |
Chris Lattner | 22d4bfc | 2009-08-23 01:12:47 +0000 | [diff] [blame] | 801 | void MachineJumpTableInfo::print(raw_ostream &OS) const { |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 802 | if (JumpTables.empty()) return; |
| 803 | |
| 804 | OS << "Jump Tables:\n"; |
| 805 | |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 806 | for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) { |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 807 | OS << " jt#" << i << ": "; |
| 808 | for (unsigned j = 0, f = JumpTables[i].MBBs.size(); j != f; ++j) |
| 809 | OS << " BB#" << JumpTables[i].MBBs[j]->getNumber(); |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 810 | } |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 811 | |
| 812 | OS << '\n'; |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 813 | } |
| 814 | |
Manman Ren | 19f49ac | 2012-09-11 22:23:19 +0000 | [diff] [blame] | 815 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
David Greene | 6671011 | 2010-01-04 23:39:17 +0000 | [diff] [blame] | 816 | void MachineJumpTableInfo::dump() const { print(dbgs()); } |
Manman Ren | 742534c | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 817 | #endif |
Nate Begeman | 4ca2ea5 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 818 | |
| 819 | |
| 820 | //===----------------------------------------------------------------------===// |
Chris Lattner | c6807e8 | 2003-01-13 00:23:03 +0000 | [diff] [blame] | 821 | // MachineConstantPool implementation |
| 822 | //===----------------------------------------------------------------------===// |
| 823 | |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 824 | void MachineConstantPoolValue::anchor() { } |
| 825 | |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 826 | const DataLayout *MachineConstantPool::getDataLayout() const { |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 827 | return TM.getSubtargetImpl()->getDataLayout(); |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 828 | } |
| 829 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 830 | Type *MachineConstantPoolEntry::getType() const { |
Evan Cheng | 4f929955 | 2006-09-14 05:50:57 +0000 | [diff] [blame] | 831 | if (isMachineConstantPoolEntry()) |
Chris Lattner | cfb01e2 | 2009-07-21 23:34:23 +0000 | [diff] [blame] | 832 | return Val.MachineCPVal->getType(); |
Evan Cheng | 4f929955 | 2006-09-14 05:50:57 +0000 | [diff] [blame] | 833 | return Val.ConstVal->getType(); |
| 834 | } |
| 835 | |
Chris Lattner | cfb01e2 | 2009-07-21 23:34:23 +0000 | [diff] [blame] | 836 | |
Chris Lattner | 9bd736e | 2009-07-21 23:36:01 +0000 | [diff] [blame] | 837 | unsigned MachineConstantPoolEntry::getRelocationInfo() const { |
Chris Lattner | cfb01e2 | 2009-07-21 23:34:23 +0000 | [diff] [blame] | 838 | if (isMachineConstantPoolEntry()) |
Chris Lattner | 9bd736e | 2009-07-21 23:36:01 +0000 | [diff] [blame] | 839 | return Val.MachineCPVal->getRelocationInfo(); |
Chris Lattner | 4565ef5 | 2009-07-22 00:05:44 +0000 | [diff] [blame] | 840 | return Val.ConstVal->getRelocationInfo(); |
Chris Lattner | cfb01e2 | 2009-07-21 23:34:23 +0000 | [diff] [blame] | 841 | } |
| 842 | |
David Majnemer | 5a1c4b8 | 2014-07-14 22:06:29 +0000 | [diff] [blame] | 843 | SectionKind |
| 844 | MachineConstantPoolEntry::getSectionKind(const DataLayout *DL) const { |
| 845 | SectionKind Kind; |
| 846 | switch (getRelocationInfo()) { |
| 847 | default: |
| 848 | llvm_unreachable("Unknown section kind"); |
| 849 | case 2: |
| 850 | Kind = SectionKind::getReadOnlyWithRel(); |
| 851 | break; |
| 852 | case 1: |
| 853 | Kind = SectionKind::getReadOnlyWithRelLocal(); |
| 854 | break; |
| 855 | case 0: |
| 856 | switch (DL->getTypeAllocSize(getType())) { |
| 857 | case 4: |
| 858 | Kind = SectionKind::getMergeableConst4(); |
| 859 | break; |
| 860 | case 8: |
| 861 | Kind = SectionKind::getMergeableConst8(); |
| 862 | break; |
| 863 | case 16: |
| 864 | Kind = SectionKind::getMergeableConst16(); |
| 865 | break; |
| 866 | default: |
| 867 | Kind = SectionKind::getMergeableConst(); |
| 868 | break; |
| 869 | } |
| 870 | } |
| 871 | return Kind; |
| 872 | } |
| 873 | |
Evan Cheng | 45fe3bc | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 874 | MachineConstantPool::~MachineConstantPool() { |
| 875 | for (unsigned i = 0, e = Constants.size(); i != e; ++i) |
| 876 | if (Constants[i].isMachineConstantPoolEntry()) |
| 877 | delete Constants[i].Val.MachineCPVal; |
Cameron Zwarich | 7cf8876 | 2011-02-22 08:54:30 +0000 | [diff] [blame] | 878 | for (DenseSet<MachineConstantPoolValue*>::iterator I = |
| 879 | MachineCPVsSharingEntries.begin(), E = MachineCPVsSharingEntries.end(); |
| 880 | I != E; ++I) |
| 881 | delete *I; |
Evan Cheng | 45fe3bc | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 882 | } |
| 883 | |
Dan Gohman | 75d6a4a | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 884 | /// CanShareConstantPoolEntry - Test whether the given two constants |
| 885 | /// can be allocated the same constant pool entry. |
Dan Gohman | bcaf681 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 886 | static bool CanShareConstantPoolEntry(const Constant *A, const Constant *B, |
Micah Villmow | cdfe20b | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 887 | const DataLayout *TD) { |
Dan Gohman | 75d6a4a | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 888 | // Handle the trivial case quickly. |
| 889 | if (A == B) return true; |
| 890 | |
| 891 | // If they have the same type but weren't the same constant, quickly |
| 892 | // reject them. |
| 893 | if (A->getType() == B->getType()) return false; |
| 894 | |
Chris Lattner | 7ba8183 | 2012-01-27 01:46:00 +0000 | [diff] [blame] | 895 | // We can't handle structs or arrays. |
| 896 | if (isa<StructType>(A->getType()) || isa<ArrayType>(A->getType()) || |
| 897 | isa<StructType>(B->getType()) || isa<ArrayType>(B->getType())) |
| 898 | return false; |
NAKAMURA Takumi | c403be1 | 2014-06-25 12:40:56 +0000 | [diff] [blame] | 899 | |
Dan Gohman | 75d6a4a | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 900 | // For now, only support constants with the same size. |
Chris Lattner | 61a1d6c | 2012-01-26 21:37:55 +0000 | [diff] [blame] | 901 | uint64_t StoreSize = TD->getTypeStoreSize(A->getType()); |
NAKAMURA Takumi | c403be1 | 2014-06-25 12:40:56 +0000 | [diff] [blame] | 902 | if (StoreSize != TD->getTypeStoreSize(B->getType()) || StoreSize > 128) |
Dan Gohman | 75d6a4a | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 903 | return false; |
| 904 | |
Chris Lattner | 7ba8183 | 2012-01-27 01:46:00 +0000 | [diff] [blame] | 905 | Type *IntTy = IntegerType::get(A->getContext(), StoreSize*8); |
Dan Gohman | 75d6a4a | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 906 | |
Chris Lattner | 7ba8183 | 2012-01-27 01:46:00 +0000 | [diff] [blame] | 907 | // Try constant folding a bitcast of both instructions to an integer. If we |
| 908 | // get two identical ConstantInt's, then we are good to share them. We use |
| 909 | // the constant folding APIs to do this so that we get the benefit of |
Micah Villmow | cdfe20b | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 910 | // DataLayout. |
Chris Lattner | 7ba8183 | 2012-01-27 01:46:00 +0000 | [diff] [blame] | 911 | if (isa<PointerType>(A->getType())) |
| 912 | A = ConstantFoldInstOperands(Instruction::PtrToInt, IntTy, |
| 913 | const_cast<Constant*>(A), TD); |
| 914 | else if (A->getType() != IntTy) |
| 915 | A = ConstantFoldInstOperands(Instruction::BitCast, IntTy, |
| 916 | const_cast<Constant*>(A), TD); |
| 917 | if (isa<PointerType>(B->getType())) |
| 918 | B = ConstantFoldInstOperands(Instruction::PtrToInt, IntTy, |
| 919 | const_cast<Constant*>(B), TD); |
| 920 | else if (B->getType() != IntTy) |
| 921 | B = ConstantFoldInstOperands(Instruction::BitCast, IntTy, |
| 922 | const_cast<Constant*>(B), TD); |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 923 | |
Chris Lattner | 7ba8183 | 2012-01-27 01:46:00 +0000 | [diff] [blame] | 924 | return A == B; |
Dan Gohman | 75d6a4a | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 925 | } |
| 926 | |
Chris Lattner | f619082 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 927 | /// getConstantPoolIndex - Create a new entry in the constant pool or return |
Dan Gohman | 5cf6120 | 2008-09-16 20:45:53 +0000 | [diff] [blame] | 928 | /// an existing one. User must specify the log2 of the minimum required |
| 929 | /// alignment for the object. |
Chris Lattner | f619082 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 930 | /// |
NAKAMURA Takumi | c403be1 | 2014-06-25 12:40:56 +0000 | [diff] [blame] | 931 | unsigned MachineConstantPool::getConstantPoolIndex(const Constant *C, |
Chris Lattner | f619082 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 932 | unsigned Alignment) { |
| 933 | assert(Alignment && "Alignment must be specified!"); |
| 934 | if (Alignment > PoolAlignment) PoolAlignment = Alignment; |
Dan Gohman | 75d6a4a | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 935 | |
Chris Lattner | f619082 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 936 | // Check to see if we already have this constant. |
| 937 | // |
| 938 | // FIXME, this could be made much more efficient for large constant pools. |
Chris Lattner | f619082 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 939 | for (unsigned i = 0, e = Constants.size(); i != e; ++i) |
Dan Gohman | 75d6a4a | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 940 | if (!Constants[i].isMachineConstantPoolEntry() && |
Bill Wendling | 626c991 | 2013-06-17 20:41:25 +0000 | [diff] [blame] | 941 | CanShareConstantPoolEntry(Constants[i].Val.ConstVal, C, |
| 942 | getDataLayout())) { |
Dan Gohman | 75d6a4a | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 943 | if ((unsigned)Constants[i].getAlignment() < Alignment) |
| 944 | Constants[i].Alignment = Alignment; |
Chris Lattner | f619082 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 945 | return i; |
Dan Gohman | 75d6a4a | 2009-10-28 01:12:16 +0000 | [diff] [blame] | 946 | } |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 947 | |
Evan Cheng | 1fb8aed | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 948 | Constants.push_back(MachineConstantPoolEntry(C, Alignment)); |
Chris Lattner | f619082 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 949 | return Constants.size()-1; |
| 950 | } |
| 951 | |
Evan Cheng | 45fe3bc | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 952 | unsigned MachineConstantPool::getConstantPoolIndex(MachineConstantPoolValue *V, |
| 953 | unsigned Alignment) { |
| 954 | assert(Alignment && "Alignment must be specified!"); |
| 955 | if (Alignment > PoolAlignment) PoolAlignment = Alignment; |
Chad Rosier | 651f9a4 | 2012-06-19 23:37:57 +0000 | [diff] [blame] | 956 | |
Evan Cheng | 45fe3bc | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 957 | // Check to see if we already have this constant. |
| 958 | // |
| 959 | // FIXME, this could be made much more efficient for large constant pools. |
Evan Cheng | 45fe3bc | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 960 | int Idx = V->getExistingMachineCPValue(this, Alignment); |
Cameron Zwarich | 7cf8876 | 2011-02-22 08:54:30 +0000 | [diff] [blame] | 961 | if (Idx != -1) { |
| 962 | MachineCPVsSharingEntries.insert(V); |
Evan Cheng | 45fe3bc | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 963 | return (unsigned)Idx; |
Cameron Zwarich | 7cf8876 | 2011-02-22 08:54:30 +0000 | [diff] [blame] | 964 | } |
Evan Cheng | 1fb8aed | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 965 | |
| 966 | Constants.push_back(MachineConstantPoolEntry(V, Alignment)); |
Evan Cheng | 45fe3bc | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 967 | return Constants.size()-1; |
| 968 | } |
| 969 | |
Chris Lattner | 838aff3 | 2008-08-23 22:53:13 +0000 | [diff] [blame] | 970 | void MachineConstantPool::print(raw_ostream &OS) const { |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 971 | if (Constants.empty()) return; |
| 972 | |
| 973 | OS << "Constant Pool:\n"; |
Evan Cheng | 32be2dc | 2006-01-31 22:23:14 +0000 | [diff] [blame] | 974 | for (unsigned i = 0, e = Constants.size(); i != e; ++i) { |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 975 | OS << " cp#" << i << ": "; |
Evan Cheng | 45fe3bc | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 976 | if (Constants[i].isMachineConstantPoolEntry()) |
| 977 | Constants[i].Val.MachineCPVal->print(OS); |
| 978 | else |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 979 | Constants[i].Val.ConstVal->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 980 | OS << ", align=" << Constants[i].getAlignment(); |
Evan Cheng | 32be2dc | 2006-01-31 22:23:14 +0000 | [diff] [blame] | 981 | OS << "\n"; |
| 982 | } |
Chris Lattner | c6807e8 | 2003-01-13 00:23:03 +0000 | [diff] [blame] | 983 | } |
| 984 | |
Manman Ren | 19f49ac | 2012-09-11 22:23:19 +0000 | [diff] [blame] | 985 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
David Greene | 6671011 | 2010-01-04 23:39:17 +0000 | [diff] [blame] | 986 | void MachineConstantPool::dump() const { print(dbgs()); } |
Manman Ren | 742534c | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 987 | #endif |