blob: e0cdad7783b530f97cc3922c839459beac38a817 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- MachineFunction.cpp -----------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
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//===----------------------------------------------------------------------===//
15
16#include "llvm/DerivedTypes.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000017#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner1b989192007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineFunctionPass.h"
19#include "llvm/CodeGen/MachineFrameInfo.h"
20#include "llvm/CodeGen/MachineInstr.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000022#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023#include "llvm/CodeGen/Passes.h"
24#include "llvm/Target/TargetData.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025#include "llvm/Target/TargetMachine.h"
26#include "llvm/Target/TargetFrameInfo.h"
27#include "llvm/Function.h"
28#include "llvm/Instructions.h"
29#include "llvm/Support/Compiler.h"
30#include "llvm/Support/GraphWriter.h"
Chris Lattner1fefaac2008-08-23 22:23:09 +000031#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include "llvm/ADT/STLExtras.h"
33#include "llvm/Config/config.h"
34#include <fstream>
35#include <sstream>
36using namespace llvm;
37
38static AnnotationID MF_AID(
39 AnnotationManager::getID("CodeGen::MachineCodeForFunction"));
40
Chris Lattner68433442009-04-13 05:44:34 +000041bool MachineFunctionPass::runOnFunction(Function &F) {
42 // Do not codegen any 'available_externally' functions at all, they have
43 // definitions outside the translation unit.
44 if (F.hasAvailableExternallyLinkage())
45 return false;
46
47 return runOnMachineFunction(MachineFunction::get(&F));
48}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049
50namespace {
51 struct VISIBILITY_HIDDEN Printer : public MachineFunctionPass {
52 static char ID;
53
54 std::ostream *OS;
55 const std::string Banner;
56
Dan Gohman4ae08282008-07-21 19:48:15 +000057 Printer (std::ostream *os, const std::string &banner)
Dan Gohman26f8c272008-09-04 17:05:41 +000058 : MachineFunctionPass(&ID), OS(os), Banner(banner) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059
60 const char *getPassName() const { return "MachineFunction Printer"; }
61
62 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
63 AU.setPreservesAll();
64 }
65
66 bool runOnMachineFunction(MachineFunction &MF) {
67 (*OS) << Banner;
68 MF.print (*OS);
69 return false;
70 }
71 };
72 char Printer::ID = 0;
73}
74
75/// Returns a newly-created MachineFunction Printer pass. The default output
76/// stream is std::cerr; the default banner is empty.
77///
78FunctionPass *llvm::createMachineFunctionPrinterPass(std::ostream *OS,
79 const std::string &Banner){
80 return new Printer(OS, Banner);
81}
82
83namespace {
84 struct VISIBILITY_HIDDEN Deleter : public MachineFunctionPass {
85 static char ID;
Dan Gohman26f8c272008-09-04 17:05:41 +000086 Deleter() : MachineFunctionPass(&ID) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087
88 const char *getPassName() const { return "Machine Code Deleter"; }
89
90 bool runOnMachineFunction(MachineFunction &MF) {
91 // Delete the annotation from the function now.
92 MachineFunction::destruct(MF.getFunction());
93 return true;
94 }
95 };
96 char Deleter::ID = 0;
97}
98
99/// MachineCodeDeletion Pass - This pass deletes all of the machine code for
100/// the current function, which should happen after the function has been
101/// emitted to a .s file or to memory.
102FunctionPass *llvm::createMachineCodeDeleter() {
103 return new Deleter();
104}
105
106
107
108//===---------------------------------------------------------------------===//
109// MachineFunction implementation
110//===---------------------------------------------------------------------===//
111
Dan Gohman2fcbc7e2008-07-28 21:51:04 +0000112void ilist_traits<MachineBasicBlock>::deleteNode(MachineBasicBlock *MBB) {
Dan Gohman221a4372008-07-07 23:14:23 +0000113 MBB->getParent()->DeleteMachineBasicBlock(MBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000114}
115
116MachineFunction::MachineFunction(const Function *F,
117 const TargetMachine &TM)
118 : Annotation(MF_AID), Fn(F), Target(TM) {
Matthijs Kooijman1cb065e2008-10-13 12:37:16 +0000119 if (TM.getRegisterInfo())
120 RegInfo = new (Allocator.Allocate<MachineRegisterInfo>())
121 MachineRegisterInfo(*TM.getRegisterInfo());
122 else
123 RegInfo = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 MFInfo = 0;
Dan Gohman221a4372008-07-07 23:14:23 +0000125 FrameInfo = new (Allocator.Allocate<MachineFrameInfo>())
126 MachineFrameInfo(*TM.getFrameInfo());
127 ConstantPool = new (Allocator.Allocate<MachineConstantPool>())
128 MachineConstantPool(TM.getTargetData());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129
130 // Set up jump table.
131 const TargetData &TD = *TM.getTargetData();
132 bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
133 unsigned EntrySize = IsPic ? 4 : TD.getPointerSize();
134 unsigned Alignment = IsPic ? TD.getABITypeAlignment(Type::Int32Ty)
135 : TD.getPointerABIAlignment();
Dan Gohman221a4372008-07-07 23:14:23 +0000136 JumpTableInfo = new (Allocator.Allocate<MachineJumpTableInfo>())
137 MachineJumpTableInfo(EntrySize, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138}
139
140MachineFunction::~MachineFunction() {
141 BasicBlocks.clear();
Dan Gohman221a4372008-07-07 23:14:23 +0000142 InstructionRecycler.clear(Allocator);
143 BasicBlockRecycler.clear(Allocator);
Matthijs Kooijman1cb065e2008-10-13 12:37:16 +0000144 if (RegInfo)
145 RegInfo->~MachineRegisterInfo(); Allocator.Deallocate(RegInfo);
Dan Gohman221a4372008-07-07 23:14:23 +0000146 if (MFInfo) {
147 MFInfo->~MachineFunctionInfo(); Allocator.Deallocate(MFInfo);
148 }
149 FrameInfo->~MachineFrameInfo(); Allocator.Deallocate(FrameInfo);
150 ConstantPool->~MachineConstantPool(); Allocator.Deallocate(ConstantPool);
151 JumpTableInfo->~MachineJumpTableInfo(); Allocator.Deallocate(JumpTableInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152}
153
154
155/// RenumberBlocks - This discards all of the MachineBasicBlock numbers and
156/// recomputes them. This guarantees that the MBB numbers are sequential,
157/// dense, and match the ordering of the blocks within the function. If a
158/// specific MachineBasicBlock is specified, only that block and those after
159/// it are renumbered.
160void MachineFunction::RenumberBlocks(MachineBasicBlock *MBB) {
161 if (empty()) { MBBNumbering.clear(); return; }
162 MachineFunction::iterator MBBI, E = end();
163 if (MBB == 0)
164 MBBI = begin();
165 else
166 MBBI = MBB;
167
168 // Figure out the block number this should have.
169 unsigned BlockNo = 0;
170 if (MBBI != begin())
171 BlockNo = prior(MBBI)->getNumber()+1;
172
173 for (; MBBI != E; ++MBBI, ++BlockNo) {
174 if (MBBI->getNumber() != (int)BlockNo) {
175 // Remove use of the old number.
176 if (MBBI->getNumber() != -1) {
177 assert(MBBNumbering[MBBI->getNumber()] == &*MBBI &&
178 "MBB number mismatch!");
179 MBBNumbering[MBBI->getNumber()] = 0;
180 }
181
182 // If BlockNo is already taken, set that block's number to -1.
183 if (MBBNumbering[BlockNo])
184 MBBNumbering[BlockNo]->setNumber(-1);
185
186 MBBNumbering[BlockNo] = MBBI;
187 MBBI->setNumber(BlockNo);
188 }
189 }
190
191 // Okay, all the blocks are renumbered. If we have compactified the block
192 // numbering, shrink MBBNumbering now.
193 assert(BlockNo <= MBBNumbering.size() && "Mismatch!");
194 MBBNumbering.resize(BlockNo);
195}
196
Dan Gohman221a4372008-07-07 23:14:23 +0000197/// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
198/// of `new MachineInstr'.
199///
200MachineInstr *
Bill Wendling5aa0ddb2009-02-03 00:55:04 +0000201MachineFunction::CreateMachineInstr(const TargetInstrDesc &TID,
202 DebugLoc DL, bool NoImp) {
Dan Gohman221a4372008-07-07 23:14:23 +0000203 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
Bill Wendling5aa0ddb2009-02-03 00:55:04 +0000204 MachineInstr(TID, DL, NoImp);
Dan Gohman221a4372008-07-07 23:14:23 +0000205}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206
Dan Gohman221a4372008-07-07 23:14:23 +0000207/// CloneMachineInstr - Create a new MachineInstr which is a copy of the
208/// 'Orig' instruction, identical in all ways except the the instruction
209/// has no parent, prev, or next.
210///
211MachineInstr *
212MachineFunction::CloneMachineInstr(const MachineInstr *Orig) {
213 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
214 MachineInstr(*this, *Orig);
215}
216
217/// DeleteMachineInstr - Delete the given MachineInstr.
218///
219void
220MachineFunction::DeleteMachineInstr(MachineInstr *MI) {
221 // Clear the instructions memoperands. This must be done manually because
222 // the instruction's parent pointer is now null, so it can't properly
223 // deallocate them on its own.
224 MI->clearMemOperands(*this);
225
226 MI->~MachineInstr();
227 InstructionRecycler.Deallocate(Allocator, MI);
228}
229
230/// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use this
231/// instead of `new MachineBasicBlock'.
232///
233MachineBasicBlock *
234MachineFunction::CreateMachineBasicBlock(const BasicBlock *bb) {
235 return new (BasicBlockRecycler.Allocate<MachineBasicBlock>(Allocator))
236 MachineBasicBlock(*this, bb);
237}
238
239/// DeleteMachineBasicBlock - Delete the given MachineBasicBlock.
240///
241void
242MachineFunction::DeleteMachineBasicBlock(MachineBasicBlock *MBB) {
243 assert(MBB->getParent() == this && "MBB parent mismatch!");
244 MBB->~MachineBasicBlock();
245 BasicBlockRecycler.Deallocate(Allocator, MBB);
246}
247
Dan Gohman221a4372008-07-07 23:14:23 +0000248void MachineFunction::dump() const {
249 print(*cerr.stream());
250}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251
252void MachineFunction::print(std::ostream &OS) const {
253 OS << "# Machine code for " << Fn->getName () << "():\n";
254
255 // Print Frame Information
Dan Gohman221a4372008-07-07 23:14:23 +0000256 FrameInfo->print(*this, OS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257
258 // Print JumpTable Information
Dan Gohman221a4372008-07-07 23:14:23 +0000259 JumpTableInfo->print(OS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260
261 // Print Constant Pool
Chris Lattner491f7832008-08-23 22:53:13 +0000262 {
263 raw_os_ostream OSS(OS);
264 ConstantPool->print(OSS);
265 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266
Dan Gohman1e57df32008-02-10 18:45:23 +0000267 const TargetRegisterInfo *TRI = getTarget().getRegisterInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000268
Matthijs Kooijman1cb065e2008-10-13 12:37:16 +0000269 if (RegInfo && !RegInfo->livein_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270 OS << "Live Ins:";
Chris Lattner1b989192007-12-31 04:13:23 +0000271 for (MachineRegisterInfo::livein_iterator
272 I = RegInfo->livein_begin(), E = RegInfo->livein_end(); I != E; ++I) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000273 if (TRI)
Bill Wendling9b0baeb2008-02-26 21:47:57 +0000274 OS << " " << TRI->getName(I->first);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275 else
276 OS << " Reg #" << I->first;
277
278 if (I->second)
279 OS << " in VR#" << I->second << " ";
280 }
281 OS << "\n";
282 }
Matthijs Kooijman1cb065e2008-10-13 12:37:16 +0000283 if (RegInfo && !RegInfo->liveout_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000284 OS << "Live Outs:";
Chris Lattner1b989192007-12-31 04:13:23 +0000285 for (MachineRegisterInfo::liveout_iterator
286 I = RegInfo->liveout_begin(), E = RegInfo->liveout_end(); I != E; ++I)
Dan Gohman1e57df32008-02-10 18:45:23 +0000287 if (TRI)
Bill Wendling9b0baeb2008-02-26 21:47:57 +0000288 OS << " " << TRI->getName(*I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289 else
290 OS << " Reg #" << *I;
291 OS << "\n";
292 }
293
294 for (const_iterator BB = begin(); BB != end(); ++BB)
295 BB->print(OS);
296
297 OS << "\n# End machine code for " << Fn->getName () << "().\n\n";
298}
299
300/// CFGOnly flag - This is used to control whether or not the CFG graph printer
301/// prints out the contents of basic blocks or not. This is acceptable because
302/// this code is only really used for debugging purposes.
303///
304static bool CFGOnly = false;
305
306namespace llvm {
307 template<>
308 struct DOTGraphTraits<const MachineFunction*> : public DefaultDOTGraphTraits {
309 static std::string getGraphName(const MachineFunction *F) {
310 return "CFG for '" + F->getFunction()->getName() + "' function";
311 }
312
313 static std::string getNodeLabel(const MachineBasicBlock *Node,
314 const MachineFunction *Graph) {
315 if (CFGOnly && Node->getBasicBlock() &&
316 !Node->getBasicBlock()->getName().empty())
317 return Node->getBasicBlock()->getName() + ":";
318
319 std::ostringstream Out;
320 if (CFGOnly) {
321 Out << Node->getNumber() << ':';
322 return Out.str();
323 }
324
325 Node->print(Out);
326
327 std::string OutStr = Out.str();
328 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
329
330 // Process string output to make it nicer...
331 for (unsigned i = 0; i != OutStr.length(); ++i)
332 if (OutStr[i] == '\n') { // Left justify
333 OutStr[i] = '\\';
334 OutStr.insert(OutStr.begin()+i+1, 'l');
335 }
336 return OutStr;
337 }
338 };
339}
340
341void MachineFunction::viewCFG() const
342{
343#ifndef NDEBUG
344 ViewGraph(this, "mf" + getFunction()->getName());
345#else
346 cerr << "SelectionDAG::viewGraph is only available in debug builds on "
347 << "systems with Graphviz or gv!\n";
348#endif // NDEBUG
349}
350
351void MachineFunction::viewCFGOnly() const
352{
353 CFGOnly = true;
354 viewCFG();
355 CFGOnly = false;
356}
357
358// The next two methods are used to construct and to retrieve
359// the MachineCodeForFunction object for the given function.
360// construct() -- Allocates and initializes for a given function and target
361// get() -- Returns a handle to the object.
362// This should not be called before "construct()"
363// for a given Function.
364//
365MachineFunction&
366MachineFunction::construct(const Function *Fn, const TargetMachine &Tar)
367{
368 assert(Fn->getAnnotation(MF_AID) == 0 &&
369 "Object already exists for this function!");
370 MachineFunction* mcInfo = new MachineFunction(Fn, Tar);
371 Fn->addAnnotation(mcInfo);
372 return *mcInfo;
373}
374
375void MachineFunction::destruct(const Function *Fn) {
376 bool Deleted = Fn->deleteAnnotation(MF_AID);
Chris Lattner845e05c2008-04-06 21:46:45 +0000377 assert(Deleted && "Machine code did not exist for function!");
378 Deleted = Deleted; // silence warning when no assertions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000379}
380
381MachineFunction& MachineFunction::get(const Function *F)
382{
383 MachineFunction *mc = (MachineFunction*)F->getAnnotation(MF_AID);
384 assert(mc && "Call construct() method first to allocate the object");
385 return *mc;
386}
387
Bob Wilsonb6737aa2009-04-20 18:36:57 +0000388/// addLiveIn - Add the specified physical register as a live-in value and
389/// create a corresponding virtual register for it.
390unsigned MachineFunction::addLiveIn(unsigned PReg,
391 const TargetRegisterClass *RC) {
392 assert(RC->contains(PReg) && "Not the correct regclass!");
393 unsigned VReg = getRegInfo().createVirtualRegister(RC);
394 getRegInfo().addLiveIn(PReg, VReg);
395 return VReg;
396}
397
evanchengc611f1d2009-01-27 21:15:07 +0000398/// getOrCreateDebugLocID - Look up the DebugLocTuple index with the given
Bill Wendling4756f3b2009-02-03 22:49:58 +0000399/// source file, line, and column. If none currently exists, create a new
400/// DebugLocTuple, and insert it into the DebugIdMap.
evanchengc611f1d2009-01-27 21:15:07 +0000401unsigned MachineFunction::getOrCreateDebugLocID(unsigned Src, unsigned Line,
402 unsigned Col) {
Bill Wendling4756f3b2009-02-03 22:49:58 +0000403 DebugLocTuple Tuple(Src, Line, Col);
evanchengc611f1d2009-01-27 21:15:07 +0000404 DenseMap<DebugLocTuple, unsigned>::iterator II
405 = DebugLocInfo.DebugIdMap.find(Tuple);
evancheng2dbde502009-01-26 07:41:49 +0000406 if (II != DebugLocInfo.DebugIdMap.end())
407 return II->second;
408 // Add a new tuple.
Evan Chenga40c3dd2009-01-26 23:47:30 +0000409 unsigned Id = DebugLocInfo.DebugLocations.size();
evancheng2dbde502009-01-26 07:41:49 +0000410 DebugLocInfo.DebugLocations.push_back(Tuple);
Evan Chenga40c3dd2009-01-26 23:47:30 +0000411 DebugLocInfo.DebugIdMap[Tuple] = Id;
412 return Id;
evancheng2dbde502009-01-26 07:41:49 +0000413}
414
Bill Wendling4756f3b2009-02-03 22:49:58 +0000415/// getDebugLocTuple - Get the DebugLocTuple for a given DebugLoc object.
Bill Wendlingacf95742009-02-04 00:05:34 +0000416DebugLocTuple MachineFunction::getDebugLocTuple(DebugLoc DL) const {
Bill Wendlingc6075092009-02-03 22:55:54 +0000417 unsigned Idx = DL.getIndex();
Bill Wendling4756f3b2009-02-03 22:49:58 +0000418 assert(Idx < DebugLocInfo.DebugLocations.size() &&
419 "Invalid index into debug locations!");
420 return DebugLocInfo.DebugLocations[Idx];
421}
422
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423//===----------------------------------------------------------------------===//
424// MachineFrameInfo implementation
425//===----------------------------------------------------------------------===//
426
Chris Lattner610b9eb2008-01-25 07:19:06 +0000427/// CreateFixedObject - Create a new object at a fixed location on the stack.
428/// All fixed objects should be created before other objects are created for
429/// efficiency. By default, fixed objects are immutable. This returns an
430/// index with a negative value.
431///
432int MachineFrameInfo::CreateFixedObject(uint64_t Size, int64_t SPOffset,
433 bool Immutable) {
434 assert(Size != 0 && "Cannot allocate zero size fixed stack objects!");
435 Objects.insert(Objects.begin(), StackObject(Size, 1, SPOffset, Immutable));
436 return -++NumFixedObjects;
437}
438
439
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440void MachineFrameInfo::print(const MachineFunction &MF, std::ostream &OS) const{
Matthijs Kooijman0e9ee532008-11-03 11:16:43 +0000441 const TargetFrameInfo *FI = MF.getTarget().getFrameInfo();
442 int ValOffset = (FI ? FI->getOffsetOfLocalArea() : 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000443
444 for (unsigned i = 0, e = Objects.size(); i != e; ++i) {
445 const StackObject &SO = Objects[i];
Dan Gohmand7430142008-10-15 02:57:38 +0000446 OS << " <fi#" << (int)(i-NumFixedObjects) << ">: ";
Evan Chengda872532008-02-27 03:04:06 +0000447 if (SO.Size == ~0ULL) {
448 OS << "dead\n";
449 continue;
450 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451 if (SO.Size == 0)
452 OS << "variable sized";
453 else
454 OS << "size is " << SO.Size << " byte" << (SO.Size != 1 ? "s," : ",");
455 OS << " alignment is " << SO.Alignment << " byte"
456 << (SO.Alignment != 1 ? "s," : ",");
457
458 if (i < NumFixedObjects)
459 OS << " fixed";
460 if (i < NumFixedObjects || SO.SPOffset != -1) {
461 int64_t Off = SO.SPOffset - ValOffset;
462 OS << " at location [SP";
463 if (Off > 0)
464 OS << "+" << Off;
465 else if (Off < 0)
466 OS << Off;
467 OS << "]";
468 }
469 OS << "\n";
470 }
471
472 if (HasVarSizedObjects)
473 OS << " Stack frame contains variable sized objects\n";
474}
475
476void MachineFrameInfo::dump(const MachineFunction &MF) const {
477 print(MF, *cerr.stream());
478}
479
480
481//===----------------------------------------------------------------------===//
482// MachineJumpTableInfo implementation
483//===----------------------------------------------------------------------===//
484
485/// getJumpTableIndex - Create a new jump table entry in the jump table info
486/// or return an existing one.
487///
488unsigned MachineJumpTableInfo::getJumpTableIndex(
489 const std::vector<MachineBasicBlock*> &DestBBs) {
490 assert(!DestBBs.empty() && "Cannot create an empty jump table!");
491 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i)
492 if (JumpTables[i].MBBs == DestBBs)
493 return i;
494
495 JumpTables.push_back(MachineJumpTableEntry(DestBBs));
496 return JumpTables.size()-1;
497}
498
Dan Gohman352406d2009-04-15 01:18:49 +0000499/// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update
500/// the jump tables to branch to New instead.
501bool
502MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old,
503 MachineBasicBlock *New) {
504 assert(Old != New && "Not making a change?");
505 bool MadeChange = false;
506 for (size_t i = 0, e = JumpTables.size(); i != e; ++i) {
507 MachineJumpTableEntry &JTE = JumpTables[i];
508 for (size_t j = 0, e = JTE.MBBs.size(); j != e; ++j)
509 if (JTE.MBBs[j] == Old) {
510 JTE.MBBs[j] = New;
511 MadeChange = true;
512 }
513 }
514 return MadeChange;
515}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516
517void MachineJumpTableInfo::print(std::ostream &OS) const {
518 // FIXME: this is lame, maybe we could print out the MBB numbers or something
519 // like {1, 2, 4, 5, 3, 0}
520 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) {
Dan Gohmand7430142008-10-15 02:57:38 +0000521 OS << " <jt#" << i << "> has " << JumpTables[i].MBBs.size()
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000522 << " entries\n";
523 }
524}
525
526void MachineJumpTableInfo::dump() const { print(*cerr.stream()); }
527
528
529//===----------------------------------------------------------------------===//
530// MachineConstantPool implementation
531//===----------------------------------------------------------------------===//
532
533const Type *MachineConstantPoolEntry::getType() const {
534 if (isMachineConstantPoolEntry())
535 return Val.MachineCPVal->getType();
536 return Val.ConstVal->getType();
537}
538
539MachineConstantPool::~MachineConstantPool() {
540 for (unsigned i = 0, e = Constants.size(); i != e; ++i)
541 if (Constants[i].isMachineConstantPoolEntry())
542 delete Constants[i].Val.MachineCPVal;
543}
544
545/// getConstantPoolIndex - Create a new entry in the constant pool or return
Dan Gohman62e7d9f2008-09-16 20:45:53 +0000546/// an existing one. User must specify the log2 of the minimum required
547/// alignment for the object.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548///
549unsigned MachineConstantPool::getConstantPoolIndex(Constant *C,
550 unsigned Alignment) {
551 assert(Alignment && "Alignment must be specified!");
552 if (Alignment > PoolAlignment) PoolAlignment = Alignment;
553
554 // Check to see if we already have this constant.
555 //
556 // FIXME, this could be made much more efficient for large constant pools.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000557 for (unsigned i = 0, e = Constants.size(); i != e; ++i)
Evan Cheng68c18682009-03-13 07:51:59 +0000558 if (Constants[i].Val.ConstVal == C &&
559 (Constants[i].getAlignment() & (Alignment - 1)) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000560 return i;
561
Evan Cheng68c18682009-03-13 07:51:59 +0000562 Constants.push_back(MachineConstantPoolEntry(C, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000563 return Constants.size()-1;
564}
565
566unsigned MachineConstantPool::getConstantPoolIndex(MachineConstantPoolValue *V,
567 unsigned Alignment) {
568 assert(Alignment && "Alignment must be specified!");
569 if (Alignment > PoolAlignment) PoolAlignment = Alignment;
570
571 // Check to see if we already have this constant.
572 //
573 // FIXME, this could be made much more efficient for large constant pools.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574 int Idx = V->getExistingMachineCPValue(this, Alignment);
575 if (Idx != -1)
576 return (unsigned)Idx;
Evan Cheng68c18682009-03-13 07:51:59 +0000577
578 Constants.push_back(MachineConstantPoolEntry(V, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579 return Constants.size()-1;
580}
581
Chris Lattner491f7832008-08-23 22:53:13 +0000582void MachineConstantPool::print(raw_ostream &OS) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
Dan Gohmand7430142008-10-15 02:57:38 +0000584 OS << " <cp#" << i << "> is";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 if (Constants[i].isMachineConstantPoolEntry())
586 Constants[i].Val.MachineCPVal->print(OS);
587 else
588 OS << *(Value*)Constants[i].Val.ConstVal;
Evan Cheng68c18682009-03-13 07:51:59 +0000589 OS << " , alignment=" << Constants[i].getAlignment();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590 OS << "\n";
591 }
592}
593
Dan Gohmane7d7b0f2009-03-23 15:57:19 +0000594void MachineConstantPool::dump() const { print(errs()); }