summaryrefslogtreecommitdiff
path: root/sources/scala/tools/scalac/backend/GenJVMFromICode.scala
blob: 3ad109b3791850e69e87dc81be41b32c65a00973 (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
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

import scalac.symtab._;
import scalac.{Global => scalac_Global};
import scalac.atree._;
import scalac.CompilationUnit;
import scalac.util.Debug;
import scala.tools.scalac.icode._;
import ch.epfl.lamp.fjbg._;
import scala.collection.mutable.HashMap;

import java.util.StringTokenizer;
import java.io.File;

package scala.tools.scalac.backend {

object GenJVMFromICode {
  def translate(global: scalac_Global, units: Array[CompilationUnit]): Unit = {
    val translator = new GenJVMFromICode(global);
    var i = 0;
    while (i < units.length) { translator.translate(units(i)); i = i + 1; }
  }
}

/* This class implements the backend which create
 * Java Virtual Machine's bytecode with
 * The Intermediate Code of the compiler */
class GenJVMFromICode(global: scalac_Global) {

  // ##################################################
  // Private fields - Utils

  private val defs = global.definitions;

  private val fjbgContext = new FJBGContext();

  private val typer = defs.atyper;

  // ##################################################
  // Private fields - Data
  private var currentSrcFileName: String = null;

  private val clasz = new HashMap[Symbol, JVMClass];

  private val nameMap = new HashMap[Symbol, String];

  private val typeMap = new HashMap[Symbol, JType];

  // ##################################################
  // Constructor code
  initTypeMap;

  // ##################################################
  // Public methods

  /* This method generates byte code for a single unit */
  def translate(unit: CompilationUnit) = {
    global.log("Jvm.translate() called");
    currentSrcFileName = unit.source.toString();
    // 1. ##### Generate the structure
    val classes_it = Iterator.fromArray(unit.repository.classes());
    classes_it.foreach(genClass(null));
    dumpStructure;
    // 2. ##### Generate the code & Save the classes
    var pairs_it = clasz.elements;
    pairs_it.foreach ((p: Pair[Symbol, JVMClass]) => {
      val sym = p._1;
      val jvmClass = p._2;
      val methods_it = jvmClass.methods.values;
      global.log("Jvm.translate: translating class "+sym);
      methods_it.foreach ((m: JVMMethod) => if(!m.aMethod.isAbstract()) genCode(m));
    });
    pairs_it = clasz.elements;
    pairs_it.foreach ((p: Pair[Symbol, JVMClass]) => {
      val sym = p._1;
      val jvmClass = p._2;
      val fileName = javaFileName(javaName(sym));
      global.log("Jvm.translate: writing class "+sym);
      jvmClass.jClass.writeTo(fileName);
    });
    global.operation("Generation of "+currentSrcFileName+" succeded.");

    currentSrcFileName = null;
  }

  // ##################################################
  // Private methods - Generate code

  /* Generate a class */
  private def genClass (parent: JVMClass)(aClass: AClass) : unit = {
    // 1. ##### Create JClass object
    val sym : Symbol = aClass.symbol();
    val thisClassName : String = javaName(sym);
    val flags : int = JAccessFlags.ACC_SUPER | // The way it has to be
		      (if (aClass.isPublic()) JAccessFlags.ACC_PUBLIC else 0) |
		      (if (aClass.isPrivate()) JAccessFlags.ACC_PRIVATE else 0) |
		      (if (aClass.isProtected()) JAccessFlags.ACC_PROTECTED else 0) |
		      (if (aClass.isFinal()) JAccessFlags.ACC_FINAL else 0) |
		      (if (aClass.isAbstract()) JAccessFlags.ACC_ABSTRACT else 0) |
		      (if (aClass.isInterface()) JAccessFlags.ACC_INTERFACE else 0);

    global.log("genClass: parents(): ");
    val prnt_it = Iterator.fromArray(aClass.parents()); // debug
    prnt_it.foreach((t: Type) => {global.log("  "+t.toString())}); // debug

    val baseTps = Iterator.fromArray(aClass.parents());
    assert (baseTps.hasNext, "Jvm::genClass: Invalid number of parents. "+Debug.show(sym));

    var superClassName : String = null;

    val firstParent : Type = aClass.parents()(0);

    if (aClass.isInterface()) {
      if (firstParent.isSameAs(defs.ANY_TYPE())) {
	baseTps.drop(1);
      }
      superClassName = JAVA_LANG_OBJECT;
    } else {
      superClassName = javaName(baseTps.next.symbol());
    }

    var interfaceNames_l : List[String] = Nil;

    baseTps.foreach((aParentType : Type) =>
      interfaceNames_l = javaName(aParentType.symbol())::interfaceNames_l);
    val interfaceNames_a = new Array[String](interfaceNames_l.length);
    interfaceNames_l.reverse.copyToArray(interfaceNames_a,0);

    val jclass : JClass = fjbgContext.JClass(flags,
					     thisClassName,
					     superClassName,
					     interfaceNames_a,
					     currentSrcFileName);

    // 2. ##### Visits the class

    val jvmClass = new JVMClass(parent);
    clasz += aClass.symbol() -> jvmClass;
    jvmClass.jClass = jclass;
    //classFields = new HashMap[Symbol, JField]();

    // 2.1 ##### Access the inner classes
      val classes_it = Iterator.fromArray(aClass.classes());
    classes_it.foreach(genClass(jvmClass));

    // 2.2. ##### Add fields of the class
       val fields_it = Iterator.fromArray(aClass.fields());
    fields_it.foreach(genField(jvmClass));

    // 2.3 ##### Setup the stucture, records methods
    val methods_it = Iterator.fromArray(aClass.methods());
    global.log("  number of methods: "+aClass.methods().length); // Debug
    methods_it.foreach(genMethod(jvmClass));
  }

  /* Add a field to a class */
  private def genField(jvmClass : JVMClass)(aField : AField) : unit = {
       val flags = (if (aField.isPublic()) JAccessFlags.ACC_PUBLIC else 0) |
		(if (aField.isPrivate()) JAccessFlags.ACC_PRIVATE else 0) |
		(if (aField.isProtected()) JAccessFlags.ACC_PROTECTED else 0) |
		(if (aField.isStatic()) JAccessFlags.ACC_STATIC else 0) |
		(if (aField.isFinal()) JAccessFlags.ACC_FINAL else 0) |
		(if (aField.isVolatile()) JAccessFlags.ACC_VOLATILE else 0) |
		(if (aField.isTransient()) JAccessFlags.ACC_TRANSIENT else 0);
    jvmClass.fields += aField.symbol() ->
    jvmClass.jClass.addNewField(flags,
				aField.symbol().name.toString(),
				typeStoJ(aField.symbol().info()));
  }

  /* Generate a method */
  private def genMethod(jvmClass: JVMClass)(aMethod: AMethod): unit = {
    // 1. ##### Create JMethod object

    val flags = (if (aMethod.isPublic()) JAccessFlags.ACC_PUBLIC else 0) |
		(if (aMethod.isPrivate()) JAccessFlags.ACC_PRIVATE else 0) |
		(if (aMethod.isProtected()) JAccessFlags.ACC_PROTECTED else 0) |
		(if (aMethod.isStatic()) JAccessFlags.ACC_STATIC else 0) |
		(if (aMethod.isFinal()) JAccessFlags.ACC_FINAL else 0) |
		(if (aMethod.isNative()) JAccessFlags.ACC_NATIVE else 0) |
		(if (aMethod.isAbstract()) JAccessFlags.ACC_ABSTRACT else 0) |
		(if (aMethod.isStrictFP()) JAccessFlags.ACC_STRICT else 0);

    var argTypes_l : List[JType] = Nil;
    var argNames_l : List[String] = Nil;

    val vparams_it = Iterator.fromArray(aMethod.vparams());
    vparams_it.foreach((sym: Symbol) => {
      argTypes_l = typeStoJ(sym.info())::argTypes_l;
      argNames_l = sym.name.toString()::argNames_l;
    });

    val argTypes_a = new Array[JType](argTypes_l.length);
    val argNames_a = new Array[String](argNames_l.length);
    argTypes_l.reverse.copyToArray(argTypes_a,0);
    argNames_l.reverse.copyToArray(argNames_a,0);
    val jMethod : JMethod = jvmClass.jClass.addNewMethod(flags,
							 aMethod.symbol().name.toString(),
							 typeStoJ(aMethod.result()),
							 argTypes_a,
							 argNames_a);


    // 2. ##### Visits the method items

    val jvmMethod = new JVMMethod(aMethod, jvmClass);
    jvmClass.methods += aMethod.symbol() -> jvmMethod;
    jvmMethod.jMethod = jMethod;

    var index : int = 1;
    vparams_it.foreach((sym: Symbol) => {
      jvmMethod.args += sym -> index;
      index = index + 1;
    });

     if (! jvmMethod.aMethod.isAbstract()) {
      jvmMethod.jCode = jMethod.getCode().asInstanceOf[JExtendedCode];



       // 2.1 ##### Generate labels for the basic blocks

       jvmMethod.aMethod.icode.asInstanceOf[ICode].icTraverse((bb : IBasicBlock) => {
	 val blockLabel : JCode$Label = jvmMethod.jCode.newLabel();
	 jvmMethod.labels += bb -> blockLabel;
       });
     }
  }

  /* Translate code */
  private def genCode(jvmMethod : JVMMethod) = {
    val icode : ICode = jvmMethod.aMethod.icode.asInstanceOf[ICode];
    var stack : ICTypeStack = new ICTypeStack();
    val jCode = jvmMethod.jCode;

    // * IMPORTANT NOTICE *
    // Here we assume the icTraverse method uses *preorder*
    // I.e. The next translated block will be successor of the currently emmited block
    // It avoids to put the goto instruction since the successor is not already emmited
    // In the case of a CJUMP ICInstruction, the preorder ensures the next traversed block
    // will be the failure block.
    icode.icTraverseFeedBack((bb: IBasicBlock, hm: HashMap[IBasicBlock, boolean]) => {
      val blockLabel = jvmMethod.labels.apply(bb);
      blockLabel.anchorToNext();
      bb.bbTraverse((ic : ICInstruction) => stack = emitICInstruction(jvmMethod, stack)(ic));

      bb.getLastInstruction match {
	case CJUMP(_,failure,_) =>
	  if (hm(failure))
	    jCode.emitGOTO(jvmMethod.labels(failure));
	case CZJUMP(_,failure,_) =>
	  if (hm(failure))
	    jCode.emitGOTO(jvmMethod.labels(failure));
	case JUMP(where) =>
	  if (hm(where))
	    jCode.emitGOTO(jvmMethod.labels(where));
	case _ =>
	  ;
      }
    });
  }

  /* Translate an ICInstruction into a JVM instruction */
  private def emitICInstruction(jvmMethod: JVMMethod, stack: ICTypeStack)(instruction: ICInstruction) : ICTypeStack = {
    val jcode = jvmMethod.jCode;
    instruction match {
      case THIS(_) =>
	jcode.emitALOAD_0();


      case CONSTANT(AConstant$BOOLEAN(v)) =>
	jcode.emitPUSH(v);
      case CONSTANT(AConstant$BYTE(v)) =>
	jcode.emitPUSH(v);
      case CONSTANT(AConstant$SHORT(v)) =>
	jcode.emitPUSH(v);
      case CONSTANT(AConstant$CHAR(v)) =>
	jcode.emitPUSH(v);
      case CONSTANT(AConstant$INT(v)) =>
	jcode.emitPUSH(v);
      case CONSTANT(AConstant$LONG(v)) =>
	jcode.emitPUSH(v);
      case CONSTANT(AConstant$FLOAT(v)) =>
	jcode.emitPUSH(v);
      case CONSTANT(AConstant$DOUBLE(v)) =>
	jcode.emitPUSH(v);
      case CONSTANT(AConstant$STRING(v)) =>
	jcode.emitPUSH(v);
      case CONSTANT(AConstant.NULL) =>
	jcode.emitACONST_NULL();
      case CONSTANT(AConstant.UNIT) =>
	; //throw(Debug.abort("Illegal constant type: UNIT"));
      // Here, we dissable the error message until the unboxed types
      // are introduced.
      case CONSTANT(AConstant.ZERO) =>
	throw(Debug.abort("Illegal constant type: ZERO"));

      case LOAD_ARRAY_ITEM() => {
	val elementType = typer.getArrayElementType(stack.tail.head);
	jcode.emitALOAD(typeStoJ(elementType));
      }

      case LOAD_LOCAL(local, false) =>
	jcode.emitLOAD(jvmMethod.locals.apply(local));

      case LOAD_LOCAL(local, true) =>
	jcode.emitLOAD(jvmMethod.args(local), typeStoJ(local.getType()));

      case LOAD_FIELD(field, static) => {
	val className = javaName(field.owner());
	val fieldName = field.name.toString();
	if (static)
	  jcode.emitGETSTATIC(className, fieldName, typeStoJ(field.getType()));
	else
	  jcode.emitGETFIELD(className, fieldName, typeStoJ(field.getType()));
      }

      case STORE_ARRAY_ITEM() =>
	jcode.emitASTORE(typeStoJ(stack.head));

      case STORE_LOCAL(local, false) => {
	val jLocal : JLocalVariable =
	  if (jvmMethod.locals.contains(local))
	    jvmMethod.locals.apply(local);
	  else {
	    val newLocal = jvmMethod.jMethod.addNewLocalVariable(typeStoJ(local.getType()), local.name.toString());
	    jvmMethod.locals += local -> newLocal;
	    newLocal;
	  }
	jcode.emitSTORE(jLocal);
      }

      case STORE_FIELD(field, static) => {
	val className = javaName(field.owner());
	val fieldName = field.name.toString();
	if (static)
	  jcode.emitPUTSTATIC(className, fieldName, typeStoJ(field.getType()));
	else
	  jcode.emitPUTFIELD(className, fieldName, typeStoJ(field.getType()));
      }

      case CALL_PRIMITIVE(APrimitive$Negation(ATypeKind.I4)) => jcode.emitINEG();
      case CALL_PRIMITIVE(APrimitive$Negation(ATypeKind.I8)) => jcode.emitLNEG();
      case CALL_PRIMITIVE(APrimitive$Negation(ATypeKind.R4)) => jcode.emitFNEG();
      case CALL_PRIMITIVE(APrimitive$Negation(ATypeKind.R8)) => jcode.emitDNEG();

      case CALL_PRIMITIVE(APrimitive$Test(op, typ, false)) => {
	// !!! Not all type cases are handeled here
	// !!! TODO

	val condTag = condAtoJ(op);
	val thenLabel : JCode$Label = jvmMethod.jCode.newLabel();
	val contLabel : JCode$Label = jvmMethod.jCode.newLabel();

	typ match {
	  case ATypeKind.REF =>	jcode.emitIF_ACMP(condTag, thenLabel);
	  case ATypeKind.I4  => jcode.emitIF_ICMP(condTag, thenLabel);
	  case _ => throw(Debug.abort("Unexpected type for the Test primitive.")); // !!!
	}
	jcode.emitPUSH(false);
	jcode.emitGOTO(contLabel);
	thenLabel.anchorToNext();
	jcode.emitPUSH(true);
	contLabel.anchorToNext();
      }

      case CALL_PRIMITIVE(APrimitive$Comparison(AComparisonOp.CMPL, ATypeKind.R4)) => jcode.emitFCMPL();
      case CALL_PRIMITIVE(APrimitive$Comparison(AComparisonOp.CMPG, ATypeKind.R4)) => jcode.emitFCMPG();
      case CALL_PRIMITIVE(APrimitive$Comparison(AComparisonOp.CMP, ATypeKind.R4)) => jcode.emitFCMPG(); // Default is 1
      case CALL_PRIMITIVE(APrimitive$Comparison(AComparisonOp.CMPL, ATypeKind.R8)) => jcode.emitDCMPL();
      case CALL_PRIMITIVE(APrimitive$Comparison(AComparisonOp.CMPG, ATypeKind.R8)) => jcode.emitDCMPG();
      case CALL_PRIMITIVE(APrimitive$Comparison(AComparisonOp.CMP, ATypeKind.R8)) => jcode.emitDCMPG(); // Default is 1

      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.ADD, ATypeKind.I4)) => jcode.emitIADD();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.ADD, ATypeKind.I8)) => jcode.emitLADD();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.ADD, ATypeKind.R4)) => jcode.emitFADD();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.ADD, ATypeKind.R8)) => jcode.emitDADD();

      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.SUB, ATypeKind.I4)) => jcode.emitISUB();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.SUB, ATypeKind.I8)) => jcode.emitLSUB();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.SUB, ATypeKind.R4)) => jcode.emitFSUB();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.SUB, ATypeKind.R8)) => jcode.emitDSUB();

      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.MUL, ATypeKind.I4)) => jcode.emitIMUL();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.MUL, ATypeKind.I8)) => jcode.emitLMUL();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.MUL, ATypeKind.R4)) => jcode.emitFMUL();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.MUL, ATypeKind.R8)) => jcode.emitDMUL();

      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.DIV, ATypeKind.I4)) => jcode.emitIDIV();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.DIV, ATypeKind.I8)) => jcode.emitLDIV();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.DIV, ATypeKind.R4)) => jcode.emitFDIV();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.DIV, ATypeKind.R8)) => jcode.emitDDIV();

      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.REM, ATypeKind.I4)) => jcode.emitIREM();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.REM, ATypeKind.I8)) => jcode.emitLREM();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.REM, ATypeKind.R4)) => jcode.emitFREM();
      case CALL_PRIMITIVE(APrimitive$Arithmetic(AArithmeticOp.REM, ATypeKind.R8)) => jcode.emitDREM();

      case CALL_PRIMITIVE(APrimitive$Logical(ALogicalOp.AND, ATypeKind.I4)) => jcode.emitIAND();
      case CALL_PRIMITIVE(APrimitive$Logical(ALogicalOp.AND, ATypeKind.BOOL)) => jcode.emitIAND();
      case CALL_PRIMITIVE(APrimitive$Logical(ALogicalOp.AND, ATypeKind.I8)) => jcode.emitLAND();

      case CALL_PRIMITIVE(APrimitive$Logical(ALogicalOp.OR, ATypeKind.I4)) => jcode.emitIOR();
      case CALL_PRIMITIVE(APrimitive$Logical(ALogicalOp.OR, ATypeKind.BOOL)) => jcode.emitIOR();
      case CALL_PRIMITIVE(APrimitive$Logical(ALogicalOp.OR, ATypeKind.I8)) => jcode.emitLOR();

      case CALL_PRIMITIVE(APrimitive$Logical(ALogicalOp.XOR, ATypeKind.I4)) => jcode.emitIXOR();
      case CALL_PRIMITIVE(APrimitive$Logical(ALogicalOp.XOR, ATypeKind.BOOL)) => jcode.emitIXOR();
      case CALL_PRIMITIVE(APrimitive$Logical(ALogicalOp.XOR, ATypeKind.I8)) => jcode.emitLXOR();

      case CALL_PRIMITIVE(APrimitive$Shift(AShiftOp.LSL, ATypeKind.I4)) => jcode.emitISHL();
      case CALL_PRIMITIVE(APrimitive$Shift(AShiftOp.LSL, ATypeKind.I8)) => jcode.emitLSHL();

      case CALL_PRIMITIVE(APrimitive$Shift(AShiftOp.ASR, ATypeKind.I4)) => jcode.emitISHR();
      case CALL_PRIMITIVE(APrimitive$Shift(AShiftOp.ASR, ATypeKind.I8)) => jcode.emitLSHR();

      case CALL_PRIMITIVE(APrimitive$Shift(AShiftOp.LSR, ATypeKind.I4)) => jcode.emitIUSHR();
      case CALL_PRIMITIVE(APrimitive$Shift(AShiftOp.LSR, ATypeKind.I8)) => jcode.emitLUSHR();

      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.I4, ATypeKind.I8)) => jcode.emitI2L();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.I4, ATypeKind.R4)) => jcode.emitI2F();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.I4, ATypeKind.R8)) => jcode.emitI2D();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.I8, ATypeKind.I4)) => jcode.emitL2I();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.I8, ATypeKind.R4)) => jcode.emitL2F();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.I8, ATypeKind.R8)) => jcode.emitL2D();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.R4, ATypeKind.I4)) => jcode.emitF2I();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.R4, ATypeKind.I8)) => jcode.emitF2L();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.R4, ATypeKind.R8)) => jcode.emitF2D();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.R8, ATypeKind.I4)) => jcode.emitD2I();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.R8, ATypeKind.I8)) => jcode.emitD2L();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.R8, ATypeKind.R4)) => jcode.emitD2F();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.I4, ATypeKind.I1)) => jcode.emitI2B();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.I4, ATypeKind.U2)) => jcode.emitI2C();
      case CALL_PRIMITIVE(APrimitive$Conversion(ATypeKind.I4, ATypeKind.I2)) => jcode.emitI2S();

      case CALL_PRIMITIVE(APrimitive$ArrayLength(_)) => jcode.emitARRAYLENGTH();

      //case CALL_PRIMITIVE(APrimitive$StringConcat(ATypeKind.REF,ATypeKind.REF)) =>
      // !!! TODO !!!

      case CALL_METHOD(method, style) => {
	var calledMethod : JMethod = null;
	val clasz_it = clasz.values;
	var aJvmClass : JVMClass = null;
	// Is the method a method of the current unit ?
	while (clasz_it.hasNext && calledMethod == null) {
	  aJvmClass = clasz_it.next;
	  if (aJvmClass.methods.contains(method))
	    calledMethod = aJvmClass.methods.apply(method).jMethod;
	}
	if (calledMethod != null)
	  jcode.emitINVOKE(calledMethod);
	else {
	  // normal case
	  val methodName = method.name.toString();
	  val className = javaName(method.owner());
	  val methodType = typeStoJ(method.info()).asInstanceOf[JMethodType];
	  style match {
	    case AInvokeStyle.Dynamic =>
	      if (method.owner().isInterface())
		jcode.emitINVOKEINTERFACE(className, methodName, methodType);
	      else
		jcode.emitINVOKEVIRTUAL(className, methodName, methodType);
	    case AInvokeStyle.StaticInstance =>
	      jcode.emitINVOKESPECIAL(className, methodName, methodType);
	    case AInvokeStyle.StaticClass =>
	      jcode.emitINVOKESTATIC(className, methodName, methodType);
	  }
	}
      }

      case NEW(clasz) =>
	jcode.emitNEW(javaName(clasz));

      case CREATE_ARRAY(element) =>
	jcode.emitNEWARRAY(typeStoJ(element));

      case IS_INSTANCE(typ) =>
	jcode.emitINSTANCEOF(typeStoJ(typ).asInstanceOf[JReferenceType]);

      case CHECK_CAST(typ) =>
	jcode.emitCHECKCAST(typeStoJ(typ).asInstanceOf[JReferenceType]);

      case SWITCH(tags,blocks) => {
	val casesTags : List[Array[int]] = List.fromArray(tags,0,tags.length);
	val casesLabels = blocks.take(blocks.length-1);
	val defaultBranch = jvmMethod.labels(blocks.last);

	val tagsAndLabels = casesTags.zip(casesLabels);
	var keys_l : List[int] = Nil;
	var branches_l : List[JCode$Label] = Nil;

	tagsAndLabels.foreach ((p: Pair[Array[Int], IBasicBlock]) => {
	  val tags = p._1;
	  val label = jvmMethod.labels(p._2);
	  val tag_it = Iterator.fromArray(tags);
	  tag_it.foreach((tag: int) => {
	    keys_l = tag::keys_l;
	    branches_l = label::branches_l;
	  });
	});

	val keys_a = new Array[int](keys_l.length);
	val branches_a = new Array[JCode$Label](branches_l.length);
	keys_l.copyToArray(keys_a,0);
	branches_l.copyToArray(branches_a,0);

	jcode.emitSWITCH(keys_a, branches_a, defaultBranch, 0.65);
      }

      case JUMP(basicBlock) =>
	; // goto instructions are generated by the genCode method.

      case CJUMP(success, failure, cond) => {
	// !!! Type cases are missing
	// TODO (same as CALL_PRIMITIVE(Test))
	val condTag : int = condAtoJ(cond);
	val typ = typeStoJ(stack.head);
	if (typ.getTag() == JType.T_REFERENCE)
	  jcode.emitIF_ACMP(condTag, jvmMethod.labels(success));
	else if (typ.getTag() == JType.T_INT)
	  jcode.emitIF_ICMP(condTag, jvmMethod.labels(success));

      }

      case CZJUMP(success, failure, cond) => {
	val condTag = condAtoJ(cond);
	jcode.emitIF(condTag, jvmMethod.labels.apply(success));
	jcode.emitGOTO(jvmMethod.labels.apply(failure));
      }

      case RETURN() => {
	if (stack.isEmpty)
	  jcode.emitRETURN(JType.VOID);
	else
	  jcode.emitRETURN(typeStoJ(stack.head));
      }

      case THROW() => jcode.emitATHROW;

      case DROP(typ) => {
	val jtyp = typeStoJ(typ);
	val jtypTag : int = jtyp.getTag();
	if (jtyp.isObjectType() ||
	    jtyp.isReferenceType() ||
	    jtyp.isArrayType())
	  jcode.emitPOP();
	else
	  jtypTag match { // cf. VM spec 3.11.1
	    case JType.T_BOOLEAN => jcode.emitPOP();
	    case JType.T_CHAR => jcode.emitPOP();
	    case JType.T_BYTE => jcode.emitPOP();
	    case JType.T_SHORT => jcode.emitPOP();
	    case JType.T_INT => jcode.emitPOP();
	    case JType.T_FLOAT => jcode.emitPOP();
	    case JType.T_REFERENCE => jcode.emitPOP();
	    case JType.T_ADDRESS => jcode.emitPOP();
	    case JType.T_LONG => jcode.emitPOP2();
	    case JType.T_DOUBLE => jcode.emitPOP2();
	  }
      }

      case DUP(typ) => {
	val jtyp = typeStoJ(typ);
	val jtypTag : int = jtyp.getTag();
	if (jtyp.isObjectType() ||
	    jtyp.isReferenceType() ||
	    jtyp.isArrayType())
	  jcode.emitDUP();
	else
	  jtypTag match { // cf. VM spec 3.11.1
	    case JType.T_BOOLEAN => jcode.emitDUP();
	    case JType.T_CHAR => jcode.emitDUP();
	    case JType.T_BYTE => jcode.emitDUP();
	    case JType.T_SHORT => jcode.emitDUP();
	    case JType.T_INT => jcode.emitDUP();
	    case JType.T_FLOAT => jcode.emitDUP();
	    case JType.T_REFERENCE => jcode.emitDUP();
	    case JType.T_ADDRESS => jcode.emitDUP();
	    case JType.T_LONG => jcode.emitDUP2();
	    case JType.T_DOUBLE => jcode.emitDUP2();
	  }
      }

      case MONITOR_ENTER() => jcode.emitMONITORENTER();

      case MONITOR_EXIT()  => jcode.emitMONITOREXIT();

      case _ => throw(Debug.abort("Invalid ICInstruction for the JVMBackend", instruction));
    }
    return stack.eval(instruction);
  }

  /* Translate an ATree Test operation to the FJBG type */
  private def condAtoJ(cond : ATestOp) : int = cond match {
    case ATestOp.EQ => JExtendedCode.COND_EQ;
    case ATestOp.NE => JExtendedCode.COND_NE;
    case ATestOp.GE => JExtendedCode.COND_GE;
    case ATestOp.LT => JExtendedCode.COND_LT;
    case ATestOp.LE => JExtendedCode.COND_LE;
    case ATestOp.GT => JExtendedCode.COND_GT;
  }

  // ##################################################
  // Private methods - Debugging

  private def dumpStructure = {
    Debug.log("### Dumping structure ###");
    val sym_it = clasz.keys;
    sym_it.foreach((sym: Symbol) => {
      val jvmClass = clasz.apply(sym);
      Debug.log ("Classfile: ", sym);
      Debug.log ("/fileds:");
      val fields_it = jvmClass.fields.keys;
      fields_it.foreach((f: Symbol) => {
	Debug.log("  ", f);
      });
      Debug.log ("/methods:");
      val methods_it = jvmClass.methods.keys;
      methods_it.foreach((m: Symbol) => {
	Debug.log("  ", m);
      });
    });
    Debug.log("#########################");
  }

  //##################################################
  // Private methods & fields
  // translated from GenJVM - M. Schinz

  private val JAVA_LANG_OBJECT = "java.lang.Object";

  private def initTypeMap = {
        typeMap += defs.ANY_CLASS     -> JObjectType.JAVA_LANG_OBJECT;
        typeMap += defs.ANYREF_CLASS  -> JObjectType.JAVA_LANG_OBJECT;
  }

  /**
  * Return a Java-compatible version of the name of the given
  * symbol. The returned name is mangled and includes the names of
  * the owners.
  */
  private def javaName(sym: Symbol) =
    nameMap.get(sym) match {
      case Some(name) => name;
      case None => {
        val name = global.primitives.getJREClassName(sym);
        nameMap += sym -> name;
        name;
      }
    }

    /**
    * Return the name of the file in which to store the given class.
  */
  private def javaFileName(className : String) = {
    val tokens = new StringTokenizer(className, " ");
    var file = new File(global.outpath);
    while (tokens.hasMoreElements()) {
      file = new File(file, tokens.nextToken());
    }
    file.getPath()+".class";
  }

  /**
  * Return the Java type corresponding to the given Scala type.
  */
  private def typeStoJ(tp: Type) : JType = tp match {
    case Type$TypeRef(_, sym, _) =>
      typeMap.get(sym) match {
        case Some(jTp) => jTp
        case None => {
	  val jTp = new JObjectType(javaName(sym));
	  typeMap += sym -> jTp;
	  jTp;
        }
      }
    case Type$UnboxedType(TypeTags.BYTE)         => JType.BYTE;
    case Type$UnboxedType(TypeTags.CHAR)         => JType.CHAR;
    case Type$UnboxedType(TypeTags.SHORT)        => JType.SHORT;
    case Type$UnboxedType(TypeTags.INT)          => JType.INT;
    case Type$UnboxedType(TypeTags.LONG)         => JType.LONG;
    case Type$UnboxedType(TypeTags.FLOAT)        => JType.FLOAT;
    case Type$UnboxedType(TypeTags.DOUBLE)       => JType.DOUBLE;
    case Type$UnboxedType(TypeTags.BOOLEAN)      => JType.BOOLEAN;
    case Type$UnboxedType(TypeTags.UNIT)         => JType.VOID;
    case Type$UnboxedType(TypeTags.STRING)       => JObjectType.JAVA_LANG_STRING;
    case Type$UnboxedArrayType(elementType)      => new JArrayType(typeStoJ(elementType));

    case Type$MethodType(vparams: Array[Symbol], result: Type) => {
      val argTypes_a = new Array[JType](vparams.length);
      val vparams_it = Iterator.fromArray(vparams);
      //val argTypes_it = vparams_it.map((s: Symbol) => typeStoJ(s.info()));
      var argTypes_l : List[JType] = Nil;
      vparams_it.foreach((s: Symbol) => argTypes_l = typeStoJ(s.info())::argTypes_l);
      argTypes_l.reverse.copyToArray(argTypes_a,0);
      new JMethodType(typeStoJ(result), argTypes_a);
    }

    case _ =>
      throw Debug.abort("invalid type", tp);
  }
}


//##################################################
// Data structures

  /* This class represents a Class Context */
class JVMClass(theParent: JVMClass) {

  /* Methods of the class */
  val methods = new HashMap[Symbol, JVMMethod];

  /* Fields of the class */
  val fields = new HashMap[Symbol, JField];

  /* The JClass object corresponding of this class */
  var jClass : JClass = null;

  /* The inner classes of the class */
  var innerClasses : HashMap[Symbol, JVMClass] = null;

  /* The parent class of the class */
  val parent : JVMClass = theParent
}

  /* This class represents a Method context */
class JVMMethod(theAMethod : AMethod, theOwner : JVMClass){

  /* The ATree object representing this method */
  val aMethod : AMethod = theAMethod;

  /* The FJBG's object representing this method */
  var jMethod : JMethod = null;

  /* The locals variables of the method */
  val locals = new HashMap[Symbol, JLocalVariable];

  /* The arguments of the method */
  val args = new HashMap[Symbol, int];

  /* The JVM code of the method */
  var jCode : JExtendedCode = null;

  /* The owner class of the method */
  val owner : JVMClass = theOwner;

  /* The labels of the IBasicBlock's composing the ICode */
  val labels = new HashMap[IBasicBlock, JCode$Label];
}
  }