src/share/vm/runtime/thread.hpp

changeset 5784
190899198332
parent 5614
9758d9f36299
child 5915
8b80b262e501
equal deleted inserted replaced
5783:c1fbf21c7397 5784:190899198332
1276 oop exception_oop() const { return _exception_oop; } 1276 oop exception_oop() const { return _exception_oop; }
1277 address exception_pc() const { return _exception_pc; } 1277 address exception_pc() const { return _exception_pc; }
1278 address exception_handler_pc() const { return _exception_handler_pc; } 1278 address exception_handler_pc() const { return _exception_handler_pc; }
1279 bool is_method_handle_return() const { return _is_method_handle_return == 1; } 1279 bool is_method_handle_return() const { return _is_method_handle_return == 1; }
1280 1280
1281 void set_exception_oop(oop o) { _exception_oop = o; } 1281 void set_exception_oop(oop o) { (void)const_cast<oop&>(_exception_oop = o); }
1282 void set_exception_pc(address a) { _exception_pc = a; } 1282 void set_exception_pc(address a) { _exception_pc = a; }
1283 void set_exception_handler_pc(address a) { _exception_handler_pc = a; } 1283 void set_exception_handler_pc(address a) { _exception_handler_pc = a; }
1284 void set_is_method_handle_return(bool value) { _is_method_handle_return = value ? 1 : 0; } 1284 void set_is_method_handle_return(bool value) { _is_method_handle_return = value ? 1 : 0; }
1285 1285
1286 // Stack overflow support 1286 // Stack overflow support

mercurial