-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add misaligned c.jalr and c.jr instruction test (#466)
Signed-off-by: Roger Chang <[email protected]> Co-authored-by: James Shi <[email protected]>
- Loading branch information
1 parent
5973ec5
commit 0bf9236
Showing
7 changed files
with
567 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// ----------- | ||
// Copyright (c) 2020. RISC-V International. All rights reserved. | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
// ----------- | ||
// | ||
// This assembly file tests the misaligned c.jalr instruction of the RISC-V C extension. | ||
// | ||
#include "model_test.h" | ||
#include "arch_test.h" | ||
RVTEST_ISA("RV32EC") | ||
|
||
.section .text.init | ||
.globl rvtest_entry_point | ||
rvtest_entry_point: | ||
RVMODEL_BOOT | ||
RVTEST_CODE_BEGIN | ||
|
||
#ifdef TEST_CASE_1 | ||
|
||
RVTEST_CASE(0,"//check ISA:=regex(.*32.*);check ISA:=regex(.*E.*C.*);def RVTEST_E = True;def TEST_CASE_1=True;",misalign1-cjalr) | ||
|
||
RVTEST_SIGBASE( x10,signature_x10_1) | ||
|
||
// ea_align == 1, | ||
// opcode: jalr; op1:x6; align:1 | ||
// TEST_CJALR_OP(x11, x6, x10, 0) | ||
5: ; | ||
LA(x6, 3f+1) ; | ||
; | ||
2: c.jalr x6 ; | ||
xori x1,x1, 0x2 ; | ||
j 4f ; | ||
; | ||
3: xori x1,x1, 0x3 ; | ||
; | ||
4: LA(x11, 5b) ; | ||
andi x11,x11,~(3) ; | ||
sub x1,x1,x11 ; | ||
RVTEST_SIGUPD(x10,x1,0) | ||
|
||
#endif | ||
|
||
|
||
RVTEST_CODE_END | ||
RVMODEL_HALT | ||
|
||
RVTEST_DATA_BEGIN | ||
.align 4 | ||
|
||
rvtest_data: | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
RVTEST_DATA_END | ||
|
||
|
||
RVMODEL_DATA_BEGIN | ||
rvtest_sig_begin: | ||
sig_begin_canary: | ||
CANARY; | ||
|
||
|
||
signature_x10_1: | ||
.fill 0*(XLEN/32),4,0xdeadbeef | ||
|
||
|
||
signature_x1_1: | ||
.fill 1*(XLEN/32),4,0xdeadbeef | ||
|
||
#ifdef rvtest_mtrap_routine | ||
|
||
tsig_begin_canary: | ||
CANARY; | ||
mtrap_sigptr: | ||
.fill 64*(XLEN/32),4,0xdeadbeef | ||
tsig_end_canary: | ||
CANARY; | ||
|
||
#endif | ||
|
||
#ifdef rvtest_gpr_save | ||
|
||
gpr_save: | ||
.fill 32*(XLEN/32),4,0xdeadbeef | ||
|
||
#endif | ||
|
||
sig_end_canary: | ||
CANARY; | ||
rvtest_sig_end: | ||
RVMODEL_DATA_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// ----------- | ||
// Copyright (c) 2020. RISC-V International. All rights reserved. | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
// ----------- | ||
// | ||
// This assembly file tests the misaligned c.jr instruction of the RISC-V C extension. | ||
// | ||
#include "model_test.h" | ||
#include "arch_test.h" | ||
RVTEST_ISA("RV32EC") | ||
|
||
.section .text.init | ||
.globl rvtest_entry_point | ||
rvtest_entry_point: | ||
RVMODEL_BOOT | ||
RVTEST_CODE_BEGIN | ||
|
||
#ifdef TEST_CASE_1 | ||
|
||
RVTEST_CASE(0,"//check ISA:=regex(.*32.*);check ISA:=regex(.*E.*C.*);def RVTEST_E = True;def TEST_CASE_1=True;",cjr) | ||
|
||
RVTEST_SIGBASE( x10,signature_x10_1) | ||
|
||
// ea_align == 1, | ||
// opcode: jr; op1:x6; align:1 | ||
// TEST_CJR_OP(x11, x6, x10, 0) | ||
5: ; | ||
LA(x6, 3f+1) ; | ||
; | ||
2: c.jr x6 ; | ||
xori x6,x6, 0x2 ; | ||
j 4f ; | ||
; | ||
3: xori x6,x6, 0x3 ; | ||
; | ||
4: LA(x11, 5b) ; | ||
andi x11,x11,~(3) ; | ||
sub x6,x6,x11 ; | ||
RVTEST_SIGUPD(x10,x6,0) | ||
|
||
#endif | ||
|
||
|
||
RVTEST_CODE_END | ||
RVMODEL_HALT | ||
|
||
RVTEST_DATA_BEGIN | ||
.align 4 | ||
|
||
rvtest_data: | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
RVTEST_DATA_END | ||
|
||
|
||
RVMODEL_DATA_BEGIN | ||
rvtest_sig_begin: | ||
sig_begin_canary: | ||
CANARY; | ||
|
||
|
||
signature_x10_1: | ||
.fill 0*(XLEN/32),4,0xdeadbeef | ||
|
||
|
||
signature_x1_1: | ||
.fill 1*(XLEN/32),4,0xdeadbeef | ||
|
||
#ifdef rvtest_mtrap_routine | ||
|
||
tsig_begin_canary: | ||
CANARY; | ||
mtrap_sigptr: | ||
.fill 64*(XLEN/32),4,0xdeadbeef | ||
tsig_end_canary: | ||
CANARY; | ||
|
||
#endif | ||
|
||
#ifdef rvtest_gpr_save | ||
|
||
gpr_save: | ||
.fill 32*(XLEN/32),4,0xdeadbeef | ||
|
||
#endif | ||
|
||
sig_end_canary: | ||
CANARY; | ||
rvtest_sig_end: | ||
RVMODEL_DATA_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// ----------- | ||
// Copyright (c) 2020. RISC-V International. All rights reserved. | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
// ----------- | ||
// | ||
// This assembly file tests the misaligned c.jalr instruction of the RISC-V C extension. | ||
// | ||
#include "model_test.h" | ||
#include "arch_test.h" | ||
RVTEST_ISA("RV32IC") | ||
|
||
.section .text.init | ||
.globl rvtest_entry_point | ||
rvtest_entry_point: | ||
RVMODEL_BOOT | ||
RVTEST_CODE_BEGIN | ||
|
||
#ifdef TEST_CASE_1 | ||
|
||
RVTEST_CASE(0,"//check ISA:=regex(.*32.*);check ISA:=regex(.*I.*C.*);def TEST_CASE_1=True;",misalign1-cjalr) | ||
|
||
RVTEST_SIGBASE( x10,signature_x10_1) | ||
|
||
// ea_align == 1, | ||
// opcode: jalr; op1:x17; align:1 | ||
// TEST_CJALR_OP(x12, x17, x10, 0) | ||
5: ; | ||
LA(x17, 3f+1) ; | ||
; | ||
2: c.jalr x17 ; | ||
xori x1,x1, 0x2 ; | ||
j 4f ; | ||
; | ||
3: xori x1,x1, 0x3 ; | ||
; | ||
4: LA(x12, 5b) ; | ||
andi x12,x12,~(3) ; | ||
sub x1,x1,x12 ; | ||
RVTEST_SIGUPD(x10,x1,0) | ||
|
||
#endif | ||
|
||
|
||
RVTEST_CODE_END | ||
RVMODEL_HALT | ||
|
||
RVTEST_DATA_BEGIN | ||
.align 4 | ||
|
||
rvtest_data: | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
RVTEST_DATA_END | ||
|
||
|
||
RVMODEL_DATA_BEGIN | ||
rvtest_sig_begin: | ||
sig_begin_canary: | ||
CANARY; | ||
|
||
|
||
signature_x10_1: | ||
.fill 0*(XLEN/32),4,0xdeadbeef | ||
|
||
|
||
signature_x1_1: | ||
.fill 1*(XLEN/32),4,0xdeadbeef | ||
|
||
#ifdef rvtest_mtrap_routine | ||
|
||
tsig_begin_canary: | ||
CANARY; | ||
mtrap_sigptr: | ||
.fill 64*(XLEN/32),4,0xdeadbeef | ||
tsig_end_canary: | ||
CANARY; | ||
|
||
#endif | ||
|
||
#ifdef rvtest_gpr_save | ||
|
||
gpr_save: | ||
.fill 32*(XLEN/32),4,0xdeadbeef | ||
|
||
#endif | ||
|
||
sig_end_canary: | ||
CANARY; | ||
rvtest_sig_end: | ||
RVMODEL_DATA_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// ----------- | ||
// Copyright (c) 2020. RISC-V International. All rights reserved. | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
// ----------- | ||
// | ||
// This assembly file tests the misaligned c.jr instruction of the RISC-V C extension. | ||
// | ||
#include "model_test.h" | ||
#include "arch_test.h" | ||
RVTEST_ISA("RV32IC") | ||
|
||
.section .text.init | ||
.globl rvtest_entry_point | ||
rvtest_entry_point: | ||
RVMODEL_BOOT | ||
RVTEST_CODE_BEGIN | ||
|
||
#ifdef TEST_CASE_1 | ||
|
||
RVTEST_CASE(0,"//check ISA:=regex(.*32.*);check ISA:=regex(.*I.*C.*);def TEST_CASE_1=True;",misalign1-cjr) | ||
|
||
RVTEST_SIGBASE( x10,signature_x10_1) | ||
|
||
// ea_align == 1, | ||
// opcode: jalr; op1:x17; align:1 | ||
// inline TEST_CJR_OP(x12, x17, x10, 0) | ||
5: ; | ||
LA(x17, 3f+1) ; | ||
; | ||
2: c.jr x17 ; | ||
xori x17,x17, 0x2 ; | ||
j 4f ; | ||
; | ||
3: xori x17,x17, 0x3 ; | ||
; | ||
4: LA(x12, 5b) ; | ||
andi x12,x12,~(3) ; | ||
sub x17,x17,x12 ; | ||
RVTEST_SIGUPD(x10,x17,0) | ||
|
||
#endif | ||
|
||
|
||
RVTEST_CODE_END | ||
RVMODEL_HALT | ||
|
||
RVTEST_DATA_BEGIN | ||
.align 4 | ||
|
||
rvtest_data: | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
.word 0xbabecafe | ||
RVTEST_DATA_END | ||
|
||
|
||
RVMODEL_DATA_BEGIN | ||
rvtest_sig_begin: | ||
sig_begin_canary: | ||
CANARY; | ||
|
||
|
||
signature_x10_1: | ||
.fill 0*(XLEN/32),4,0xdeadbeef | ||
|
||
|
||
signature_x1_1: | ||
.fill 1*(XLEN/32),4,0xdeadbeef | ||
|
||
#ifdef rvtest_mtrap_routine | ||
|
||
tsig_begin_canary: | ||
CANARY; | ||
mtrap_sigptr: | ||
.fill 64*(XLEN/32),4,0xdeadbeef | ||
tsig_end_canary: | ||
CANARY; | ||
|
||
#endif | ||
|
||
#ifdef rvtest_gpr_save | ||
|
||
gpr_save: | ||
.fill 32*(XLEN/32),4,0xdeadbeef | ||
|
||
#endif | ||
|
||
sig_end_canary: | ||
CANARY; | ||
rvtest_sig_end: | ||
RVMODEL_DATA_END |
Oops, something went wrong.