comparison src/share/vm/runtime/thread.hpp @ 2891:75a99b4f1c98

Rebranded C++ part from C1X to Graal.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 08 Jun 2011 14:01:51 +0200
parents 0cd39a385a72
children be4ca325525a
comparison
equal deleted inserted replaced
2890:c23d45daff9b 2891:75a99b4f1c98
831 stack_guard_enabled // enabled 831 stack_guard_enabled // enabled
832 }; 832 };
833 833
834 private: 834 private:
835 835
836 // c1x needs some place to put the dimensions 836 // graal needs some place to put the dimensions
837 jint c1x_multinewarray_storage[256]; 837 jint graal_multinewarray_storage[256];
838 838
839 StackGuardState _stack_guard_state; 839 StackGuardState _stack_guard_state;
840 840
841 // Compiler exception handling (NOTE: The _exception_oop is *NOT* the same as _pending_exception. It is 841 // Compiler exception handling (NOTE: The _exception_oop is *NOT* the same as _pending_exception. It is
842 // used to temp. parsing values into and out of the runtime system during exception handling for compiled 842 // used to temp. parsing values into and out of the runtime system during exception handling for compiled
1269 static ByteSize exception_handler_pc_offset() { return byte_offset_of(JavaThread, _exception_handler_pc); } 1269 static ByteSize exception_handler_pc_offset() { return byte_offset_of(JavaThread, _exception_handler_pc); }
1270 static ByteSize exception_stack_size_offset() { return byte_offset_of(JavaThread, _exception_stack_size); } 1270 static ByteSize exception_stack_size_offset() { return byte_offset_of(JavaThread, _exception_stack_size); }
1271 static ByteSize is_method_handle_return_offset() { return byte_offset_of(JavaThread, _is_method_handle_return); } 1271 static ByteSize is_method_handle_return_offset() { return byte_offset_of(JavaThread, _is_method_handle_return); }
1272 static ByteSize stack_guard_state_offset() { return byte_offset_of(JavaThread, _stack_guard_state ); } 1272 static ByteSize stack_guard_state_offset() { return byte_offset_of(JavaThread, _stack_guard_state ); }
1273 static ByteSize suspend_flags_offset() { return byte_offset_of(JavaThread, _suspend_flags ); } 1273 static ByteSize suspend_flags_offset() { return byte_offset_of(JavaThread, _suspend_flags ); }
1274 static ByteSize c1x_multinewarray_storage_offset() { return byte_offset_of(JavaThread, c1x_multinewarray_storage); } 1274 static ByteSize graal_multinewarray_storage_offset() { return byte_offset_of(JavaThread, graal_multinewarray_storage); }
1275 1275
1276 static ByteSize do_not_unlock_if_synchronized_offset() { return byte_offset_of(JavaThread, _do_not_unlock_if_synchronized); } 1276 static ByteSize do_not_unlock_if_synchronized_offset() { return byte_offset_of(JavaThread, _do_not_unlock_if_synchronized); }
1277 static ByteSize should_post_on_exceptions_flag_offset() { 1277 static ByteSize should_post_on_exceptions_flag_offset() {
1278 return byte_offset_of(JavaThread, _should_post_on_exceptions_flag); 1278 return byte_offset_of(JavaThread, _should_post_on_exceptions_flag);
1279 } 1279 }