Package org.mvel2.asm

Examples of org.mvel2.asm.MethodVisitor.visitIntInsn()


                        mv.visitInsn( IMUL );
                        mv.visitVarInsn( LLOAD,
                                         2 );
                        mv.visitVarInsn( LLOAD,
                                         2 );
                        mv.visitIntInsn( BIPUSH,
                                         32 );
                        mv.visitInsn( LUSHR );
                        mv.visitInsn( LXOR );
                        mv.visitInsn( L2I );
                        mv.visitInsn( IADD );
View Full Code Here


                        y = Math.max( 4,
                                      y );

                    } else if ("boolean".equals( field.getTypeName() )) {

                        mv.visitIntInsn( BIPUSH,
                                         31 );
                        mv.visitVarInsn( ILOAD,
                                         1 );
                        mv.visitInsn( IMUL );
                        mv.visitVarInsn( ALOAD,
View Full Code Here

                        mv.visitVarInsn( ISTORE,
                                         1 );

                    } else if ("float".equals( field.getTypeName() )) {

                        mv.visitIntInsn( BIPUSH,
                                         31 );
                        mv.visitVarInsn( ILOAD,
                                         1 );
                        mv.visitInsn( IMUL );
                        mv.visitVarInsn( ALOAD,
View Full Code Here

                        x = Math.max( 3,
                                      x );

                    } else if ("long".equals( field.getTypeName() )) {

                        mv.visitIntInsn( BIPUSH,
                                         31 );
                        mv.visitVarInsn( ILOAD,
                                         1 );
                        mv.visitInsn( IMUL );
                        mv.visitVarInsn( ALOAD,
View Full Code Here

                        mv.visitMethodInsn( INVOKEVIRTUAL,
                                            proxyType,
                                            BuildUtils.getterName( field.getName(),
                                                                   field.getTypeName() ),
                                            "()" + BuildUtils.getTypeDescriptor( field.getTypeName() ) );
                        mv.visitIntInsn( BIPUSH,
                                         32 );
                        mv.visitInsn( LUSHR );
                        mv.visitInsn( LXOR );
                        mv.visitInsn( L2I );
                        mv.visitInsn( IADD );
View Full Code Here

                        x = Math.max( 6,
                                      x );

                    } else {

                        mv.visitIntInsn( BIPUSH,
                                         31 );
                        mv.visitVarInsn( ILOAD,
                                         1 );
                        mv.visitInsn( IMUL );
                        mv.visitVarInsn( ALOAD,
View Full Code Here

        MethodVisitor mv;

        {
            mv = cw.visitMethod( ACC_PUBLIC, "hashCode", "()I", null, null );
            mv.visitCode();
            mv.visitIntInsn( BIPUSH, 31 );
            mv.visitVarInsn( ISTORE, 1 );

            int count = 0;
            int x = 2;
            int y = 2;
View Full Code Here

                if ( field.isKey() ) {
                    count++;

                    if ( ! BuildUtils.isPrimitive( field.getTypeName() ) ) {

                        mv.visitIntInsn( BIPUSH, 31 );
                        mv.visitVarInsn( ILOAD, 1 );
                        mv.visitInsn( IMUL );
                        mv.visitVarInsn( ALOAD, 0 );
                        mv.visitMethodInsn( INVOKEVIRTUAL, proxyType, BuildUtils.getterName( field.getName(), field.getTypeName() ),
                                            "()" + Type.getDescriptor( field.getType() ) );
View Full Code Here

                        mv.visitJumpInsn( GOTO, l3 );
                        mv.visitLabel( l2 );
                        mv.visitInsn( LCONST_0 );
                        mv.visitLabel( l3 );
                        mv.visitVarInsn( LSTORE, 2 );
                        mv.visitIntInsn( BIPUSH, 31 );
                        mv.visitVarInsn( ILOAD, 1 );
                        mv.visitInsn( IMUL );
                        mv.visitVarInsn( LLOAD, 2 );
                        mv.visitVarInsn( LLOAD, 2 );
                        mv.visitIntInsn( BIPUSH, 32 );
View Full Code Here

                        mv.visitIntInsn( BIPUSH, 31 );
                        mv.visitVarInsn( ILOAD, 1 );
                        mv.visitInsn( IMUL );
                        mv.visitVarInsn( LLOAD, 2 );
                        mv.visitVarInsn( LLOAD, 2 );
                        mv.visitIntInsn( BIPUSH, 32 );
                        mv.visitInsn( LUSHR );
                        mv.visitInsn( LXOR );
                        mv.visitInsn( L2I );
                        mv.visitInsn( IADD );
                        mv.visitVarInsn( ISTORE, 1 );
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.