mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
7195622: CheckUnhandledOops has limited usefulness now
Enable CHECK_UNHANDLED_OOPS in fastdebug builds across all supported platforms. Reviewed-by: coleenp, hseigel, dholmes, stefank, twisti, ihse, rdurbin
This commit is contained in:
parent
18550f7774
commit
7bf953d005
62 changed files with 208 additions and 173 deletions
|
@ -967,9 +967,9 @@ const int badCodeHeapFreeVal = 0xDD; // value used to zap
|
|||
// (These must be implemented as #defines because C++ compilers are
|
||||
// not obligated to inline non-integral constants!)
|
||||
#define badAddress ((address)::badAddressVal)
|
||||
#define badOop ((oop)::badOopVal)
|
||||
#define badOop (cast_to_oop(::badOopVal))
|
||||
#define badHeapWord (::badHeapWordVal)
|
||||
#define badJNIHandle ((oop)::badJNIHandleVal)
|
||||
#define badJNIHandle (cast_to_oop(::badJNIHandleVal))
|
||||
|
||||
// Default TaskQueue size is 16K (32-bit) or 128K (64-bit)
|
||||
#define TASKQUEUE_SIZE (NOT_LP64(1<<14) LP64_ONLY(1<<17))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue