/* * 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.ArchitectureSpecific; import org.jikesrvm.compilers.common.assembler.ppc.VM_Assembler; import org.jikesrvm.runtime.VM_Entrypoints; /** * Generate a "trampoline" that jumps to the shared lazy compilation stub. * We do this to enable the optimizing compiler to use ptr equality of * target instructions to imply logical (source) equality of target methods. * This is used to perform guarded inlining using the "method test." * Without per-method lazy compilation trampolines, ptr equality of target * instructions does not imply source equality, since both targets may in fact * be the globally shared lazy compilation stub. */ public abstract class VM_LazyCompilationTrampolineGenerator implements VM_BaselineConstants { /** * Generate a new lazy compilation trampoline. */ public static ArchitectureSpecific.VM_CodeArray getTrampoline() { VM_Assembler asm = new ArchitectureSpecific.VM_Assembler(0); asm.emitLAddrToc(S0, VM_Entrypoints.lazyMethodInvokerMethod.getOffset()); asm.emitMTCTR(S0); asm.emitBCCTR(); return asm.makeMachineCode().getInstructions(); } }