File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
26
26
#include " oops/compiledICHolder.hpp"
27
27
#include " runtime/atomic.hpp"
28
28
29
+ #ifdef ASSERT
29
30
volatile int CompiledICHolder::_live_count;
30
31
volatile int CompiledICHolder::_live_not_claimed_count;
31
-
32
+ # endif
32
33
33
34
CompiledICHolder::CompiledICHolder (Metadata* metadata, Klass* klass, bool is_method)
34
35
: _holder_metadata(metadata), _holder_klass(klass), _is_metadata_method(is_method) {
Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
44
44
class CompiledICHolder : public CHeapObj <mtCompiler> {
45
45
friend class VMStructs ;
46
46
private:
47
+ #ifdef ASSERT
47
48
static volatile int _live_count; // allocated
48
49
static volatile int _live_not_claimed_count; // allocated but not yet in use so not
49
50
// reachable by iterating over nmethods
51
+ #endif
50
52
51
53
Metadata* _holder_metadata;
52
54
Klass* _holder_klass; // to avoid name conflict with oopDesc::_klass
@@ -58,8 +60,10 @@ class CompiledICHolder : public CHeapObj<mtCompiler> {
58
60
CompiledICHolder (Metadata* metadata, Klass* klass, bool is_method = true );
59
61
~CompiledICHolder () NOT_DEBUG_RETURN;
60
62
63
+ #ifdef ASSERT
61
64
static int live_count () { return _live_count; }
62
65
static int live_not_claimed_count () { return _live_not_claimed_count; }
66
+ #endif
63
67
64
68
// accessors
65
69
Klass* holder_klass () const { return _holder_klass; }
You can’t perform that action at this time.
0 commit comments