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