blob: cb19bec0896a2bf0a11ce331b879bdd621982c64 [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;
Jim Grosbachc10915b2009-05-12 23:59:14 +0000124 HasBuiltinSetjmp = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 MFInfo = 0;
Dan Gohman221a4372008-07-07 23:14:23 +0000126 FrameInfo = new (Allocator.Allocate<MachineFrameInfo>())
127 MachineFrameInfo(*TM.getFrameInfo());
128 ConstantPool = new (Allocator.Allocate<MachineConstantPool>())
129 MachineConstantPool(TM.getTargetData());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130
131 // Set up jump table.
132 const TargetData &TD = *TM.getTargetData();
133 bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
134 unsigned EntrySize = IsPic ? 4 : TD.getPointerSize();
135 unsigned Alignment = IsPic ? TD.getABITypeAlignment(Type::Int32Ty)
136 : TD.getPointerABIAlignment();
Dan Gohman221a4372008-07-07 23:14:23 +0000137 JumpTableInfo = new (Allocator.Allocate<MachineJumpTableInfo>())
138 MachineJumpTableInfo(EntrySize, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139}
140
141MachineFunction::~MachineFunction() {
142 BasicBlocks.clear();
Dan Gohman221a4372008-07-07 23:14:23 +0000143 InstructionRecycler.clear(Allocator);
144 BasicBlockRecycler.clear(Allocator);
Matthijs Kooijman1cb065e2008-10-13 12:37:16 +0000145 if (RegInfo)
146 RegInfo->~MachineRegisterInfo(); Allocator.Deallocate(RegInfo);
Dan Gohman221a4372008-07-07 23:14:23 +0000147 if (MFInfo) {
148 MFInfo->~MachineFunctionInfo(); Allocator.Deallocate(MFInfo);
149 }
150 FrameInfo->~MachineFrameInfo(); Allocator.Deallocate(FrameInfo);
151 ConstantPool->~MachineConstantPool(); Allocator.Deallocate(ConstantPool);
152 JumpTableInfo->~MachineJumpTableInfo(); Allocator.Deallocate(JumpTableInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153}
154
155
156/// RenumberBlocks - This discards all of the MachineBasicBlock numbers and
157/// recomputes them. This guarantees that the MBB numbers are sequential,
158/// dense, and match the ordering of the blocks within the function. If a
159/// specific MachineBasicBlock is specified, only that block and those after
160/// it are renumbered.
161void MachineFunction::RenumberBlocks(MachineBasicBlock *MBB) {
162 if (empty()) { MBBNumbering.clear(); return; }
163 MachineFunction::iterator MBBI, E = end();
164 if (MBB == 0)
165 MBBI = begin();
166 else
167 MBBI = MBB;
168
169 // Figure out the block number this should have.
170 unsigned BlockNo = 0;
171 if (MBBI != begin())
172 BlockNo = prior(MBBI)->getNumber()+1;
173
174 for (; MBBI != E; ++MBBI, ++BlockNo) {
175 if (MBBI->getNumber() != (int)BlockNo) {
176 // Remove use of the old number.
177 if (MBBI->getNumber() != -1) {
178 assert(MBBNumbering[MBBI->getNumber()] == &*MBBI &&
179 "MBB number mismatch!");
180 MBBNumbering[MBBI->getNumber()] = 0;
181 }
182
183 // If BlockNo is already taken, set that block's number to -1.
184 if (MBBNumbering[BlockNo])
185 MBBNumbering[BlockNo]->setNumber(-1);
186
187 MBBNumbering[BlockNo] = MBBI;
188 MBBI->setNumber(BlockNo);
189 }
190 }
191
192 // Okay, all the blocks are renumbered. If we have compactified the block
193 // numbering, shrink MBBNumbering now.
194 assert(BlockNo <= MBBNumbering.size() && "Mismatch!");
195 MBBNumbering.resize(BlockNo);
196}
197
Dan Gohman221a4372008-07-07 23:14:23 +0000198/// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
199/// of `new MachineInstr'.
200///
201MachineInstr *
Bill Wendling5aa0ddb2009-02-03 00:55:04 +0000202MachineFunction::CreateMachineInstr(const TargetInstrDesc &TID,
203 DebugLoc DL, bool NoImp) {
Dan Gohman221a4372008-07-07 23:14:23 +0000204 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
Bill Wendling5aa0ddb2009-02-03 00:55:04 +0000205 MachineInstr(TID, DL, NoImp);
Dan Gohman221a4372008-07-07 23:14:23 +0000206}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207
Dan Gohman221a4372008-07-07 23:14:23 +0000208/// CloneMachineInstr - Create a new MachineInstr which is a copy of the
209/// 'Orig' instruction, identical in all ways except the the instruction
210/// has no parent, prev, or next.
211///
212MachineInstr *
213MachineFunction::CloneMachineInstr(const MachineInstr *Orig) {
214 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
215 MachineInstr(*this, *Orig);
216}
217
218/// DeleteMachineInstr - Delete the given MachineInstr.
219///
220void
221MachineFunction::DeleteMachineInstr(MachineInstr *MI) {
222 // Clear the instructions memoperands. This must be done manually because
223 // the instruction's parent pointer is now null, so it can't properly
224 // deallocate them on its own.
225 MI->clearMemOperands(*this);
226
227 MI->~MachineInstr();
228 InstructionRecycler.Deallocate(Allocator, MI);
229}
230
231/// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use this
232/// instead of `new MachineBasicBlock'.
233///
234MachineBasicBlock *
235MachineFunction::CreateMachineBasicBlock(const BasicBlock *bb) {
236 return new (BasicBlockRecycler.Allocate<MachineBasicBlock>(Allocator))
237 MachineBasicBlock(*this, bb);
238}
239
240/// DeleteMachineBasicBlock - Delete the given MachineBasicBlock.
241///
242void
243MachineFunction::DeleteMachineBasicBlock(MachineBasicBlock *MBB) {
244 assert(MBB->getParent() == this && "MBB parent mismatch!");
245 MBB->~MachineBasicBlock();
246 BasicBlockRecycler.Deallocate(Allocator, MBB);
247}
248
Dan Gohman221a4372008-07-07 23:14:23 +0000249void MachineFunction::dump() const {
250 print(*cerr.stream());
251}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000252
253void MachineFunction::print(std::ostream &OS) const {
254 OS << "# Machine code for " << Fn->getName () << "():\n";
255
256 // Print Frame Information
Dan Gohman221a4372008-07-07 23:14:23 +0000257 FrameInfo->print(*this, OS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258
259 // Print JumpTable Information
Dan Gohman221a4372008-07-07 23:14:23 +0000260 JumpTableInfo->print(OS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000261
262 // Print Constant Pool
Chris Lattner491f7832008-08-23 22:53:13 +0000263 {
264 raw_os_ostream OSS(OS);
265 ConstantPool->print(OSS);
266 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267
Dan Gohman1e57df32008-02-10 18:45:23 +0000268 const TargetRegisterInfo *TRI = getTarget().getRegisterInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269
Matthijs Kooijman1cb065e2008-10-13 12:37:16 +0000270 if (RegInfo && !RegInfo->livein_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271 OS << "Live Ins:";
Chris Lattner1b989192007-12-31 04:13:23 +0000272 for (MachineRegisterInfo::livein_iterator
273 I = RegInfo->livein_begin(), E = RegInfo->livein_end(); I != E; ++I) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000274 if (TRI)
Bill Wendling9b0baeb2008-02-26 21:47:57 +0000275 OS << " " << TRI->getName(I->first);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000276 else
277 OS << " Reg #" << I->first;
278
279 if (I->second)
280 OS << " in VR#" << I->second << " ";
281 }
282 OS << "\n";
283 }
Matthijs Kooijman1cb065e2008-10-13 12:37:16 +0000284 if (RegInfo && !RegInfo->liveout_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285 OS << "Live Outs:";
Chris Lattner1b989192007-12-31 04:13:23 +0000286 for (MachineRegisterInfo::liveout_iterator
287 I = RegInfo->liveout_begin(), E = RegInfo->liveout_end(); I != E; ++I)
Dan Gohman1e57df32008-02-10 18:45:23 +0000288 if (TRI)
Bill Wendling9b0baeb2008-02-26 21:47:57 +0000289 OS << " " << TRI->getName(*I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000290 else
291 OS << " Reg #" << *I;
292 OS << "\n";
293 }
294
295 for (const_iterator BB = begin(); BB != end(); ++BB)
296 BB->print(OS);
297
298 OS << "\n# End machine code for " << Fn->getName () << "().\n\n";
299}
300
301/// CFGOnly flag - This is used to control whether or not the CFG graph printer
302/// prints out the contents of basic blocks or not. This is acceptable because
303/// this code is only really used for debugging purposes.
304///
305static bool CFGOnly = false;
306
307namespace llvm {
308 template<>
309 struct DOTGraphTraits<const MachineFunction*> : public DefaultDOTGraphTraits {
310 static std::string getGraphName(const MachineFunction *F) {
311 return "CFG for '" + F->getFunction()->getName() + "' function";
312 }
313
314 static std::string getNodeLabel(const MachineBasicBlock *Node,
315 const MachineFunction *Graph) {
316 if (CFGOnly && Node->getBasicBlock() &&
317 !Node->getBasicBlock()->getName().empty())
318 return Node->getBasicBlock()->getName() + ":";
319
320 std::ostringstream Out;
321 if (CFGOnly) {
322 Out << Node->getNumber() << ':';
323 return Out.str();
324 }
325
326 Node->print(Out);
327
328 std::string OutStr = Out.str();
329 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
330
331 // Process string output to make it nicer...
332 for (unsigned i = 0; i != OutStr.length(); ++i)
333 if (OutStr[i] == '\n') { // Left justify
334 OutStr[i] = '\\';
335 OutStr.insert(OutStr.begin()+i+1, 'l');
336 }
337 return OutStr;
338 }
339 };
340}
341
342void MachineFunction::viewCFG() const
343{
344#ifndef NDEBUG
345 ViewGraph(this, "mf" + getFunction()->getName());
346#else
347 cerr << "SelectionDAG::viewGraph is only available in debug builds on "
348 << "systems with Graphviz or gv!\n";
349#endif // NDEBUG
350}
351
352void MachineFunction::viewCFGOnly() const
353{
354 CFGOnly = true;
355 viewCFG();
356 CFGOnly = false;
357}
358
359// The next two methods are used to construct and to retrieve
360// the MachineCodeForFunction object for the given function.
361// construct() -- Allocates and initializes for a given function and target
362// get() -- Returns a handle to the object.
363// This should not be called before "construct()"
364// for a given Function.
365//
366MachineFunction&
367MachineFunction::construct(const Function *Fn, const TargetMachine &Tar)
368{
369 assert(Fn->getAnnotation(MF_AID) == 0 &&
370 "Object already exists for this function!");
371 MachineFunction* mcInfo = new MachineFunction(Fn, Tar);
372 Fn->addAnnotation(mcInfo);
373 return *mcInfo;
374}
375
376void MachineFunction::destruct(const Function *Fn) {
377 bool Deleted = Fn->deleteAnnotation(MF_AID);
Chris Lattner845e05c2008-04-06 21:46:45 +0000378 assert(Deleted && "Machine code did not exist for function!");
379 Deleted = Deleted; // silence warning when no assertions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000380}
381
382MachineFunction& MachineFunction::get(const Function *F)
383{
384 MachineFunction *mc = (MachineFunction*)F->getAnnotation(MF_AID);
385 assert(mc && "Call construct() method first to allocate the object");
386 return *mc;
387}
388
Bob Wilsonb6737aa2009-04-20 18:36:57 +0000389/// addLiveIn - Add the specified physical register as a live-in value and
390/// create a corresponding virtual register for it.
391unsigned MachineFunction::addLiveIn(unsigned PReg,
392 const TargetRegisterClass *RC) {
393 assert(RC->contains(PReg) && "Not the correct regclass!");
394 unsigned VReg = getRegInfo().createVirtualRegister(RC);
395 getRegInfo().addLiveIn(PReg, VReg);
396 return VReg;
397}
398
evanchengc611f1d2009-01-27 21:15:07 +0000399/// getOrCreateDebugLocID - Look up the DebugLocTuple index with the given
Bill Wendling4756f3b2009-02-03 22:49:58 +0000400/// source file, line, and column. If none currently exists, create a new
401/// DebugLocTuple, and insert it into the DebugIdMap.
Argiris Kirtzidis5b02f4c2009-04-30 23:22:31 +0000402unsigned MachineFunction::getOrCreateDebugLocID(GlobalVariable *CompileUnit,
403 unsigned Line, unsigned Col) {
404 DebugLocTuple Tuple(CompileUnit, Line, Col);
evanchengc611f1d2009-01-27 21:15:07 +0000405 DenseMap<DebugLocTuple, unsigned>::iterator II
406 = DebugLocInfo.DebugIdMap.find(Tuple);
evancheng2dbde502009-01-26 07:41:49 +0000407 if (II != DebugLocInfo.DebugIdMap.end())
408 return II->second;
409 // Add a new tuple.
Evan Chenga40c3dd2009-01-26 23:47:30 +0000410 unsigned Id = DebugLocInfo.DebugLocations.size();
evancheng2dbde502009-01-26 07:41:49 +0000411 DebugLocInfo.DebugLocations.push_back(Tuple);
Evan Chenga40c3dd2009-01-26 23:47:30 +0000412 DebugLocInfo.DebugIdMap[Tuple] = Id;
413 return Id;
evancheng2dbde502009-01-26 07:41:49 +0000414}
415
Bill Wendling4756f3b2009-02-03 22:49:58 +0000416/// getDebugLocTuple - Get the DebugLocTuple for a given DebugLoc object.
Bill Wendlingacf95742009-02-04 00:05:34 +0000417DebugLocTuple MachineFunction::getDebugLocTuple(DebugLoc DL) const {
Bill Wendlingc6075092009-02-03 22:55:54 +0000418 unsigned Idx = DL.getIndex();
Bill Wendling4756f3b2009-02-03 22:49:58 +0000419 assert(Idx < DebugLocInfo.DebugLocations.size() &&
420 "Invalid index into debug locations!");
421 return DebugLocInfo.DebugLocations[Idx];
422}
423
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424//===----------------------------------------------------------------------===//
425// MachineFrameInfo implementation
426//===----------------------------------------------------------------------===//
427
Chris Lattner610b9eb2008-01-25 07:19:06 +0000428/// CreateFixedObject - Create a new object at a fixed location on the stack.
429/// All fixed objects should be created before other objects are created for
430/// efficiency. By default, fixed objects are immutable. This returns an
431/// index with a negative value.
432///
433int MachineFrameInfo::CreateFixedObject(uint64_t Size, int64_t SPOffset,
434 bool Immutable) {
435 assert(Size != 0 && "Cannot allocate zero size fixed stack objects!");
436 Objects.insert(Objects.begin(), StackObject(Size, 1, SPOffset, Immutable));
437 return -++NumFixedObjects;
438}
439
440
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441void MachineFrameInfo::print(const MachineFunction &MF, std::ostream &OS) const{
Matthijs Kooijman0e9ee532008-11-03 11:16:43 +0000442 const TargetFrameInfo *FI = MF.getTarget().getFrameInfo();
443 int ValOffset = (FI ? FI->getOffsetOfLocalArea() : 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444
445 for (unsigned i = 0, e = Objects.size(); i != e; ++i) {
446 const StackObject &SO = Objects[i];
Dan Gohmand7430142008-10-15 02:57:38 +0000447 OS << " <fi#" << (int)(i-NumFixedObjects) << ">: ";
Evan Chengda872532008-02-27 03:04:06 +0000448 if (SO.Size == ~0ULL) {
449 OS << "dead\n";
450 continue;
451 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452 if (SO.Size == 0)
453 OS << "variable sized";
454 else
455 OS << "size is " << SO.Size << " byte" << (SO.Size != 1 ? "s," : ",");
456 OS << " alignment is " << SO.Alignment << " byte"
457 << (SO.Alignment != 1 ? "s," : ",");
458
459 if (i < NumFixedObjects)
460 OS << " fixed";
461 if (i < NumFixedObjects || SO.SPOffset != -1) {
462 int64_t Off = SO.SPOffset - ValOffset;
463 OS << " at location [SP";
464 if (Off > 0)
465 OS << "+" << Off;
466 else if (Off < 0)
467 OS << Off;
468 OS << "]";
469 }
470 OS << "\n";
471 }
472
473 if (HasVarSizedObjects)
474 OS << " Stack frame contains variable sized objects\n";
475}
476
477void MachineFrameInfo::dump(const MachineFunction &MF) const {
478 print(MF, *cerr.stream());
479}
480
481
482//===----------------------------------------------------------------------===//
483// MachineJumpTableInfo implementation
484//===----------------------------------------------------------------------===//
485
486/// getJumpTableIndex - Create a new jump table entry in the jump table info
487/// or return an existing one.
488///
489unsigned MachineJumpTableInfo::getJumpTableIndex(
490 const std::vector<MachineBasicBlock*> &DestBBs) {
491 assert(!DestBBs.empty() && "Cannot create an empty jump table!");
492 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i)
493 if (JumpTables[i].MBBs == DestBBs)
494 return i;
495
496 JumpTables.push_back(MachineJumpTableEntry(DestBBs));
497 return JumpTables.size()-1;
498}
499
Dan Gohman352406d2009-04-15 01:18:49 +0000500/// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update
501/// the jump tables to branch to New instead.
502bool
503MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old,
504 MachineBasicBlock *New) {
505 assert(Old != New && "Not making a change?");
506 bool MadeChange = false;
507 for (size_t i = 0, e = JumpTables.size(); i != e; ++i) {
508 MachineJumpTableEntry &JTE = JumpTables[i];
509 for (size_t j = 0, e = JTE.MBBs.size(); j != e; ++j)
510 if (JTE.MBBs[j] == Old) {
511 JTE.MBBs[j] = New;
512 MadeChange = true;
513 }
514 }
515 return MadeChange;
516}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517
518void MachineJumpTableInfo::print(std::ostream &OS) const {
519 // FIXME: this is lame, maybe we could print out the MBB numbers or something
520 // like {1, 2, 4, 5, 3, 0}
521 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) {
Dan Gohmand7430142008-10-15 02:57:38 +0000522 OS << " <jt#" << i << "> has " << JumpTables[i].MBBs.size()
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000523 << " entries\n";
524 }
525}
526
527void MachineJumpTableInfo::dump() const { print(*cerr.stream()); }
528
529
530//===----------------------------------------------------------------------===//
531// MachineConstantPool implementation
532//===----------------------------------------------------------------------===//
533
534const Type *MachineConstantPoolEntry::getType() const {
535 if (isMachineConstantPoolEntry())
536 return Val.MachineCPVal->getType();
537 return Val.ConstVal->getType();
538}
539
540MachineConstantPool::~MachineConstantPool() {
541 for (unsigned i = 0, e = Constants.size(); i != e; ++i)
542 if (Constants[i].isMachineConstantPoolEntry())
543 delete Constants[i].Val.MachineCPVal;
544}
545
546/// getConstantPoolIndex - Create a new entry in the constant pool or return
Dan Gohman62e7d9f2008-09-16 20:45:53 +0000547/// an existing one. User must specify the log2 of the minimum required
548/// alignment for the object.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549///
550unsigned MachineConstantPool::getConstantPoolIndex(Constant *C,
551 unsigned Alignment) {
552 assert(Alignment && "Alignment must be specified!");
553 if (Alignment > PoolAlignment) PoolAlignment = Alignment;
554
555 // Check to see if we already have this constant.
556 //
557 // FIXME, this could be made much more efficient for large constant pools.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558 for (unsigned i = 0, e = Constants.size(); i != e; ++i)
Evan Cheng68c18682009-03-13 07:51:59 +0000559 if (Constants[i].Val.ConstVal == C &&
560 (Constants[i].getAlignment() & (Alignment - 1)) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561 return i;
562
Evan Cheng68c18682009-03-13 07:51:59 +0000563 Constants.push_back(MachineConstantPoolEntry(C, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564 return Constants.size()-1;
565}
566
567unsigned MachineConstantPool::getConstantPoolIndex(MachineConstantPoolValue *V,
568 unsigned Alignment) {
569 assert(Alignment && "Alignment must be specified!");
570 if (Alignment > PoolAlignment) PoolAlignment = Alignment;
571
572 // Check to see if we already have this constant.
573 //
574 // FIXME, this could be made much more efficient for large constant pools.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575 int Idx = V->getExistingMachineCPValue(this, Alignment);
576 if (Idx != -1)
577 return (unsigned)Idx;
Evan Cheng68c18682009-03-13 07:51:59 +0000578
579 Constants.push_back(MachineConstantPoolEntry(V, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000580 return Constants.size()-1;
581}
582
Chris Lattner491f7832008-08-23 22:53:13 +0000583void MachineConstantPool::print(raw_ostream &OS) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
Dan Gohmand7430142008-10-15 02:57:38 +0000585 OS << " <cp#" << i << "> is";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 if (Constants[i].isMachineConstantPoolEntry())
587 Constants[i].Val.MachineCPVal->print(OS);
588 else
589 OS << *(Value*)Constants[i].Val.ConstVal;
Evan Cheng68c18682009-03-13 07:51:59 +0000590 OS << " , alignment=" << Constants[i].getAlignment();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000591 OS << "\n";
592 }
593}
594
Dan Gohmane7d7b0f2009-03-23 15:57:19 +0000595void MachineConstantPool::dump() const { print(errs()); }