diff options
author | Nick Clifton <nickc@redhat.com> | 2015-12-15 11:01:03 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-12-15 11:01:03 +0000 |
commit | caa8d70005e4e12392683c799b30790fc4c62166 (patch) | |
tree | 979994eb0d5e5774e3402d7c3b9d5c5aceb4cb2a /sim | |
parent | a117b0a51cd3c768453c244a3754c1b9a77e74fc (diff) | |
download | gdb-caa8d70005e4e12392683c799b30790fc4c62166.zip gdb-caa8d70005e4e12392683c799b30790fc4c62166.tar.gz gdb-caa8d70005e4e12392683c799b30790fc4c62166.tar.bz2 |
Add support for the MRS instruction to the AArch64 simulator.
* aarch64/simulator.c (system_get): New function. Provides read
access to the dczid system register.
(do_mrs): New function - implements the MRS instruction.
(dexSystem): Call do_mrs for the MRS instruction. Halt on
unimplemented system instructions.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/ChangeLog | 8 | ||||
-rw-r--r-- | sim/aarch64/simulator.c | 54 |
2 files changed, 53 insertions, 9 deletions
diff --git a/sim/ChangeLog b/sim/ChangeLog index 76d75c9..6e88170 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,3 +1,11 @@ +2015-12-14 Nick Clifton <nickc@redhat.com> + + * aarch64/simulator.c (system_get): New function. Provides read + access to the dczid system register. + (do_mrs): New function - implements the MRS instruction. + (dexSystem): Call do_mrs for the MRS instruction. Halt on + unimplemented system instructions. + 2015-11-24 Nick Clifton <nickc@redhat.com> * configure.tgt: Add aarch64 entry. diff --git a/sim/aarch64/simulator.c b/sim/aarch64/simulator.c index 31c054c..5957946 100644 --- a/sim/aarch64/simulator.c +++ b/sim/aarch64/simulator.c @@ -12783,6 +12783,44 @@ dexExcpnGen (sim_cpu *cpu) HALT_UNALLOC; } +/* Stub for accessing system registers. + We implement support for the DCZID register since this is used + by the C library's memset function. */ + +static uint64_t +system_get (sim_cpu *cpu, unsigned op0, unsigned op1, unsigned crn, + unsigned crm, unsigned op2) +{ + if (crn == 0 && op1 == 3 && crm == 0 && op2 == 7) + /* DCZID_EL0 - the Data Cache Zero ID register. + We do not support DC ZVA at the moment, so + we return a value with the disable bit set. */ + return ((uint64_t) 1) << 4; + + HALT_NYI; +} + +static void +do_mrs (sim_cpu *cpu) +{ + /* instr[31:20] = 1101 01010 0011 + instr[19] = op0 + instr[18,16] = op1 + instr[15,12] = CRn + instr[11,8] = CRm + instr[7,5] = op2 + instr[4,0] = Rt */ + unsigned sys_op0 = uimm (aarch64_get_instr (cpu), 19, 19) + 2; + unsigned sys_op1 = uimm (aarch64_get_instr (cpu), 18, 16); + unsigned sys_crn = uimm (aarch64_get_instr (cpu), 15, 12); + unsigned sys_crm = uimm (aarch64_get_instr (cpu), 11, 8); + unsigned sys_op2 = uimm (aarch64_get_instr (cpu), 7, 5); + unsigned rt = uimm (aarch64_get_instr (cpu), 4, 0); + + aarch64_set_reg_u64 (cpu, rt, NO_SP, + system_get (cpu, sys_op0, sys_op1, sys_crn, sys_crm, sys_op2)); +} + static void dexSystem (sim_cpu *cpu) { @@ -12842,9 +12880,7 @@ dexSystem (sim_cpu *cpu) switch (op2) { - case 2: - HALT_NYI; - + case 2: HALT_NYI; case 4: dsb (cpu); return; case 5: dmb (cpu); return; case 6: isb (cpu); return; @@ -12855,25 +12891,25 @@ dexSystem (sim_cpu *cpu) case 0x3B0: /* MRS Wt, sys-reg. */ - /* FIXME: Ignore for now. */ + do_mrs (cpu); return; case 0x3B4: case 0x3BD: /* MRS Xt, sys-reg. */ - /* FIXME: Ignore for now. */ + do_mrs (cpu); return; case 0x0B7: /* DC <type>, x<n>. */ - /* FIXME: Ignore for now. */ + HALT_NYI; return; default: - if (uimm (aarch64_get_instr (cpu), 21, 20) == 0x1) - /* MSR <sys-reg>, <Xreg>. */ - return; + /* if (uimm (aarch64_get_instr (cpu), 21, 20) == 0x1) + MRS Xt, sys-reg. */ HALT_NYI; + return; } } |