# HG changeset patch # User Tom Rodriguez # Date 1409719349 25200 # Node ID 8f3ece00da4f2767a3aed575019398edd43e7890 # Parent 4f8c81b1d1cbf53155ef765315dcdf3dc2450cf5 Claim entry_frame slots for VerifyStack diff -r 4f8c81b1d1cb -r 8f3ece00da4f src/cpu/x86/vm/frame_x86.cpp --- a/src/cpu/x86/vm/frame_x86.cpp Tue Sep 02 20:50:40 2014 -0700 +++ b/src/cpu/x86/vm/frame_x86.cpp Tue Sep 02 21:42:29 2014 -0700 @@ -695,6 +695,13 @@ DESCRIBE_FP_OFFSET(interpreter_frame_locals); DESCRIBE_FP_OFFSET(interpreter_frame_bcx); DESCRIBE_FP_OFFSET(interpreter_frame_initial_sp); + } else if (is_entry_frame()) { + // This could be more descriptive if we use the enum in + // stubGenerator to map to real names but it's most important to + // claim these frame slots so the error checking works. + for (int i = 0; i < entry_frame_after_call_words; i++) { + values.describe(frame_no, fp() - i, err_msg("call_stub word fp - %d", i)); + } } } #endif