Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.hpp
41153 views
1
/*
2
* Copyright (c) 2018, 2019, 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
#ifndef CPU_X86_GC_Z_ZBARRIERSETASSEMBLER_X86_HPP
25
#define CPU_X86_GC_Z_ZBARRIERSETASSEMBLER_X86_HPP
26
27
#include "code/vmreg.hpp"
28
#include "oops/accessDecorators.hpp"
29
#ifdef COMPILER2
30
#include "opto/optoreg.hpp"
31
#endif // COMPILER2
32
33
class MacroAssembler;
34
35
#ifdef COMPILER1
36
class LIR_Assembler;
37
class LIR_OprDesc;
38
typedef LIR_OprDesc* LIR_Opr;
39
class StubAssembler;
40
class ZLoadBarrierStubC1;
41
#endif // COMPILER1
42
43
#ifdef COMPILER2
44
class Node;
45
class ZLoadBarrierStubC2;
46
#endif // COMPILER2
47
48
class ZBarrierSetAssembler : public ZBarrierSetAssemblerBase {
49
public:
50
virtual void load_at(MacroAssembler* masm,
51
DecoratorSet decorators,
52
BasicType type,
53
Register dst,
54
Address src,
55
Register tmp1,
56
Register tmp_thread);
57
58
#ifdef ASSERT
59
virtual void store_at(MacroAssembler* masm,
60
DecoratorSet decorators,
61
BasicType type,
62
Address dst,
63
Register src,
64
Register tmp1,
65
Register tmp2);
66
#endif // ASSERT
67
68
virtual void arraycopy_prologue(MacroAssembler* masm,
69
DecoratorSet decorators,
70
BasicType type,
71
Register src,
72
Register dst,
73
Register count);
74
75
virtual void try_resolve_jobject_in_native(MacroAssembler* masm,
76
Register jni_env,
77
Register obj,
78
Register tmp,
79
Label& slowpath);
80
81
#ifdef COMPILER1
82
void generate_c1_load_barrier_test(LIR_Assembler* ce,
83
LIR_Opr ref) const;
84
85
void generate_c1_load_barrier_stub(LIR_Assembler* ce,
86
ZLoadBarrierStubC1* stub) const;
87
88
void generate_c1_load_barrier_runtime_stub(StubAssembler* sasm,
89
DecoratorSet decorators) const;
90
#endif // COMPILER1
91
92
#ifdef COMPILER2
93
OptoReg::Name refine_register(const Node* node,
94
OptoReg::Name opto_reg);
95
96
void generate_c2_load_barrier_stub(MacroAssembler* masm,
97
ZLoadBarrierStubC2* stub) const;
98
#endif // COMPILER2
99
};
100
101
#endif // CPU_X86_GC_Z_ZBARRIERSETASSEMBLER_X86_HPP
102
103