summaryrefslogtreecommitdiff
path: root/src/hc08/peeph.def
blob: 745c744060b0b8f45bbc92a3245934f7e9cba96b (plain) (blame)
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
replace {
	pula
	psha
	lda	%1
} by {
	; Peephole 1a	- removed redundant pula/psha
	lda	%1
}

replace {
	pula
	psha
	lda	%1,s
} by {
	; Peephole 1b	- removed redundant pula/psha
	lda	%1,s
}

replace {
	pula
	psha
	clra
} by {
	; Peephole 1c	- removed redundant pula/psha
	clra
}


replace {
	bcs	%1
	jmp	%5
%1:
} by {
	; Peephole 2a	- eliminated jmp
	bcc	%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	bcc	%1
	jmp	%5
%1:
} by {
	; Peephole 2b	- eliminated jmp
	bcs	%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	beq	%1
	jmp	%5
%1:
} by {
	; Peephole 2c	- eliminated jmp
	bne	%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	bne	%1
	jmp	%5
%1:
} by {
	; Peephole 2d	- eliminated jmp
	beq	%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	brclr	%3,%2,%1
	jmp	%5
%1:
} by {
	; Peephole 2e	- eliminated jmp
	brset	%3,%2,%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	brset	%3,%2,%1
	jmp	%5
%1:
} by {
	; Peephole 2f	- eliminated jmp
	brclr	%3,%2,%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	bls	%1
	jmp	%5
%1:
} by {
	; Peephole 2g	- eliminated jmp
	bhi	%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	bhi	%1
	jmp	%5
%1:
} by {
	; Peephole 2h	- eliminated jmp
	bls	%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	ble	%1
	jmp	%5
%1:
} by {
	; Peephole 2i	- eliminated jmp
	bgt	%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	bgt	%1
	jmp	%5
%1:
} by {
	; Peephole 2j	- eliminated jmp
	ble	%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	bge	%1
	jmp	%5
%1:
} by {
	; Peephole 2k	- eliminated jmp
	blt	%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	blt	%1
	jmp	%5
%1:
} by {
	; Peephole 2l	- eliminated jmp
	bge	%5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	bmi     %1
	jmp     %5
%1:
} by {
	; Peephole 2m   - eliminated jmp
	bpl     %5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace {
	bpl     %1
	jmp     %5
%1:
} by {
	; Peephole 2n   - eliminated jmp
	bmi     %5
%1:
} if labelInRange(%5), labelRefCountChange(%1 -1)

replace restart {
	jmp	%5
} by {
	; Peephole 3	- shortened jmp to bra
	bra	%5
} if labelInRange(%5)

replace {
	lda	%1
	tsta
} by {
	; Peephole 4a	- eliminated redundant tsta
	lda	%1
}

replace {
	ldx	%1
	tstx
} by {
	; Peephole 4b	- eliminated redundant tstx
	ldx	%1
}

replace {
	jmp	%5
} by {
	; Peephole 6a  - replaced jmp to rts with rts
	rts
} if optimizeReturn(), labelIsReturnOnly(%5), labelRefCountChange(%5 -1)

replace {
	bra	%5
} by {
	; Peephole 6b  - replaced jmp to rts with rts
	rts
} if optimizeReturn(), labelIsReturnOnly(%5), labelRefCountChange(%5 -1)

replace {
        bne     %1
%1:
} by {
        ; Peephole 7a   - eliminated branch
%1:
} if labelRefCountChange(%1 -1)

replace {
        beq     %1
%1:
} by {
        ; Peephole 7b   - eliminated branch
%1:
} if labelRefCountChange(%1 -1)

replace restart {
        bra     %1
%1:
} by {
        ; Peephole 7c   - eliminated branch
%1:
} if labelRefCountChange(%1 -1)

replace restart {
	bra     %1
%2:
%1:
} by {
	; Peephole 7d   - eliminated branch
%2:
%1:
} if labelRefCountChange(%1 -1)

replace {
	cmp	#%2
	beq	%1
} by {
	; Peephole 10a   - combined cmp/beq
	cbeqa	#%2,%1
}

replace {
	cmp	*%2
	beq	%1
} by {
	; Peephole 10b   - combined cmp/beq
	cbeq	*%2,%1
}

replace {
        dec     %2,s
        bne     %1
} by {
        ; Peephole 10c   - combined dec/bne
        dbnz    %2,s,%1
}

// should be one of the last peepholes
replace restart {
%1:
} by {
	; Peephole 500    removed redundant label %1
} if labelRefCount(%1 0)

replace restart {
	jsr	%1
	rts
} by {
	; Peephole 501 did tail call optimization.
	jmp	%1
} if optimizeReturn()