/* * This file is part of the Jikes RVM project (http://jikesrvm.org). * * This file is licensed to You under the Common Public License (CPL); * You may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.opensource.org/licenses/cpl1.0.php * * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. */ package org.jikesrvm.ppc; import org.jikesrvm.VM_Registers; import org.jikesrvm.VM_MachineSpecific; import org.jikesrvm.compilers.common.assembler.VM_AbstractAssembler; import org.jikesrvm.compilers.common.assembler.ppc.VM_Assembler; import org.jikesrvm.runtime.VM_Magic; import org.jikesrvm.runtime.VM_Memory; import org.vmmagic.pragma.Interruptible; import org.vmmagic.pragma.Uninterruptible; import org.vmmagic.unboxed.LocalAddress; import org.vmmagic.unboxed.Offset; /** * Wrappers around PowerPC-specific code common to both 32 & 64 bit */ public abstract class VM_MachineSpecificPowerPC extends VM_MachineSpecific implements VM_ArchConstants { /** * Wrappers around PPC32-specific code (32-bit specific) */ public static final class PPC32 extends VM_MachineSpecificPowerPC { public static final PPC32 singleton = new PPC32(); } /** * Wrappers around PPC64-specific code (64-bit specific) */ public static final class PPC64 extends VM_MachineSpecificPowerPC { public static final PPC64 singleton = new PPC64(); } /* * Generic (32/64 neutral) PowerPC support */ /* common to all ISAs */ /** * The following method will emit code that moves a reference to an * object's TIB into a destination register. * * @param asm the assembler object to emit code with * @param dest the number of the destination register * @param object the number of the register holding the object reference * @param tibOffset the offset of the tib from the object header */ @Interruptible public final void baselineEmitLoadTIB(VM_AbstractAssembler asm_a, int dest, int object, Offset tibOffset) { VM_Assembler asm = (VM_Assembler) asm_a; asm.emitLAddrOffset(dest, object, tibOffset); } /** * The following method initializes a thread stack as if * "startoff" method had been called by an empty baseline-compiled * "sentinel" frame with one local variable * * @param contextRegisters The context registers for this thread * @param ip The instruction pointer for the "startoff" method * @param sp The base of the stack */ @Uninterruptible public final void initializeStack(VM_Registers contextRegisters, LocalAddress ip, LocalAddress sp) { LocalAddress fp; // align stack frame int INITIAL_FRAME_SIZE = STACKFRAME_HEADER_SIZE; fp = VM_Magic.addressAsLocalAddress(VM_Memory.alignDown(VM_Magic.localAddressAsAddress(sp.minus(INITIAL_FRAME_SIZE)), STACKFRAME_ALIGNMENT)); fp.plus(STACKFRAME_FRAME_POINTER_OFFSET).store(VM_Magic.addressAsLocalAddress(STACKFRAME_SENTINEL_FP)); fp.plus(STACKFRAME_NEXT_INSTRUCTION_OFFSET).store(ip); // need to fix fp.plus(STACKFRAME_METHOD_ID_OFFSET).store(INVISIBLE_METHOD_ID); contextRegisters.gprs.set(FRAME_POINTER, fp.toWord()); contextRegisters.ip = ip; } /* unique to PowerPC */ }