comparison src/share/vm/code/codeBlob.hpp @ 22551:71ea8d7db665

removed author tags in comments
author Doug Simon <doug.simon@oracle.com>
date Fri, 11 Sep 2015 16:41:50 +0200
parents c28cb37b2e1d
children
comparison
equal deleted inserted replaced
22550:94ba89d56936 22551:71ea8d7db665
356 int _unpack_with_reexecution; 356 int _unpack_with_reexecution;
357 357
358 int _unpack_with_exception_in_tls; 358 int _unpack_with_exception_in_tls;
359 359
360 #if INCLUDE_JVMCI 360 #if INCLUDE_JVMCI
361 // (thomaswue) Offset when JVMCI calls uncommon_trap. 361 // Offset when JVMCI calls uncommon_trap.
362 int _uncommon_trap_offset; 362 int _uncommon_trap_offset;
363 int _implicit_exception_uncommon_trap_offset; 363 int _implicit_exception_uncommon_trap_offset;
364 #endif 364 #endif
365 365
366 // Creation support 366 // Creation support
415 assert(code_contains(code_begin() + _unpack_with_exception_in_tls), "must be PC inside codeblob"); 415 assert(code_contains(code_begin() + _unpack_with_exception_in_tls), "must be PC inside codeblob");
416 } 416 }
417 address unpack_with_exception_in_tls() const { return code_begin() + _unpack_with_exception_in_tls; } 417 address unpack_with_exception_in_tls() const { return code_begin() + _unpack_with_exception_in_tls; }
418 418
419 #if INCLUDE_JVMCI 419 #if INCLUDE_JVMCI
420 // (thomaswue) Offset when JVMCI calls uncommon_trap. 420 // Offset when JVMCI calls uncommon_trap.
421 void set_uncommon_trap_offset(int offset) { 421 void set_uncommon_trap_offset(int offset) {
422 _uncommon_trap_offset = offset; 422 _uncommon_trap_offset = offset;
423 assert(contains(code_begin() + _uncommon_trap_offset), "must be PC inside codeblob"); 423 assert(contains(code_begin() + _uncommon_trap_offset), "must be PC inside codeblob");
424 } 424 }
425 address uncommon_trap() const { return code_begin() + _uncommon_trap_offset; } 425 address uncommon_trap() const { return code_begin() + _uncommon_trap_offset; }