Package com.sun.org.apache.bcel.internal.generic

Examples of com.sun.org.apache.bcel.internal.generic.FLOAD


        } else if (type == Type.BYTE) {
           return new ILOAD(index);
        } else if (type == Type.CHAR) {
           return new ILOAD(index);
        } else if (type == Type.FLOAT) {
           return new FLOAD(index);
        } else if (type == Type.DOUBLE) {
           return new DLOAD(index);
        } else {
           return new ALOAD(index);
        }
View Full Code Here


        } else if (type == Type.BYTE) {
           return new ILOAD(index);
        } else if (type == Type.CHAR) {
           return new ILOAD(index);
        } else if (type == Type.FLOAT) {
           return new FLOAD(index);
        } else if (type == Type.DOUBLE) {
           return new DLOAD(index);
        } else {
           return new ALOAD(index);
        }
View Full Code Here

    case BOOLEAN:
    case CHAR:
    case BYTE:
    case SHORT:
    case INT:    ilc.add(new ILOAD(index)); return ;
    case FLOAT:  ilc.add(new FLOAD(index)); return ;
    case DOUBLE: ilc.add(new DLOAD(index)); return ;
    case LONG:   ilc.add(new LLOAD(index)); return ;
    case ARRAY:
    case OBJECT: ilc.add(new ALOAD(index)); return ;
    default:       throw new IllegalArgumentException("Invalid type " + type);
View Full Code Here

TOP

Related Classes of com.sun.org.apache.bcel.internal.generic.FLOAD

Copyright © 2018 www.massapicom. 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.