src/cpu/sparc/vm/interp_masm_sparc.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 932,943 **** // check array index_check_without_pop(array, index, index_shift, tmp, res); } void InterpreterMacroAssembler::get_constant_pool(Register Rdst) { ! ld_ptr(Lmethod, in_bytes(methodOopDesc::constants_offset()), Rdst); } void InterpreterMacroAssembler::get_constant_pool_cache(Register Rdst) { get_constant_pool(Rdst); --- 932,949 ---- // check array index_check_without_pop(array, index, index_shift, tmp, res); } + void InterpreterMacroAssembler::get_const(Register Rdst) { + ld_ptr(Lmethod, in_bytes(methodOopDesc::const_offset()), Rdst); + } + + void InterpreterMacroAssembler::get_constant_pool(Register Rdst) { ! get_const(Rdst); ! ld_ptr(Rdst, in_bytes(constMethodOopDesc::constants_offset()), Rdst); } void InterpreterMacroAssembler::get_constant_pool_cache(Register Rdst) { get_constant_pool(Rdst);