427 lines
12 KiB
C++
427 lines
12 KiB
C++
// C++ libraries
|
|
#include <utility>
|
|
#include <iostream>
|
|
#include <map>
|
|
#include <iterator>
|
|
#include <iomanip>
|
|
#include <fstream>
|
|
#include <unistd.h>
|
|
#include <vector>
|
|
#include <math.h>
|
|
#include <algorithm>
|
|
|
|
#include "VX_define.h"
|
|
#include "ram.h"
|
|
#include "VVortex.h"
|
|
#include "verilated.h"
|
|
|
|
#include "tb_debug.h"
|
|
|
|
#ifdef VCD_OUTPUT
|
|
#include <verilated_vcd_c.h>
|
|
#endif
|
|
|
|
class Vortex
|
|
{
|
|
public:
|
|
Vortex();
|
|
~Vortex();
|
|
bool simulate(std::string);
|
|
private:
|
|
void ProcessFile(void);
|
|
void print_stats(bool = true);
|
|
bool ibus_driver();
|
|
bool dbus_driver();
|
|
|
|
RAM ram;
|
|
|
|
VVortex * vortex;
|
|
|
|
unsigned start_pc;
|
|
long int curr_cycle;
|
|
bool stop;
|
|
bool unit_test;
|
|
std::string instruction_file_name;
|
|
std::ofstream results;
|
|
int stats_static_inst;
|
|
int stats_dynamic_inst;
|
|
int stats_total_cycles;
|
|
int stats_fwd_stalls;
|
|
int stats_branch_stalls;
|
|
int debug_state;
|
|
int ibus_state;
|
|
int dbus_state;
|
|
int debug_return;
|
|
int debug_wait_num;
|
|
int debug_inst_num;
|
|
int debug_end_wait;
|
|
int debug_debugAddr;
|
|
double stats_sim_time;
|
|
#ifdef VCD_OUTPUT
|
|
VerilatedVcdC *m_trace;
|
|
#endif
|
|
};
|
|
|
|
|
|
|
|
Vortex::Vortex() : start_pc(0), curr_cycle(0), stop(true), unit_test(true), stats_static_inst(0), stats_dynamic_inst(-1),
|
|
stats_total_cycles(0), stats_fwd_stalls(0), stats_branch_stalls(0),
|
|
debug_state(0), ibus_state(0), dbus_state(0), debug_return(0),
|
|
debug_wait_num(0), debug_inst_num(0), debug_end_wait(0), debug_debugAddr(0)
|
|
{
|
|
this->vortex = new VVortex;
|
|
#ifdef VCD_OUTPUT
|
|
this->m_trace = new VerilatedVcdC;
|
|
this->vortex->trace(m_trace, 99);
|
|
this->m_trace->open("trace.vcd");
|
|
#endif
|
|
this->results.open("../results.txt");
|
|
}
|
|
|
|
Vortex::~Vortex()
|
|
{
|
|
#ifdef VCD_OUTPUT
|
|
m_trace->close();
|
|
#endif
|
|
this->results.close();
|
|
delete this->vortex;
|
|
}
|
|
|
|
|
|
void Vortex::ProcessFile(void)
|
|
{
|
|
loadHexImpl(this->instruction_file_name, &this->ram);
|
|
}
|
|
|
|
void Vortex::print_stats(bool cycle_test)
|
|
{
|
|
|
|
if (cycle_test)
|
|
{
|
|
this->results << std::left;
|
|
// this->results << "# Static Instructions:\t" << std::dec << this->stats_static_inst << std::endl;
|
|
this->results << std::setw(24) << "# Dynamic Instructions:" << std::dec << this->stats_dynamic_inst << std::endl;
|
|
this->results << std::setw(24) << "# of total cycles:" << std::dec << this->stats_total_cycles << std::endl;
|
|
this->results << std::setw(24) << "# of forwarding stalls:" << std::dec << this->stats_fwd_stalls << std::endl;
|
|
this->results << std::setw(24) << "# of branch stalls:" << std::dec << this->stats_branch_stalls << std::endl;
|
|
this->results << std::setw(24) << "# CPI:" << std::dec << (double) this->stats_total_cycles / (double) this->stats_dynamic_inst << std::endl;
|
|
this->results << std::setw(24) << "# time to simulate: " << std::dec << this->stats_sim_time << " milliseconds" << std::endl;
|
|
}
|
|
else
|
|
{
|
|
this->results << std::left;
|
|
this->results << std::setw(24) << "# of total cycles:" << std::dec << this->stats_total_cycles << std::endl;
|
|
this->results << std::setw(24) << "# time to simulate: " << std::dec << this->stats_sim_time << " milliseconds" << std::endl;
|
|
}
|
|
|
|
|
|
uint32_t status;
|
|
ram.getWord(0, &status);
|
|
|
|
if (this->unit_test)
|
|
{
|
|
if (status == 1)
|
|
{
|
|
this->results << std::setw(24) << "# GRADE:" << "PASSING\n";
|
|
} else
|
|
{
|
|
this->results << std::setw(24) << "# GRADE:" << "Failed on test: " << status << "\n";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
this->results << std::setw(24) << "# GRADE:" << "N/A [NOT A UNIT TEST]\n";
|
|
}
|
|
|
|
this->stats_static_inst = 0;
|
|
this->stats_dynamic_inst = -1;
|
|
this->stats_total_cycles = 0;
|
|
this->stats_fwd_stalls = 0;
|
|
this->stats_branch_stalls = 0;
|
|
|
|
}
|
|
|
|
bool Vortex::ibus_driver()
|
|
{
|
|
|
|
////////////////////// IBUS //////////////////////
|
|
unsigned new_PC;
|
|
bool stop = false;
|
|
uint32_t curr_inst = 0;
|
|
|
|
curr_inst = 0xdeadbeef;
|
|
|
|
new_PC = vortex->icache_request_pc_address;
|
|
ram.getWord(new_PC, &curr_inst);
|
|
vortex->icache_response_instruction = curr_inst;
|
|
|
|
// std::cout << std::hex << "IReq: " << vortex->icache_request_pc_address << "\tResp: " << curr_inst << "\n";
|
|
|
|
// printf("\n\n---------------------------------------------\n(%x) Inst: %x\n", new_PC, curr_inst);
|
|
// printf("\n");
|
|
////////////////////// IBUS //////////////////////
|
|
|
|
|
|
////////////////////// STATS //////////////////////
|
|
|
|
|
|
if (((((unsigned int)curr_inst) != 0) && (((unsigned int)curr_inst) != 0xffffffff)))
|
|
{
|
|
++stats_dynamic_inst;
|
|
stop = false;
|
|
} else
|
|
{
|
|
// printf("Ibus requesting stop: %x\n", curr_inst);
|
|
stop = true;
|
|
}
|
|
|
|
return stop;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Vortex::dbus_driver()
|
|
{
|
|
uint32_t data_read;
|
|
uint32_t data_write;
|
|
uint32_t addr;
|
|
// std::cout << "DBUS DRIVER\n" << std::endl;
|
|
////////////////////// DBUS //////////////////////
|
|
|
|
bool did = false;
|
|
|
|
for (unsigned curr_th = 0; curr_th < NT; curr_th++)
|
|
{
|
|
if ((vortex->out_cache_driver_in_mem_write != NO_MEM_WRITE) && vortex->out_cache_driver_in_valid[curr_th])
|
|
{
|
|
did = true;
|
|
data_write = (uint32_t) vortex->out_cache_driver_in_data[curr_th];
|
|
addr = (uint32_t) vortex->out_cache_driver_in_address[curr_th];
|
|
|
|
if (addr == 0x00010000)
|
|
{
|
|
std::cerr << (char) data_write;
|
|
}
|
|
|
|
// if ((addr >= 0x810002cc) && (addr < 0x810002d0))
|
|
// {
|
|
// int index = (addr - 0x810002cc) / 4;
|
|
// // std::cerr << GREEN << "1done[" << index << "] = " << data_write << DEFAULT << "\n";
|
|
// }
|
|
|
|
// if ((addr >= 0x810059f4) && (addr < 0x810059f4))
|
|
// {
|
|
// int index = (addr - 0x810059f4) / 4;
|
|
// // std::cerr << RED << "2done[" << index << "] = " << data_write << DEFAULT << "\n";
|
|
// }
|
|
|
|
if (vortex->out_cache_driver_in_mem_write == SB_MEM_WRITE)
|
|
{
|
|
data_write = ( data_write) & 0xFF;
|
|
ram.writeByte( addr, &data_write);
|
|
|
|
} else if (vortex->out_cache_driver_in_mem_write == SH_MEM_WRITE)
|
|
{
|
|
data_write = ( data_write) & 0xFFFF;
|
|
ram.writeHalf( addr, &data_write);
|
|
} else if (vortex->out_cache_driver_in_mem_write == SW_MEM_WRITE)
|
|
{
|
|
// printf("STORING %x in %x \n", data_write, addr);
|
|
data_write = data_write;
|
|
ram.writeWord( addr, &data_write);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// printf("----\n");
|
|
for (unsigned curr_th = 0; curr_th < NT; curr_th++)
|
|
{
|
|
|
|
if ((vortex->out_cache_driver_in_mem_read != NO_MEM_READ) && vortex->out_cache_driver_in_valid[curr_th])
|
|
{
|
|
did = true;
|
|
addr = (uint32_t) vortex->out_cache_driver_in_address[curr_th];
|
|
ram.getWord(addr, &data_read);
|
|
|
|
if (vortex->out_cache_driver_in_mem_read == LB_MEM_READ)
|
|
{
|
|
|
|
vortex->in_cache_driver_out_data[curr_th] = (data_read & 0x80) ? (data_read | 0xFFFFFF00) : (data_read & 0xFF);
|
|
|
|
} else if (vortex->out_cache_driver_in_mem_read == LH_MEM_READ)
|
|
{
|
|
|
|
vortex->in_cache_driver_out_data[curr_th] = (data_read & 0x8000) ? (data_read | 0xFFFF0000) : (data_read & 0xFFFF);
|
|
|
|
} else if (vortex->out_cache_driver_in_mem_read == LW_MEM_READ)
|
|
{
|
|
// printf("Reading mem - Addr: %x = %x\n", addr, data_read);
|
|
// std::cout << "READING - Addr: " << std::hex << addr << " = " << data_read << "\n";
|
|
// std::cout << std::dec;
|
|
vortex->in_cache_driver_out_data[curr_th] = data_read;
|
|
|
|
} else if (vortex->out_cache_driver_in_mem_read == LBU_MEM_READ)
|
|
{
|
|
|
|
vortex->in_cache_driver_out_data[curr_th] = (data_read & 0xFF);
|
|
|
|
} else if (vortex->out_cache_driver_in_mem_read == LHU_MEM_READ)
|
|
{
|
|
|
|
vortex->in_cache_driver_out_data[curr_th] = (data_read & 0xFFFF);
|
|
|
|
}
|
|
else
|
|
{
|
|
vortex->in_cache_driver_out_data[curr_th] = 0xbabebabe;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
vortex->in_cache_driver_out_data[curr_th] = 0xbabebabe;
|
|
}
|
|
|
|
}
|
|
|
|
if (did && (NW > 1))
|
|
{
|
|
|
|
if (NW < NT)
|
|
{
|
|
this->stats_total_cycles += NT % (NW -1);
|
|
}
|
|
}
|
|
// printf("******\n");
|
|
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
|
|
bool Vortex::simulate(std::string file_to_simulate)
|
|
{
|
|
|
|
this->instruction_file_name = file_to_simulate;
|
|
// this->results << "\n****************\t" << file_to_simulate << "\t****************\n";
|
|
|
|
this->ProcessFile();
|
|
|
|
// auto start_time = std::chrono::high_resolution_clock::now();
|
|
|
|
|
|
static bool stop = false;
|
|
static int counter = 0;
|
|
counter = 0;
|
|
stop = false;
|
|
|
|
// auto start_time = clock();
|
|
|
|
|
|
// vortex->reset = 1;
|
|
|
|
|
|
// vortex->reset = 0;
|
|
|
|
unsigned curr_inst;
|
|
unsigned new_PC;
|
|
|
|
// while (this->stop && (!(stop && (counter > 5))))
|
|
// {
|
|
|
|
// // std::cout << "************* Cycle: " << cycle << "\n";
|
|
// bool istop = ibus_driver();
|
|
// bool dstop = !dbus_driver();
|
|
|
|
// vortex->clk = 1;
|
|
// vortex->eval();
|
|
|
|
|
|
|
|
// vortex->clk = 0;
|
|
// vortex->eval();
|
|
|
|
|
|
// stop = istop && dstop;
|
|
|
|
// if (stop)
|
|
// {
|
|
// counter++;
|
|
// } else
|
|
// {
|
|
// counter = 0;
|
|
// }
|
|
|
|
// cycle++;
|
|
// }
|
|
|
|
bool istop;
|
|
bool dstop;
|
|
bool cont = false;
|
|
// for (int i = 0; i < 500; i++)
|
|
|
|
vortex->clk = 0;
|
|
vortex->eval();
|
|
|
|
// unsigned cycles;
|
|
counter = 0;
|
|
this->stats_total_cycles = 10;
|
|
while (this->stop && ((counter < 5)))
|
|
// while (this->stats_total_cycles < 10)
|
|
{
|
|
// std::cout << "Counter: " << counter << "\n";
|
|
// std::cout << "************* Cycle: " << (this->stats_total_cycles) << "\n";
|
|
// dstop = !dbus_driver();
|
|
|
|
vortex->clk = 1;
|
|
vortex->eval();
|
|
#ifdef VCD_OUTPUT
|
|
m_trace->dump(2*this->stats_total_cycles);
|
|
#endif
|
|
istop = ibus_driver();
|
|
dstop = !dbus_driver();
|
|
|
|
|
|
vortex->clk = 0;
|
|
vortex->eval();
|
|
#ifdef VCD_OUTPUT
|
|
m_trace->dump((2*this->stats_total_cycles)+1);
|
|
#endif
|
|
// stop = istop && dstop;
|
|
stop = vortex->out_ebreak;
|
|
|
|
if (stop || cont)
|
|
// if (istop)
|
|
{
|
|
cont = true;
|
|
counter++;
|
|
} else
|
|
{
|
|
counter = 0;
|
|
}
|
|
|
|
++stats_total_cycles;
|
|
}
|
|
|
|
std::cerr << "New Total Cycles: " << (this->stats_total_cycles) << "\n";
|
|
|
|
// int status = (unsigned int) vortex->Vortex__DOT__vx_front_end__DOT__vx_decode__DOT__vx_grp_wrapper__DOT__genblk2__BRA__0__KET____DOT__vx_gpr__DOT__first_ram__DOT__GPR[28][0] & 0xf;
|
|
|
|
// std::cout << "Something: " << result << '\n';
|
|
|
|
// uint32_t status;
|
|
// ram.getWord(0, &status);
|
|
|
|
this->print_stats();
|
|
|
|
|
|
|
|
// return (status == 1);
|
|
return (1 == 1);
|
|
} |