/* * This file is part of the Jikes RVM project (http://jikesrvm.org). * * This file is licensed to You under the Eclipse Public License (EPL); * 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/eclipse-1.0.php * * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. */ package org.jikesrvm.osr.ppc; import org.jikesrvm.ppc.RegisterConstants; import org.jikesrvm.ppc.Registers; import org.vmmagic.unboxed.Address; import org.vmmagic.unboxed.Word; import org.vmmagic.unboxed.WordArray; /** * Temporary resiter set. * see: Registers */ public class TempRegisters implements RegisterConstants { /** next instruction address */ final Address ip; final WordArray gprs; final double[] fprs; /* hold CR, XER, CTR */ int cr; int xer; Word ctr; /** * if a GPR holds a reference to an object, we convert the raw memory * address to a reference. When objs[i] is null, the GPR[i] is not * holding a reference. */ Object[] objs; public TempRegisters(Registers contextRegisters) { gprs = WordArray.create(NUM_GPRS); fprs = new double[NUM_FPRS]; objs = new Object[NUM_GPRS]; for (int i = 0; i < NUM_GPRS; i++) { gprs.set(i, contextRegisters.gprs.get(i)); } System.arraycopy(contextRegisters.fprs, 0, fprs, 0, NUM_FPRS); ip = contextRegisters.ip; } public void dumpContents() { System.err.println("TempRegister: @" + ip.toInt()); System.err.println(" GPRS: "); for (int i = 0; i < NUM_GPRS; i++) { System.err.println(" (" + i + "," + gprs.get(i).toInt() + ")"); } System.err.println(); System.err.println(" OBJS: "); for (int i = 0; i < NUM_GPRS; i++) { if (objs[i] != null) { System.err.println(" (" + i + "," + objs[i] + ")"); } } System.err.println(); System.err.println(" FPRS "); for (int i = 0; i < NUM_FPRS; i++) { System.err.println(" (" + i + "," + fprs[i] + ")"); } } }