src/cpu/x86/vm/frame_x86.cpp

Print this page
rev 7023 : 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well

@@ -713,5 +713,11 @@
   }
   // else rely on fp()
   assert(! is_compiled_frame(), "unknown compiled frame size");
   return fp();
 }
+
+#ifndef PRODUCT
+extern "C" frame make_frame(intptr_t* sp, intptr_t* fp, address pc) {
+  return frame(sp, fp, pc);
+}
+#endif