comparison src/share/vm/runtime/javaCalls.hpp @ 11146:e619a2766bcc

8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()' Reviewed-by: jrose, kvn, mgronlun
author rbackman
date Wed, 12 Jun 2013 11:17:39 +0200
parents f34d701e952e
children 6b0fd0964b87 de6a9e811145
comparison
equal deleted inserted replaced
11145:39deebbc90b3 11146:e619a2766bcc
78 // GC support 78 // GC support
79 Method* callee_method() { return _callee_method; } 79 Method* callee_method() { return _callee_method; }
80 oop receiver() { return _receiver; } 80 oop receiver() { return _receiver; }
81 void oops_do(OopClosure* f); 81 void oops_do(OopClosure* f);
82 82
83 bool is_first_frame() const { return _anchor.last_Java_sp() == NULL; }
84
83 }; 85 };
84 86
85 87
86 // Encapsulates arguments to a JavaCall (faster, safer, and more convenient than using var-args) 88 // Encapsulates arguments to a JavaCall (faster, safer, and more convenient than using var-args)
87 class JavaCallArguments : public StackObj { 89 class JavaCallArguments : public StackObj {