#include "cpu/minor/dyn_inst.hh"
#include <iomanip>
#include <sstream>
#include "arch/isa.hh"
#include "arch/registers.hh"
#include "cpu/base.hh"
#include "cpu/minor/trace.hh"
#include "cpu/reg_class.hh"
#include "debug/MinorExecute.hh"
#include "enums/OpClass.hh"
Go to the source code of this file.
|
| | Minor |
| | Minor contains all the definitions within the MinorCPU apart from the CPU class itself.
|
| |
|
| std::ostream & | Minor::operator<< (std::ostream &os, const InstId &id) |
| | Print this id in the usual slash-separated format expected by MinorTrace. More...
|
| |
| std::ostream & | Minor::operator<< (std::ostream &os, const MinorDynInst &inst) |
| | Print a short reference to this instruction. More...
|
| |
| static void | Minor::printRegName (std::ostream &os, const RegId ®) |
| | Print a register in the form r<n>, f<n>, m<n>(<name>), z for integer, float, misc and zero registers given an 'architectural register number'. More...
|
| |