blob: 64f735c48e63bd6d685e2d31dbffea775c1208dc [file] [log] [blame]
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +00001//===-- llvm/CodeGen/MachineBasicBlock.cpp ----------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Collect the sequence of machine instructions for a basic block.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/MachineBasicBlock.h"
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +000015#include "llvm/BasicBlock.h"
16#include "llvm/CodeGen/MachineFunction.h"
17#include "llvm/CodeGen/MachineInstr.h"
Alkis Evlogimenos743d0a12004-02-23 18:14:48 +000018#include "llvm/Target/TargetInstrInfo.h"
19#include "llvm/Target/TargetMachine.h"
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +000020#include "Support/LeakDetector.h"
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +000021using namespace llvm;
22
Chris Lattner5e61fa92004-02-19 16:13:54 +000023const MachineFunction *MachineBasicBlock::getParent() const {
24 // Get the parent by getting the Function parent of the basic block, and
25 // getting the MachineFunction from it.
26 return &MachineFunction::get(getBasicBlock()->getParent());
27}
28
Brian Gaeke0bcb1ad2004-05-12 21:35:22 +000029MachineFunction *MachineBasicBlock::getParent() {
30 // Get the parent by getting the Function parent of the basic block, and
31 // getting the MachineFunction from it.
32 return &MachineFunction::get(getBasicBlock()->getParent());
33}
34
35// MBBs start out as #-1. When a MBB is added to a MachineFunction, it
36// gets the next available unique MBB number. If it is removed from a
37// MachineFunction, it goes back to being #-1.
38void ilist_traits<MachineBasicBlock>::addNodeToList (MachineBasicBlock* N)
39{
40 N->Number = N->getParent ()->getNextMBBNumber ();
41}
42
43void ilist_traits<MachineBasicBlock>::removeNodeFromList (MachineBasicBlock* N)
44{
45 N->Number = -1;
46}
47
Chris Lattner5e61fa92004-02-19 16:13:54 +000048
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +000049MachineInstr* ilist_traits<MachineInstr>::createNode()
50{
51 MachineInstr* dummy = new MachineInstr(0, 0);
52 LeakDetector::removeGarbageObject(dummy);
53 return dummy;
54}
55
56void ilist_traits<MachineInstr>::addNodeToList(MachineInstr* N)
57{
58 assert(N->parent == 0 && "machine instruction already in a basic block");
59 N->parent = parent;
60 LeakDetector::removeGarbageObject(N);
61}
62
63void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr* N)
64{
65 assert(N->parent != 0 && "machine instruction not in a basic block");
66 N->parent = 0;
67 LeakDetector::addGarbageObject(N);
68}
69
70void ilist_traits<MachineInstr>::transferNodesFromList(
71 iplist<MachineInstr, ilist_traits<MachineInstr> >& toList,
72 ilist_iterator<MachineInstr> first,
73 ilist_iterator<MachineInstr> last)
74{
75 if (parent != toList.parent)
76 for (; first != last; ++first)
77 first->parent = toList.parent;
78}
79
Alkis Evlogimenos743d0a12004-02-23 18:14:48 +000080MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator()
81{
Alkis Evlogimenose699b162004-02-23 18:36:38 +000082 const TargetInstrInfo& TII = getParent()->getTarget().getInstrInfo();
Alkis Evlogimenos743d0a12004-02-23 18:14:48 +000083 iterator I = end();
84 while (I != begin() && TII.isTerminatorInstr((--I)->getOpcode()));
85 if (I != end() && !TII.isTerminatorInstr(I->getOpcode())) ++I;
86 return I;
87}
88
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +000089void MachineBasicBlock::dump() const
90{
91 print(std::cerr);
92}
93
94void MachineBasicBlock::print(std::ostream &OS) const
95{
96 const BasicBlock *LBB = getBasicBlock();
97 OS << "\n" << LBB->getName() << " (" << (const void*)LBB << "):\n";
98 for (const_iterator I = begin(); I != end(); ++I) {
99 OS << "\t";
Chris Lattner5bf3ce22004-05-24 03:44:52 +0000100 I->print(OS, getParent()->getTarget());
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000101 }
102}