8036146: make CPP interpreter build again

Fix build of CPP interpreter on x86 and sparc

Reviewed-by: kvn
This commit is contained in:
Roland Westrelin 2014-03-05 15:14:25 +01:00
parent 7f243a6751
commit 7bee30f699
14 changed files with 159 additions and 126 deletions

View file

@ -827,6 +827,7 @@ void frame::describe_pd(FrameValues& values, int frame_no) {
}
if (is_interpreted_frame()) {
#ifndef CC_INTERP
DESCRIBE_FP_OFFSET(interpreter_frame_d_scratch_fp);
DESCRIBE_FP_OFFSET(interpreter_frame_l_scratch_fp);
DESCRIBE_FP_OFFSET(interpreter_frame_padding);
@ -837,6 +838,7 @@ void frame::describe_pd(FrameValues& values, int frame_no) {
if ((esp >= sp()) && (esp < fp())) {
values.describe(-1, esp, "*Lesp");
}
#endif
}
if (!is_compiled_frame()) {