public class GenArrayType extends ParameterizedType implements TypeValue
Type.NeverReturns| Modifier and Type | Field and Description |
|---|---|
static GenArrayType |
generalInstance |
static ClassType |
typeArray |
flagsboolean_ctype, boolean_type, booleanType, booleanValue_method, byte_type, byteType, char_type, charType, clone_method, double_type, doubleType, doubleValue_method, errorType, float_type, floatType, floatValue_method, int_type, intType, intValue_method, java_lang_Class_type, javalangannotationAnnotationType, javalangBooleanType, javalangCharacterType, javalangClassType, javalanginvokeMethodHandleType, javalangNumberType, javalangObjectType, javalangStringType, javalangThrowableType, long_type, longType, longValue_method, neverReturnsType, nullType, number_type, objectType, pointer_type, reflectClass, short_type, shortType, string_type, throwable_type, toString_method, tostring_type, toStringType, typeArray0, void_type, voidType| Constructor and Description |
|---|
GenArrayType(int rank,
Type elementType) |
| Modifier and Type | Method and Description |
|---|---|
int |
compare(Type other)
Return a numeric code showing "subtype" relationship:
1: if other is a pure subtype of this;
0: if has the same values;
-1: if this is a pure subtype of other;
-2: if they have values in common but neither is a subtype of the other;
-3: if the types have no values in common.
|
Expression |
convertValue(Expression value)
Return converted expression or null.
|
void |
emitIsInstance(Variable incoming,
Compilation comp,
Target target)
Emit code for incoming instanceof this_type.
|
void |
emitTestIf(Variable incoming,
Declaration decl,
Compilation comp)
Emit code for
if (incoming instanceof this_type) decl = incoming ....
|
java.lang.String |
encodeType(Language language) |
Type |
getComponentType() |
Procedure |
getConstructor()
Get the constructor function for this type.
|
Type |
getImplementationType()
Return Java-level implementation type.
|
int |
rank() |
emitCoerceFromObject, emitIsInstance, equals, getGenericSignature, getName, getRawType, getReflectClass, getSignature, getTypeArgumentBound, getTypeArgumentType, getTypeArgumentTypes, setTypeArgumentBound, setTypeArgumentBounds, toStringcoerceFromObject, getContextClass, getContextClassLoader, getField, getInterfaces, getInternalName, getMethod, getMethods, getMethods, getSuperclass, isExisting, isInstance, setExistingcoerceToObject, emitCoerceToObject, emitConvertFromPrimitive, getMaybeGenericSignature, getRealType, getSize, getSizeInWords, getType, hashCode, isCompatibleWithValue, isCompatibleWithValue, isInterface, isMoreSpecific, isSame, isSubtype, isValidJavaTypeName, isVoid, lookupType, lowestCommonSharedType, lowestCommonSuperType, make, make, printSignature, promote, promoteIfUnsigned, registerTypeForClass, setGenericSignature, setName, setReflectClass, setSignature, signatureLength, signatureLength, signatureToName, signatureToPrimitive, signatureToType, signatureToType, swappedCompareResultpublic static final ClassType typeArray
public static final GenArrayType generalInstance
public GenArrayType(int rank,
Type elementType)
public Type getImplementationType()
TypegetImplementationType in interface TypeValuegetImplementationType in class Typepublic int rank()
public Type getComponentType()
public int compare(Type other)
Typecompare in class ParameterizedTypepublic Expression convertValue(Expression value)
TypeValueconvertValue in interface TypeValuepublic Procedure getConstructor()
TypeValue<init> methods) should be used.getConstructor in interface TypeValuepublic java.lang.String encodeType(Language language)
encodeType in interface TypeValuepublic void emitIsInstance(Variable incoming, Compilation comp, Target target)
TypeValueInstanceOf
.emitIsInstance which is a conveniece method that calls
emitTestIf.emitIsInstance in interface TypeValueincoming - Contains the value we are testing to see if it has the
the type of 'this'. If null, use top-of-stack.comp - The compilation state.target - Where to leave the result.public void emitTestIf(Variable incoming, Declaration decl, Compilation comp)
TypeValueemitTestIf in interface TypeValueincoming - Contains the value we are testing to see if it has the
type of this. If null, use top-of-stack.
May not be null if decl is non-null.decl - If non-null, assign value after coercion to Declaration.comp - The compilation state.