2004-02-16 07:17:43 +00:00
|
|
|
//===-- llvm/CodeGen/MachineBasicBlock.cpp ----------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Collect the sequence of machine instructions for a basic block.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineBasicBlock.h"
|
|
|
|
#include "llvm/BasicBlock.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2004-02-23 18:14:48 +00:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2004-02-16 07:17:43 +00:00
|
|
|
#include "Support/LeakDetector.h"
|
2004-07-04 12:19:56 +00:00
|
|
|
#include <iostream>
|
2004-02-16 07:17:43 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2004-05-24 07:14:35 +00:00
|
|
|
MachineBasicBlock::~MachineBasicBlock() {
|
|
|
|
LeakDetector::removeGarbageObject(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-05-12 21:35:22 +00:00
|
|
|
// MBBs start out as #-1. When a MBB is added to a MachineFunction, it
|
|
|
|
// gets the next available unique MBB number. If it is removed from a
|
|
|
|
// MachineFunction, it goes back to being #-1.
|
2004-07-01 06:02:27 +00:00
|
|
|
void ilist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock* N) {
|
2004-05-24 06:11:51 +00:00
|
|
|
assert(N->Parent == 0 && "machine instruction already in a basic block");
|
2004-05-24 07:14:35 +00:00
|
|
|
N->Parent = Parent;
|
2004-07-01 06:02:27 +00:00
|
|
|
N->Number = Parent->addToMBBNumbering(N);
|
2004-05-24 06:11:51 +00:00
|
|
|
LeakDetector::removeGarbageObject(N);
|
2004-05-12 21:35:22 +00:00
|
|
|
}
|
|
|
|
|
2004-07-01 06:02:27 +00:00
|
|
|
void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock* N) {
|
2004-05-24 06:11:51 +00:00
|
|
|
assert(N->Parent != 0 && "machine instruction not in a basic block");
|
2004-07-01 06:02:27 +00:00
|
|
|
N->Parent->removeFromMBBNumbering(N->Number);
|
2004-05-12 21:35:22 +00:00
|
|
|
N->Number = -1;
|
2004-07-01 06:02:27 +00:00
|
|
|
N->Parent = 0;
|
2004-05-24 06:11:51 +00:00
|
|
|
LeakDetector::addGarbageObject(N);
|
2004-05-12 21:35:22 +00:00
|
|
|
}
|
|
|
|
|
2004-02-19 16:13:54 +00:00
|
|
|
|
2004-07-01 06:02:27 +00:00
|
|
|
MachineInstr* ilist_traits<MachineInstr>::createNode() {
|
2004-02-16 07:17:43 +00:00
|
|
|
MachineInstr* dummy = new MachineInstr(0, 0);
|
|
|
|
LeakDetector::removeGarbageObject(dummy);
|
|
|
|
return dummy;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ilist_traits<MachineInstr>::addNodeToList(MachineInstr* N)
|
|
|
|
{
|
|
|
|
assert(N->parent == 0 && "machine instruction already in a basic block");
|
|
|
|
N->parent = parent;
|
|
|
|
LeakDetector::removeGarbageObject(N);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr* N)
|
|
|
|
{
|
|
|
|
assert(N->parent != 0 && "machine instruction not in a basic block");
|
|
|
|
N->parent = 0;
|
|
|
|
LeakDetector::addGarbageObject(N);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ilist_traits<MachineInstr>::transferNodesFromList(
|
|
|
|
iplist<MachineInstr, ilist_traits<MachineInstr> >& toList,
|
|
|
|
ilist_iterator<MachineInstr> first,
|
|
|
|
ilist_iterator<MachineInstr> last)
|
|
|
|
{
|
|
|
|
if (parent != toList.parent)
|
|
|
|
for (; first != last; ++first)
|
|
|
|
first->parent = toList.parent;
|
|
|
|
}
|
|
|
|
|
2004-02-23 18:14:48 +00:00
|
|
|
MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator()
|
|
|
|
{
|
2004-06-02 05:57:12 +00:00
|
|
|
const TargetInstrInfo& TII = *getParent()->getTarget().getInstrInfo();
|
2004-02-23 18:14:48 +00:00
|
|
|
iterator I = end();
|
|
|
|
while (I != begin() && TII.isTerminatorInstr((--I)->getOpcode()));
|
|
|
|
if (I != end() && !TII.isTerminatorInstr(I->getOpcode())) ++I;
|
|
|
|
return I;
|
|
|
|
}
|
|
|
|
|
2004-02-16 07:17:43 +00:00
|
|
|
void MachineBasicBlock::dump() const
|
|
|
|
{
|
|
|
|
print(std::cerr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineBasicBlock::print(std::ostream &OS) const
|
|
|
|
{
|
2004-05-24 06:11:51 +00:00
|
|
|
if(!getParent()) {
|
|
|
|
OS << "Can't print out MachineBasicBlock because parent MachineFunction is null\n";
|
|
|
|
return;
|
|
|
|
}
|
2004-02-16 07:17:43 +00:00
|
|
|
const BasicBlock *LBB = getBasicBlock();
|
2004-05-24 06:11:51 +00:00
|
|
|
if(LBB)
|
2004-06-17 22:26:53 +00:00
|
|
|
OS << "\n" << LBB->getName() << " (" << (const void*)this
|
|
|
|
<< ", LLVM BB @" << (const void*) LBB << "):\n";
|
2004-02-16 07:17:43 +00:00
|
|
|
for (const_iterator I = begin(); I != end(); ++I) {
|
|
|
|
OS << "\t";
|
2004-06-25 00:13:11 +00:00
|
|
|
I->print(OS, &getParent()->getTarget());
|
2004-02-16 07:17:43 +00:00
|
|
|
}
|
|
|
|
}
|