What types are special to the Scala compiler?

Solution 1:

There is an incredible amount of types that are "known" of the compiler, and are special to varying degrees. You can find a complete list in scalac's Definitions.scala.

We can probably classify them according to the degree of specialness they bear.

Disclaimer: I have probably forgotten a few more.

Special for the type system

The following types are crucial to Scala's type system. They have an influence on how type checking itself is performed. All these types are mentioned in the specification (or at least, they definitely should be).

  • Any, AnyRef, AnyVal, Null, Nothing: the five types that sit at the top and bottom of Scala's type system.
  • scala.FunctionN, the (canonical) type given of anonymous functions (including eta-expansion). Even in 2.12, which has the SAM treatment of anonymous functions, FunctionN remains special in some cases (notably in overloading resolution).
  • scala.PartialFunction (has an impact on how type inference works)
  • Unit
  • All types with literal notation: Int, Long, Float, Double, Char, Boolean, String, Symbol, java.lang.Class
  • All numeric primitive types and Chars, for weak conformance (together, these two bullets cover all primitive types)
  • Option and tuples (for pattern matching and auto-tupling)
  • java.lang.Throwable
  • scala.Dynamic
  • scala.Singleton
  • Most of scala.reflect.*, in particular ClassTag, TypeTag, etc.
  • scala.annotation.{,ClassFile,Static}Annotation
  • Almost all of the annotations in scala.annotation.* (e.g., unchecked)
  • scala.language.*
  • scala.math.ScalaNumber (for obscure reasons)

Known to the compiler as the desugaring of some language features

The following types are not crucial to the type system. They do not have an influence on type checking. However, the Scala language does feature a number of constructs which desugar into expressions of those types.

These types would also be mentioned in the specification.

  • scala.collection.Seq, Nil and WrappedArray, which are used for varargs parameters.
  • TupleN types
  • Product and Serializable (for case classes)
  • MatchError, generated by pattern matching constructs
  • scala.xml.*
  • scala.DelayedInit
  • List (the compiler performs some trivial optimizations on those, such as rewriting List() as Nil)

Known to the implementation of the language

This is probably the list that you care most about, given that you said you were interested in knowing what could go differently on different back-ends. The previous categories are handled by early (front-end) phases of the compiler, and are therefore shared by Scala/JVM, Scala.js and Scala Native. This category is typically known of the compiler back-end, and so potentially have different treatments. Note that both Scala.js and Scala Native do try to mimic the semantics of Scala/JVM to a reasonable degree.

Those types might not be mentioned in the language specification per se, at least not all of them.

Here are those where the back-ends agree (re Scala Native, to the best of my knowledge):

  • All primitive types: Boolean, Char, Byte, Short, Int, Long, Float, Double, Unit.
  • scala.Array.
  • Cloneable (currently not supported in Scala Native, see #334)
  • String and StringBuilder (mostly for string concatenation)
  • Object, for virtually all its methods

And here are those where they disagree:

  • Boxed versions of primitive types (such as java.lang.Integer)
  • Serializable
  • java.rmi.Remote and java.rmi.RemoteException
  • Some the annotations in scala.annotation.* (e.g., strictfp)
  • Some stuff in java.lang.reflect.*, used by Scala/JVM to implement structural types

Also, although not types per se, but a long list of primitive methods are also handled specifically by the back-ends.

Platform-specific types

In addition to the types mentioned above, which are available on all platforms, non-JVM platforms add their own special types for interoperability purposes.

Scala.js-specific types

See JSDefinitions.scala

  • js.Any: conceptually a third subtype of Any, besides AnyVal and AnyRef. They have JavaScript semantics instead of Scala semantics.
  • String and the boxed versions of all primitive types (heavily rewritten--so-called "hijacked"--by the compiler)
  • js.ThisFunctionN: their apply methods behave differently than that of other JavaScript types (the first actual argument becomes the thisArgument of the called function)
  • js.UndefOr and js.| (they behave as JS types even though they do not extend js.Any)
  • js.Object (new js.Object() is special-cased as an empty JS object literal {})
  • js.JavaScriptException (behaves very specially in throw and catch)
  • js.WrappedArray (used by the desugaring of varargs)
  • js.ConstructorTag (similar to ClassTag)
  • The annotation js.native, and all annotations in js.annotation.*

Plus, a dozen more primitive methods.

Scala Native-specific types

See NirDefinitions.scala

  • Unsigned integers: UByte, UShort, UInt and ULong
  • Ptr, the pointer type
  • FunctionPtrN, the function pointer types
  • The annotations in native.*
  • A number of extra primitive methods in scala.scalanative.runtime