Examples of dreturn()


Examples of gov.nasa.jpf.jvm.CodeBuilder.dreturn()

    } else if ("F".equals(returnType)) {  // float
      cb.fconst_0();
      cb.freturn();
    } else if ("D".equals(returnType)) {  // double
      cb.dconst_0();
      cb.dreturn();
    } else if ('L' == returnType.charAt(0) ||
               '[' == returnType.charAt(0)) {  // references
      cb.aconst_null();
      cb.areturn();
    }
View Full Code Here

Examples of org.jruby.compiler.impl.SkinnyMethodAdapter.dreturn()

                    } else if (retType == long.class) {
                        method.lreturn();
                    } else if (retType == float.class) {
                        method.freturn();
                    } else if (retType == double.class) {
                        method.dreturn();
                    } else {
                        throw new RuntimeException("unknown primitive type: " + retType);
                    }
                } else {
                    method.areturn();
View Full Code Here

Examples of org.jruby.compiler.impl.SkinnyMethodAdapter.dreturn()

                    } else if (retType == long.class) {
                        method.lreturn();
                    } else if (retType == float.class) {
                        method.freturn();
                    } else if (retType == double.class) {
                        method.dreturn();
                    } else {
                        throw new RuntimeException("unknown primitive type: " + retType);
                    }
                } else {
                    method.areturn();
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.