Package org.jnode.assembler.x86

Examples of org.jnode.assembler.x86.X86Assembler.startObject()


            final X86Assembler os = (X86Assembler) nos;
            final EntryPoints context = getEntryPoints();
            // Create the helper
            final X86CompilerHelper ih = new X86CompilerHelper(os, null, context, isBootstrap);
            // Start an "object"
            final NativeStream.ObjectInfo objectInfo = os.startObject(context.getVmMethodCodeClass());
            // Start the code creation
            cm.setCodeStart(os.setObjectRef(new Label(method.getMangledName() + "$$start")));

            // Setup call to {@link VmMethod#recompileMethod(int, int)}
            final VmType<?> declClass = method.getDeclaringClass();
View Full Code Here


            final X86Assembler os = (X86Assembler) nos;
            // Create the helper
            final X86CompilerHelper helper = new X86CompilerHelper(os, null,
                context, isBootstrap);
            // Start an "object"
            final NativeStream.ObjectInfo objectInfo = os.startObject(context
                .getVmMethodCodeClass());
            // Start the code creation
            cm.setCodeStart(os.setObjectRef(new Label(method.getMangledName()
                + "$$abstract-start")));
            // Call abstract method error method
View Full Code Here

    protected void emitStaticInitializerCalls(NativeStream nativeOs,
                                              VmType<?>[] bootClasses, Object clInitCaller)
        throws ClassNotFoundException {

        final X86BinaryAssembler os = (X86BinaryAssembler) nativeOs;
        X86BinaryAssembler.ObjectInfo initCallerObject = os
            .startObject(loadClass(VmMethodCode.class));

        os.setObjectRef(clInitCaller);

        // Call VmClass.loadFromBootClassArray
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.