mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
* Swich to annotation model for MachineCodeForInstruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1646 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
de6dbabaee
commit
a8bbb6bced
@ -23,6 +23,7 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#include "llvm/CodeGen/InstrForest.h"
|
||||
#include "llvm/CodeGen/MachineCodeForInstruction.h"
|
||||
#include "llvm/Method.h"
|
||||
#include "llvm/iTerminators.h"
|
||||
#include "llvm/iMemory.h"
|
||||
@ -125,16 +126,17 @@ InstructionNode::dumpNode(int indent) const
|
||||
cerr << " ";
|
||||
|
||||
cerr << getInstruction()->getOpcodeName();
|
||||
|
||||
const vector<MachineInstr*> &mvec = getInstruction()->getMachineInstrVec();
|
||||
const MachineCodeForInstruction &mvec =
|
||||
MachineCodeForInstruction::get(getInstruction());
|
||||
|
||||
if (mvec.size() > 0)
|
||||
cerr << "\tMachine Instructions: ";
|
||||
for (unsigned int i=0; i < mvec.size(); i++)
|
||||
{
|
||||
mvec[i]->dump(0);
|
||||
if (i < mvec.size() - 1)
|
||||
cerr << "; ";
|
||||
}
|
||||
|
||||
for (unsigned int i=0; i < mvec.size(); ++i) {
|
||||
mvec[i]->dump(0);
|
||||
if (i < mvec.size() - 1)
|
||||
cerr << "; ";
|
||||
}
|
||||
|
||||
cerr << "\n";
|
||||
}
|
||||
|
@ -23,6 +23,7 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#include "llvm/CodeGen/InstrForest.h"
|
||||
#include "llvm/CodeGen/MachineCodeForInstruction.h"
|
||||
#include "llvm/Method.h"
|
||||
#include "llvm/iTerminators.h"
|
||||
#include "llvm/iMemory.h"
|
||||
@ -125,16 +126,17 @@ InstructionNode::dumpNode(int indent) const
|
||||
cerr << " ";
|
||||
|
||||
cerr << getInstruction()->getOpcodeName();
|
||||
|
||||
const vector<MachineInstr*> &mvec = getInstruction()->getMachineInstrVec();
|
||||
const MachineCodeForInstruction &mvec =
|
||||
MachineCodeForInstruction::get(getInstruction());
|
||||
|
||||
if (mvec.size() > 0)
|
||||
cerr << "\tMachine Instructions: ";
|
||||
for (unsigned int i=0; i < mvec.size(); i++)
|
||||
{
|
||||
mvec[i]->dump(0);
|
||||
if (i < mvec.size() - 1)
|
||||
cerr << "; ";
|
||||
}
|
||||
|
||||
for (unsigned int i=0; i < mvec.size(); ++i) {
|
||||
mvec[i]->dump(0);
|
||||
if (i < mvec.size() - 1)
|
||||
cerr << "; ";
|
||||
}
|
||||
|
||||
cerr << "\n";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user