/* * 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.adaptive; import org.jikesrvm.adaptive.controller.VM_Controller; import org.jikesrvm.classloader.VM_Method; import org.jikesrvm.compilers.common.VM_CompiledMethod; import org.jikesrvm.compilers.common.VM_CompiledMethods; import org.jikesrvm.scheduler.VM_Scheduler; import org.jikesrvm.scheduler.VM_Thread; import org.vmmagic.pragma.NoInline; import org.vmmagic.pragma.Uninterruptible; import org.vmmagic.unboxed.Offset; /** * Trigger an OSR from a running thread. */ public class OSR_OnStackReplacementTrigger { /** * Trigger an OSR from a running thread. */ @NoInline @Uninterruptible public static void trigger(int ypTakenInCMID, Offset tsFromFPoff, Offset ypTakenFPoff, int whereFrom) { VM_Thread thread = VM_Scheduler.getCurrentThread(); VM_CompiledMethod ypTakenInCM = VM_CompiledMethods.getCompiledMethod(ypTakenInCMID); VM_Method ypTakenInMethod = ypTakenInCM.getMethod(); boolean isInBootImage = ypTakenInMethod.getDeclaringClass().isInBootImage(); if (isInBootImage) return; OSR_OnStackReplacementEvent event = (OSR_OnStackReplacementEvent) thread.onStackReplacementEvent; event.suspendedThread = thread; event.whereFrom = whereFrom; event.CMID = ypTakenInCMID; event.tsFromFPoff = tsFromFPoff; event.ypTakenFPoff = ypTakenFPoff; // consumer: thread.requesting_osr = true; // osr organizer must be initialized already if (!VM_Controller.osrOrganizer.osr_flag) { VM_Controller.osrOrganizer.osr_flag = true; VM_Controller.osrOrganizer.activate(); } thread.osrSuspend(); } }