comparison src/share/vm/runtime/thread.hpp @ 3336:2e038ad0c1d0

7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp Reviewed-by: kvn, twisti
author never
date Mon, 02 May 2011 18:53:37 -0700
parents bf8517f4e4d0
children f52ed367b66d
comparison
equal deleted inserted replaced
3335:49d67a090fe2 3336:2e038ad0c1d0
1378 // Print stack traces in various internal formats 1378 // Print stack traces in various internal formats
1379 void trace_stack() PRODUCT_RETURN; 1379 void trace_stack() PRODUCT_RETURN;
1380 void trace_stack_from(vframe* start_vf) PRODUCT_RETURN; 1380 void trace_stack_from(vframe* start_vf) PRODUCT_RETURN;
1381 void trace_frames() PRODUCT_RETURN; 1381 void trace_frames() PRODUCT_RETURN;
1382 1382
1383 // Print an annotated view of the stack frames
1384 void print_frame_layout(int depth = 0, bool validate_only = false) PRODUCT_RETURN;
1385 void validate_frame_layout() {
1386 print_frame_layout(0, true);
1387 }
1388
1383 // Returns the number of stack frames on the stack 1389 // Returns the number of stack frames on the stack
1384 int depth() const; 1390 int depth() const;
1385 1391
1386 // Function for testing deoptimization 1392 // Function for testing deoptimization
1387 void deoptimize(); 1393 void deoptimize();