Skip to content

Commit c0f984e

Browse files
committedMar 22, 2022
8283456: Make CompiledICHolder::live_count/live_not_claimed_count debug only
Reviewed-by: dholmes
1 parent 85628a8 commit c0f984e

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed
 

‎src/hotspot/share/oops/compiledICHolder.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,9 +26,10 @@
2626
#include "oops/compiledICHolder.hpp"
2727
#include "runtime/atomic.hpp"
2828

29+
#ifdef ASSERT
2930
volatile int CompiledICHolder::_live_count;
3031
volatile int CompiledICHolder::_live_not_claimed_count;
31-
32+
#endif
3233

3334
CompiledICHolder::CompiledICHolder(Metadata* metadata, Klass* klass, bool is_method)
3435
: _holder_metadata(metadata), _holder_klass(klass), _is_metadata_method(is_method) {

‎src/hotspot/share/oops/compiledICHolder.hpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -44,9 +44,11 @@
4444
class CompiledICHolder : public CHeapObj<mtCompiler> {
4545
friend class VMStructs;
4646
private:
47+
#ifdef ASSERT
4748
static volatile int _live_count; // allocated
4849
static volatile int _live_not_claimed_count; // allocated but not yet in use so not
4950
// reachable by iterating over nmethods
51+
#endif
5052

5153
Metadata* _holder_metadata;
5254
Klass* _holder_klass; // to avoid name conflict with oopDesc::_klass
@@ -58,8 +60,10 @@ class CompiledICHolder : public CHeapObj<mtCompiler> {
5860
CompiledICHolder(Metadata* metadata, Klass* klass, bool is_method = true);
5961
~CompiledICHolder() NOT_DEBUG_RETURN;
6062

63+
#ifdef ASSERT
6164
static int live_count() { return _live_count; }
6265
static int live_not_claimed_count() { return _live_not_claimed_count; }
66+
#endif
6367

6468
// accessors
6569
Klass* holder_klass() const { return _holder_klass; }

0 commit comments

Comments
 (0)
Please sign in to comment.