From a8bbb6bcedda02058c5548b8eb99fcc1f348dde9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 3 Feb 2002 07:31:41 +0000 Subject: [PATCH] * Swich to annotation model for MachineCodeForInstruction git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1646 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/InstrSelection/InstrForest.cpp | 18 ++++++++++-------- .../SparcV9/InstrSelection/InstrForest.cpp | 18 ++++++++++-------- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/lib/CodeGen/InstrSelection/InstrForest.cpp b/lib/CodeGen/InstrSelection/InstrForest.cpp index 20cbe8d71bf..29090e06cc0 100644 --- a/lib/CodeGen/InstrSelection/InstrForest.cpp +++ b/lib/CodeGen/InstrSelection/InstrForest.cpp @@ -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 &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"; } diff --git a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp b/lib/Target/SparcV9/InstrSelection/InstrForest.cpp index 20cbe8d71bf..29090e06cc0 100644 --- a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp +++ b/lib/Target/SparcV9/InstrSelection/InstrForest.cpp @@ -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 &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"; }