class CoreBTypes[BTFS <: BTypesFromSymbols[_ <: Global]] extends AnyRef
Core BTypes and some other definitions. The initialization of these definitions requires access to symbols / types (global).
The symbols used to initialize the ClassBTypes may change from one compiler run to the next. To
make sure the definitions are consistent with the symbols in the current run, the
initializeCoreBTypes
method in BTypesFromSymbols creates a new instance of CoreBTypes in each
compiler run.
The class BTypesFromSymbols does not directly reference CoreBTypes, but CoreBTypesProxy. The
reason is that having a var bTypes: CoreBTypes
would not allow import bTypes._
. Instead, the
proxy class holds a CoreBTypes
in a variable field and forwards to this instance.
The definitions in CoreBTypes
need to be lazy vals to break an initialization cycle. When
creating a new instance to assign to the proxy, the classBTypeFromSymbol
invoked in the
constructor will actually go through the proxy. The lazy vals make sure the instance is assigned
in the proxy before the fields are initialized.
Note: if we did not re-create the core BTypes on each compiler run, BType.classBTypeCacheFromSymbol could not be a perRunCache anymore: the classes defined here need to be in that map, they are added when the ClassBTypes are created. The per run cache removes them, so they would be missing in the second run.
- Source
- CoreBTypes.scala
- Alphabetic
- By Inheritance
- CoreBTypes
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new CoreBTypes(bTypes: BTFS)
Value Members
- lazy val AndroidCreatorClass: BTFS._$1.Symbol
- lazy val AndroidParcelableInterface: BTFS._$1.Symbol
- lazy val BeanInfoAttr: BTFS._$1.Symbol
- lazy val ObjectRef: BTFS.ClassBType
- lazy val PredefRef: BTFS.ClassBType
- lazy val StringRef: BTFS.ClassBType
- lazy val String_valueOf: BTFS._$1.Symbol
- val bTypes: BTFS
-
lazy val
boxResultType: Map[BTFS._$1.Symbol, BTFS.ClassBType]
Maps the method symbol for a box method to the boxed type of the result.
Maps the method symbol for a box method to the boxed type of the result. For example, the method symbol for
Byte.box()
is mapped to the ClassBTypejava/lang/Byte
. -
lazy val
boxedClassOfPrimitive: Map[BTFS.PrimitiveBType, BTFS.ClassBType]
Map from primitive types to their boxed class type.
Map from primitive types to their boxed class type. Useful when pushing class literals onto the operand stack (ldc instruction taking a class literal), see genConstant.
- lazy val boxedClasses: Set[BTFS.ClassBType]
- lazy val hashMethodSym: BTFS._$1.Symbol
- lazy val javaBoxMethods: Map[InternalName, BTFS.MethodNameAndType]
- lazy val javaUnboxMethods: Map[InternalName, BTFS.MethodNameAndType]
- lazy val jiSerializableRef: BTFS.ClassBType
- lazy val jlCharSequenceRef: BTFS.ClassBType
- lazy val jlClassCastExceptionRef: BTFS.ClassBType
- lazy val jlCloneableRef: BTFS.ClassBType
- lazy val jlIllegalArgExceptionRef: BTFS.ClassBType
- lazy val jlStringBufferRef: BTFS.ClassBType
- lazy val jlStringBuilderRef: BTFS.ClassBType
- lazy val jlThrowableRef: BTFS.ClassBType
- lazy val jliCallSiteRef: BTFS.ClassBType
- lazy val jliLambdaMetafactoryRef: BTFS.ClassBType
- lazy val jliMethodHandleRef: BTFS.ClassBType
- lazy val jliMethodHandlesLookupRef: BTFS.ClassBType
- lazy val jliMethodHandlesRef: BTFS.ClassBType
- lazy val jliMethodTypeRef: BTFS.ClassBType
- lazy val jliSerializedLambdaRef: BTFS.ClassBType
- lazy val juHashMapRef: BTFS.ClassBType
- lazy val juMapRef: BTFS.ClassBType
- lazy val lambdaDeserializeBootstrapHandle: Handle
- lazy val lambdaMetaFactoryAltMetafactoryHandle: Handle
- lazy val lambdaMetaFactoryMetafactoryHandle: Handle
- lazy val predefAutoBoxMethods: Map[String, BTFS.MethodBType]
- lazy val predefAutoUnboxMethods: Map[String, BTFS.MethodBType]
- lazy val primitiveBoxConstructors: Map[InternalName, BTFS.MethodNameAndType]
-
lazy val
primitiveTypeToBType: Map[BTFS._$1.Symbol, BTFS.PrimitiveBType]
Maps primitive types to their corresponding PrimitiveBType.
Maps primitive types to their corresponding PrimitiveBType. The map is defined lexically above the first use of
classBTypeFromSymbol
because that method looks at the map. - lazy val sbScalaBeanInfoRef: BTFS.ClassBType
- def singleParamOfClass(cls: BTFS._$1.Symbol): (BTFS._$1.Symbol) ⇒ Boolean
- lazy val srBoxedUnitRef: BTFS.ClassBType
- lazy val srBoxesRunTimeRef: BTFS.ClassBType
- lazy val srBoxesRuntimeBoxToMethods: Map[BTFS.BType, BTFS.MethodNameAndType]
- lazy val srBoxesRuntimeUnboxToMethods: Map[BTFS.BType, BTFS.MethodNameAndType]
- lazy val srLambdaDeserialize: BTFS.ClassBType
- lazy val srNothingRef: BTFS.ClassBType
- lazy val srNullRef: BTFS.ClassBType
- lazy val srRefConstructors: Map[InternalName, BTFS.MethodNameAndType]
- lazy val srRefCreateMethods: Map[InternalName, BTFS.MethodNameAndType]
- lazy val srRefZeroMethods: Map[InternalName, BTFS.MethodNameAndType]
- lazy val srStructuralCallSite: BTFS.ClassBType
- lazy val srSymbolLiteral: BTFS.ClassBType
- lazy val tupleClassConstructors: Map[InternalName, BTFS.MethodNameAndType]
- lazy val typeOfArrayOp: Map[Int, BTFS.BType]
-
lazy val
unboxResultType: Map[BTFS._$1.Symbol, BTFS.PrimitiveBType]
Maps the method symbol for an unbox method to the primitive type of the result.
Maps the method symbol for an unbox method to the primitive type of the result. For example, the method symbol for
Byte.unbox()
) is mapped to the PrimitiveBType BYTE.
The Scala compiler and reflection APIs.