sim: frv: clean up redundant test coverage
The frv-elf subdir contained five tests:
* cache: A cache test of some sort.
* exit47: A program to test exit status of 47 from sim.
* grloop: Some basic limited loop test program.
* hello: Standard "hello world" output program.
* loop: An infinite loop program.
The loop.s test is never referenced anywhere, and is all of 2 lines.
Anyone who really needs a while(1); test case and re-implement it
themselves locally.
The cache.s code isn't referenced anywhere because it requires some
custom args to the run program, and when this testcase was added, we
didn't have any support for that. We do now, so we can add a header
to enable that. Turns out the code crashes even with those, so turn
around and mark it xfail. Maybe someone someday will care.
That leaves the small exit47, grloop, and hello tests. Now that the
sim test harness supports testing for custom exit status, we can move
them all to sim/frv/ to maintain test coverage.
The remaining differences between frv-elf & sim/frv are:
* frv-elf/ runs for frv-*-elf while sim/frv/ runs for frv*-*-*.
* frv-elf/ runs "*.s" files while sim/frv/ only has .cgs and such.
On closer inspection, these are also meaningless distinctions:
* There is nothing specific to the tests that require an *-elf
target. Normally that would mean newlib+libgloss type stuff,
but there's no such requirement in frv-elf/.
* The ".s" suffix is the standard "this is an assembly file" suffix.
Since FRV is a CGEN target, we can reuse the existing convention of
".ms" to mean "miscellaneous .s" as in "this is an assembly file,
and run/bucket its test results in the miscellaneous category".
So moving frv-elf/{cache,exit47,grloop,hello}.s to sim/frv/*.ms makes
sense and simplifies things quite a bit for the target while also
slightly increasing the coverage for some tuples.
2021-01-05 15:19:02 +08:00
|
|
|
# mach: frv fr500 fr550
|
|
|
|
# sim: --memory-region 0xff000000,4 --memory-region 0xfe000000,00404000
|
2021-11-26 13:18:45 +08:00
|
|
|
# xfail: "crashes with bad write" *-*
|
sim: frv: clean up redundant test coverage
The frv-elf subdir contained five tests:
* cache: A cache test of some sort.
* exit47: A program to test exit status of 47 from sim.
* grloop: Some basic limited loop test program.
* hello: Standard "hello world" output program.
* loop: An infinite loop program.
The loop.s test is never referenced anywhere, and is all of 2 lines.
Anyone who really needs a while(1); test case and re-implement it
themselves locally.
The cache.s code isn't referenced anywhere because it requires some
custom args to the run program, and when this testcase was added, we
didn't have any support for that. We do now, so we can add a header
to enable that. Turns out the code crashes even with those, so turn
around and mark it xfail. Maybe someone someday will care.
That leaves the small exit47, grloop, and hello tests. Now that the
sim test harness supports testing for custom exit status, we can move
them all to sim/frv/ to maintain test coverage.
The remaining differences between frv-elf & sim/frv are:
* frv-elf/ runs for frv-*-elf while sim/frv/ runs for frv*-*-*.
* frv-elf/ runs "*.s" files while sim/frv/ only has .cgs and such.
On closer inspection, these are also meaningless distinctions:
* There is nothing specific to the tests that require an *-elf
target. Normally that would mean newlib+libgloss type stuff,
but there's no such requirement in frv-elf/.
* The ".s" suffix is the standard "this is an assembly file" suffix.
Since FRV is a CGEN target, we can reuse the existing convention of
".ms" to mean "miscellaneous .s" as in "this is an assembly file,
and run/bucket its test results in the miscellaneous category".
So moving frv-elf/{cache,exit47,grloop,hello}.s to sim/frv/*.ms makes
sense and simplifies things quite a bit for the target while also
slightly increasing the coverage for some tuples.
2021-01-05 15:19:02 +08:00
|
|
|
|
2003-08-30 00:41:31 +08:00
|
|
|
; Exit with return code
|
sim: frv: clean up redundant test coverage
The frv-elf subdir contained five tests:
* cache: A cache test of some sort.
* exit47: A program to test exit status of 47 from sim.
* grloop: Some basic limited loop test program.
* hello: Standard "hello world" output program.
* loop: An infinite loop program.
The loop.s test is never referenced anywhere, and is all of 2 lines.
Anyone who really needs a while(1); test case and re-implement it
themselves locally.
The cache.s code isn't referenced anywhere because it requires some
custom args to the run program, and when this testcase was added, we
didn't have any support for that. We do now, so we can add a header
to enable that. Turns out the code crashes even with those, so turn
around and mark it xfail. Maybe someone someday will care.
That leaves the small exit47, grloop, and hello tests. Now that the
sim test harness supports testing for custom exit status, we can move
them all to sim/frv/ to maintain test coverage.
The remaining differences between frv-elf & sim/frv are:
* frv-elf/ runs for frv-*-elf while sim/frv/ runs for frv*-*-*.
* frv-elf/ runs "*.s" files while sim/frv/ only has .cgs and such.
On closer inspection, these are also meaningless distinctions:
* There is nothing specific to the tests that require an *-elf
target. Normally that would mean newlib+libgloss type stuff,
but there's no such requirement in frv-elf/.
* The ".s" suffix is the standard "this is an assembly file" suffix.
Since FRV is a CGEN target, we can reuse the existing convention of
".ms" to mean "miscellaneous .s" as in "this is an assembly file,
and run/bucket its test results in the miscellaneous category".
So moving frv-elf/{cache,exit47,grloop,hello}.s to sim/frv/*.ms makes
sense and simplifies things quite a bit for the target while also
slightly increasing the coverage for some tuples.
2021-01-05 15:19:02 +08:00
|
|
|
|
2003-08-30 00:41:31 +08:00
|
|
|
.macro exit rc
|
|
|
|
setlos.p #1,gr7
|
|
|
|
setlos \rc,gr8
|
|
|
|
tira gr0,#0
|
|
|
|
.endm
|
|
|
|
|
|
|
|
; Pass the test case
|
|
|
|
.macro pass
|
|
|
|
pass:
|
|
|
|
setlos.p #5,gr10
|
|
|
|
setlos #1,gr8
|
|
|
|
setlos #5,gr7
|
|
|
|
sethi.p %hi(passmsg),gr9
|
|
|
|
setlo %lo(passmsg),gr9
|
|
|
|
tira gr0,#0
|
|
|
|
exit #0
|
|
|
|
.endm
|
|
|
|
|
|
|
|
; Fail the testcase
|
|
|
|
.macro fail
|
|
|
|
fail\@:
|
|
|
|
setlos.p #5,gr10
|
|
|
|
setlos #1,gr8
|
|
|
|
setlos #5,gr7
|
|
|
|
sethi.p %hi(failmsg),gr9
|
|
|
|
setlo %lo(failmsg),gr9
|
|
|
|
tira gr0,#0
|
|
|
|
exit #1
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.data
|
|
|
|
failmsg:
|
|
|
|
.ascii "fail\n"
|
|
|
|
passmsg:
|
|
|
|
.ascii "pass\n"
|
|
|
|
|
|
|
|
.text
|
|
|
|
.global _start
|
|
|
|
_start:
|
|
|
|
movsg hsr0,gr10 ; enable insn and data caches
|
|
|
|
sethi.p 0xc800,gr11 ; in copy-back mode
|
|
|
|
setlo 0x0000,gr11
|
|
|
|
or gr10,gr11,gr10
|
|
|
|
movgs gr10,hsr0
|
|
|
|
|
|
|
|
sethi.p 0x7,sp
|
|
|
|
setlo 0x0000,sp
|
|
|
|
|
|
|
|
; fill the cache
|
|
|
|
sethi.p %hi(done1),gr10
|
|
|
|
setlo %lo(done1),gr10
|
|
|
|
movgs gr10,lr
|
|
|
|
setlos.p 0x1000,gr10
|
|
|
|
setlos 0x0,gr11
|
|
|
|
movgs gr10,lcr
|
|
|
|
write1: st.p gr11,@(sp,gr11)
|
|
|
|
addi.p gr11,4,gr11
|
|
|
|
bctrlr.p 1,0
|
|
|
|
bra write1
|
|
|
|
done1:
|
|
|
|
; read it back
|
|
|
|
sethi.p %hi(done2),gr10
|
|
|
|
setlo %lo(done2),gr10
|
|
|
|
movgs gr10,lr
|
|
|
|
setlos.p 0x1000,gr10
|
|
|
|
setlos 0x0,gr11
|
|
|
|
movgs gr10,lcr
|
|
|
|
read1: ld @(sp,gr11),gr12
|
|
|
|
cmp gr11,gr12,icc0
|
|
|
|
bne icc0,1,fail
|
|
|
|
addi.p gr11,4,gr11
|
|
|
|
bctrlr.p 1,0
|
|
|
|
bra read1
|
|
|
|
done2:
|
|
|
|
|
|
|
|
; fill the cache twice
|
|
|
|
sethi.p %hi(done3),gr10
|
|
|
|
setlo %lo(done3),gr10
|
|
|
|
movgs gr10,lr
|
|
|
|
setlos.p 0x2000,gr10
|
|
|
|
setlos 0x0,gr11
|
|
|
|
movgs gr10,lcr
|
|
|
|
write3: st.p gr11,@(sp,gr11)
|
|
|
|
addi.p gr11,4,gr11
|
|
|
|
bctrlr.p 1,0
|
|
|
|
bra write3
|
|
|
|
done3:
|
|
|
|
; read it back
|
|
|
|
sethi.p %hi(done4),gr10
|
|
|
|
setlo %lo(done4),gr10
|
|
|
|
movgs gr10,lr
|
|
|
|
setlos.p 0x2000,gr10
|
|
|
|
setlos 0x0,gr11
|
|
|
|
movgs gr10,lcr
|
|
|
|
read4: ld @(sp,gr11),gr12
|
|
|
|
cmp gr11,gr12,icc0
|
|
|
|
bne icc0,1,fail
|
|
|
|
addi.p gr11,4,gr11
|
|
|
|
bctrlr.p 1,0
|
|
|
|
bra read4
|
|
|
|
done4:
|
|
|
|
; read it back in reverse
|
|
|
|
sethi.p %hi(done5),gr10
|
|
|
|
setlo %lo(done5),gr10
|
|
|
|
movgs gr10,lr
|
|
|
|
setlos.p 0x2000,gr10
|
|
|
|
setlos 0x7ffc,gr11
|
|
|
|
movgs gr10,lcr
|
|
|
|
read5: ld @(sp,gr11),gr12
|
|
|
|
cmp gr11,gr12,icc0
|
|
|
|
bne icc0,1,fail
|
|
|
|
subi.p gr11,4,gr11
|
|
|
|
bctrlr.p 1,0
|
|
|
|
bra read5
|
|
|
|
done5:
|
|
|
|
|
|
|
|
; access data and insns in non-cache areas
|
|
|
|
sethi.p 0x8038,gr11 ; bctrlr 0,0
|
|
|
|
setlo 0x2000,gr11
|
|
|
|
|
|
|
|
sethi.p 0xff00,gr10 ; documented area
|
|
|
|
setlo 0x0000,gr10
|
|
|
|
sti gr11,@(gr10,0)
|
|
|
|
jmpl @(gr10,gr0)
|
|
|
|
|
|
|
|
; enable RAM mode
|
|
|
|
movsg hsr0,gr10
|
|
|
|
sethi.p 0x0040,gr12
|
|
|
|
setlo 0x0000,gr12
|
|
|
|
or gr10,gr12,gr10
|
|
|
|
movgs gr10,hsr0
|
|
|
|
|
|
|
|
sethi.p 0xfe00,gr10 ; documented area
|
|
|
|
setlo 0x0400,gr10
|
|
|
|
sti gr11,@(gr10,0)
|
|
|
|
jmpl @(gr10,gr0)
|
|
|
|
|
|
|
|
sethi.p 0xfe40,gr10 ; documented area
|
|
|
|
setlo 0x0400,gr10
|
|
|
|
sti gr11,@(gr10,0)
|
|
|
|
dcf @(gr10,gr0)
|
|
|
|
jmpl @(gr10,gr0)
|
|
|
|
|
|
|
|
sethi.p 0x0007,gr10 ; non RAM area
|
|
|
|
setlo 0x0000,gr10
|
|
|
|
sti gr11,@(gr10,0)
|
|
|
|
jmpl @(gr10,gr0)
|
|
|
|
|
|
|
|
sethi.p 0xfe00,gr10 ; insn RAM area
|
|
|
|
setlo 0x0000,gr10
|
|
|
|
sti gr11,@(gr10,0)
|
|
|
|
jmpl @(gr10,gr0)
|
|
|
|
|
|
|
|
sethi.p 0xfe40,gr10 ; data RAM area
|
|
|
|
setlo 0x0000,gr10
|
|
|
|
sti gr11,@(gr10,0)
|
|
|
|
dcf @(gr10,gr0)
|
|
|
|
jmpl @(gr10,gr0)
|
|
|
|
|
|
|
|
pass
|
|
|
|
fail:
|
|
|
|
fail
|