Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/os_cpu/linux_zero/thread_linux_zero.hpp
40931 views
1
/*
2
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
3
* Copyright 2007, 2008, 2009, 2010 Red Hat, Inc.
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 OS_CPU_LINUX_ZERO_THREAD_LINUX_ZERO_HPP
27
#define OS_CPU_LINUX_ZERO_THREAD_LINUX_ZERO_HPP
28
29
private:
30
ZeroStack _zero_stack;
31
ZeroFrame* _top_zero_frame;
32
33
void pd_initialize() {
34
_top_zero_frame = NULL;
35
}
36
37
public:
38
ZeroStack *zero_stack() {
39
return &_zero_stack;
40
}
41
42
public:
43
ZeroFrame *top_zero_frame() {
44
return _top_zero_frame;
45
}
46
void push_zero_frame(ZeroFrame *frame) {
47
*(ZeroFrame **) frame = _top_zero_frame;
48
_top_zero_frame = frame;
49
}
50
void pop_zero_frame() {
51
zero_stack()->set_sp((intptr_t *) _top_zero_frame + 1);
52
_top_zero_frame = *(ZeroFrame **) _top_zero_frame;
53
}
54
55
public:
56
static ByteSize zero_stack_offset() {
57
return byte_offset_of(JavaThread, _zero_stack);
58
}
59
static ByteSize top_zero_frame_offset() {
60
return byte_offset_of(JavaThread, _top_zero_frame);
61
}
62
63
public:
64
void set_last_Java_frame() {
65
set_last_Java_frame(top_zero_frame(), zero_stack()->sp());
66
}
67
void reset_last_Java_frame() {
68
frame_anchor()->zap();
69
}
70
void set_last_Java_frame(ZeroFrame* fp, intptr_t* sp) {
71
frame_anchor()->set(sp, NULL, fp);
72
}
73
74
public:
75
ZeroFrame* last_Java_fp() {
76
return frame_anchor()->last_Java_fp();
77
}
78
79
private:
80
frame pd_last_frame();
81
82
public:
83
static ByteSize last_Java_fp_offset() {
84
return byte_offset_of(JavaThread, _anchor) +
85
JavaFrameAnchor::last_Java_fp_offset();
86
}
87
88
public:
89
// Check for pending suspend requests and pending asynchronous
90
// exceptions. There are separate accessors for these, but
91
// _suspend_flags is volatile so using them would be unsafe.
92
bool has_special_condition_for_native_trans() {
93
return _suspend_flags != 0;
94
}
95
96
public:
97
bool pd_get_top_frame_for_signal_handler(frame* fr_addr,
98
void* ucontext,
99
bool isInJava) {
100
ShouldNotCallThis();
101
return false; // silence compile warning
102
}
103
104
bool pd_get_top_frame_for_profiling(frame* fr_addr,
105
void* ucontext,
106
bool isInJava) {
107
ShouldNotCallThis();
108
return false; // silence compile warning
109
}
110
111
#endif // OS_CPU_LINUX_ZERO_THREAD_LINUX_ZERO_HPP
112
113