1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
# MIPS simulator testsuite utility functions.
# Copyright (C) 2004-2022 Free Software Foundation, Inc.
# Contributed by Chris Demetriou of Broadcom Corporation.
#
# This file is part of the GNU simulators.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. */
# $1, $4, $5, %6, are used as temps by the macros defined here.
.macro writemsg msg
la $5, 901f
li $6, 902f - 901f
.data
901: .ascii "\msg\n"
902:
.previous
.set push
.set noreorder
jal _dowrite
li $4, 0
.set pop
.endm
# The MIPS simulator uses "break 0x3ff" as the code to exit,
# with the return value in $4 (a0).
.macro exit rc
li $4, \rc
break 0x3ff
.endm
.macro setup
.global _start
.global __start
.ent _start
_start:
__start:
.set push
.set noreorder
j DIAG
nop
.set pop
.end _start
.global _fail
.ent _fail
_fail:
writemsg "fail"
exit 1
.end _fail
.global _pass
.ent _pass
_pass:
writemsg "pass"
exit 0
.end _pass
# The MIPS simulator can use multiple different monitor types,
# so we hard-code the simulator "write" reserved instruction opcode,
# rather than jumping to a vector that invokes it. The operation
# expects RA to point to the location at which to continue
# after writing.
.global _dowrite
.ent _dowrite
_dowrite:
# Write opcode (reserved instruction). See sim_monitor and its
# callers in sim/mips/interp.c.
.word 0x00000039 | ((8 << 1) << 6)
.end _dowrite
.endm # setup
.macro pass
.set push
.set noreorder
j _pass
nop
.set pop
.endm
.macro fail
.set push
.set noreorder
j _fail
nop
.set pop
.endm
.macro load32 reg, val
li \reg, \val
.endm
.macro load64 reg, val
dli \reg, \val
.endm
.macro loadaddr reg, addr
la \reg, \addr
.endm
.macro checkreg reg, expreg
.set push
.set noat
.set noreorder
beq \expreg, \reg, 901f
nop
fail
901:
.set pop
.endm
.macro check32 reg, val
.set push
.set noat
load32 $1, \val
checkreg \reg, $1
.set pop
.endm
.macro check64 reg, val
.set push
.set noat
load64 $1, \val
checkreg \reg, $1
.set pop
.endm
|