Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/jfr/utilities/jfrThreadIterator.hpp
41152 views
1
/*
2
* Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*
23
*/
24
25
#ifndef SHARE_VM_JFR_UTILITIES_JFRTHREADITERATOR_HPP
26
#define SHARE_VM_JFR_UTILITIES_JFRTHREADITERATOR_HPP
27
28
#include "memory/allocation.hpp"
29
#include "runtime/nonJavaThread.hpp"
30
#include "runtime/thread.hpp"
31
#include "runtime/threadSMR.hpp"
32
33
template <typename Adapter, typename AP = StackObj>
34
class JfrThreadIterator : public AP {
35
private:
36
Adapter _adapter;
37
public:
38
JfrThreadIterator(bool live_only = true) : _adapter(live_only) {}
39
typename Adapter::Type* next() {
40
assert(has_next(), "invariant");
41
return _adapter.next();
42
}
43
bool has_next() const {
44
return _adapter.has_next();
45
}
46
};
47
48
class JfrJavaThreadIteratorAdapter {
49
private:
50
JavaThreadIteratorWithHandle _iter;
51
JavaThread* _next;
52
bool _live_only;
53
public:
54
typedef JavaThread Type;
55
JfrJavaThreadIteratorAdapter(bool live_only = true);
56
bool has_next() const {
57
return _next != NULL;
58
}
59
Type* next();
60
};
61
62
class JfrNonJavaThreadIteratorAdapter {
63
private:
64
NonJavaThread::Iterator _iter;
65
NonJavaThread* _next;
66
public:
67
typedef NonJavaThread Type;
68
JfrNonJavaThreadIteratorAdapter(bool live_only = true);
69
bool has_next() const;
70
Type* next();
71
};
72
73
typedef JfrThreadIterator<JfrJavaThreadIteratorAdapter, StackObj> JfrJavaThreadIterator;
74
typedef JfrThreadIterator<JfrNonJavaThreadIteratorAdapter, StackObj> JfrNonJavaThreadIterator;
75
76
#endif // SHARE_VM_JFR_UTILITIES_JFRTHREADITERATOR_HPP
77
78