summaryrefslogtreecommitdiff
path: root/sources/scalac/transformer/AddInterfaces.java
blob: 2779cc528ebc2d932633d6c6937db9761ba71107 (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
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
**                                                                      **
\*                                                                      */

// $OldId: AddInterfaces.java,v 1.40 2002/11/08 11:56:47 schinz Exp $
// $Id$

package scalac.transformer;

import scalac.*;
import scalac.util.*;
import scalac.ast.*;
import scalac.symtab.*;
import Tree.*;

import java.util.*;

/**
 * Add, for each class, an interface with the same name, to be used
 * later by mixin expansion. More specifically:
 *
 * - at the end of the name of every class, the string "$class" is
 *   added,
 *
 * - an interface with the original name of the class is created, and
 *   contains all directly bound members of the class (as abstract
 *   members),
 *
 * - the interface is added to the mixin base classes of the class.
 *
 * @author Michel Schinz
 * @version 1.0
 */

class AddInterfaces extends SubstTransformer {
    /** Mapping from class symbols to their interface symbol. */
    public final Map/*<Symbol,Symbol>*/ classToInterface;

    protected final Map/*<Symbol,Symbol>*/ ifaceToClass;
    protected final SymbolMapApplier ifaceToClassApplier;
    protected final Map/*<Symbol,Symbol>*/ ifaceMemberToClass;

    // Mapping from class symbol to its type parameters mapping.
    protected final Map/*<Symbol,Map<Symbol,Symbol>>*/ typeParamsMaps;

    // Mapping from a class member symbol to its value and type
    // parameters mapping.
    protected final Map/*<Symbol,Map<Symbol,Symbol>>*/ funParamsMaps;

    protected final Set/*<Symbol>*/ createdIFaces = new HashSet();

    public AddInterfaces(Global global, AddInterfacesPhase descr) {
        super(global, descr, global.make);
        classToInterface = descr.classToInterface;
        ifaceToClass = descr.interfaceToClass;
        ifaceMemberToClass = descr.ifaceMemberToClass;

        ifaceToClassApplier = new SymbolMapApplier(ifaceToClass);

        typeParamsMaps = new HashMap();
        funParamsMaps = new HashMap();
    }

    public void apply() {
        // Phase 1: create all new symbols
        ClassSymCreator creator = new ClassSymCreator(global);

        for (int i = 0; i < global.units.length; ++i)
            creator.traverse(global.units[i].body);

        // Phase 2: transform the tree to add interfaces and use the
        // new symbols where needed.
        super.apply();
    }

    protected final static Tree.ValDef[][] EMPTY_PARAMS =
        new Tree.ValDef[][]{ new Tree.ValDef[0] };

    protected void uniqueName(Symbol sym, StringBuffer buf) {
        Symbol owner = sym.owner();

        if (owner != Symbol.NONE) {
            uniqueName(owner, buf);
            buf.append('$');
        }

        buf.append(sym.name.toString());
    }

    protected Name uniqueName(Symbol sym) {
        StringBuffer buf = new StringBuffer();
        uniqueName(sym, buf);
        Name newName = Name.fromString(buf.toString());
        if (sym.name.isTypeName()) return newName.toTypeName();
        else if (sym.name.isConstrName()) return newName.toConstrName();
        else return newName;
    }

    protected final static String CLASS_SUFFIX = "$class";

    protected boolean hasClassSuffix(Name name) {
        return name.toString().endsWith(CLASS_SUFFIX);
    }

    protected Name className(Name interfaceName) {
        assert !hasClassSuffix(interfaceName) : interfaceName;

        String interfaceStr = interfaceName.toString();
        Name className = Name.fromString(interfaceStr + CLASS_SUFFIX);
        if (interfaceName.isTypeName()) return className.toTypeName();
        else if (interfaceName.isConstrName()) return className.toConstrName();
        else return className;
    }

    // Modifiers for which we do not create interfaces.
    protected int NO_INTERFACE_MODS =
        (Modifiers.MODUL | Modifiers.SYNTHETIC | Modifiers.JAVA);

    protected boolean needInterface(Symbol sym) {
        return (sym.primaryConstructorClass().flags & NO_INTERFACE_MODS) == 0;
    }

    protected boolean memberGoesInInterface(Symbol member) {
        switch (member.kind) {
        case Kinds.TYPE: case Kinds.ALIAS:
            return true;
        case Kinds.CLASS:
            return needInterface(member);
        case Kinds.VAL:
            return member.isMethod();
        default:
            throw Debug.abort("unknown kind: " + member.kind);
        }
    }

    protected Type removeValueParams(Type tp) {
        switch (tp) {
        case MethodType(Symbol[] vparams, Type result):
            return new Type.MethodType(Symbol.EMPTY_ARRAY, result);
        case PolyType(Symbol[] tps, Type result):
            return new Type.PolyType(tps, removeValueParams(result));
        default:
            return tp;
        }
    }

    protected Tree mkAbstract(Tree tree) {
        Symbol symbol = tree.symbol();

        if (symbol.isMethod())
            return gen.DefDef(symbol, Tree.Empty);
        else switch (symbol.kind) {
	case Kinds.TYPE: case Kinds.ALIAS:
            return tree;
        case Kinds.CLASS:
            return classInterface((ClassDef)tree);
	default:
	    throw new ApplicationError("invalid symbol kind for me", symbol);
	}
    }

    protected Symbol getClassSym(Symbol ifaceSym) {
        assert !hasClassSuffix(ifaceSym.name) : ifaceSym.name;

        if (!needInterface(ifaceSym))
            return ifaceSym;
        else {
            if (!ifaceToClass.containsKey(ifaceSym)) {
                Symbol classSym;

                Name ifaceName = ifaceSym.primaryConstructorClass().fullName();
                classSym = global.definitions.getClass(className(ifaceName));
                if (ifaceSym.isPrimaryConstructor())
                    classSym = classSym.constructor();

                assert classSym != Symbol.NONE : ifaceSym;

                ifaceToClass.put(ifaceSym, classSym);
                classToInterface.put(classSym, ifaceSym);
            }

            return (Symbol)ifaceToClass.get(ifaceSym);
        }
    }

    protected Symbol[] vparams(Type tp) {
        switch (tp) {
        case MethodType(Symbol[] vparams, _):
            return vparams;
        case PolyType(_, Type result):
            return vparams(result);
        case OverloadedType(_, _):
            throw global.fail("can't get vparams of this type", tp);
        default:
            return Symbol.EMPTY_ARRAY;
        }
    }

    protected Type cloneSymbolsInMethodType(Type type,
                                            SymbolMapApplier smApplier,
                                            Map symbolMap) {
        switch (type) {
        case NoType:
        case ThisType(_):
        case TypeRef(_, _, _):
        case SingleType(_, _):
        case CompoundType(_, _):
            return type;

        case MethodType(Symbol[] vparams, Type result): {
            Symbol[] newVParams = new Symbol[vparams.length];
            for (int i = 0; i < vparams.length; ++i) {
                newVParams[i] = vparams[i].cloneSymbol();
                newVParams[i].setType(smApplier.apply(newVParams[i].info()));
                symbolMap.put(vparams[i], newVParams[i]);
            }
            return new Type.MethodType(newVParams,
                                       cloneSymbolsInMethodType(result,
                                                                smApplier,
                                                                symbolMap));
        }

        case PolyType(Symbol[] tparams, Type result): {
            Symbol[] newTParams = new Symbol[tparams.length];
            for (int i = 0; i < tparams.length; ++i) {
                newTParams[i] = tparams[i].cloneSymbol();
                symbolMap.put(tparams[i], newTParams[i]);
            }
            return new Type.PolyType(newTParams,
                                     cloneSymbolsInMethodType(result,
                                                              smApplier,
                                                              symbolMap));
        }

        default:
            throw global.fail("unexpected method type: " + Debug.toString(type));
        }
    }

    // Return the interface corresponding to the given class.
    protected Tree classInterface(ClassDef classDef) {
        Template impl = classDef.impl;
        Symbol ifaceSym = classDef.symbol();

        // Create tree for interface.
        List/*<Tree>*/ ifaceBody = new ArrayList();
        Tree[] body = impl.body;
        for (int i = 0; i < body.length; ++i) {
            Tree elem = body[i];
            if (elem.hasSymbol() && elem.symbol().owner() == ifaceSym) {
                if (memberGoesInInterface(elem.symbol()))
                    ifaceBody.add(mkAbstract(elem));
            }
        }

        Tree[] parentConstr =
            gen.mkParentConstrs(impl.pos, ifaceSym.nextInfo().parents());
        Template ifaceTmpl =
            make.Template(impl.pos,
                          parentConstr,
                          (Tree[])ifaceBody.toArray(new Tree[ifaceBody.size()]));
        ifaceTmpl.setSymbol(impl.symbol().cloneSymbol());
        ifaceTmpl.setType(ifaceSym.nextInfo());

        int ifaceMods = classDef.mods
            | Modifiers.ABSTRACTCLASS
            | Modifiers.INTERFACE
            | Modifiers.STATIC;
        ClassDef interfaceDef = (ClassDef)make.ClassDef(classDef.pos,
                                                        ifaceMods,
                                                        classDef.name,
                                                        classDef.tparams,
                                                        EMPTY_PARAMS,
                                                        classDef.tpe,
                                                        ifaceTmpl);
        interfaceDef.setType(Type.NoType);
        interfaceDef.setSymbol(ifaceSym);

        createdIFaces.add(ifaceSym);

        return interfaceDef;
    }

    protected Type fixClassSymbols(Type type) {
        switch (type) {
        case Type.NoType:
            return type;
        case ThisType(Symbol sym):
            return new Type.ThisType(getClassSym(sym));
        case TypeRef(Type pre, Symbol sym, Type[] args):
            return new Type.TypeRef(fixClassSymbols(pre), getClassSym(sym), args);
        case SingleType(Type pre, Symbol sym):
            return Type.singleType(fixClassSymbols(pre), getClassSym(sym));
        case CompoundType(Type[] parts, Scope members):
            return Type.compoundType(fixClassSymbols(parts),
                                     members,
                                     getClassSym(type.symbol()));
        case MethodType(Symbol[] vparams, Type result):
            return new Type.MethodType(vparams, fixClassSymbols(result));
        case PolyType(Symbol[] tparams, Type result):
            return new Type.PolyType(tparams, fixClassSymbols(result));
        default:
            throw global.fail("unexpected type ",type);
        }
    }

    protected Type[] fixClassSymbols(Type[] types) {
        Type[] newTypes = new Type[types.length];
        for (int i = 0; i < types.length; ++i)
            newTypes[i] = fixClassSymbols(types[i]);
        return newTypes;
    }

    protected Tree fixClassSymbols(Tree tree) {
        switch (tree) {
        case Apply(Tree fun, Tree[] args):
            return copy.Apply(tree, fixClassSymbols(fun), args);
        case TypeApply(Tree fun, Tree[] args):
            return copy.TypeApply(tree, fixClassSymbols(fun), args);
        case Select(Tree qualifier, Name selector): {
            Symbol classSym = getClassSym(tree.symbol());
            return copy.Select(tree, qualifier, classSym.name).setSymbol(classSym);
        }
        case Ident(Name name): {
            Symbol classSym = getClassSym(tree.symbol());
            return copy.Ident(tree, classSym.name).setSymbol(classSym);
        }
        default:
            throw global.fail("unexpected tree",tree);
        }
    }

    protected LinkedList/*<List<Tree>>*/ bodyStack = new LinkedList();

    public Tree[] transform(Tree[] trees) {
        List newTrees = new ArrayList();

        bodyStack.addFirst(newTrees);

        for (int i = 0; i < trees.length; ++i)
            newTrees.add(transform(trees[i]));

        bodyStack.removeFirst();

        return (Tree[]) newTrees.toArray(new Tree[newTrees.size()]);
    }

    public TypeDef[] transform(TypeDef[] ts) {
        return super.transform(ts);
    }

    public Tree transform(Tree tree) {
        if (tree.hasSymbol()) {
            Symbol sym = tree.symbol();
            if (sym != Symbol.NONE) {
                Symbol owner = sym.owner();
                if (ifaceMemberToClass.containsKey(owner)) {
                    sym.setOwner((Symbol)ifaceMemberToClass.get(owner));
                }
            }
        }

        switch (tree) {
        case ClassDef(int mods,
                      Name name,
                      TypeDef[] tparams,
                      ValDef[][] vparams,
                      Tree tpe,
                      Template impl) : {
            global.log("adding interface for " + tree.symbol()
                       + " (need one? " + needInterface(tree.symbol()) + ")");

            Symbol interfaceSym = tree.symbol();

            if (needInterface(interfaceSym)) {
                ClassDef classDef = (ClassDef) tree;

                // First insert interface for class in enclosing body...
                if (! createdIFaces.contains(interfaceSym)) {
                    Tree interfaceDef = classInterface(classDef);
                    List/*<Tree>*/ enclosingBody = (List)bodyStack.getFirst();
                    enclosingBody.add(interfaceDef);
                }

                // ...then transform the class.
                Symbol classSym = getClassSym(interfaceSym);

                assert typeParamsMaps.containsKey(classSym) : classSym;
                Map/*<Symbol,Symbol>*/ tparamsMap = (Map)typeParamsMaps.get(classSym);
                SymbolMapApplier tparamsSM = new SymbolMapApplier(tparamsMap);

                // Make the class implement the interface, and make sure
                // to use class symbols for base classes.
                Type interfaceBaseType = tparamsSM.apply(interfaceSym.type());
                Type[] newBaseTypes;

                // 1. modify type of class symbol
                Type newClassInfo;
                switch (classSym.nextInfo()) {
                case CompoundType(Type[] baseTypes, Scope members): {
                    newBaseTypes = new Type[baseTypes.length + 1];
                    newBaseTypes[0] = fixClassSymbols(baseTypes[0]);
                    newBaseTypes[1] = interfaceBaseType;
                    for (int i = 2; i < newBaseTypes.length; ++i)
                        newBaseTypes[i] = fixClassSymbols(baseTypes[i-1]);
                    newClassInfo = Type.compoundType(newBaseTypes, members, classSym);
                    classSym.updateInfo(newClassInfo);
                } break;

                default:
                    throw global.fail("invalid info() for class", classSym);
                }

                // 2. modify tree accordingly
                pushSymbolSubst(tparamsMap);
                Tree[] parents = transform(impl.parents);

                Tree[] newParents = new Tree[parents.length + 1];
                newParents[0] = parents[0];
                newParents[1] = gen.mkParentConstr(impl.pos, interfaceBaseType);
                for (int i = 2; i < newParents.length; ++i)
                    newParents[i] = parents[i-1];

                // Use new member symbols for class members.
                Tree[] body = impl.body;
                for (int i = 0; i < body.length; ++i) {
                    Tree member = body[i];
                    if (member.hasSymbol()) {
                        Symbol sym = member.symbol();
                        if (sym.kind != Kinds.CLASS
                            && ifaceMemberToClass.containsKey(sym))
                            member.setSymbol((Symbol)ifaceMemberToClass.get(sym));
                    }
                }

                // Transform body
                List newBody = new LinkedList();
                for (int i = 0; i < body.length; ++i) {
                    switch (body[i]) {
                    case TypeDef(_, _, _):
                        break;
                    default:
                        newBody.add(transform(body[i]));
                    }
                }
                Template newImpl =
                    copy.Template(impl,
                                  newParents,
                                  (Tree[])newBody.toArray(new Tree[newBody.size()]));
                newImpl.setType(newClassInfo);

                Tree newTree =
                    copy.ClassDef(classDef,
                                  classSym.flags,
                                  classSym.name.toTypeName(),
                                  transform(tparams),
                                  transform(vparams),
                                  transform(tpe),
                                  newImpl)
                    .setSymbol(classSym);

                popSymbolSubst();

                return newTree;
            } else {
                // No interface needed, we just adapt the class type
                // to use class symbols.
                Symbol classSym = interfaceSym;
                classSym.updateInfo(fixClassSymbols(classSym.info()));
                return super.transform(tree);
            }
        }

        case Template(Tree[] parents, Tree[] body): {
            return copy.Template(tree, transform(parents), transform(body))
                .setType(fixClassSymbols(tree.type));
        }

        case DefDef(_, _, _, _, _, _): {
            Symbol sym = tree.symbol();
            if (funParamsMaps.containsKey(sym)) {
                Map funParamsMap = (Map)funParamsMaps.get(sym);
                pushSymbolSubst(funParamsMap);
                Tree newTree = super.transform(tree);
                popSymbolSubst();
                return newTree;
            }
            return super.transform(tree);
        }

        case Select(Super(_), Name selector): {
            // Use class member symbol for "super" references.
            Symbol sym = tree.symbol();
            if (needInterface(sym.classOwner())) {
                assert ifaceMemberToClass.containsKey(sym);
                Symbol classSym = (Symbol)ifaceMemberToClass.get(sym);
                return super.transform(tree).setSymbol(classSym);
            } else
                return super.transform(tree);
        }

        default: {
            Tree newTree = super.transform(tree);

            // Use class symbols for constructor calls.
            switch (newTree) {
            case New(Template templ):
                return copy.New(newTree, templ)
                    .setType(templ.parents[0].type);

            case Apply(TypeApply(Tree fun, Tree[] targs), Tree[] vargs): {
                Tree tFun = ((Tree.Apply)newTree).fun;
                if (fun.symbol().isPrimaryConstructor())
                    return copy.Apply(newTree, tFun, vargs)
                        .setType(fixClassSymbols(newTree.type));
                else
                    return newTree;
            }

            case Apply(Tree fun, Tree[] args): {
                Symbol sym = fun.symbol();

                if (sym.isPrimaryConstructor()) {
                    fun.setSymbol(getClassSym(sym));
                    fun.setType(fixClassSymbols(fun.type));
                    return (copy.Apply(newTree, super.syncTree(fun), args))
                        .setType(fixClassSymbols(newTree.type));
                } else
                    return newTree;
            }

            case TypeApply(Tree fun, Tree[] args): {
                if (fun.symbol().isPrimaryConstructor()) {
                    fun.setSymbol(getClassSym(fun.symbol()));
                    fun.setType(fixClassSymbols(fun.type));
                    return (copy.TypeApply(newTree, super.syncTree(fun), args))
                        .setType(fixClassSymbols(newTree.type));
                } else
                    return newTree;
            }
            default:
                return newTree;
            }
        }
        }
    }

    //////////////////////////////////////////////////////////////////////

    // Class
    protected class ClassSymCreator extends Traverser {
        // Mapping from interface type parameters to class type
        // parameters.
        final HashMap/*<Symbol,Symbol>*/ tparamsMap = new HashMap();

        public ClassSymCreator(Global global) {
            super(global);
        }

        protected Symbol cloneAndMaybeRenameSymbol(Symbol sym) {
            assert !sym.isPrimaryConstructor() : sym;

            Symbol clone = sym.cloneSymbol();
            if (clone.kind == Kinds.CLASS) {
                clone.name = className(clone.name);
                Symbol constrClone = clone.constructor();
                constrClone.name = className(constrClone.name);
            }
            return clone;
        }

        protected void makeClassSymbol(Symbol ifaceSym) {
            Symbol classSym = cloneAndMaybeRenameSymbol(ifaceSym);
            ifaceToClass.put(ifaceSym, classSym);
            ifaceToClass.put(ifaceSym.constructor(), classSym.constructor());
        }

        public void traverse(Tree tree) {
            switch(tree) {
            case ClassDef(_, _, _, _, _, Template impl): {
                Symbol ifaceSym = tree.symbol();

                if (!needInterface(ifaceSym)) {
                    super.traverse(impl);
                    break;
                }

                // The class needs an interface. Create new symbols
                // for the class itself, its constructor, its type
                // parameters and its members. Then modify what was
                // the class symbol to turn it into an interface
                // symbol.

                // At the end of this part, one inconsistency remains:
                // the base types of the new class symbols still refer
                // to interface symbols. This is fixed later, when
                // symbols exist for *all* classes.

                Symbol ifaceConstrSym = ifaceSym.constructor();
                ifaceConstrSym.updateInfo(removeValueParams(ifaceConstrSym.info()));

                if (! ifaceToClass.containsKey(ifaceSym))
                    makeClassSymbol(ifaceSym);
                Symbol classSym = (Symbol)ifaceToClass.get(ifaceSym);
                Symbol classConstrSym = classSym.constructor();

                if (ifaceToClass.containsKey(classSym.owner())) {
                    Symbol newOwner = (Symbol)ifaceToClass.get(classSym.owner());
                    classSym.setOwner(newOwner);
                    classConstrSym.setOwner(newOwner);
                }

                Symbol[] ifaceTParams = ifaceSym.typeParams();
                if (ifaceTParams.length > 0) {
                    for (int i = 0; i < ifaceTParams.length; ++i) {
                        Symbol classTParam = ifaceTParams[i].cloneSymbol();
                        classTParam.setOwner(classConstrSym);
                        tparamsMap.put(ifaceTParams[i], classTParam);
                    }
                }
                assert !typeParamsMaps.containsKey(classSym);
                Map cloneMap = new HashMap();
                cloneMap.putAll(tparamsMap);
                typeParamsMaps.put(classSym, cloneMap);

                SymbolMapApplier tparamsSM = new SymbolMapApplier(cloneMap);

                classConstrSym.setInfo(tparamsSM.apply(classConstrSym.info()));
                Symbol[] vparams = vparams(classConstrSym.nextInfo());
                for (int i = 0; i < vparams.length; ++i)
                    vparams[i].updateInfo(tparamsSM.apply(vparams[i].info()));

                Scope newIFaceMembers = new Scope();
                Scope classMembers = new Scope();
                Scope.SymbolIterator symIt = ifaceSym.members().iterator();
                while (symIt.hasNext()) {
                    Symbol ifaceMemberSym = symIt.next();

                    ifaceMemberSym.updateInfo(tparamsSM.apply(ifaceMemberSym.info()));

                    if (! memberGoesInInterface(ifaceMemberSym)) {
                        ifaceMemberSym.setOwner(classSym);
                        classMembers.enter(ifaceMemberSym);
                        continue;
                    }

                    // When encountering a constructor of a nested
                    // class, clone its class to make sure the
                    // constructor is cloned correctly.
                    if (ifaceMemberSym.isPrimaryConstructor()
                        && !ifaceToClass.containsKey(ifaceMemberSym)) {
                        makeClassSymbol(ifaceMemberSym.primaryConstructorClass());
                    }

                    // Make private members public and give them a
                    // unique name.
                    if (Modifiers.Helper.isPrivate(ifaceMemberSym.flags)) {
                        ifaceMemberSym.name = uniqueName(ifaceMemberSym);
                        ifaceMemberSym.flags ^= Modifiers.PRIVATE;
                    }
                    ifaceMemberSym.flags &= ~Modifiers.PROTECTED;

                    newIFaceMembers.enter(ifaceMemberSym);

                    // Type members are moved to the interface.
                    // Therefore, no symbol has to be created for
                    // their class equivalent.
                    if (ifaceMemberSym.kind == Kinds.TYPE
                        || ifaceMemberSym.kind == Kinds.ALIAS)
                        continue;

                    Symbol[] alternatives = ifaceMemberSym.alternatives();
                    Symbol classMemberSym = null;

                    for (int a = 0; a < alternatives.length; ++a) {
                        Symbol iSym = alternatives[a];
                        Symbol cSym;

                        if (Modifiers.Helper.isPrivate(iSym.flags)) {
                            iSym.name = uniqueName(iSym);
                            iSym.flags ^= Modifiers.PRIVATE;
                        }
                        iSym.flags &= ~Modifiers.PROTECTED;

                        if (ifaceToClass.containsKey(iSym))
                            cSym = (Symbol)ifaceToClass.get(iSym);
                        else
                            cSym = cloneAndMaybeRenameSymbol(iSym);

                        iSym.updateInfo(tparamsSM.apply(iSym.info()));
                        cSym.setInfo(tparamsSM.apply(cSym.info()));

                        Symbol[] vpms = vparams(iSym.nextInfo());
                        for (int p = 0; p < vpms.length; ++p)
                            vpms[p].updateInfo(tparamsSM.apply(vpms[p].info()));

                        // Clone parameter symbols for methods.
                        if (cSym.isMethod()) {
                            Map funSymMap = new HashMap();
                            Type newInfo = cloneSymbolsInMethodType(cSym.info(),
                                                                    tparamsSM,
                                                                    funSymMap);
                            if (! funSymMap.isEmpty())
                                funParamsMaps.put(cSym, funSymMap);
                        }

                        cSym.setOwner(classSym);
                        classMemberSym = (classMemberSym == null
                                          ? cSym
                                          : classMemberSym.overloadWith(cSym));

                        if (iSym.kind == Kinds.CLASS) {
                            ifaceToClass.put(iSym, cSym);
                            ifaceToClass.put(iSym.constructor(), cSym.constructor());
                        } else {
                            iSym.flags |= Modifiers.DEFERRED;
                            ifaceMemberToClass.put(iSym, cSym);
                        }
                    }
                    if (!ifaceMemberToClass.containsKey(ifaceMemberSym)
                        && ifaceMemberSym.kind != Kinds.CLASS)
                        ifaceMemberToClass.put(ifaceMemberSym, classMemberSym);
                    classMembers.enter(classMemberSym);
                }

                switch (classSym.info()) {
                case CompoundType(Type[] parts, Scope members):
                    classSym.setInfo(Type.compoundType(tparamsSM.apply(parts),
                                                       classMembers,
                                                       classSym));
                    break;

                default:
                    global.fail("unexpected type for class", ifaceSym.info());
                }

                Type cConstrType = classConstrSym.info();
                classConstrSym.updateInfo(cConstrType.subst(new Symbol[]{ifaceSym},
                                                            new Symbol[]{classSym}));

                ifaceSym.flags |=
                    (Modifiers.ABSTRACTCLASS | Modifiers.INTERFACE | Modifiers.STATIC);

                classToInterface.put(classSym, ifaceSym);
                super.traverse(impl);

                if (ifaceTParams.length > 0)
                    for (int i = 0; i < ifaceTParams.length; ++i)
                        tparamsMap.remove(ifaceTParams[i]);

                // Remove Java classes from interface base classes.
                switch (ifaceSym.info()) {
                case CompoundType(Type[] basetypes, Scope members):
                    ArrayList newBT_L = new ArrayList(basetypes.length);
                    for (int i = 0; i < basetypes.length; ++i)
                        if (! basetypes[i].symbol().isJava())
                            newBT_L.add(basetypes[i]);
                    Type[] newBT;
                    if (newBT_L.size() != basetypes.length)
                        newBT = (Type[]) newBT_L.toArray(new Type[newBT_L.size()]);
                    else
                        newBT = basetypes;
                    ifaceSym.updateInfo(Type.compoundType(newBT,
                                                          newIFaceMembers,
                                                          ifaceSym));
                    break;

                default:
                    Debug.abort("unexpected type for class", ifaceSym.info());
                }
            } break;

            default:
                super.traverse(tree);
            }
        }
    }
}