Simplify code to match new interfaces

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7464 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-08-01 04:38:18 +00:00
parent 5c737ad4d6
commit 048c00db1c
4 changed files with 12 additions and 20 deletions

View File

@ -8,9 +8,8 @@
#include "Record.h" #include "Record.h"
#include "Support/Statistic.h" #include "Support/Statistic.h"
bool CodeEmitterGen::run(std::ostream &o) { void CodeEmitterGen::run(std::ostream &o) {
std::vector<Record*> Insts; std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
if (Records.getAllDerivedDefinitions("Instruction", Insts)) return true;
std::string Namespace = "V9::"; std::string Namespace = "V9::";
std::string ClassName = "SparcV9CodeEmitter::"; std::string ClassName = "SparcV9CodeEmitter::";
@ -28,10 +27,8 @@ bool CodeEmitterGen::run(std::ostream &o) {
<< " DEBUG(std::cerr << \"Emitting " << R->getName() << "\\n\");\n"; << " DEBUG(std::cerr << \"Emitting " << R->getName() << "\\n\");\n";
const RecordVal *InstVal = R->getValue("Inst"); const RecordVal *InstVal = R->getValue("Inst");
if (!InstVal) { if (!InstVal)
std::cerr << "No 'Inst' record found in target description file!\n"; throw std::string("No 'Inst' record found in target description file!");
return true;
}
Init *InitVal = InstVal->getValue(); Init *InitVal = InstVal->getValue();
assert(dynamic_cast<BitsInit*>(InitVal) && assert(dynamic_cast<BitsInit*>(InitVal) &&
@ -226,5 +223,4 @@ bool CodeEmitterGen::run(std::ostream &o) {
<< " }\n" << " }\n"
<< " return Value;\n" << " return Value;\n"
<< "}\n"; << "}\n";
return false;
} }

View File

@ -16,8 +16,8 @@ class CodeEmitterGen {
public: public:
CodeEmitterGen(RecordKeeper &R) : Records(R) {} CodeEmitterGen(RecordKeeper &R) : Records(R) {}
// run - Output the code emitter, returning true on failure. // run - Output the code emitter
bool run(std::ostream &o); void run(std::ostream &o);
private: private:
void emitMachineOpEmitter(std::ostream &o, const std::string &Namespace); void emitMachineOpEmitter(std::ostream &o, const std::string &Namespace);
void emitGetValueBit(std::ostream &o, const std::string &Namespace); void emitGetValueBit(std::ostream &o, const std::string &Namespace);

View File

@ -8,9 +8,8 @@
#include "Record.h" #include "Record.h"
#include "Support/Statistic.h" #include "Support/Statistic.h"
bool CodeEmitterGen::run(std::ostream &o) { void CodeEmitterGen::run(std::ostream &o) {
std::vector<Record*> Insts; std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
if (Records.getAllDerivedDefinitions("Instruction", Insts)) return true;
std::string Namespace = "V9::"; std::string Namespace = "V9::";
std::string ClassName = "SparcV9CodeEmitter::"; std::string ClassName = "SparcV9CodeEmitter::";
@ -28,10 +27,8 @@ bool CodeEmitterGen::run(std::ostream &o) {
<< " DEBUG(std::cerr << \"Emitting " << R->getName() << "\\n\");\n"; << " DEBUG(std::cerr << \"Emitting " << R->getName() << "\\n\");\n";
const RecordVal *InstVal = R->getValue("Inst"); const RecordVal *InstVal = R->getValue("Inst");
if (!InstVal) { if (!InstVal)
std::cerr << "No 'Inst' record found in target description file!\n"; throw std::string("No 'Inst' record found in target description file!");
return true;
}
Init *InitVal = InstVal->getValue(); Init *InitVal = InstVal->getValue();
assert(dynamic_cast<BitsInit*>(InitVal) && assert(dynamic_cast<BitsInit*>(InitVal) &&
@ -226,5 +223,4 @@ bool CodeEmitterGen::run(std::ostream &o) {
<< " }\n" << " }\n"
<< " return Value;\n" << " return Value;\n"
<< "}\n"; << "}\n";
return false;
} }

View File

@ -16,8 +16,8 @@ class CodeEmitterGen {
public: public:
CodeEmitterGen(RecordKeeper &R) : Records(R) {} CodeEmitterGen(RecordKeeper &R) : Records(R) {}
// run - Output the code emitter, returning true on failure. // run - Output the code emitter
bool run(std::ostream &o); void run(std::ostream &o);
private: private:
void emitMachineOpEmitter(std::ostream &o, const std::string &Namespace); void emitMachineOpEmitter(std::ostream &o, const std::string &Namespace);
void emitGetValueBit(std::ostream &o, const std::string &Namespace); void emitGetValueBit(std::ostream &o, const std::string &Namespace);