mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-23 21:14:37 +00:00
553 lines
12 KiB
C
553 lines
12 KiB
C
// See LICENSE for license details.
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <limits.h>
|
|
#include <sys/signal.h>
|
|
#include "util.h"
|
|
#include "coremark.h"
|
|
#include <stdlib.h>
|
|
|
|
#define SYS_write 64
|
|
|
|
#undef strcmp
|
|
|
|
extern volatile uint64_t tohost;
|
|
extern volatile uint64_t fromhost;
|
|
|
|
|
|
void _send_char(char c) {
|
|
/*#error "You must implement the method _send_char to use this file!\n";
|
|
*/
|
|
volatile unsigned char *THR=(unsigned char *)0x10000000;
|
|
volatile unsigned char *LSR=(unsigned char *)0x10000005;
|
|
|
|
while(!(*LSR&0b100000));
|
|
*THR=c;
|
|
while(!(*LSR&0b100000));
|
|
}
|
|
|
|
int sendstring(const char *p){
|
|
int n=0;
|
|
while (*p) {
|
|
_send_char(*p);
|
|
n++;
|
|
p++;
|
|
}
|
|
|
|
return n;
|
|
}
|
|
|
|
static uintptr_t syscall(uintptr_t which, uint64_t arg0, uint64_t arg1, uint64_t arg2)
|
|
{
|
|
volatile uint64_t magic_mem[8] __attribute__((aligned(64)));
|
|
magic_mem[0] = which;
|
|
magic_mem[1] = arg0;
|
|
magic_mem[2] = arg1;
|
|
magic_mem[3] = arg2;
|
|
__sync_synchronize();
|
|
|
|
tohost = (uintptr_t)magic_mem;
|
|
while (fromhost == 0)
|
|
;
|
|
fromhost = 0;
|
|
|
|
__sync_synchronize();
|
|
return magic_mem[0];
|
|
}
|
|
|
|
#define NUM_COUNTERS 3
|
|
static uintptr_t counters[NUM_COUNTERS];
|
|
static char* counter_names[NUM_COUNTERS];
|
|
|
|
void setStats(int enable)
|
|
{
|
|
int i = 0;
|
|
#define READ_CTR(name) do { \
|
|
while (i >= NUM_COUNTERS) ; \
|
|
uintptr_t csr = read_csr(name); \
|
|
if (!enable) { csr -= counters[i]; counter_names[i] = #name; } \
|
|
counters[i++] = csr; \
|
|
} while (0)
|
|
|
|
READ_CTR(mcycle);
|
|
READ_CTR(minstret);
|
|
READ_CTR(mhpmcounter3);
|
|
READ_CTR(mhpmcounter4);
|
|
READ_CTR(mhpmcounter5);
|
|
READ_CTR(mhpmcounter6);
|
|
READ_CTR(mhpmcounter7);
|
|
READ_CTR(mhpmcounter8);
|
|
READ_CTR(mhpmcounter9);
|
|
READ_CTR(mhpmcounter10);
|
|
READ_CTR(mhpmcounter11);
|
|
READ_CTR(mhpmcounter12);
|
|
READ_CTR(mhpmcounter13);
|
|
READ_CTR(mhpmcounter14);
|
|
READ_CTR(mhpmcounter15);
|
|
READ_CTR(mhpmcounter16);
|
|
READ_CTR(mhpmcounter17);
|
|
|
|
#undef READ_CTR
|
|
}
|
|
|
|
void __attribute__((noreturn)) tohost_exit(uintptr_t code)
|
|
{
|
|
tohost = (code << 1) | 1;
|
|
asm ("ecall");
|
|
exit(0);
|
|
}
|
|
|
|
uintptr_t __attribute__((weak)) handle_trap(uintptr_t cause, uintptr_t epc, uintptr_t regs[32])
|
|
{
|
|
tohost_exit(1337);
|
|
}
|
|
|
|
void exit(int code)
|
|
{
|
|
tohost_exit(code);
|
|
}
|
|
|
|
void abort()
|
|
{
|
|
exit(128 + SIGABRT);
|
|
}
|
|
|
|
void printstr(const char* s)
|
|
{
|
|
syscall(SYS_write, 1, (uintptr_t)s, strlen(s));
|
|
}
|
|
|
|
void __attribute__((weak)) thread_entry(int cid, int nc)
|
|
{
|
|
// multi-threaded programs override this function.
|
|
// for the case of single-threaded programs, only let core 0 proceed.
|
|
while (cid != 0);
|
|
}
|
|
|
|
int __attribute__((weak)) main(int argc, char** argv)
|
|
{
|
|
// single-threaded programs override this function.
|
|
printstr("Implement main(), foo!\n");
|
|
return -1;
|
|
}
|
|
|
|
static void init_tls()
|
|
{
|
|
register void* thread_pointer asm("tp");
|
|
extern char _tls_data;
|
|
extern __thread char _tdata_begin, _tdata_end, _tbss_end;
|
|
size_t tdata_size = &_tdata_end - &_tdata_begin;
|
|
memcpy(thread_pointer, &_tls_data, tdata_size);
|
|
size_t tbss_size = &_tbss_end - &_tdata_end;
|
|
memset(thread_pointer + tdata_size, 0, tbss_size);
|
|
}
|
|
|
|
void _init(int cid, int nc)
|
|
{
|
|
init_tls();
|
|
thread_entry(cid, nc);
|
|
|
|
// only single-threaded programs should ever get here.
|
|
int ret = main(0, 0);
|
|
|
|
char buf[NUM_COUNTERS * 32] __attribute__((aligned(64)));
|
|
char* pbuf = buf;
|
|
for (int i = 0; i < NUM_COUNTERS; i++)
|
|
if (counters[i])
|
|
pbuf += sprintf(pbuf, "%s = %d\n", counter_names[i], counters[i]);
|
|
if (pbuf != buf)
|
|
printstr(buf);
|
|
counters[3] = read_csr(mhpmcounter3) - counters[3];
|
|
counters[4] = read_csr(mhpmcounter4) - counters[4];
|
|
counters[5] = read_csr(mhpmcounter5) - counters[5];
|
|
counters[6] = read_csr(mhpmcounter6) - counters[6];
|
|
counters[7] = read_csr(mhpmcounter7) - counters[7];
|
|
counters[8] = read_csr(mhpmcounter8) - counters[8];
|
|
counters[9] = read_csr(mhpmcounter9) - counters[9];
|
|
counters[10] = read_csr(mhpmcounter10) - counters[10];
|
|
counters[11] = read_csr(mhpmcounter11) - counters[11];
|
|
counters[12] = read_csr(mhpmcounter12) - counters[12];
|
|
counters[13] = read_csr(mhpmcounter13) - counters[13];
|
|
counters[14] = read_csr(mhpmcounter14) - counters[14];
|
|
counters[15] = read_csr(mhpmcounter15) - counters[15];
|
|
counters[16] = read_csr(mhpmcounter16) - counters[16];
|
|
counters[17] = read_csr(mhpmcounter17) - counters[17];
|
|
|
|
ee_printf("Load Stalls %d\n", counters[11]);
|
|
ee_printf("D-Cache Accesses %d\n", counters[13]);
|
|
ee_printf("D-Cache Misses %d\n", counters[14]);
|
|
ee_printf("I-Cache Accesses %d\n", counters[16]);
|
|
ee_printf("I-Cache Misses %d\n", counters[17]);
|
|
ee_printf("Branches %d\n", counters[3]);
|
|
ee_printf("Branches Miss Predictions %d\n", counters[7]);
|
|
ee_printf("BTB Misses %d\n", counters[8]);
|
|
ee_printf("Jump and JR %d\n", counters[4]);
|
|
ee_printf("RAS Wrong %d\n", counters[9]);
|
|
ee_printf("Returns %d\n", counters[5]);
|
|
ee_printf("BP Class Wrong %d\n", counters[10]);
|
|
ee_printf("Done printing performance counters\n");
|
|
|
|
exit(ret);
|
|
}
|
|
|
|
#undef putchar
|
|
int putchar(int ch)
|
|
{
|
|
/*static __thread char buf[64] __attribute__((aligned(64)));
|
|
static __thread int buflen = 0;
|
|
|
|
buf[buflen++] = ch;
|
|
|
|
if (ch == '\n' || buflen == sizeof(buf))
|
|
{
|
|
syscall(SYS_write, 1, (uintptr_t)buf, buflen);
|
|
buflen = 0;
|
|
}
|
|
|
|
return 0;*/
|
|
_send_char(ch);
|
|
return 0;
|
|
|
|
}
|
|
|
|
void printhex(uint64_t x)
|
|
{
|
|
char str[17];
|
|
int i;
|
|
for (i = 0; i < 16; i++)
|
|
{
|
|
str[15-i] = (x & 0xF) + ((x & 0xF) < 10 ? '0' : 'a'-10);
|
|
x >>= 4;
|
|
}
|
|
str[16] = 0;
|
|
|
|
printstr(str);
|
|
}
|
|
|
|
static inline void printnum(void (*putch)(int, void**), void **putdat,
|
|
unsigned long long num, unsigned base, int width, int padc)
|
|
{
|
|
unsigned digs[sizeof(num)*CHAR_BIT];
|
|
int pos = 0;
|
|
|
|
while (1)
|
|
{
|
|
digs[pos++] = num % base;
|
|
if (num < base)
|
|
break;
|
|
num /= base;
|
|
}
|
|
|
|
while (width-- > pos)
|
|
putch(padc, putdat);
|
|
|
|
while (pos-- > 0)
|
|
putch(digs[pos] + (digs[pos] >= 10 ? 'a' - 10 : '0'), putdat);
|
|
}
|
|
|
|
static unsigned long long getuint(va_list *ap, int lflag)
|
|
{
|
|
if (lflag >= 2)
|
|
return va_arg(*ap, unsigned long long);
|
|
else if (lflag)
|
|
return va_arg(*ap, unsigned long);
|
|
else
|
|
return va_arg(*ap, unsigned int);
|
|
}
|
|
|
|
static long long getint(va_list *ap, int lflag)
|
|
{
|
|
if (lflag >= 2)
|
|
return va_arg(*ap, long long);
|
|
else if (lflag)
|
|
return va_arg(*ap, long);
|
|
else
|
|
return va_arg(*ap, int);
|
|
}
|
|
|
|
static void vprintfmt(void (*putch)(int, void**), void **putdat, const char *fmt, va_list ap)
|
|
{
|
|
register const char* p;
|
|
const char* last_fmt;
|
|
register int ch, err;
|
|
unsigned long long num;
|
|
int base, lflag, width, precision, altflag;
|
|
char padc;
|
|
|
|
while (1) {
|
|
while ((ch = *(unsigned char *) fmt) != '%') {
|
|
if (ch == '\0')
|
|
return;
|
|
fmt++;
|
|
putch(ch, putdat);
|
|
}
|
|
fmt++;
|
|
|
|
// Process a %-escape sequence
|
|
last_fmt = fmt;
|
|
padc = ' ';
|
|
width = -1;
|
|
precision = -1;
|
|
lflag = 0;
|
|
altflag = 0;
|
|
reswitch:
|
|
switch (ch = *(unsigned char *) fmt++) {
|
|
|
|
// flag to pad on the right
|
|
case '-':
|
|
padc = '-';
|
|
goto reswitch;
|
|
|
|
// flag to pad with 0's instead of spaces
|
|
case '0':
|
|
padc = '0';
|
|
goto reswitch;
|
|
|
|
// width field
|
|
case '1':
|
|
case '2':
|
|
case '3':
|
|
case '4':
|
|
case '5':
|
|
case '6':
|
|
case '7':
|
|
case '8':
|
|
case '9':
|
|
for (precision = 0; ; ++fmt) {
|
|
precision = precision * 10 + ch - '0';
|
|
ch = *fmt;
|
|
if (ch < '0' || ch > '9')
|
|
break;
|
|
}
|
|
goto process_precision;
|
|
|
|
case '*':
|
|
precision = va_arg(ap, int);
|
|
goto process_precision;
|
|
|
|
case '.':
|
|
if (width < 0)
|
|
width = 0;
|
|
goto reswitch;
|
|
|
|
case '#':
|
|
altflag = 1;
|
|
goto reswitch;
|
|
|
|
process_precision:
|
|
if (width < 0)
|
|
width = precision, precision = -1;
|
|
goto reswitch;
|
|
|
|
// long flag (doubled for long long)
|
|
case 'l':
|
|
lflag++;
|
|
goto reswitch;
|
|
|
|
// character
|
|
case 'c':
|
|
putch(va_arg(ap, int), putdat);
|
|
break;
|
|
|
|
// string
|
|
case 's':
|
|
if ((p = va_arg(ap, char *)) == NULL)
|
|
p = "(null)";
|
|
if (width > 0 && padc != '-')
|
|
for (width -= strnlen(p, precision); width > 0; width--)
|
|
putch(padc, putdat);
|
|
for (; (ch = *p) != '\0' && (precision < 0 || --precision >= 0); width--) {
|
|
putch(ch, putdat);
|
|
p++;
|
|
}
|
|
for (; width > 0; width--)
|
|
putch(' ', putdat);
|
|
break;
|
|
|
|
// (signed) decimal
|
|
case 'd':
|
|
num = getint(&ap, lflag);
|
|
if ((long long) num < 0) {
|
|
putch('-', putdat);
|
|
num = -(long long) num;
|
|
}
|
|
base = 10;
|
|
goto signed_number;
|
|
|
|
// unsigned decimal
|
|
case 'u':
|
|
base = 10;
|
|
goto unsigned_number;
|
|
|
|
// (unsigned) octal
|
|
case 'o':
|
|
// should do something with padding so it's always 3 octits
|
|
base = 8;
|
|
goto unsigned_number;
|
|
|
|
// pointer
|
|
case 'p':
|
|
static_assert(sizeof(long) == sizeof(void*));
|
|
lflag = 1;
|
|
putch('0', putdat);
|
|
putch('x', putdat);
|
|
/* fall through to 'x' */
|
|
|
|
// (unsigned) hexadecimal
|
|
case 'X':
|
|
case 'x':
|
|
base = 16;
|
|
unsigned_number:
|
|
num = getuint(&ap, lflag);
|
|
signed_number:
|
|
printnum(putch, putdat, num, base, width, padc);
|
|
break;
|
|
|
|
// escaped '%' character
|
|
case '%':
|
|
putch(ch, putdat);
|
|
break;
|
|
|
|
// unrecognized escape sequence - just print it literally
|
|
default:
|
|
putch('%', putdat);
|
|
fmt = last_fmt;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
int printf(const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
|
|
vprintfmt((void*)putchar, 0, fmt, ap);
|
|
|
|
va_end(ap);
|
|
return 0; // incorrect return value, but who cares, anyway?
|
|
}
|
|
|
|
int puts(const char* s)
|
|
{
|
|
printf(s);
|
|
printf("\n");
|
|
return 0; // incorrect return value, but who cares, anyway?
|
|
}
|
|
|
|
int sprintf(char* str, const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
char* str0 = str;
|
|
va_start(ap, fmt);
|
|
|
|
void sprintf_putch(int ch, void** data)
|
|
{
|
|
char** pstr = (char**)data;
|
|
**pstr = ch;
|
|
(*pstr)++;
|
|
}
|
|
|
|
vprintfmt(sprintf_putch, (void**)&str, fmt, ap);
|
|
*str = 0;
|
|
|
|
va_end(ap);
|
|
return str - str0;
|
|
}
|
|
|
|
void* memcpy(void* dest, const void* src, size_t len)
|
|
{
|
|
if ((((uintptr_t)dest | (uintptr_t)src | len) & (sizeof(uintptr_t)-1)) == 0) {
|
|
const uintptr_t* s = src;
|
|
uintptr_t *d = dest;
|
|
while (d < (uintptr_t*)(dest + len))
|
|
*d++ = *s++;
|
|
} else {
|
|
const char* s = src;
|
|
char *d = dest;
|
|
while (d < (char*)(dest + len))
|
|
*d++ = *s++;
|
|
}
|
|
return dest;
|
|
}
|
|
void* memset(void* dest, int byte, size_t len)
|
|
{
|
|
if ((((uintptr_t)dest | len) & (sizeof(uintptr_t)-1)) == 0) {
|
|
uintptr_t word = byte & 0xFF;
|
|
word |= word << 8;
|
|
word |= word << 16;
|
|
word |= word << 16 << 16;
|
|
|
|
uintptr_t *d = dest;
|
|
while (d < (uintptr_t*)(dest + len)){
|
|
*d = word;
|
|
d++;}
|
|
} else {
|
|
char *d = dest;
|
|
while (d < (char*)(dest + len)){
|
|
*d = byte;
|
|
d++;}
|
|
}
|
|
return dest;
|
|
}
|
|
|
|
size_t strlen(const char *s)
|
|
{
|
|
const char *p = s;
|
|
while (*p)
|
|
p++;
|
|
return p - s;
|
|
}
|
|
|
|
size_t strnlen(const char *s, size_t n)
|
|
{
|
|
const char *p = s;
|
|
while (n-- && *p)
|
|
p++;
|
|
return p - s;
|
|
}
|
|
|
|
int strcmp(const char* s1, const char* s2)
|
|
{
|
|
unsigned char c1, c2;
|
|
|
|
do {
|
|
c1 = *s1++;
|
|
c2 = *s2++;
|
|
} while (c1 != 0 && c1 == c2);
|
|
|
|
return c1 - c2;
|
|
}
|
|
|
|
char* strcpy(char* dest, const char* src)
|
|
{
|
|
char* d = dest;
|
|
while ((*d++ = *src++))
|
|
;
|
|
return dest;
|
|
}
|
|
|
|
long atol(const char* str)
|
|
{
|
|
long res = 0;
|
|
int sign = 0;
|
|
|
|
while (*str == ' ')
|
|
str++;
|
|
|
|
if (*str == '-' || *str == '+') {
|
|
sign = *str == '-';
|
|
str++;
|
|
}
|
|
|
|
while (*str) {
|
|
res *= 10;
|
|
res += *str++ - '0';
|
|
}
|
|
|
|
return sign ? -res : res;
|
|
}
|