aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/transform/FunctionalInterfaces.scala
blob: bde902152414beb6556c653c9f4ffe4077e5c8a7 (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
package dotty.tools.dotc
package transform

import TreeTransforms._
import core.DenotTransformers._
import core.Symbols._
import core.Contexts._
import core.Types._
import core.Flags._
import core.Decorators._
import core.SymDenotations._
import core.StdNames.nme
import core.Names._
import core.NameOps._
import ast.Trees._
import SymUtils._
import dotty.tools.dotc.ast.tpd
import collection.{ mutable, immutable }
import collection.mutable.{ LinkedHashMap, LinkedHashSet, TreeSet }

/**
 *  Rewires closures to implement more specific types of Functions.
 */
class FunctionalInterfaces extends MiniPhaseTransform {
  import tpd._

  def phaseName: String = "functionalInterfaces"

  private var allowedReturnTypes: Set[Symbol] = _ // moved here to make it explicit what specializations are generated
  private var allowedArgumentTypes: Set[Symbol] = _
  val maxArgsCount = 2

  def shouldSpecialize(m: MethodType)(implicit ctx: Context) =
    (m.paramInfos.size <= maxArgsCount) &&
      m.paramInfos.forall(x => allowedArgumentTypes.contains(x.typeSymbol)) &&
      allowedReturnTypes.contains(m.resultType.typeSymbol)

  val functionName = "JFunction".toTermName
  val functionPackage = "scala.compat.java8.".toTermName

  override def prepareForUnit(tree: tpd.Tree)(implicit ctx: Context): TreeTransform = {
    allowedReturnTypes   = Set(defn.UnitClass,
                               defn.BooleanClass,
                               defn.IntClass,
                               defn.FloatClass,
                               defn.LongClass,
                               defn.DoubleClass,
     /* only for Function0: */ defn.ByteClass,
                               defn.ShortClass,
                               defn.CharClass)

    allowedArgumentTypes = Set(defn.IntClass,
                               defn.LongClass,
                               defn.DoubleClass,
     /* only for Function1: */ defn.FloatClass)

    this
  }

  override def transformClosure(tree: Closure)(implicit ctx: Context, info: TransformerInfo): Tree = {
    tree.tpt match {
      case EmptyTree =>
        val m = tree.meth.tpe.widen.asInstanceOf[MethodType]

        if (shouldSpecialize(m)) {
          val functionSymbol = tree.tpe.widenDealias.classSymbol
          val names = ctx.atPhase(ctx.erasurePhase) {
            implicit ctx => functionSymbol.typeParams.map(_.name)
          }
          val interfaceName = (functionName ++ m.paramInfos.length.toString).specializedFor(m.paramInfos ::: m.resultType :: Nil, names, Nil, Nil)

          // symbols loaded from classpath aren't defined in periods earlier than when they where loaded
          val interface = ctx.withPhase(ctx.typerPhase).getClassIfDefined(functionPackage ++ interfaceName)
          if (interface.exists) {
            val tpt = tpd.TypeTree(interface.asType.typeRef)
            tpd.Closure(tree.env, tree.meth, tpt)
          } else tree
        } else tree
      case _ =>
        tree
    }
  }
}