Package org.codehaus.groovy.classgen.asm
Class BytecodeHelper
java.lang.Object
org.codehaus.groovy.classgen.asm.BytecodeHelper
A helper class for bytecode generation with AsmClassGenerator.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
Deprecated.static boolean
Deprecated.static void
convertPrimitiveToBoolean
(org.objectweb.asm.MethodVisitor mv, ClassNode type) Converts a primitive type to boolean.static void
static void
static void
doCastToPrimitive
(org.objectweb.asm.MethodVisitor mv, ClassNode sourceType, ClassNode targetType) Given a wrapped number type (Byte, Integer, Short, ...), generates bytecode to convert it to a primitive number (int, long, double) using calls to wrapped.[targetType]Value()static void
doCastToWrappedType
(org.objectweb.asm.MethodVisitor mv, ClassNode sourceType, ClassNode targetType) Given a primitive number type (byte, integer, short, ...), generates bytecode to convert it to a wrapped number (Integer, Long, Double) using calls to [WrappedType].valueOfstatic void
static String
returns a name that Class.forName() can take.static String
static String
getClassInternalName
(String name) static String
static String[]
getClassInternalNames
(ClassNode[] names) static String
array types are special: eg.: String[]: classname: [Ljava.lang.String; Object: classname: java.lang.Object int[] : classname: [I unlike getTypeDescription '.' is not replaced by '/'.static String
getGenericsBounds
(ClassNode type) static String
static String
static String
getMethodDescriptor
(Class returnType, Class[] paramTypes) static String
getMethodDescriptor
(ClassNode returnType, ClassNode[] parameterTypes) static String
getMethodDescriptor
(ClassNode returnType, Parameter[] parameters) static String
getMethodDescriptor
(MethodNode methodNode) Returns a method descriptor for the givenMethodNode
.static String
static String
array types are special: eg.: String[]: classname: [Ljava/lang/String; int[]: [Istatic String
static int
Computes a hash code for a string.static boolean
isClassLiteralPossible
(ClassNode classNode) Tells if a class node is candidate for class literal bytecode optimization.static boolean
Returns true if the two classes share the same compilation unit.static void
static void
negateBoolean
(org.objectweb.asm.MethodVisitor mv) Negate a boolean on stack.static void
pushConstant
(org.objectweb.asm.MethodVisitor mv, int value) static void
static void
Generates the bytecode to unbox the current value on the stack.static void
Generates the bytecode to unbox the current value on the stack.static void
visitClassLiteral
(org.objectweb.asm.MethodVisitor mv, ClassNode classNode) Visits a class literal.
-
Constructor Details
-
BytecodeHelper
public BytecodeHelper()
-
-
Method Details
-
getClassInternalName
- Returns:
- the ASM internal name of the type
-
getClassInternalName
- Returns:
- the ASM internal name of the type
-
getClassInternalName
- Returns:
- the ASM internal name of the type
-
getMethodDescriptor
Returns a method descriptor for the givenMethodNode
.- Parameters:
methodNode
- the method node for which to create the descriptor- Returns:
- a method descriptor as defined in section JVMS section 4.3.3
-
getMethodDescriptor
- Returns:
- the ASM method type descriptor
-
getMethodDescriptor
- Returns:
- the ASM method type descriptor
-
getMethodDescriptor
- Returns:
- the ASM method type descriptor
-
getClassLoadingTypeDescription
array types are special: eg.: String[]: classname: [Ljava.lang.String; Object: classname: java.lang.Object int[] : classname: [I unlike getTypeDescription '.' is not replaced by '/'. it seems that makes problems for the class loading if '.' is replaced by '/'- Returns:
- the ASM type description for class loading
-
getTypeDescription
-
getTypeDescription
array types are special: eg.: String[]: classname: [Ljava/lang/String; int[]: [I- Returns:
- the ASM type description
-
getClassInternalNames
- Returns:
- an array of ASM internal names of the type
-
pushConstant
public static void pushConstant(org.objectweb.asm.MethodVisitor mv, int value) -
negateBoolean
public static void negateBoolean(org.objectweb.asm.MethodVisitor mv) Negate a boolean on stack. -
formatNameForClassLoading
returns a name that Class.forName() can take. Notably for arrays: [I, [Ljava.lang.String; etc Regular object type: java.lang.String -
getGenericsMethodSignature
-
getTypeGenericsSignature
-
getGenericsSignature
-
getGenericsBounds
-
doCast
-
doCastToPrimitive
public static void doCastToPrimitive(org.objectweb.asm.MethodVisitor mv, ClassNode sourceType, ClassNode targetType) Given a wrapped number type (Byte, Integer, Short, ...), generates bytecode to convert it to a primitive number (int, long, double) using calls to wrapped.[targetType]Value()- Parameters:
mv
- method visitorsourceType
- the wrapped number typetargetType
- the primitive target type
-
doCastToWrappedType
public static void doCastToWrappedType(org.objectweb.asm.MethodVisitor mv, ClassNode sourceType, ClassNode targetType) Given a primitive number type (byte, integer, short, ...), generates bytecode to convert it to a wrapped number (Integer, Long, Double) using calls to [WrappedType].valueOf- Parameters:
mv
- method visitorsourceType
- the primitive number typetargetType
- the wrapped target type
-
doCast
-
box
Deprecated.Generates the bytecode to autobox the current value on the stack. -
box
Deprecated.Generates the bytecode to autobox the current value on the stack. -
unbox
Generates the bytecode to unbox the current value on the stack. -
unbox
Generates the bytecode to unbox the current value on the stack. -
visitClassLiteral
Visits a class literal. If the type of the classnode is a primitive type, the generated bytecode will be a GETSTATIC Integer.TYPE. If the classnode is not a primitive type, we will generate a LDC instruction. -
isClassLiteralPossible
Tells if a class node is candidate for class literal bytecode optimization. If so, bytecode may use LDC instructions instead of static constant Class fields to retrieve class literals.- Parameters:
classNode
- the classnode for which we want to know if bytecode optimization is possible- Returns:
- true if the bytecode can be optimized
-
isSameCompilationUnit
Returns true if the two classes share the same compilation unit.- Parameters:
a
- class ab
- class b- Returns:
- true if both classes share the same compilation unit
-
hashCode
Computes a hash code for a string. The purpose of this hashcode is to be constant independently of the JDK being used.- Parameters:
str
- the string for which to compute the hashcode- Returns:
- hashcode of the string
-
convertPrimitiveToBoolean
Converts a primitive type to boolean.- Parameters:
mv
- method visitortype
- primitive type to convert
-
doReturn
-
load
-
store
-