-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYVMasm.java
380 lines (324 loc) · 8.72 KB
/
YVMasm.java
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintWriter;
import java.util.Stack;
//import com.modeliosoft.modelio.javadesigner.annotations.objid;
public class YVMasm extends YVM {
private PrintWriter p; // objet pour écrire dans un fichier
public Yaka yaka;
private TabIdent tab;
private int nbMess; //compte le nombre de chaine écrite, soit l'indice du mess suivant
//stocke la numérotation des "faire"
private Stack<Integer> etiquetteFaire;
private int nbEtiquette;
private Stack<Integer> etiquetteSi;
private int nbEtiqSi;
//contructeur qui prend en param le nom du fichier dans lequel écrire les instrucions YVM
public YVMasm(String fileName, TabIdent tab){
super(fileName,tab);
try {
this.p = new PrintWriter(new FileOutputStream(fileName));
}catch (FileNotFoundException e) {
System.out.println("erreur: ouverture du fichier " + fileName);
}
this.tab = tab;
this.nbMess = 0;
this.etiquetteFaire = new Stack<Integer>();
this.nbEtiquette = 0;
this.etiquetteSi = new Stack<Integer>();
this.nbEtiqSi = 0;
}
//entete et queue
public void entete(){
p.println("; entete");
p.println("extrn lirent:proc, ecrent:proc");
p.println("extrn ecrbool:proc");
p.println("extrn ecrch:proc, ligsuiv:proc");
p.println(".model SMALL");
p.println(".586");
p.println(".CODE");
p.println("debut :");
p.println("STARTUPCODE");
}
public void ecrireMain(){
p.println("main:");
}
public void ouvrePrinc(){
p.println();
p.println("; ouvrePrinc " + (this.tab.getIterateurVariable()+2)*-1);
p.println("mov bp,sp");
p.println("sub sp," + (this.tab.getIterateurVariable()+2)*-1);
}
public void queue(){
p.println();
p.println("; queue");
p.println("nop");
p.println("EXITCODE");
p.println("end debut");
p.close();
}
//instructions arithmétiques
public void iadd() {
p.println();
p.println("; iadd");
p.println("pop bx");
p.println("pop ax");
p.println("add ax,bx");
p.println("push ax");
}
public void isub() {
p.println();
p.println("; isub");
p.println("pop bx");
p.println("pop ax");
p.println("sub ax,bx");
p.println("push ax");
}
public void imul() {
p.println();
p.println("; imul");
p.println("pop bx");
p.println("pop ax");
p.println("imul bx");
p.println("push ax");
}
public void idiv() {
p.println();
p.println("; idiv");
p.println("pop bx");
p.println("pop ax");
p.println("mov dx,0");
p.println("idiv bx");
p.println("push ax");
}
public void inot() {
p.println();
p.println("; inot");
p.println("pop ax");
p.println("not ax");
p.println("push ax");
}
public void ineg() {
p.println();
p.println("; ineg");
p.println("pop ax");
p.println("mov bx,0");
p.println("sub bx,ax");
p.println("push bx");
}
public void ior() {
p.println();
p.println("; ior");
p.println("pop bx");
p.println("pop ax");
p.println("or ax,bx");
p.println("push ax");
}
public void iand() {
p.println();
p.println("; iand");
p.println("pop bx");
p.println("pop ax");
p.println("and ax,bx");
p.println("push ax");
}
//instructions de comparaisons
public void iinf() {
p.println();
p.println("; iinf");
p.println("pop bx");
p.println("pop ax");
p.println("cmp ax,bx");
p.println("jge $+6");
p.println("push -1");
p.println("jmp $+4");
p.println("push 0");
}
public void isup() {
p.println();
p.println("; isup");
p.println("pop bx");
p.println("pop ax");
p.println("cmp ax,bx");
p.println("jle $+6");
p.println("push -1");
p.println("jmp $+4");
p.println("push 0");
}
public void iinfegal() {
p.println();
p.println("; iinfegal");
p.println("pop bx");
p.println("pop ax");
p.println("cmp ax,bx");
p.println("jg $+6");
p.println("push -1");
p.println("jmp $+4");
p.println("push 0");
}
public void isupegal() {
p.println();
p.println("; isupegal");
p.println("pop bx");
p.println("pop ax");
p.println("cmp ax,bx");
p.println("jl $+6");
p.println("push -1");
p.println("jmp $+4");
p.println("push 0");
}
public void iegal() {
p.println();
p.println("; iegal");
p.println("pop ax");
p.println("pop bx");
p.println("cmp ax,bx");
p.println("jne $+6");
p.println("push -1");
p.println("jmp $+4");
p.println("push 0");
}
public void idiff() {
p.println();
p.println("; idiff");
p.println("pop ax");
p.println("pop bx");
p.println("cmp ax,bx");
p.println("je $+6");
p.println("push -1");
p.println("jmp $+4");
p.println("push 0");
}
//instructions de stockage et de chargement
public void iload(int i) {
p.println();
p.println("; iload " + i);
p.println("push word ptr[bp" + i +"]");
}
public void istore(int i) {
p.println();
p.println("; istore " + i);
p.println("pop ax");
p.println("mov word ptr[bp" + i + "],ax");
}
public void iconst(int i) {
p.println();
p.println("; iconst " + i);
p.println("push word ptr " + i);
}
//instructions de contrôle de flot
public void ifeq(String eti) {
p.println();
p.println("; ifeq " + eti);
p.println("pop ax");
p.println("cmp ax,0");
p.println("je " + eti);
}
public void goTo(String eti) {
p.println();
p.println("; goto " + eti);
p.println("jmp " + eti);
}
//instructions de pile
public void ouvrePrinc(int i) {
p.println();
p.println("; ouvrePrinc" + i);
p.println("mov bp,sp");
p.println("sub sp," + i);
}
public void ecrireFonction(String s){
p.println(s+":");
}
//entrées sorties
public void ecrireEnt(){
p.println();
p.println("; ecrireEnt");
p.println("call ecrent");
}
public void ecrireChaine(String s){
p.println();
p.println("; ecrireChaine " + s);
p.println(".DATA");
p.println("mess" + this.nbMess + " DB " + s.substring(0, s.length()-1) + "$\"");
p.println(".CODE");
p.println("lea dx,mess" + this.nbMess);
p.println("push dx");
p.println("call ecrch");
this.nbMess++;
}
public void ecrireBool(){
p.println();
p.println("; ecrireBool");
p.println("call ecrbool");
}
public void lireEnt(int offset){
p.println();
p.println("; lireEnt " + offset);
p.println("lea dx,[bp" + offset + "]");
p.println("push dx");
p.println("call lirent");
}
public void aLaLigne(){
p.println();
p.println("; aLaLigne");
p.println("call ligsuiv");
}
//itération
public void tantQue(){
this.nbEtiquette++;
this.etiquetteFaire.push(this.nbEtiquette);
p.println("FAIRE" + this.etiquetteFaire.peek() + ":");
}
public void faire(){
p.println("; iffaux FAIT" + this.etiquetteFaire.peek());
p.println("pop ax");
p.println("cmp ax,0");
p.println("je FAIT" + this.etiquetteFaire.peek());
}
public void fait(){
p.println("; goto FAIRE" + this.etiquetteFaire.peek());
p.println("jmp FAIRE" + this.etiquetteFaire.peek());
p.println("FAIT" + this.etiquetteFaire.pop() + ":");
}
public void si(){
this.nbEtiqSi++;
this.etiquetteSi.push(this.nbEtiqSi);
}
public void alors(){
p.println("; iffaux SINON" + this.etiquetteSi.peek());
p.println("pop ax");
p.println("cmp ax,0");
p.println("je SINON" + this.etiquetteSi.peek());
}
public void sinon(){
p.println(";goto FSI" + this.etiquetteSi.peek());
p.println("jmp FSI" + this.etiquetteSi.peek());
p.println("SINON" + this.etiquetteSi.peek() + ":");
}
public void fsi(){
p.println("FSI" + this.etiquetteSi.pop() + ":");
}
public void ouvreBloc(String s){
p.println(s + ":");
p.println("; ouvbloc " + this.tab.getIterateurVariable());
p.println("enter " + this.tab.getIterateurVariable() + ",0");
}
public void fermeBloc(){
p.println("; fermebloc " + (this.tab.getIterateurParametre()-4));
p.println("leave");
p.println("ret " + (this.tab.getIterateurParametre()-4));
}
public void ireturn(int i){
p.println("; ireturn " + i);
p.println("pop ax");
p.println("mov [bp+" + i + "],ax");
}
public void reserveRetour(){
p.println("; reserveRetour");
p.println("sub sp,2");
}
public void call(String n){
p.println("; call " + n);
p.println("call " + n);
}
}