summaryrefslogtreecommitdiff
path: root/examples/scala-js/project/JavaLangString.scala
blob: fc68b294603375c9b7f2dccc086ecf8d9ebde615 (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
/*
 * Hard-coded IR for java.lang.String.
 */

import scala.scalajs.ir
import ir._
import ir.Definitions._
import ir.Infos._
import ir.Trees._
import ir.Types._
import ir.Position.NoPosition

/** Hard-coded IR for java.lang.String.
 *  Unlike for the other hijacked classes, scalac does not like at all to
 *  compile even a mocked version of java.lang.String. So we have to bypass
 *  entirely the compiler to define java.lang.String.
 */
object JavaLangString {

  /** Optimizer hints with `@inline`
   *  Unfortunately we do not have access to private details of
   *  [[OptimizerHints]], so we cannot do this cleanly. But it is fine
   *  somehow because we're part of the same project implementation.
   */
  private def inlineOptimizerHints = new OptimizerHints(2)

  val InfoAndTree = (Info, Definition)

  private def Info = ClassInfo(
    name = "java.lang.String",
    encodedName = "T",
    ancestorCount = 1,
    kind = ClassKind.HijackedClass,
    superClass = "O",
    ancestors = List(
      "T", "Ljava_io_Serializable", "jl_CharSequence", "jl_Comparable", "O"),
    methods = List(
      MethodInfo("equals__O__Z",
        optimizerHints = inlineOptimizerHints
      ),
      MethodInfo("hashCode__I",
        calledMethods = Map(
          "sjsr_RuntimeString$" -> List("hashCode__T__I")
        ),
        accessedModules = List("sjsr_RuntimeString"),
        optimizerHints = inlineOptimizerHints
      ),
      MethodInfo("compareTo__T__I",
        calledMethods = Map(
          "sjsr_RuntimeString$" -> List("compareTo__T__T__I")
        ),
        accessedModules = List("sjsr_RuntimeString"),
        optimizerHints = inlineOptimizerHints
      ),
      MethodInfo("compareTo__O__I",
        calledMethods = Map(
          "T" -> List("compareTo__T__I")
        ),
        optimizerHints = inlineOptimizerHints
      ),
      MethodInfo("toString__T",
        optimizerHints = inlineOptimizerHints
      ),
      MethodInfo("charAt__I__C",
        calledMethods = Map(
          "sjsr_RuntimeString$" -> List("charAt__T__I__C")
        ),
        accessedModules = List("sjsr_RuntimeString"),
        optimizerHints = inlineOptimizerHints
      ),
      MethodInfo("length__I",
        calledMethods = Map(
          "sjsr_RuntimeString$" -> List("length__T__I")
        ),
        accessedModules = List("sjsr_RuntimeString"),
        optimizerHints = inlineOptimizerHints
      ),
      MethodInfo("subSequence__I__I__jl_CharSequence",
        calledMethods = Map(
          "sjsr_RuntimeString$" -> List("subSequence__T__I__I__jl_CharSequence")
        ),
        accessedModules = List("sjsr_RuntimeString"),
        optimizerHints = inlineOptimizerHints
      )
    )
  )

  private def Definition = {
    implicit val DummyPos = NoPosition

    val ThisType = ClassType(StringClass)

    ClassDef(
      Ident("T", Some("java.lang.String")),
      ClassKind.HijackedClass,
      Some(Ident("O", Some("java.lang.Object"))),
      List(
          Ident("Ljava_io_Serializable", Some("java.io.Serializable")),
          Ident("jl_CharSequence", Some("java.lang.CharSequence")),
          Ident("jl_Comparable", Some("java.lang.Comparable")),
          Ident("O", Some("java.lang.Object"))
      ),
      List(
        /* def equals(that: Object): Boolean = this eq that */
        MethodDef(
          Ident("equals__O__Z", Some("equals__O__Z")),
          List(ParamDef(Ident("that", Some("that")), AnyType, mutable = false)),
          BooleanType,
          {
            BinaryOp(BinaryOp.===,
              This()(ThisType),
              VarRef(Ident("that", Some("that")), mutable = false)(AnyType))
          })(None),

        /* def hashCode(): Int = RuntimeString.hashCode(this) */
        MethodDef(
          Ident("hashCode__I", Some("hashCode__I")),
          Nil,
          IntType,
          {
            Apply(
              LoadModule(ClassType("sjsr_RuntimeString$")),
              Ident("hashCode__T__I", Some("hashCode__T__I")),
              List(This()(ThisType)))(IntType)
          })(None),

        /* def compareTo(that: String): Int = RuntimeString.compareTo(this, that) */
        MethodDef(
          Ident("compareTo__T__I", Some("compareTo__T__I")),
          List(ParamDef(Ident("that", Some("that")), ThisType, mutable = false)),
          IntType,
          {
            Apply(
              LoadModule(ClassType("sjsr_RuntimeString$")),
              Ident("compareTo__T__T__I", Some("compareTo__T__T__I")),
              List(
                This()(ThisType),
                VarRef(Ident("that", Some("that")), mutable = false)(ThisType)))(IntType)
          })(None),

        /* def compareTo(that: Object): Int = compareTo(that.asInstanceOf[String]) */
        MethodDef(
          Ident("compareTo__O__I", Some("compareTo__O__I")),
          List(ParamDef(Ident("that", Some("that")), AnyType, mutable = false)),
          IntType,
          {
            Apply(
              This()(ThisType),
              Ident("compareTo__T__I", Some("compareTo__T__I")),
              List(AsInstanceOf(
                VarRef(Ident("that", Some("that")), mutable = false)(AnyType),
                ThisType)))(IntType)
          })(None),

        /* def toString(): String = this */
        MethodDef(
          Ident("toString__T", Some("toString__T")),
          Nil,
          ClassType(StringClass),
          {
            This()(ThisType)
          })(None),

        /* def charAt(i: Int): Char = RuntimeString.charAt(this, i) */
        MethodDef(
          Ident("charAt__I__C", Some("charAt__I__C")),
          List(ParamDef(Ident("i", Some("i")), IntType, mutable = false)),
          IntType,
          {
            Apply(
              LoadModule(ClassType("sjsr_RuntimeString$")),
              Ident("charAt__T__I__C", Some("charAt__T__I__C")),
              List(
                This()(ThisType),
                VarRef(Ident("i", Some("i")), mutable = false)(IntType)))(IntType)
          })(None),

        /* def length(): Int = RuntimeString.length(this) */
        MethodDef(
          Ident("length__I", Some("length__I")),
          Nil,
          IntType,
          {
            Apply(
              LoadModule(ClassType("sjsr_RuntimeString$")),
              Ident("length__T__I", Some("length__T__I")),
              List(This()(ThisType)))(IntType)
          })(None),

        /* def subSequence(begin: Int, end: Int): CharSequence =
         *   RuntimeString.subSequence(this, begin, end)
         */
        MethodDef(
          Ident("subSequence__I__I__jl_CharSequence",
            Some("subSequence__I__I__jl_CharSequence")),
          List(
            ParamDef(Ident("begin", Some("begin")), IntType, mutable = false),
            ParamDef(Ident("end", Some("end")), IntType, mutable = false)
          ),
          ClassType("jl_CharSequence"),
          {
            Apply(
              LoadModule(ClassType("sjsr_RuntimeString$")),
              Ident("subSequence__T__I__I__jl_CharSequence",
                Some("subSequence__T__I__I__jl_CharSequence")),
              List(
                This()(ThisType),
                VarRef(Ident("begin", Some("begin")), mutable = false)(IntType),
                VarRef(Ident("end", Some("end")), mutable = false)(IntType)))(
              ClassType("jl_CharSequence"))
          })(None)
      ))
  }

}