duke@435: /* xdono@772: * Copyright 2004-2008 Sun Microsystems, Inc. All Rights Reserved. duke@435: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: * duke@435: * This code is free software; you can redistribute it and/or modify it duke@435: * under the terms of the GNU General Public License version 2 only, as duke@435: * published by the Free Software Foundation. duke@435: * duke@435: * This code is distributed in the hope that it will be useful, but WITHOUT duke@435: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: * version 2 for more details (a copy is included in the LICENSE file that duke@435: * accompanied this code). duke@435: * duke@435: * You should have received a copy of the GNU General Public License version duke@435: * 2 along with this work; if not, write to the Free Software Foundation, duke@435: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: * duke@435: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, duke@435: * CA 95054 USA or visit www.sun.com if you need additional information or duke@435: * have any questions. duke@435: * duke@435: */ duke@435: duke@435: # include "incls/_precompiled.incl" duke@435: # include "incls/_dump_x86_32.cpp.incl" duke@435: duke@435: duke@435: duke@435: // Generate the self-patching vtable method: duke@435: // duke@435: // This method will be called (as any other Klass virtual method) with duke@435: // the Klass itself as the first argument. Example: duke@435: // duke@435: // oop obj; duke@435: // int size = obj->klass()->klass_part()->oop_size(this); duke@435: // duke@435: // for which the virtual method call is Klass::oop_size(); duke@435: // duke@435: // The dummy method is called with the Klass object as the first duke@435: // operand, and an object as the second argument. duke@435: // duke@435: duke@435: //===================================================================== duke@435: duke@435: // All of the dummy methods in the vtable are essentially identical, duke@435: // differing only by an ordinal constant, and they bear no releationship duke@435: // to the original method which the caller intended. Also, there needs duke@435: // to be 'vtbl_list_size' instances of the vtable in order to duke@435: // differentiate between the 'vtable_list_size' original Klass objects. duke@435: duke@435: #define __ masm-> duke@435: duke@435: void CompactingPermGenGen::generate_vtable_methods(void** vtbl_list, duke@435: void** vtable, duke@435: char** md_top, duke@435: char* md_end, duke@435: char** mc_top, duke@435: char* mc_end) { duke@435: duke@435: intptr_t vtable_bytes = (num_virtuals * vtbl_list_size) * sizeof(void*); duke@435: *(intptr_t *)(*md_top) = vtable_bytes; duke@435: *md_top += sizeof(intptr_t); duke@435: void** dummy_vtable = (void**)*md_top; duke@435: *vtable = dummy_vtable; duke@435: *md_top += vtable_bytes; duke@435: duke@435: // Get ready to generate dummy methods. duke@435: duke@435: CodeBuffer cb((unsigned char*)*mc_top, mc_end - *mc_top); duke@435: MacroAssembler* masm = new MacroAssembler(&cb); duke@435: duke@435: Label common_code; duke@435: for (int i = 0; i < vtbl_list_size; ++i) { duke@435: for (int j = 0; j < num_virtuals; ++j) { duke@435: dummy_vtable[num_virtuals * i + j] = (void*)masm->pc(); duke@435: duke@435: // Load rax, with a value indicating vtable/offset pair. duke@435: // -- bits[ 7..0] (8 bits) which virtual method in table? duke@435: // -- bits[12..8] (5 bits) which virtual method table? duke@435: // -- must fit in 13-bit instruction immediate field. duke@435: __ movl(rax, (i << 8) + j); duke@435: __ jmp(common_code); duke@435: } duke@435: } duke@435: duke@435: __ bind(common_code); duke@435: duke@435: #ifdef WIN32 duke@435: // Expecting to be called with "thiscall" conventions -- the arguments duke@435: // are on the stack, except that the "this" pointer is in rcx. duke@435: #else duke@435: // Expecting to be called with Unix conventions -- the arguments duke@435: // are on the stack, including the "this" pointer. duke@435: #endif duke@435: duke@435: // In addition, rax was set (above) to the offset of the method in the duke@435: // table. duke@435: duke@435: #ifdef WIN32 never@739: __ push(rcx); // save "this" duke@435: #endif never@739: __ mov(rcx, rax); never@739: __ shrptr(rcx, 8); // isolate vtable identifier. never@739: __ shlptr(rcx, LogBytesPerWord); duke@435: Address index(noreg, rcx, Address::times_1); duke@435: ExternalAddress vtbl((address)vtbl_list); duke@435: __ movptr(rdx, ArrayAddress(vtbl, index)); // get correct vtable address. duke@435: #ifdef WIN32 never@739: __ pop(rcx); // restore "this" duke@435: #else never@739: __ movptr(rcx, Address(rsp, BytesPerWord)); // fetch "this" duke@435: #endif never@739: __ movptr(Address(rcx, 0), rdx); // update vtable pointer. duke@435: never@739: __ andptr(rax, 0x00ff); // isolate vtable method index never@739: __ shlptr(rax, LogBytesPerWord); never@739: __ addptr(rax, rdx); // address of real method pointer. duke@435: __ jmp(Address(rax, 0)); // get real method pointer. duke@435: duke@435: __ flush(); duke@435: duke@435: *mc_top = (char*)__ pc(); duke@435: }