Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/asm/assembler.hpp
40951 views
1
/*
2
* Copyright (c) 1997, 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_ASM_ASSEMBLER_HPP
26
#define SHARE_ASM_ASSEMBLER_HPP
27
28
#include "asm/codeBuffer.hpp"
29
#include "asm/register.hpp"
30
#include "code/oopRecorder.hpp"
31
#include "code/relocInfo.hpp"
32
#include "memory/allocation.hpp"
33
#include "utilities/debug.hpp"
34
#include "utilities/growableArray.hpp"
35
#include "utilities/macros.hpp"
36
37
// This file contains platform-independent assembler declarations.
38
39
class MacroAssembler;
40
class AbstractAssembler;
41
class Label;
42
43
/**
44
* Labels represent destinations for control transfer instructions. Such
45
* instructions can accept a Label as their target argument. A Label is
46
* bound to the current location in the code stream by calling the
47
* MacroAssembler's 'bind' method, which in turn calls the Label's 'bind'
48
* method. A Label may be referenced by an instruction before it's bound
49
* (i.e., 'forward referenced'). 'bind' stores the current code offset
50
* in the Label object.
51
*
52
* If an instruction references a bound Label, the offset field(s) within
53
* the instruction are immediately filled in based on the Label's code
54
* offset. If an instruction references an unbound label, that
55
* instruction is put on a list of instructions that must be patched
56
* (i.e., 'resolved') when the Label is bound.
57
*
58
* 'bind' will call the platform-specific 'patch_instruction' method to
59
* fill in the offset field(s) for each unresolved instruction (if there
60
* are any). 'patch_instruction' lives in one of the
61
* cpu/<arch>/vm/assembler_<arch>* files.
62
*
63
* Instead of using a linked list of unresolved instructions, a Label has
64
* an array of unresolved instruction code offsets. _patch_index
65
* contains the total number of forward references. If the Label's array
66
* overflows (i.e., _patch_index grows larger than the array size), a
67
* GrowableArray is allocated to hold the remaining offsets. (The cache
68
* size is 4 for now, which handles over 99.5% of the cases)
69
*
70
* Labels may only be used within a single CodeSection. If you need
71
* to create references between code sections, use explicit relocations.
72
*/
73
class Label {
74
private:
75
enum { PatchCacheSize = 4 debug_only( +4 ) };
76
77
// _loc encodes both the binding state (via its sign)
78
// and the binding locator (via its value) of a label.
79
//
80
// _loc >= 0 bound label, loc() encodes the target (jump) position
81
// _loc == -1 unbound label
82
int _loc;
83
84
// References to instructions that jump to this unresolved label.
85
// These instructions need to be patched when the label is bound
86
// using the platform-specific patchInstruction() method.
87
//
88
// To avoid having to allocate from the C-heap each time, we provide
89
// a local cache and use the overflow only if we exceed the local cache
90
int _patches[PatchCacheSize];
91
int _patch_index;
92
GrowableArray<int>* _patch_overflow;
93
94
Label(const Label&) { ShouldNotReachHere(); }
95
protected:
96
97
// The label will be bound to a location near its users.
98
bool _is_near;
99
100
#ifdef ASSERT
101
// Sourcre file and line location of jump instruction
102
int _lines[PatchCacheSize];
103
const char* _files[PatchCacheSize];
104
#endif
105
public:
106
107
/**
108
* After binding, be sure 'patch_instructions' is called later to link
109
*/
110
void bind_loc(int loc) {
111
assert(loc >= 0, "illegal locator");
112
assert(_loc == -1, "already bound");
113
_loc = loc;
114
}
115
void bind_loc(int pos, int sect) { bind_loc(CodeBuffer::locator(pos, sect)); }
116
117
#ifndef PRODUCT
118
// Iterates over all unresolved instructions for printing
119
void print_instructions(MacroAssembler* masm) const;
120
#endif // PRODUCT
121
122
/**
123
* Returns the position of the the Label in the code buffer
124
* The position is a 'locator', which encodes both offset and section.
125
*/
126
int loc() const {
127
assert(_loc >= 0, "unbound label");
128
return _loc;
129
}
130
int loc_pos() const { return CodeBuffer::locator_pos(loc()); }
131
int loc_sect() const { return CodeBuffer::locator_sect(loc()); }
132
133
bool is_bound() const { return _loc >= 0; }
134
bool is_unbound() const { return _loc == -1 && _patch_index > 0; }
135
bool is_unused() const { return _loc == -1 && _patch_index == 0; }
136
137
// The label will be bound to a location near its users. Users can
138
// optimize on this information, e.g. generate short branches.
139
bool is_near() { return _is_near; }
140
141
/**
142
* Adds a reference to an unresolved displacement instruction to
143
* this unbound label
144
*
145
* @param cb the code buffer being patched
146
* @param branch_loc the locator of the branch instruction in the code buffer
147
*/
148
void add_patch_at(CodeBuffer* cb, int branch_loc, const char* file = NULL, int line = 0);
149
150
/**
151
* Iterate over the list of patches, resolving the instructions
152
* Call patch_instruction on each 'branch_loc' value
153
*/
154
void patch_instructions(MacroAssembler* masm);
155
156
void init() {
157
_loc = -1;
158
_patch_index = 0;
159
_patch_overflow = NULL;
160
_is_near = false;
161
}
162
163
Label() {
164
init();
165
}
166
167
~Label() {
168
assert(is_bound() || is_unused(), "Label was never bound to a location, but it was used as a jmp target");
169
}
170
171
void reset() {
172
init(); //leave _patch_overflow because it points to CodeBuffer.
173
}
174
};
175
176
// A NearLabel must be bound to a location near its users. Users can
177
// optimize on this information, e.g. generate short branches.
178
class NearLabel : public Label {
179
public:
180
NearLabel() : Label() { _is_near = true; }
181
};
182
183
// A union type for code which has to assemble both constant and
184
// non-constant operands, when the distinction cannot be made
185
// statically.
186
class RegisterOrConstant {
187
private:
188
Register _r;
189
intptr_t _c;
190
191
public:
192
RegisterOrConstant(): _r(noreg), _c(0) {}
193
RegisterOrConstant(Register r): _r(r), _c(0) {}
194
RegisterOrConstant(intptr_t c): _r(noreg), _c(c) {}
195
196
Register as_register() const { assert(is_register(),""); return _r; }
197
intptr_t as_constant() const { assert(is_constant(),""); return _c; }
198
199
Register register_or_noreg() const { return _r; }
200
intptr_t constant_or_zero() const { return _c; }
201
202
bool is_register() const { return _r != noreg; }
203
bool is_constant() const { return _r == noreg; }
204
};
205
206
// The Abstract Assembler: Pure assembler doing NO optimizations on the
207
// instruction level; i.e., what you write is what you get.
208
// The Assembler is generating code into a CodeBuffer.
209
class AbstractAssembler : public ResourceObj {
210
friend class Label;
211
212
protected:
213
CodeSection* _code_section; // section within the code buffer
214
OopRecorder* _oop_recorder; // support for relocInfo::oop_type
215
216
public:
217
// Code emission & accessing
218
address addr_at(int pos) const { return code_section()->start() + pos; }
219
220
protected:
221
// This routine is called with a label is used for an address.
222
// Labels and displacements truck in offsets, but target must return a PC.
223
address target(Label& L) { return code_section()->target(L, pc()); }
224
225
bool is8bit(int x) const { return -0x80 <= x && x < 0x80; }
226
bool isByte(int x) const { return 0 <= x && x < 0x100; }
227
bool isShiftCount(int x) const { return 0 <= x && x < 32; }
228
229
// Instruction boundaries (required when emitting relocatable values).
230
class InstructionMark: public StackObj {
231
private:
232
AbstractAssembler* _assm;
233
234
public:
235
InstructionMark(AbstractAssembler* assm) : _assm(assm) {
236
assert(assm->inst_mark() == NULL, "overlapping instructions");
237
_assm->set_inst_mark();
238
}
239
~InstructionMark() {
240
_assm->clear_inst_mark();
241
}
242
};
243
friend class InstructionMark;
244
#ifdef ASSERT
245
// Make it return true on platforms which need to verify
246
// instruction boundaries for some operations.
247
static bool pd_check_instruction_mark();
248
249
// Add delta to short branch distance to verify that it still fit into imm8.
250
int _short_branch_delta;
251
252
int short_branch_delta() const { return _short_branch_delta; }
253
void set_short_branch_delta() { _short_branch_delta = 32; }
254
void clear_short_branch_delta() { _short_branch_delta = 0; }
255
256
class ShortBranchVerifier: public StackObj {
257
private:
258
AbstractAssembler* _assm;
259
260
public:
261
ShortBranchVerifier(AbstractAssembler* assm) : _assm(assm) {
262
assert(assm->short_branch_delta() == 0, "overlapping instructions");
263
_assm->set_short_branch_delta();
264
}
265
~ShortBranchVerifier() {
266
_assm->clear_short_branch_delta();
267
}
268
};
269
#else
270
// Dummy in product.
271
class ShortBranchVerifier: public StackObj {
272
public:
273
ShortBranchVerifier(AbstractAssembler* assm) {}
274
};
275
#endif
276
277
public:
278
279
// Creation
280
AbstractAssembler(CodeBuffer* code);
281
282
// ensure buf contains all code (call this before using/copying the code)
283
void flush();
284
285
void emit_int8( int8_t x1) { code_section()->emit_int8(x1); }
286
287
void emit_int16( int16_t x) { code_section()->emit_int16(x); }
288
void emit_int16( int8_t x1, int8_t x2) { code_section()->emit_int16(x1, x2); }
289
290
void emit_int24( int8_t x1, int8_t x2, int8_t x3) { code_section()->emit_int24(x1, x2, x3); }
291
292
void emit_int32( int32_t x) { code_section()->emit_int32(x); }
293
void emit_int32( int8_t x1, int8_t x2, int8_t x3, int8_t x4) { code_section()->emit_int32(x1, x2, x3, x4); }
294
295
void emit_int64( int64_t x) { code_section()->emit_int64(x); }
296
297
void emit_float( jfloat x) { code_section()->emit_float(x); }
298
void emit_double( jdouble x) { code_section()->emit_double(x); }
299
void emit_address(address x) { code_section()->emit_address(x); }
300
301
enum { min_simm10 = -512 };
302
303
// Test if x is within signed immediate range for width.
304
static bool is_simm(int64_t x, uint w) {
305
precond(1 < w && w < 64);
306
int64_t limes = INT64_C(1) << (w - 1);
307
return -limes <= x && x < limes;
308
}
309
310
static bool is_simm8(int64_t x) { return is_simm(x, 8); }
311
static bool is_simm9(int64_t x) { return is_simm(x, 9); }
312
static bool is_simm10(int64_t x) { return is_simm(x, 10); }
313
static bool is_simm16(int64_t x) { return is_simm(x, 16); }
314
static bool is_simm32(int64_t x) { return is_simm(x, 32); }
315
316
// Test if x is within unsigned immediate range for width.
317
static bool is_uimm(uint64_t x, uint w) {
318
precond(0 < w && w < 64);
319
uint64_t limes = UINT64_C(1) << w;
320
return x < limes;
321
}
322
323
static bool is_uimm12(uint64_t x) { return is_uimm(x, 12); }
324
325
// Accessors
326
CodeSection* code_section() const { return _code_section; }
327
CodeBuffer* code() const { return code_section()->outer(); }
328
int sect() const { return code_section()->index(); }
329
address pc() const { return code_section()->end(); }
330
int offset() const { return code_section()->size(); }
331
int locator() const { return CodeBuffer::locator(offset(), sect()); }
332
333
OopRecorder* oop_recorder() const { return _oop_recorder; }
334
void set_oop_recorder(OopRecorder* r) { _oop_recorder = r; }
335
336
address inst_mark() const { return code_section()->mark(); }
337
void set_inst_mark() { code_section()->set_mark(); }
338
void clear_inst_mark() { code_section()->clear_mark(); }
339
340
// Constants in code
341
void relocate(RelocationHolder const& rspec, int format = 0) {
342
assert(!pd_check_instruction_mark()
343
|| inst_mark() == NULL || inst_mark() == code_section()->end(),
344
"call relocate() between instructions");
345
code_section()->relocate(code_section()->end(), rspec, format);
346
}
347
void relocate( relocInfo::relocType rtype, int format = 0) {
348
code_section()->relocate(code_section()->end(), rtype, format);
349
}
350
351
static int code_fill_byte(); // used to pad out odd-sized code buffers
352
353
// Associate a comment with the current offset. It will be printed
354
// along with the disassembly when printing nmethods. Currently
355
// only supported in the instruction section of the code buffer.
356
void block_comment(const char* comment);
357
// Copy str to a buffer that has the same lifetime as the CodeBuffer
358
const char* code_string(const char* str);
359
360
// Label functions
361
void bind(Label& L); // binds an unbound label L to the current code position
362
363
// Move to a different section in the same code buffer.
364
void set_code_section(CodeSection* cs);
365
366
// Inform assembler when generating stub code and relocation info
367
address start_a_stub(int required_space);
368
void end_a_stub();
369
// Ditto for constants.
370
address start_a_const(int required_space, int required_align = sizeof(double));
371
void end_a_const(CodeSection* cs); // Pass the codesection to continue in (insts or stubs?).
372
373
// constants support
374
//
375
// We must remember the code section (insts or stubs) in c1
376
// so we can reset to the proper section in end_a_const().
377
address int_constant(jint c) {
378
CodeSection* c1 = _code_section;
379
address ptr = start_a_const(sizeof(c), sizeof(c));
380
if (ptr != NULL) {
381
emit_int32(c);
382
end_a_const(c1);
383
}
384
return ptr;
385
}
386
address long_constant(jlong c) {
387
CodeSection* c1 = _code_section;
388
address ptr = start_a_const(sizeof(c), sizeof(c));
389
if (ptr != NULL) {
390
emit_int64(c);
391
end_a_const(c1);
392
}
393
return ptr;
394
}
395
address double_constant(jdouble c) {
396
CodeSection* c1 = _code_section;
397
address ptr = start_a_const(sizeof(c), sizeof(c));
398
if (ptr != NULL) {
399
emit_double(c);
400
end_a_const(c1);
401
}
402
return ptr;
403
}
404
address float_constant(jfloat c) {
405
CodeSection* c1 = _code_section;
406
address ptr = start_a_const(sizeof(c), sizeof(c));
407
if (ptr != NULL) {
408
emit_float(c);
409
end_a_const(c1);
410
}
411
return ptr;
412
}
413
address address_constant(address c) {
414
CodeSection* c1 = _code_section;
415
address ptr = start_a_const(sizeof(c), sizeof(c));
416
if (ptr != NULL) {
417
emit_address(c);
418
end_a_const(c1);
419
}
420
return ptr;
421
}
422
address address_constant(address c, RelocationHolder const& rspec) {
423
CodeSection* c1 = _code_section;
424
address ptr = start_a_const(sizeof(c), sizeof(c));
425
if (ptr != NULL) {
426
relocate(rspec);
427
emit_address(c);
428
end_a_const(c1);
429
}
430
return ptr;
431
}
432
433
// Bang stack to trigger StackOverflowError at a safe location
434
// implementation delegates to machine-specific bang_stack_with_offset
435
void generate_stack_overflow_check( int frame_size_in_bytes );
436
virtual void bang_stack_with_offset(int offset) = 0;
437
438
439
/**
440
* A platform-dependent method to patch a jump instruction that refers
441
* to this label.
442
*
443
* @param branch the location of the instruction to patch
444
* @param masm the assembler which generated the branch
445
*/
446
void pd_patch_instruction(address branch, address target, const char* file, int line);
447
448
};
449
450
#include CPU_HEADER(assembler)
451
452
#endif // SHARE_ASM_ASSEMBLER_HPP
453
454