author | jcbeyler |
Thu, 11 Oct 2018 12:41:47 -0700 | |
changeset 52099 | 896a556de423 |
parent 52077 | b6eaf7b7cd7f |
child 52131 | e9727e6b5fc1 |
permissions | -rw-r--r-- |
50579 | 1 |
/* |
51559
57f1bf06742e
8210035: Fix copyrights for files created for the HeapMonitor work
jcbeyler
parents:
51138
diff
changeset
|
2 |
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. |
50579 | 3 |
* Copyright (c) 2018, Google and/or its affiliates. All rights reserved. |
4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
* or visit www.oracle.com if you need additional information or have any |
|
22 |
* questions. |
|
23 |
* |
|
24 |
*/ |
|
25 |
||
26 |
#ifndef RUNTIME_THREADHEAPSAMPLER_HPP |
|
27 |
#define RUNTIME_THREADHEAPSAMPLER_HPP |
|
28 |
||
29 |
#include "memory/allocation.hpp" |
|
30 |
||
31 |
class ThreadHeapSampler { |
|
32 |
private: |
|
33 |
size_t _bytes_until_sample; |
|
34 |
// Cheap random number generator |
|
35 |
static uint64_t _rnd; |
|
36 |
||
37 |
void pick_next_geometric_sample(); |
|
38 |
void pick_next_sample(size_t overflowed_bytes = 0); |
|
39 |
static int _enabled; |
|
51138
914f305ba6fa
8205725: Update the JVMTI Spec for Heap Sampling
jcbeyler
parents:
50882
diff
changeset
|
40 |
static int _sampling_interval; |
50579 | 41 |
|
42 |
static void init_log_table(); |
|
43 |
||
44 |
public: |
|
45 |
ThreadHeapSampler() : _bytes_until_sample(0) { |
|
46 |
_rnd = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(this)); |
|
47 |
if (_rnd == 0) { |
|
48 |
_rnd = 1; |
|
49 |
} |
|
50 |
} |
|
51 |
||
52 |
size_t bytes_until_sample() { return _bytes_until_sample; } |
|
53 |
void set_bytes_until_sample(size_t bytes) { _bytes_until_sample = bytes; } |
|
54 |
||
50882
80abf702eed8
8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
50579
diff
changeset
|
55 |
void check_for_sampling(oop obj, size_t size_in_bytes, size_t bytes_allocated_before); |
50579 | 56 |
|
57 |
static int enabled(); |
|
58 |
static void enable(); |
|
59 |
static void disable(); |
|
60 |
||
51138
914f305ba6fa
8205725: Update the JVMTI Spec for Heap Sampling
jcbeyler
parents:
50882
diff
changeset
|
61 |
static void set_sampling_interval(int sampling_interval); |
914f305ba6fa
8205725: Update the JVMTI Spec for Heap Sampling
jcbeyler
parents:
50882
diff
changeset
|
62 |
static int get_sampling_interval(); |
50579 | 63 |
}; |
64 |
||
65 |
#endif // SHARE_RUNTIME_THREADHEAPSAMPLER_HPP |