/* * 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.compilers.common; import org.jikesrvm.VM; import org.jikesrvm.classloader.VM_Method; import org.jikesrvm.classloader.VM_Type; import org.jikesrvm.runtime.VM_DynamicLink; import org.jikesrvm.runtime.VM_ExceptionDeliverer; import org.jikesrvm.runtime.VM_StackBrowser; import org.vmmagic.pragma.SynchronizedObject; import org.vmmagic.pragma.Uninterruptible; import org.vmmagic.unboxed.Offset; /** * Information associated with artifical stackframe inserted by hardware * trap handler. */ @SynchronizedObject final class VM_HardwareTrapCompiledMethod extends VM_CompiledMethod { public VM_HardwareTrapCompiledMethod(int id, VM_Method m, boolean forSubArch) { super(id, m, forSubArch); } @Uninterruptible public int getCompilerType() { return TRAP; } public String getCompilerName() { return "<hardware trap>"; } @Uninterruptible public VM_ExceptionDeliverer getExceptionDeliverer() { // this method should never get called, because exception delivery begins // at site of exception, which is one frame above artificial "trap" frame // corresponding to this compiler-info object // if (VM.VerifyAssertions) VM._assert(VM.NOT_REACHED); return null; } public int findCatchBlockForInstruction(Offset instructionOffset, VM_Type exceptionType) { return -1; } @Uninterruptible public void getDynamicLink(VM_DynamicLink dynamicLink, Offset instructionOffset) { // this method should never get called, because exception delivery begins // at site of exception, which is one frame above artificial "trap" frame // corresponding to this compiler-info object // if (VM.VerifyAssertions) VM._assert(VM.NOT_REACHED); } public boolean isWithinUninterruptibleCode(Offset instructionOffset) { return false; } public void printStackTrace(Offset instructionOffset, org.jikesrvm.VM_PrintLN out) { out.println("\tat <hardware trap>"); } /** * Set the stack browser to the innermost logical stack frame of this method */ public void set(VM_StackBrowser browser, Offset instr) { if (VM.VerifyAssertions) VM._assert(VM.NOT_REACHED); } /** * Advance the VM_StackBrowser up one internal stack frame, if possible */ public boolean up(VM_StackBrowser browser) { return false; } }