ysyx_22040000 李心杨 Linux calcite 6.1.71 #1-NixOS SMP PREEMPT_DYNAMIC Fri Jan 5 14:18:41 UTC 2024 x86_64 GNU/Linux 23:37:50 up 2 days 12:32, 2 users, load average: 0.24, 0.32, 0.35
51 lines
1.5 KiB
C
51 lines
1.5 KiB
C
/***************************************************************************************
|
|
* Copyright (c) 2014-2022 Zihao Yu, Nanjing University
|
|
*
|
|
* NEMU is licensed under Mulan PSL v2.
|
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
* You may obtain a copy of Mulan PSL v2 at:
|
|
* http://license.coscl.org.cn/MulanPSL2
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
*
|
|
* See the Mulan PSL v2 for more details.
|
|
***************************************************************************************/
|
|
|
|
#include <isa.h>
|
|
#include "local-include/reg.h"
|
|
#include "macro.h"
|
|
|
|
const char *regs[] = {
|
|
"$0", "ra", "sp", "gp", "tp", "t0", "t1", "t2",
|
|
"s0", "s1", "a0", "a1", "a2", "a3", "a4", "a5",
|
|
"a6", "a7", "s2", "s3", "s4", "s5", "s6", "s7",
|
|
"s8", "s9", "s10", "s11", "t3", "t4", "t5", "t6"
|
|
};
|
|
|
|
void isa_reg_display() {
|
|
int colomn_per_row = 4;
|
|
for(int i = 0; i < ARRLEN(regs); i++) {
|
|
printf("\e[1;34m%3s\e[0m: " FMT_PADDR, reg_name(i), gpr(i));
|
|
if (i % colomn_per_row == 3)
|
|
putchar('\n');
|
|
else
|
|
putchar('|');
|
|
}
|
|
}
|
|
|
|
word_t isa_reg_str2val(const char *s, bool *success) {
|
|
assert(s);
|
|
int i;
|
|
for (i = 0; i < 32 && strcmp(s, regs[i]) != 0; i++)
|
|
;
|
|
|
|
if (i == 32) {
|
|
*success = false;
|
|
return 0;
|
|
}
|
|
*success = true;
|
|
|
|
return gpr(i);
|
|
}
|