Examples of VmStaticMethod


Examples of org.jnode.vm.classmgr.VmStaticMethod

     * @param methodRef
     * @see org.jnode.vm.bytecode.BytecodeVisitor#visit_invokestatic(org.jnode.vm.classmgr.VmConstMethodRef)
     */
    public final void visit_invokestatic(VmConstMethodRef methodRef) {
        methodRef.resolve(loader);
        final VmStaticMethod method = (VmStaticMethod) methodRef
            .getResolvedVmMethod();

        if (method.getDeclaringClass().isMagicType()) {
            magicHelper.emitMagic(eContext, method, true, this, currentMethod);
        } else {
            // Flush the stack before an invoke
            vstack.push(eContext);

View Full Code Here

Examples of org.jnode.vm.classmgr.VmStaticMethod

        if (countBytecode) {
            counters.getCounter("invokestatic").inc();
        }

        methodRef.resolve(loader);
        final VmStaticMethod method = (VmStaticMethod) methodRef
            .getResolvedVmMethod();

        if (method.getDeclaringClass().isMagicType()) {
            magicHelper.emitMagic(eContext, method, true, this, currentMethod);
        } else {
            // Flush the stack before an invoke
            vstack.push(eContext);
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.