< prev index next >

src/cpu/ppc/vm/sharedRuntime_ppc.cpp

Print this page

        

*** 1608,1618 **** move_ptr(masm, tmp, body_arg, r_caller_sp, /*unused*/ R0); move_ptr(masm, tmp2, length_arg, r_caller_sp, /*unused*/ R0); // Same as move32_64 on PPC64. } static void verify_oop_args(MacroAssembler* masm, ! methodHandle method, const BasicType* sig_bt, const VMRegPair* regs) { Register temp_reg = R19_method; // not part of any compiled calling seq if (VerifyOops) { for (int i = 0; i < method->size_of_parameters(); i++) { --- 1608,1618 ---- move_ptr(masm, tmp, body_arg, r_caller_sp, /*unused*/ R0); move_ptr(masm, tmp2, length_arg, r_caller_sp, /*unused*/ R0); // Same as move32_64 on PPC64. } static void verify_oop_args(MacroAssembler* masm, ! const methodHandle& method, const BasicType* sig_bt, const VMRegPair* regs) { Register temp_reg = R19_method; // not part of any compiled calling seq if (VerifyOops) { for (int i = 0; i < method->size_of_parameters(); i++) {
*** 1630,1640 **** } } } static void gen_special_dispatch(MacroAssembler* masm, ! methodHandle method, const BasicType* sig_bt, const VMRegPair* regs) { verify_oop_args(masm, method, sig_bt, regs); vmIntrinsics::ID iid = method->intrinsic_id(); --- 1630,1640 ---- } } } static void gen_special_dispatch(MacroAssembler* masm, ! const methodHandle& method, const BasicType* sig_bt, const VMRegPair* regs) { verify_oop_args(masm, method, sig_bt, regs); vmIntrinsics::ID iid = method->intrinsic_id();
< prev index next >