< prev index next >

src/cpu/x86/vm/sharedRuntime_x86_32.cpp

Print this page

        

*** 507,516 **** --- 507,525 ---- // return value can be odd number of VMRegImpl stack slots make multiple of 2 return round_to(stack, 2); } + const uint SharedRuntime::java_return_convention_max_int = 1; + const uint SharedRuntime::java_return_convention_max_float = 1; + int SharedRuntime::java_return_convention(const BasicType *sig_bt, + VMRegPair *regs, + int total_args_passed) { + Unimplemented(); + return 0; + } + // Patch the callers callsite with entry to compiled code if it exists. static void patch_callers_callsite(MacroAssembler *masm) { Label L; __ cmpptr(Address(rbx, in_bytes(Method::code_offset())), (int32_t)NULL_WORD); __ jcc(Assembler::equal, L);
< prev index next >