comparison src/cpu/zero/vm/frame_zero.cpp @ 22803:f43fad8786fc

8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well Summary: Also fix stack trace on x86 to enable walking of runtime stubs and native wrappers Reviewed-by: kvn
author simonis
date Wed, 24 Sep 2014 12:19:07 -0700
parents 55fb97c4c58d
children dd9cc155639c 4a4a5b8b3dfe
comparison
equal deleted inserted replaced
22802:0ef505d06e12 22803:f43fad8786fc
439 439
440 intptr_t *frame::initial_deoptimization_info() { 440 intptr_t *frame::initial_deoptimization_info() {
441 // unused... but returns fp() to minimize changes introduced by 7087445 441 // unused... but returns fp() to minimize changes introduced by 7087445
442 return fp(); 442 return fp();
443 } 443 }
444
445 #ifndef PRODUCT
446 // This is a generic constructor which is only used by pns() in debug.cpp.
447 frame::frame(void* sp, void* fp, void* pc) {
448 Unimplemented();
449 }
450 #endif