Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-aarch32-jdk8u
Path: blob/jdk8u272-b10-aarch32-20201026/hotspot/src/share/vm/utilities/globalDefinitions.hpp
83404 views
1
/*
2
* Copyright (c) 1997, 2016, 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_UTILITIES_GLOBALDEFINITIONS_HPP
26
#define SHARE_VM_UTILITIES_GLOBALDEFINITIONS_HPP
27
28
#ifndef __STDC_FORMAT_MACROS
29
#define __STDC_FORMAT_MACROS
30
#endif
31
32
#ifdef TARGET_COMPILER_gcc
33
# include "utilities/globalDefinitions_gcc.hpp"
34
#endif
35
#ifdef TARGET_COMPILER_visCPP
36
# include "utilities/globalDefinitions_visCPP.hpp"
37
#endif
38
#ifdef TARGET_COMPILER_sparcWorks
39
# include "utilities/globalDefinitions_sparcWorks.hpp"
40
#endif
41
#ifdef TARGET_COMPILER_xlc
42
# include "utilities/globalDefinitions_xlc.hpp"
43
#endif
44
45
// Defaults for macros that might be defined per compiler.
46
#ifndef NOINLINE
47
#define NOINLINE
48
#endif
49
#ifndef ALWAYSINLINE
50
#define ALWAYSINLINE inline
51
#endif
52
53
#ifndef PRAGMA_DIAG_PUSH
54
#define PRAGMA_DIAG_PUSH
55
#endif
56
#ifndef PRAGMA_DIAG_POP
57
#define PRAGMA_DIAG_POP
58
#endif
59
#ifndef PRAGMA_FORMAT_NONLITERAL_IGNORED
60
#define PRAGMA_FORMAT_NONLITERAL_IGNORED
61
#endif
62
#ifndef PRAGMA_FORMAT_IGNORED
63
#define PRAGMA_FORMAT_IGNORED
64
#endif
65
#ifndef PRAGMA_FORMAT_NONLITERAL_IGNORED_INTERNAL
66
#define PRAGMA_FORMAT_NONLITERAL_IGNORED_INTERNAL
67
#endif
68
#ifndef PRAGMA_FORMAT_NONLITERAL_IGNORED_EXTERNAL
69
#define PRAGMA_FORMAT_NONLITERAL_IGNORED_EXTERNAL
70
#endif
71
#ifndef PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
72
#define PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
73
#endif
74
#ifndef ATTRIBUTE_PRINTF
75
#define ATTRIBUTE_PRINTF(fmt, vargs)
76
#endif
77
78
79
#include "utilities/macros.hpp"
80
81
// This file holds all globally used constants & types, class (forward)
82
// declarations and a few frequently used utility functions.
83
84
//----------------------------------------------------------------------------------------------------
85
// Constants
86
87
const int LogBytesPerShort = 1;
88
const int LogBytesPerInt = 2;
89
#ifdef _LP64
90
const int LogBytesPerWord = 3;
91
#else
92
const int LogBytesPerWord = 2;
93
#endif
94
const int LogBytesPerLong = 3;
95
96
const int BytesPerShort = 1 << LogBytesPerShort;
97
const int BytesPerInt = 1 << LogBytesPerInt;
98
const int BytesPerWord = 1 << LogBytesPerWord;
99
const int BytesPerLong = 1 << LogBytesPerLong;
100
101
const int LogBitsPerByte = 3;
102
const int LogBitsPerShort = LogBitsPerByte + LogBytesPerShort;
103
const int LogBitsPerInt = LogBitsPerByte + LogBytesPerInt;
104
const int LogBitsPerWord = LogBitsPerByte + LogBytesPerWord;
105
const int LogBitsPerLong = LogBitsPerByte + LogBytesPerLong;
106
107
const int BitsPerByte = 1 << LogBitsPerByte;
108
const int BitsPerShort = 1 << LogBitsPerShort;
109
const int BitsPerInt = 1 << LogBitsPerInt;
110
const int BitsPerWord = 1 << LogBitsPerWord;
111
const int BitsPerLong = 1 << LogBitsPerLong;
112
113
const int WordAlignmentMask = (1 << LogBytesPerWord) - 1;
114
const int LongAlignmentMask = (1 << LogBytesPerLong) - 1;
115
116
const int WordsPerLong = 2; // Number of stack entries for longs
117
118
const int oopSize = sizeof(char*); // Full-width oop
119
extern int heapOopSize; // Oop within a java object
120
const int wordSize = sizeof(char*);
121
const int longSize = sizeof(jlong);
122
const int jintSize = sizeof(jint);
123
const int size_tSize = sizeof(size_t);
124
125
const int BytesPerOop = BytesPerWord; // Full-width oop
126
127
extern int LogBytesPerHeapOop; // Oop within a java object
128
extern int LogBitsPerHeapOop;
129
extern int BytesPerHeapOop;
130
extern int BitsPerHeapOop;
131
132
// Oop encoding heap max
133
extern uint64_t OopEncodingHeapMax;
134
135
const int BitsPerJavaInteger = 32;
136
const int BitsPerJavaLong = 64;
137
const int BitsPerSize_t = size_tSize * BitsPerByte;
138
139
// Size of a char[] needed to represent a jint as a string in decimal.
140
const int jintAsStringSize = 12;
141
142
// In fact this should be
143
// log2_intptr(sizeof(class JavaThread)) - log2_intptr(64);
144
// see os::set_memory_serialize_page()
145
#ifdef _LP64
146
const int SerializePageShiftCount = 4;
147
#else
148
const int SerializePageShiftCount = 3;
149
#endif
150
151
// An opaque struct of heap-word width, so that HeapWord* can be a generic
152
// pointer into the heap. We require that object sizes be measured in
153
// units of heap words, so that that
154
// HeapWord* hw;
155
// hw += oop(hw)->foo();
156
// works, where foo is a method (like size or scavenge) that returns the
157
// object size.
158
class HeapWord {
159
friend class VMStructs;
160
private:
161
char* i;
162
#ifndef PRODUCT
163
public:
164
char* value() { return i; }
165
#endif
166
};
167
168
// Analogous opaque struct for metadata allocated from
169
// metaspaces.
170
class MetaWord {
171
friend class VMStructs;
172
private:
173
char* i;
174
};
175
176
// HeapWordSize must be 2^LogHeapWordSize.
177
const int HeapWordSize = sizeof(HeapWord);
178
#ifdef _LP64
179
const int LogHeapWordSize = 3;
180
#else
181
const int LogHeapWordSize = 2;
182
#endif
183
const int HeapWordsPerLong = BytesPerLong / HeapWordSize;
184
const int LogHeapWordsPerLong = LogBytesPerLong - LogHeapWordSize;
185
186
// The larger HeapWordSize for 64bit requires larger heaps
187
// for the same application running in 64bit. See bug 4967770.
188
// The minimum alignment to a heap word size is done. Other
189
// parts of the memory system may required additional alignment
190
// and are responsible for those alignments.
191
#ifdef _LP64
192
#define ScaleForWordSize(x) align_size_down_((x) * 13 / 10, HeapWordSize)
193
#else
194
#define ScaleForWordSize(x) (x)
195
#endif
196
197
// The minimum number of native machine words necessary to contain "byte_size"
198
// bytes.
199
inline size_t heap_word_size(size_t byte_size) {
200
return (byte_size + (HeapWordSize-1)) >> LogHeapWordSize;
201
}
202
203
204
const size_t K = 1024;
205
const size_t M = K*K;
206
const size_t G = M*K;
207
const size_t HWperKB = K / sizeof(HeapWord);
208
209
const jint min_jint = (jint)1 << (sizeof(jint)*BitsPerByte-1); // 0x80000000 == smallest jint
210
const jint max_jint = (juint)min_jint - 1; // 0x7FFFFFFF == largest jint
211
212
// Constants for converting from a base unit to milli-base units. For
213
// example from seconds to milliseconds and microseconds
214
215
const int MILLIUNITS = 1000; // milli units per base unit
216
const int MICROUNITS = 1000000; // micro units per base unit
217
const int NANOUNITS = 1000000000; // nano units per base unit
218
219
const jlong NANOSECS_PER_SEC = CONST64(1000000000);
220
const jint NANOSECS_PER_MILLISEC = 1000000;
221
222
// Proper units routines try to maintain at least three significant digits.
223
// In worst case, it would print five significant digits with lower prefix.
224
// G is close to MAX_SIZE on 32-bit platforms, so its product can easily overflow,
225
// and therefore we need to be careful.
226
227
inline const char* proper_unit_for_byte_size(size_t s) {
228
#ifdef _LP64
229
if (s >= 100*G) {
230
return "G";
231
}
232
#endif
233
if (s >= 100*M) {
234
return "M";
235
} else if (s >= 100*K) {
236
return "K";
237
} else {
238
return "B";
239
}
240
}
241
242
template <class T>
243
inline T byte_size_in_proper_unit(T s) {
244
#ifdef _LP64
245
if (s >= 100*G) {
246
return (T)(s/G);
247
}
248
#endif
249
if (s >= 100*M) {
250
return (T)(s/M);
251
} else if (s >= 100*K) {
252
return (T)(s/K);
253
} else {
254
return s;
255
}
256
}
257
258
//----------------------------------------------------------------------------------------------------
259
// VM type definitions
260
261
// intx and uintx are the 'extended' int and 'extended' unsigned int types;
262
// they are 32bit wide on a 32-bit platform, and 64bit wide on a 64bit platform.
263
264
typedef intptr_t intx;
265
typedef uintptr_t uintx;
266
267
const intx min_intx = (intx)1 << (sizeof(intx)*BitsPerByte-1);
268
const intx max_intx = (uintx)min_intx - 1;
269
const uintx max_uintx = (uintx)-1;
270
271
// Table of values:
272
// sizeof intx 4 8
273
// min_intx 0x80000000 0x8000000000000000
274
// max_intx 0x7FFFFFFF 0x7FFFFFFFFFFFFFFF
275
// max_uintx 0xFFFFFFFF 0xFFFFFFFFFFFFFFFF
276
277
typedef unsigned int uint; NEEDS_CLEANUP
278
279
280
//----------------------------------------------------------------------------------------------------
281
// Java type definitions
282
283
// All kinds of 'plain' byte addresses
284
typedef signed char s_char;
285
typedef unsigned char u_char;
286
typedef u_char* address;
287
typedef uintptr_t address_word; // unsigned integer which will hold a pointer
288
// except for some implementations of a C++
289
// linkage pointer to function. Should never
290
// need one of those to be placed in this
291
// type anyway.
292
293
// Utility functions to "portably" (?) bit twiddle pointers
294
// Where portable means keep ANSI C++ compilers quiet
295
296
inline address set_address_bits(address x, int m) { return address(intptr_t(x) | m); }
297
inline address clear_address_bits(address x, int m) { return address(intptr_t(x) & ~m); }
298
299
// Utility functions to "portably" make cast to/from function pointers.
300
301
inline address_word mask_address_bits(address x, int m) { return address_word(x) & m; }
302
inline address_word castable_address(address x) { return address_word(x) ; }
303
inline address_word castable_address(void* x) { return address_word(x) ; }
304
305
// Pointer subtraction.
306
// The idea here is to avoid ptrdiff_t, which is signed and so doesn't have
307
// the range we might need to find differences from one end of the heap
308
// to the other.
309
// A typical use might be:
310
// if (pointer_delta(end(), top()) >= size) {
311
// // enough room for an object of size
312
// ...
313
// and then additions like
314
// ... top() + size ...
315
// are safe because we know that top() is at least size below end().
316
inline size_t pointer_delta(const void* left,
317
const void* right,
318
size_t element_size) {
319
return (((uintptr_t) left) - ((uintptr_t) right)) / element_size;
320
}
321
// A version specialized for HeapWord*'s.
322
inline size_t pointer_delta(const HeapWord* left, const HeapWord* right) {
323
return pointer_delta(left, right, sizeof(HeapWord));
324
}
325
// A version specialized for MetaWord*'s.
326
inline size_t pointer_delta(const MetaWord* left, const MetaWord* right) {
327
return pointer_delta(left, right, sizeof(MetaWord));
328
}
329
330
//
331
// ANSI C++ does not allow casting from one pointer type to a function pointer
332
// directly without at best a warning. This macro accomplishes it silently
333
// In every case that is present at this point the value be cast is a pointer
334
// to a C linkage function. In somecase the type used for the cast reflects
335
// that linkage and a picky compiler would not complain. In other cases because
336
// there is no convenient place to place a typedef with extern C linkage (i.e
337
// a platform dependent header file) it doesn't. At this point no compiler seems
338
// picky enough to catch these instances (which are few). It is possible that
339
// using templates could fix these for all cases. This use of templates is likely
340
// so far from the middle of the road that it is likely to be problematic in
341
// many C++ compilers.
342
//
343
#define CAST_TO_FN_PTR(func_type, value) (reinterpret_cast<func_type>(value))
344
#define CAST_FROM_FN_PTR(new_type, func_ptr) ((new_type)((address_word)(func_ptr)))
345
346
// Unsigned byte types for os and stream.hpp
347
348
// Unsigned one, two, four and eigth byte quantities used for describing
349
// the .class file format. See JVM book chapter 4.
350
351
typedef jubyte u1;
352
typedef jushort u2;
353
typedef juint u4;
354
typedef julong u8;
355
356
const jubyte max_jubyte = (jubyte)-1; // 0xFF largest jubyte
357
const jushort max_jushort = (jushort)-1; // 0xFFFF largest jushort
358
const juint max_juint = (juint)-1; // 0xFFFFFFFF largest juint
359
const julong max_julong = (julong)-1; // 0xFF....FF largest julong
360
361
typedef jbyte s1;
362
typedef jshort s2;
363
typedef jint s4;
364
typedef jlong s8;
365
366
//----------------------------------------------------------------------------------------------------
367
// JVM spec restrictions
368
369
const int max_method_code_size = 64*K - 1; // JVM spec, 2nd ed. section 4.8.1 (p.134)
370
371
// Default ProtectionDomainCacheSize values
372
373
const int defaultProtectionDomainCacheSize = NOT_LP64(137) LP64_ONLY(2017);
374
375
//----------------------------------------------------------------------------------------------------
376
// Default and minimum StringTableSize values
377
378
const int defaultStringTableSize = NOT_LP64(1009) LP64_ONLY(60013);
379
const int minimumStringTableSize = 1009;
380
381
const int defaultSymbolTableSize = 20011;
382
const int minimumSymbolTableSize = 1009;
383
384
385
//----------------------------------------------------------------------------------------------------
386
// HotSwap - for JVMTI aka Class File Replacement and PopFrame
387
//
388
// Determines whether on-the-fly class replacement and frame popping are enabled.
389
390
#define HOTSWAP
391
392
//----------------------------------------------------------------------------------------------------
393
// Object alignment, in units of HeapWords.
394
//
395
// Minimum is max(BytesPerLong, BytesPerDouble, BytesPerOop) / HeapWordSize, so jlong, jdouble and
396
// reference fields can be naturally aligned.
397
398
extern int MinObjAlignment;
399
extern int MinObjAlignmentInBytes;
400
extern int MinObjAlignmentInBytesMask;
401
402
extern int LogMinObjAlignment;
403
extern int LogMinObjAlignmentInBytes;
404
405
const int LogKlassAlignmentInBytes = 3;
406
const int LogKlassAlignment = LogKlassAlignmentInBytes - LogHeapWordSize;
407
const int KlassAlignmentInBytes = 1 << LogKlassAlignmentInBytes;
408
const int KlassAlignment = KlassAlignmentInBytes / HeapWordSize;
409
410
// Klass encoding metaspace max size
411
const uint64_t KlassEncodingMetaspaceMax = (uint64_t(max_juint) + 1) << LogKlassAlignmentInBytes;
412
413
// Machine dependent stuff
414
415
#if defined(X86) && defined(COMPILER2) && !defined(JAVASE_EMBEDDED)
416
// Include Restricted Transactional Memory lock eliding optimization
417
#define INCLUDE_RTM_OPT 1
418
#define RTM_OPT_ONLY(code) code
419
#else
420
#define INCLUDE_RTM_OPT 0
421
#define RTM_OPT_ONLY(code)
422
#endif
423
// States of Restricted Transactional Memory usage.
424
enum RTMState {
425
NoRTM = 0x2, // Don't use RTM
426
UseRTM = 0x1, // Use RTM
427
ProfileRTM = 0x0 // Use RTM with abort ratio calculation
428
};
429
430
// The maximum size of the code cache. Can be overridden by targets.
431
#define CODE_CACHE_SIZE_LIMIT (2*G)
432
// Allow targets to reduce the default size of the code cache.
433
#define CODE_CACHE_DEFAULT_LIMIT CODE_CACHE_SIZE_LIMIT
434
435
#ifdef TARGET_ARCH_x86
436
# include "globalDefinitions_x86.hpp"
437
#endif
438
#ifdef TARGET_ARCH_aarch64
439
# include "globalDefinitions_aarch64.hpp"
440
#endif
441
#ifdef TARGET_ARCH_sparc
442
# include "globalDefinitions_sparc.hpp"
443
#endif
444
#ifdef TARGET_ARCH_zero
445
# include "globalDefinitions_zero.hpp"
446
#endif
447
#ifdef TARGET_ARCH_arm
448
# include "globalDefinitions_arm.hpp"
449
#endif
450
#ifdef TARGET_ARCH_ppc
451
# include "globalDefinitions_ppc.hpp"
452
#endif
453
#ifdef TARGET_ARCH_aarch32
454
# include "globalDefinitions_aarch32.hpp"
455
#endif
456
457
/*
458
* If a platform does not support native stack walking
459
* the platform specific globalDefinitions (above)
460
* can set PLATFORM_NATIVE_STACK_WALKING_SUPPORTED to 0
461
*/
462
#ifndef PLATFORM_NATIVE_STACK_WALKING_SUPPORTED
463
#define PLATFORM_NATIVE_STACK_WALKING_SUPPORTED 1
464
#endif
465
466
// To assure the IRIW property on processors that are not multiple copy
467
// atomic, sync instructions must be issued between volatile reads to
468
// assure their ordering, instead of after volatile stores.
469
// (See "A Tutorial Introduction to the ARM and POWER Relaxed Memory Models"
470
// by Luc Maranget, Susmit Sarkar and Peter Sewell, INRIA/Cambridge)
471
#ifdef CPU_NOT_MULTIPLE_COPY_ATOMIC
472
const bool support_IRIW_for_not_multiple_copy_atomic_cpu = true;
473
#else
474
const bool support_IRIW_for_not_multiple_copy_atomic_cpu = false;
475
#endif
476
477
// The byte alignment to be used by Arena::Amalloc. See bugid 4169348.
478
// Note: this value must be a power of 2
479
480
#define ARENA_AMALLOC_ALIGNMENT (2*BytesPerWord)
481
482
// Signed variants of alignment helpers. There are two versions of each, a macro
483
// for use in places like enum definitions that require compile-time constant
484
// expressions and a function for all other places so as to get type checking.
485
486
#define align_size_up_(size, alignment) (((size) + ((alignment) - 1)) & ~((alignment) - 1))
487
488
inline bool is_size_aligned(size_t size, size_t alignment) {
489
return align_size_up_(size, alignment) == size;
490
}
491
492
inline bool is_ptr_aligned(void* ptr, size_t alignment) {
493
return align_size_up_((intptr_t)ptr, (intptr_t)alignment) == (intptr_t)ptr;
494
}
495
496
inline intptr_t align_size_up(intptr_t size, intptr_t alignment) {
497
return align_size_up_(size, alignment);
498
}
499
500
#define align_size_down_(size, alignment) ((size) & ~((alignment) - 1))
501
502
inline intptr_t align_size_down(intptr_t size, intptr_t alignment) {
503
return align_size_down_(size, alignment);
504
}
505
506
#define is_size_aligned_(size, alignment) ((size) == (align_size_up_(size, alignment)))
507
508
inline void* align_ptr_up(void* ptr, size_t alignment) {
509
return (void*)align_size_up((intptr_t)ptr, (intptr_t)alignment);
510
}
511
512
inline void* align_ptr_down(void* ptr, size_t alignment) {
513
return (void*)align_size_down((intptr_t)ptr, (intptr_t)alignment);
514
}
515
516
// Align objects by rounding up their size, in HeapWord units.
517
518
#define align_object_size_(size) align_size_up_(size, MinObjAlignment)
519
520
inline intptr_t align_object_size(intptr_t size) {
521
return align_size_up(size, MinObjAlignment);
522
}
523
524
inline bool is_object_aligned(intptr_t addr) {
525
return addr == align_object_size(addr);
526
}
527
528
// Pad out certain offsets to jlong alignment, in HeapWord units.
529
530
inline intptr_t align_object_offset(intptr_t offset) {
531
return align_size_up(offset, HeapWordsPerLong);
532
}
533
534
inline void* align_pointer_up(const void* addr, size_t size) {
535
return (void*) align_size_up_((uintptr_t)addr, size);
536
}
537
538
// Align down with a lower bound. If the aligning results in 0, return 'alignment'.
539
540
inline size_t align_size_down_bounded(size_t size, size_t alignment) {
541
size_t aligned_size = align_size_down_(size, alignment);
542
return aligned_size > 0 ? aligned_size : alignment;
543
}
544
545
// Clamp an address to be within a specific page
546
// 1. If addr is on the page it is returned as is
547
// 2. If addr is above the page_address the start of the *next* page will be returned
548
// 3. Otherwise, if addr is below the page_address the start of the page will be returned
549
inline address clamp_address_in_page(address addr, address page_address, intptr_t page_size) {
550
if (align_size_down(intptr_t(addr), page_size) == align_size_down(intptr_t(page_address), page_size)) {
551
// address is in the specified page, just return it as is
552
return addr;
553
} else if (addr > page_address) {
554
// address is above specified page, return start of next page
555
return (address)align_size_down(intptr_t(page_address), page_size) + page_size;
556
} else {
557
// address is below specified page, return start of page
558
return (address)align_size_down(intptr_t(page_address), page_size);
559
}
560
}
561
562
563
// The expected size in bytes of a cache line, used to pad data structures.
564
#define DEFAULT_CACHE_LINE_SIZE 64
565
566
567
//----------------------------------------------------------------------------------------------------
568
// Utility macros for compilers
569
// used to silence compiler warnings
570
571
#define Unused_Variable(var) var
572
573
574
//----------------------------------------------------------------------------------------------------
575
// Miscellaneous
576
577
// 6302670 Eliminate Hotspot __fabsf dependency
578
// All fabs() callers should call this function instead, which will implicitly
579
// convert the operand to double, avoiding a dependency on __fabsf which
580
// doesn't exist in early versions of Solaris 8.
581
inline double fabsd(double value) {
582
return fabs(value);
583
}
584
585
//----------------------------------------------------------------------------------------------------
586
// Special casts
587
// Cast floats into same-size integers and vice-versa w/o changing bit-pattern
588
typedef union {
589
jfloat f;
590
jint i;
591
} FloatIntConv;
592
593
typedef union {
594
jdouble d;
595
jlong l;
596
julong ul;
597
} DoubleLongConv;
598
599
inline jint jint_cast (jfloat x) { return ((FloatIntConv*)&x)->i; }
600
inline jfloat jfloat_cast (jint x) { return ((FloatIntConv*)&x)->f; }
601
602
inline jlong jlong_cast (jdouble x) { return ((DoubleLongConv*)&x)->l; }
603
inline julong julong_cast (jdouble x) { return ((DoubleLongConv*)&x)->ul; }
604
inline jdouble jdouble_cast (jlong x) { return ((DoubleLongConv*)&x)->d; }
605
606
inline jint low (jlong value) { return jint(value); }
607
inline jint high(jlong value) { return jint(value >> 32); }
608
609
// the fancy casts are a hopefully portable way
610
// to do unsigned 32 to 64 bit type conversion
611
inline void set_low (jlong* value, jint low ) { *value &= (jlong)0xffffffff << 32;
612
*value |= (jlong)(julong)(juint)low; }
613
614
inline void set_high(jlong* value, jint high) { *value &= (jlong)(julong)(juint)0xffffffff;
615
*value |= (jlong)high << 32; }
616
617
inline jlong jlong_from(jint h, jint l) {
618
jlong result = 0; // initialization to avoid warning
619
set_high(&result, h);
620
set_low(&result, l);
621
return result;
622
}
623
624
union jlong_accessor {
625
jint words[2];
626
jlong long_value;
627
};
628
629
void basic_types_init(); // cannot define here; uses assert
630
631
632
// NOTE: replicated in SA in vm/agent/sun/jvm/hotspot/runtime/BasicType.java
633
enum BasicType {
634
T_BOOLEAN = 4,
635
T_CHAR = 5,
636
T_FLOAT = 6,
637
T_DOUBLE = 7,
638
T_BYTE = 8,
639
T_SHORT = 9,
640
T_INT = 10,
641
T_LONG = 11,
642
T_OBJECT = 12,
643
T_ARRAY = 13,
644
T_VOID = 14,
645
T_ADDRESS = 15,
646
T_NARROWOOP = 16,
647
T_METADATA = 17,
648
T_NARROWKLASS = 18,
649
T_CONFLICT = 19, // for stack value type with conflicting contents
650
T_ILLEGAL = 99
651
};
652
653
inline bool is_java_primitive(BasicType t) {
654
return T_BOOLEAN <= t && t <= T_LONG;
655
}
656
657
inline bool is_subword_type(BasicType t) {
658
// these guys are processed exactly like T_INT in calling sequences:
659
return (t == T_BOOLEAN || t == T_CHAR || t == T_BYTE || t == T_SHORT);
660
}
661
662
inline bool is_signed_subword_type(BasicType t) {
663
return (t == T_BYTE || t == T_SHORT);
664
}
665
666
inline bool is_reference_type(BasicType t) {
667
return (t == T_OBJECT || t == T_ARRAY);
668
}
669
670
// Convert a char from a classfile signature to a BasicType
671
inline BasicType char2type(char c) {
672
switch( c ) {
673
case 'B': return T_BYTE;
674
case 'C': return T_CHAR;
675
case 'D': return T_DOUBLE;
676
case 'F': return T_FLOAT;
677
case 'I': return T_INT;
678
case 'J': return T_LONG;
679
case 'S': return T_SHORT;
680
case 'Z': return T_BOOLEAN;
681
case 'V': return T_VOID;
682
case 'L': return T_OBJECT;
683
case '[': return T_ARRAY;
684
}
685
return T_ILLEGAL;
686
}
687
688
extern char type2char_tab[T_CONFLICT+1]; // Map a BasicType to a jchar
689
inline char type2char(BasicType t) { return (uint)t < T_CONFLICT+1 ? type2char_tab[t] : 0; }
690
extern int type2size[T_CONFLICT+1]; // Map BasicType to result stack elements
691
extern const char* type2name_tab[T_CONFLICT+1]; // Map a BasicType to a jchar
692
inline const char* type2name(BasicType t) { return (uint)t < T_CONFLICT+1 ? type2name_tab[t] : NULL; }
693
extern BasicType name2type(const char* name);
694
695
// Auxilary math routines
696
// least common multiple
697
extern size_t lcm(size_t a, size_t b);
698
699
700
// NOTE: replicated in SA in vm/agent/sun/jvm/hotspot/runtime/BasicType.java
701
enum BasicTypeSize {
702
T_BOOLEAN_size = 1,
703
T_CHAR_size = 1,
704
T_FLOAT_size = 1,
705
T_DOUBLE_size = 2,
706
T_BYTE_size = 1,
707
T_SHORT_size = 1,
708
T_INT_size = 1,
709
T_LONG_size = 2,
710
T_OBJECT_size = 1,
711
T_ARRAY_size = 1,
712
T_NARROWOOP_size = 1,
713
T_NARROWKLASS_size = 1,
714
T_VOID_size = 0
715
};
716
717
718
// maps a BasicType to its instance field storage type:
719
// all sub-word integral types are widened to T_INT
720
extern BasicType type2field[T_CONFLICT+1];
721
extern BasicType type2wfield[T_CONFLICT+1];
722
723
724
// size in bytes
725
enum ArrayElementSize {
726
T_BOOLEAN_aelem_bytes = 1,
727
T_CHAR_aelem_bytes = 2,
728
T_FLOAT_aelem_bytes = 4,
729
T_DOUBLE_aelem_bytes = 8,
730
T_BYTE_aelem_bytes = 1,
731
T_SHORT_aelem_bytes = 2,
732
T_INT_aelem_bytes = 4,
733
T_LONG_aelem_bytes = 8,
734
#ifdef _LP64
735
T_OBJECT_aelem_bytes = 8,
736
T_ARRAY_aelem_bytes = 8,
737
#else
738
T_OBJECT_aelem_bytes = 4,
739
T_ARRAY_aelem_bytes = 4,
740
#endif
741
T_NARROWOOP_aelem_bytes = 4,
742
T_NARROWKLASS_aelem_bytes = 4,
743
T_VOID_aelem_bytes = 0
744
};
745
746
extern int _type2aelembytes[T_CONFLICT+1]; // maps a BasicType to nof bytes used by its array element
747
#ifdef ASSERT
748
extern int type2aelembytes(BasicType t, bool allow_address = false); // asserts
749
#else
750
inline int type2aelembytes(BasicType t, bool allow_address = false) { return _type2aelembytes[t]; }
751
#endif
752
753
754
// JavaValue serves as a container for arbitrary Java values.
755
756
class JavaValue {
757
758
public:
759
typedef union JavaCallValue {
760
jfloat f;
761
jdouble d;
762
jint i;
763
jlong l;
764
jobject h;
765
} JavaCallValue;
766
767
private:
768
BasicType _type;
769
JavaCallValue _value;
770
771
public:
772
JavaValue(BasicType t = T_ILLEGAL) { _type = t; }
773
774
JavaValue(jfloat value) {
775
_type = T_FLOAT;
776
_value.f = value;
777
}
778
779
JavaValue(jdouble value) {
780
_type = T_DOUBLE;
781
_value.d = value;
782
}
783
784
jfloat get_jfloat() const { return _value.f; }
785
jdouble get_jdouble() const { return _value.d; }
786
jint get_jint() const { return _value.i; }
787
jlong get_jlong() const { return _value.l; }
788
jobject get_jobject() const { return _value.h; }
789
JavaCallValue* get_value_addr() { return &_value; }
790
BasicType get_type() const { return _type; }
791
792
void set_jfloat(jfloat f) { _value.f = f;}
793
void set_jdouble(jdouble d) { _value.d = d;}
794
void set_jint(jint i) { _value.i = i;}
795
void set_jlong(jlong l) { _value.l = l;}
796
void set_jobject(jobject h) { _value.h = h;}
797
void set_type(BasicType t) { _type = t; }
798
799
jboolean get_jboolean() const { return (jboolean) (_value.i);}
800
jbyte get_jbyte() const { return (jbyte) (_value.i);}
801
jchar get_jchar() const { return (jchar) (_value.i);}
802
jshort get_jshort() const { return (jshort) (_value.i);}
803
804
};
805
806
807
#define STACK_BIAS 0
808
// V9 Sparc CPU's running in 64 Bit mode use a stack bias of 7ff
809
// in order to extend the reach of the stack pointer.
810
#if defined(SPARC) && defined(_LP64)
811
#undef STACK_BIAS
812
#define STACK_BIAS 0x7ff
813
#endif
814
815
816
// TosState describes the top-of-stack state before and after the execution of
817
// a bytecode or method. The top-of-stack value may be cached in one or more CPU
818
// registers. The TosState corresponds to the 'machine represention' of this cached
819
// value. There's 4 states corresponding to the JAVA types int, long, float & double
820
// as well as a 5th state in case the top-of-stack value is actually on the top
821
// of stack (in memory) and thus not cached. The atos state corresponds to the itos
822
// state when it comes to machine representation but is used separately for (oop)
823
// type specific operations (e.g. verification code).
824
825
enum TosState { // describes the tos cache contents
826
btos = 0, // byte, bool tos cached
827
ztos = 1, // byte, bool tos cached
828
ctos = 2, // char tos cached
829
stos = 3, // short tos cached
830
itos = 4, // int tos cached
831
ltos = 5, // long tos cached
832
ftos = 6, // float tos cached
833
dtos = 7, // double tos cached
834
atos = 8, // object cached
835
vtos = 9, // tos not cached
836
number_of_states,
837
ilgl // illegal state: should not occur
838
};
839
840
841
inline TosState as_TosState(BasicType type) {
842
switch (type) {
843
case T_BYTE : return btos;
844
case T_BOOLEAN: return ztos;
845
case T_CHAR : return ctos;
846
case T_SHORT : return stos;
847
case T_INT : return itos;
848
case T_LONG : return ltos;
849
case T_FLOAT : return ftos;
850
case T_DOUBLE : return dtos;
851
case T_VOID : return vtos;
852
case T_ARRAY : // fall through
853
case T_OBJECT : return atos;
854
}
855
return ilgl;
856
}
857
858
inline BasicType as_BasicType(TosState state) {
859
switch (state) {
860
case btos : return T_BYTE;
861
case ztos : return T_BOOLEAN;
862
case ctos : return T_CHAR;
863
case stos : return T_SHORT;
864
case itos : return T_INT;
865
case ltos : return T_LONG;
866
case ftos : return T_FLOAT;
867
case dtos : return T_DOUBLE;
868
case atos : return T_OBJECT;
869
case vtos : return T_VOID;
870
}
871
return T_ILLEGAL;
872
}
873
874
875
// Helper function to convert BasicType info into TosState
876
// Note: Cannot define here as it uses global constant at the time being.
877
TosState as_TosState(BasicType type);
878
879
880
// JavaThreadState keeps track of which part of the code a thread is executing in. This
881
// information is needed by the safepoint code.
882
//
883
// There are 4 essential states:
884
//
885
// _thread_new : Just started, but not executed init. code yet (most likely still in OS init code)
886
// _thread_in_native : In native code. This is a safepoint region, since all oops will be in jobject handles
887
// _thread_in_vm : Executing in the vm
888
// _thread_in_Java : Executing either interpreted or compiled Java code (or could be in a stub)
889
//
890
// Each state has an associated xxxx_trans state, which is an intermediate state used when a thread is in
891
// a transition from one state to another. These extra states makes it possible for the safepoint code to
892
// handle certain thread_states without having to suspend the thread - making the safepoint code faster.
893
//
894
// Given a state, the xxx_trans state can always be found by adding 1.
895
//
896
enum JavaThreadState {
897
_thread_uninitialized = 0, // should never happen (missing initialization)
898
_thread_new = 2, // just starting up, i.e., in process of being initialized
899
_thread_new_trans = 3, // corresponding transition state (not used, included for completness)
900
_thread_in_native = 4, // running in native code
901
_thread_in_native_trans = 5, // corresponding transition state
902
_thread_in_vm = 6, // running in VM
903
_thread_in_vm_trans = 7, // corresponding transition state
904
_thread_in_Java = 8, // running in Java or in stub code
905
_thread_in_Java_trans = 9, // corresponding transition state (not used, included for completness)
906
_thread_blocked = 10, // blocked in vm
907
_thread_blocked_trans = 11, // corresponding transition state
908
_thread_max_state = 12 // maximum thread state+1 - used for statistics allocation
909
};
910
911
912
// Handy constants for deciding which compiler mode to use.
913
enum MethodCompilation {
914
InvocationEntryBci = -1, // i.e., not a on-stack replacement compilation
915
InvalidOSREntryBci = -2
916
};
917
918
// Enumeration to distinguish tiers of compilation
919
enum CompLevel {
920
CompLevel_any = -1,
921
CompLevel_all = -1,
922
CompLevel_none = 0, // Interpreter
923
CompLevel_simple = 1, // C1
924
CompLevel_limited_profile = 2, // C1, invocation & backedge counters
925
CompLevel_full_profile = 3, // C1, invocation & backedge counters + mdo
926
CompLevel_full_optimization = 4, // C2 or Shark
927
928
#if defined(COMPILER2) || defined(SHARK)
929
CompLevel_highest_tier = CompLevel_full_optimization, // pure C2 and tiered
930
#elif defined(COMPILER1)
931
CompLevel_highest_tier = CompLevel_simple, // pure C1
932
#else
933
CompLevel_highest_tier = CompLevel_none,
934
#endif
935
936
#if defined(TIERED)
937
CompLevel_initial_compile = CompLevel_full_profile // tiered
938
#elif defined(COMPILER1)
939
CompLevel_initial_compile = CompLevel_simple // pure C1
940
#elif defined(COMPILER2) || defined(SHARK)
941
CompLevel_initial_compile = CompLevel_full_optimization // pure C2
942
#else
943
CompLevel_initial_compile = CompLevel_none
944
#endif
945
};
946
947
inline bool is_c1_compile(int comp_level) {
948
return comp_level > CompLevel_none && comp_level < CompLevel_full_optimization;
949
}
950
951
inline bool is_c2_compile(int comp_level) {
952
return comp_level == CompLevel_full_optimization;
953
}
954
955
inline bool is_highest_tier_compile(int comp_level) {
956
return comp_level == CompLevel_highest_tier;
957
}
958
959
inline bool is_compile(int comp_level) {
960
return is_c1_compile(comp_level) || is_c2_compile(comp_level);
961
}
962
963
//----------------------------------------------------------------------------------------------------
964
// 'Forward' declarations of frequently used classes
965
// (in order to reduce interface dependencies & reduce
966
// number of unnecessary compilations after changes)
967
968
class symbolTable;
969
class ClassFileStream;
970
971
class Event;
972
973
class Thread;
974
class VMThread;
975
class JavaThread;
976
class Threads;
977
978
class VM_Operation;
979
class VMOperationQueue;
980
981
class CodeBlob;
982
class nmethod;
983
class OSRAdapter;
984
class I2CAdapter;
985
class C2IAdapter;
986
class CompiledIC;
987
class relocInfo;
988
class ScopeDesc;
989
class PcDesc;
990
991
class Recompiler;
992
class Recompilee;
993
class RecompilationPolicy;
994
class RFrame;
995
class CompiledRFrame;
996
class InterpretedRFrame;
997
998
class frame;
999
1000
class vframe;
1001
class javaVFrame;
1002
class interpretedVFrame;
1003
class compiledVFrame;
1004
class deoptimizedVFrame;
1005
class externalVFrame;
1006
class entryVFrame;
1007
1008
class RegisterMap;
1009
1010
class Mutex;
1011
class Monitor;
1012
class BasicLock;
1013
class BasicObjectLock;
1014
1015
class PeriodicTask;
1016
1017
class JavaCallWrapper;
1018
1019
class oopDesc;
1020
class metaDataOopDesc;
1021
1022
class NativeCall;
1023
1024
class zone;
1025
1026
class StubQueue;
1027
1028
class outputStream;
1029
1030
class ResourceArea;
1031
1032
class DebugInformationRecorder;
1033
class ScopeValue;
1034
class CompressedStream;
1035
class DebugInfoReadStream;
1036
class DebugInfoWriteStream;
1037
class LocationValue;
1038
class ConstantValue;
1039
class IllegalValue;
1040
1041
class PrivilegedElement;
1042
class MonitorArray;
1043
1044
class MonitorInfo;
1045
1046
class OffsetClosure;
1047
class OopMapCache;
1048
class InterpreterOopMap;
1049
class OopMapCacheEntry;
1050
class OSThread;
1051
1052
typedef int (*OSThreadStartFunc)(void*);
1053
1054
class Space;
1055
1056
class JavaValue;
1057
class methodHandle;
1058
class JavaCallArguments;
1059
1060
// Basic support for errors (general debug facilities not defined at this point fo the include phase)
1061
1062
extern void basic_fatal(const char* msg);
1063
1064
1065
//----------------------------------------------------------------------------------------------------
1066
// Special constants for debugging
1067
1068
const jint badInt = -3; // generic "bad int" value
1069
const intptr_t badAddressVal = -2; // generic "bad address" value
1070
const intptr_t badOopVal = -1; // generic "bad oop" value
1071
const intptr_t badHeapOopVal = (intptr_t) CONST64(0x2BAD4B0BBAADBABE); // value used to zap heap after GC
1072
const int badStackSegVal = 0xCA; // value used to zap stack segments
1073
const int badHandleValue = 0xBC; // value used to zap vm handle area
1074
const int badResourceValue = 0xAB; // value used to zap resource area
1075
const int freeBlockPad = 0xBA; // value used to pad freed blocks.
1076
const int uninitBlockPad = 0xF1; // value used to zap newly malloc'd blocks.
1077
const intptr_t badJNIHandleVal = (intptr_t) CONST64(0xFEFEFEFEFEFEFEFE); // value used to zap jni handle area
1078
const juint badHeapWordVal = 0xBAADBABE; // value used to zap heap after GC
1079
const juint badMetaWordVal = 0xBAADFADE; // value used to zap metadata heap after GC
1080
const int badCodeHeapNewVal= 0xCC; // value used to zap Code heap at allocation
1081
const int badCodeHeapFreeVal = 0xDD; // value used to zap Code heap at deallocation
1082
1083
1084
// (These must be implemented as #defines because C++ compilers are
1085
// not obligated to inline non-integral constants!)
1086
#define badAddress ((address)::badAddressVal)
1087
#define badOop (cast_to_oop(::badOopVal))
1088
#define badHeapWord (::badHeapWordVal)
1089
#define badJNIHandle (cast_to_oop(::badJNIHandleVal))
1090
1091
// Default TaskQueue size is 16K (32-bit) or 128K (64-bit)
1092
#define TASKQUEUE_SIZE (NOT_LP64(1<<14) LP64_ONLY(1<<17))
1093
1094
//----------------------------------------------------------------------------------------------------
1095
// Utility functions for bitfield manipulations
1096
1097
const intptr_t AllBits = ~0; // all bits set in a word
1098
const intptr_t NoBits = 0; // no bits set in a word
1099
const jlong NoLongBits = 0; // no bits set in a long
1100
const intptr_t OneBit = 1; // only right_most bit set in a word
1101
1102
// get a word with the n.th or the right-most or left-most n bits set
1103
// (note: #define used only so that they can be used in enum constant definitions)
1104
#define nth_bit(n) (n >= BitsPerWord ? 0 : OneBit << (n))
1105
#define right_n_bits(n) (nth_bit(n) - 1)
1106
#define left_n_bits(n) (right_n_bits(n) << (n >= BitsPerWord ? 0 : (BitsPerWord - n)))
1107
1108
// bit-operations using a mask m
1109
inline void set_bits (intptr_t& x, intptr_t m) { x |= m; }
1110
inline void clear_bits (intptr_t& x, intptr_t m) { x &= ~m; }
1111
inline intptr_t mask_bits (intptr_t x, intptr_t m) { return x & m; }
1112
inline jlong mask_long_bits (jlong x, jlong m) { return x & m; }
1113
inline bool mask_bits_are_true (intptr_t flags, intptr_t mask) { return (flags & mask) == mask; }
1114
1115
// bit-operations using the n.th bit
1116
inline void set_nth_bit(intptr_t& x, int n) { set_bits (x, nth_bit(n)); }
1117
inline void clear_nth_bit(intptr_t& x, int n) { clear_bits(x, nth_bit(n)); }
1118
inline bool is_set_nth_bit(intptr_t x, int n) { return mask_bits (x, nth_bit(n)) != NoBits; }
1119
1120
// returns the bitfield of x starting at start_bit_no with length field_length (no sign-extension!)
1121
inline intptr_t bitfield(intptr_t x, int start_bit_no, int field_length) {
1122
return mask_bits(x >> start_bit_no, right_n_bits(field_length));
1123
}
1124
1125
1126
//----------------------------------------------------------------------------------------------------
1127
// Utility functions for integers
1128
1129
// Avoid use of global min/max macros which may cause unwanted double
1130
// evaluation of arguments.
1131
#ifdef max
1132
#undef max
1133
#endif
1134
1135
#ifdef min
1136
#undef min
1137
#endif
1138
1139
#define max(a,b) Do_not_use_max_use_MAX2_instead
1140
#define min(a,b) Do_not_use_min_use_MIN2_instead
1141
1142
// It is necessary to use templates here. Having normal overloaded
1143
// functions does not work because it is necessary to provide both 32-
1144
// and 64-bit overloaded functions, which does not work, and having
1145
// explicitly-typed versions of these routines (i.e., MAX2I, MAX2L)
1146
// will be even more error-prone than macros.
1147
template<class T> inline T MAX2(T a, T b) { return (a > b) ? a : b; }
1148
template<class T> inline T MIN2(T a, T b) { return (a < b) ? a : b; }
1149
template<class T> inline T MAX3(T a, T b, T c) { return MAX2(MAX2(a, b), c); }
1150
template<class T> inline T MIN3(T a, T b, T c) { return MIN2(MIN2(a, b), c); }
1151
template<class T> inline T MAX4(T a, T b, T c, T d) { return MAX2(MAX3(a, b, c), d); }
1152
template<class T> inline T MIN4(T a, T b, T c, T d) { return MIN2(MIN3(a, b, c), d); }
1153
1154
template<class T> inline T ABS(T x) { return (x > 0) ? x : -x; }
1155
1156
// true if x is a power of 2, false otherwise
1157
inline bool is_power_of_2(intptr_t x) {
1158
return ((x != NoBits) && (mask_bits(x, x - 1) == NoBits));
1159
}
1160
1161
// long version of is_power_of_2
1162
inline bool is_power_of_2_long(jlong x) {
1163
return ((x != NoLongBits) && (mask_long_bits(x, x - 1) == NoLongBits));
1164
}
1165
1166
//* largest i such that 2^i <= x
1167
// A negative value of 'x' will return '31'
1168
inline int log2_intptr(uintptr_t x) {
1169
int i = -1;
1170
uintptr_t p = 1;
1171
while (p != 0 && p <= x) {
1172
// p = 2^(i+1) && p <= x (i.e., 2^(i+1) <= x)
1173
i++; p *= 2;
1174
}
1175
// p = 2^(i+1) && x < p (i.e., 2^i <= x < 2^(i+1))
1176
// (if p = 0 then overflow occurred and i = 31)
1177
return i;
1178
}
1179
1180
//* largest i such that 2^i <= x
1181
inline int log2_long(julong x) {
1182
int i = -1;
1183
julong p = 1;
1184
while (p != 0 && p <= x) {
1185
// p = 2^(i+1) && p <= x (i.e., 2^(i+1) <= x)
1186
i++; p *= 2;
1187
}
1188
// p = 2^(i+1) && x < p (i.e., 2^i <= x < 2^(i+1))
1189
// (if p = 0 then overflow occurred and i = 63)
1190
return i;
1191
}
1192
1193
inline int log2_intptr(intptr_t x) {
1194
return log2_intptr((uintptr_t)x);
1195
}
1196
1197
inline int log2_int(int x) {
1198
return log2_intptr((uintptr_t)x);
1199
}
1200
1201
inline int log2_jint(jint x) {
1202
return log2_intptr((uintptr_t)x);
1203
}
1204
1205
inline int log2_uint(uint x) {
1206
return log2_intptr((uintptr_t)x);
1207
}
1208
1209
// A negative value of 'x' will return '63'
1210
inline int log2_jlong(jlong x) {
1211
return log2_long((julong)x);
1212
}
1213
1214
//* the argument must be exactly a power of 2
1215
inline int exact_log2(intptr_t x) {
1216
#ifdef ASSERT
1217
if (!is_power_of_2(x)) basic_fatal("x must be a power of 2");
1218
#endif
1219
return log2_intptr(x);
1220
}
1221
1222
//* the argument must be exactly a power of 2
1223
inline int exact_log2_long(jlong x) {
1224
#ifdef ASSERT
1225
if (!is_power_of_2_long(x)) basic_fatal("x must be a power of 2");
1226
#endif
1227
return log2_long(x);
1228
}
1229
1230
1231
// returns integer round-up to the nearest multiple of s (s must be a power of two)
1232
inline intptr_t round_to(intptr_t x, uintx s) {
1233
#ifdef ASSERT
1234
if (!is_power_of_2(s)) basic_fatal("s must be a power of 2");
1235
#endif
1236
const uintx m = s - 1;
1237
return mask_bits(x + m, ~m);
1238
}
1239
1240
// returns integer round-down to the nearest multiple of s (s must be a power of two)
1241
inline intptr_t round_down(intptr_t x, uintx s) {
1242
#ifdef ASSERT
1243
if (!is_power_of_2(s)) basic_fatal("s must be a power of 2");
1244
#endif
1245
const uintx m = s - 1;
1246
return mask_bits(x, ~m);
1247
}
1248
1249
1250
inline bool is_odd (intx x) { return x & 1; }
1251
inline bool is_even(intx x) { return !is_odd(x); }
1252
1253
// abs methods which cannot overflow and so are well-defined across
1254
// the entire domain of integer types.
1255
static inline unsigned int uabs(unsigned int n) {
1256
union {
1257
unsigned int result;
1258
int value;
1259
};
1260
result = n;
1261
if (value < 0) result = 0-result;
1262
return result;
1263
}
1264
static inline julong uabs(julong n) {
1265
union {
1266
julong result;
1267
jlong value;
1268
};
1269
result = n;
1270
if (value < 0) result = 0-result;
1271
return result;
1272
}
1273
static inline julong uabs(jlong n) { return uabs((julong)n); }
1274
static inline unsigned int uabs(int n) { return uabs((unsigned int)n); }
1275
1276
// "to" should be greater than "from."
1277
inline intx byte_size(void* from, void* to) {
1278
return (address)to - (address)from;
1279
}
1280
1281
//----------------------------------------------------------------------------------------------------
1282
// Avoid non-portable casts with these routines (DEPRECATED)
1283
1284
// NOTE: USE Bytes class INSTEAD WHERE POSSIBLE
1285
// Bytes is optimized machine-specifically and may be much faster then the portable routines below.
1286
1287
// Given sequence of four bytes, build into a 32-bit word
1288
// following the conventions used in class files.
1289
// On the 386, this could be realized with a simple address cast.
1290
//
1291
1292
// This routine takes eight bytes:
1293
inline u8 build_u8_from( u1 c1, u1 c2, u1 c3, u1 c4, u1 c5, u1 c6, u1 c7, u1 c8 ) {
1294
return (( u8(c1) << 56 ) & ( u8(0xff) << 56 ))
1295
| (( u8(c2) << 48 ) & ( u8(0xff) << 48 ))
1296
| (( u8(c3) << 40 ) & ( u8(0xff) << 40 ))
1297
| (( u8(c4) << 32 ) & ( u8(0xff) << 32 ))
1298
| (( u8(c5) << 24 ) & ( u8(0xff) << 24 ))
1299
| (( u8(c6) << 16 ) & ( u8(0xff) << 16 ))
1300
| (( u8(c7) << 8 ) & ( u8(0xff) << 8 ))
1301
| (( u8(c8) << 0 ) & ( u8(0xff) << 0 ));
1302
}
1303
1304
// This routine takes four bytes:
1305
inline u4 build_u4_from( u1 c1, u1 c2, u1 c3, u1 c4 ) {
1306
return (( u4(c1) << 24 ) & 0xff000000)
1307
| (( u4(c2) << 16 ) & 0x00ff0000)
1308
| (( u4(c3) << 8 ) & 0x0000ff00)
1309
| (( u4(c4) << 0 ) & 0x000000ff);
1310
}
1311
1312
// And this one works if the four bytes are contiguous in memory:
1313
inline u4 build_u4_from( u1* p ) {
1314
return build_u4_from( p[0], p[1], p[2], p[3] );
1315
}
1316
1317
// Ditto for two-byte ints:
1318
inline u2 build_u2_from( u1 c1, u1 c2 ) {
1319
return u2((( u2(c1) << 8 ) & 0xff00)
1320
| (( u2(c2) << 0 ) & 0x00ff));
1321
}
1322
1323
// And this one works if the two bytes are contiguous in memory:
1324
inline u2 build_u2_from( u1* p ) {
1325
return build_u2_from( p[0], p[1] );
1326
}
1327
1328
// Ditto for floats:
1329
inline jfloat build_float_from( u1 c1, u1 c2, u1 c3, u1 c4 ) {
1330
u4 u = build_u4_from( c1, c2, c3, c4 );
1331
return *(jfloat*)&u;
1332
}
1333
1334
inline jfloat build_float_from( u1* p ) {
1335
u4 u = build_u4_from( p );
1336
return *(jfloat*)&u;
1337
}
1338
1339
1340
// now (64-bit) longs
1341
1342
inline jlong build_long_from( u1 c1, u1 c2, u1 c3, u1 c4, u1 c5, u1 c6, u1 c7, u1 c8 ) {
1343
return (( jlong(c1) << 56 ) & ( jlong(0xff) << 56 ))
1344
| (( jlong(c2) << 48 ) & ( jlong(0xff) << 48 ))
1345
| (( jlong(c3) << 40 ) & ( jlong(0xff) << 40 ))
1346
| (( jlong(c4) << 32 ) & ( jlong(0xff) << 32 ))
1347
| (( jlong(c5) << 24 ) & ( jlong(0xff) << 24 ))
1348
| (( jlong(c6) << 16 ) & ( jlong(0xff) << 16 ))
1349
| (( jlong(c7) << 8 ) & ( jlong(0xff) << 8 ))
1350
| (( jlong(c8) << 0 ) & ( jlong(0xff) << 0 ));
1351
}
1352
1353
inline jlong build_long_from( u1* p ) {
1354
return build_long_from( p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7] );
1355
}
1356
1357
1358
// Doubles, too!
1359
inline jdouble build_double_from( u1 c1, u1 c2, u1 c3, u1 c4, u1 c5, u1 c6, u1 c7, u1 c8 ) {
1360
jlong u = build_long_from( c1, c2, c3, c4, c5, c6, c7, c8 );
1361
return *(jdouble*)&u;
1362
}
1363
1364
inline jdouble build_double_from( u1* p ) {
1365
jlong u = build_long_from( p );
1366
return *(jdouble*)&u;
1367
}
1368
1369
1370
// Portable routines to go the other way:
1371
1372
inline void explode_short_to( u2 x, u1& c1, u1& c2 ) {
1373
c1 = u1(x >> 8);
1374
c2 = u1(x);
1375
}
1376
1377
inline void explode_short_to( u2 x, u1* p ) {
1378
explode_short_to( x, p[0], p[1]);
1379
}
1380
1381
inline void explode_int_to( u4 x, u1& c1, u1& c2, u1& c3, u1& c4 ) {
1382
c1 = u1(x >> 24);
1383
c2 = u1(x >> 16);
1384
c3 = u1(x >> 8);
1385
c4 = u1(x);
1386
}
1387
1388
inline void explode_int_to( u4 x, u1* p ) {
1389
explode_int_to( x, p[0], p[1], p[2], p[3]);
1390
}
1391
1392
1393
// Pack and extract shorts to/from ints:
1394
1395
inline int extract_low_short_from_int(jint x) {
1396
return x & 0xffff;
1397
}
1398
1399
inline int extract_high_short_from_int(jint x) {
1400
return (x >> 16) & 0xffff;
1401
}
1402
1403
inline int build_int_from_shorts( jushort low, jushort high ) {
1404
return ((int)((unsigned int)high << 16) | (unsigned int)low);
1405
}
1406
1407
// Convert pointer to intptr_t, for use in printing pointers.
1408
inline intptr_t p2i(const void * p) {
1409
return (intptr_t) p;
1410
}
1411
1412
// Printf-style formatters for fixed- and variable-width types as pointers and
1413
// integers. These are derived from the definitions in inttypes.h. If the platform
1414
// doesn't provide appropriate definitions, they should be provided in
1415
// the compiler-specific definitions file (e.g., globalDefinitions_gcc.hpp)
1416
1417
#define BOOL_TO_STR(_b_) ((_b_) ? "true" : "false")
1418
1419
// Format 32-bit quantities.
1420
#define INT32_FORMAT "%" PRId32
1421
#define UINT32_FORMAT "%" PRIu32
1422
#define INT32_FORMAT_W(width) "%" #width PRId32
1423
#define UINT32_FORMAT_W(width) "%" #width PRIu32
1424
1425
#define PTR32_FORMAT "0x%08" PRIx32
1426
1427
// Format 64-bit quantities.
1428
#define INT64_FORMAT "%" PRId64
1429
#define UINT64_FORMAT "%" PRIu64
1430
#define UINT64_FORMAT_X "%" PRIx64
1431
#define INT64_FORMAT_W(width) "%" #width PRId64
1432
#define UINT64_FORMAT_W(width) "%" #width PRIu64
1433
1434
#define PTR64_FORMAT "0x%016" PRIx64
1435
1436
// Format jlong, if necessary
1437
#ifndef JLONG_FORMAT
1438
#define JLONG_FORMAT INT64_FORMAT
1439
#endif
1440
#ifndef JULONG_FORMAT
1441
#define JULONG_FORMAT UINT64_FORMAT
1442
#endif
1443
1444
// Format pointers which change size between 32- and 64-bit.
1445
#ifdef _LP64
1446
#define INTPTR_FORMAT "0x%016" PRIxPTR
1447
#define PTR_FORMAT "0x%016" PRIxPTR
1448
#else // !_LP64
1449
#define INTPTR_FORMAT "0x%08" PRIxPTR
1450
#define PTR_FORMAT "0x%08" PRIxPTR
1451
#endif // _LP64
1452
1453
#define INTPTR_FORMAT_W(width) "%" #width PRIxPTR
1454
1455
#define SSIZE_FORMAT "%" PRIdPTR
1456
#define SIZE_FORMAT "%" PRIuPTR
1457
#define SIZE_FORMAT_HEX "0x%" PRIxPTR
1458
#define SSIZE_FORMAT_W(width) "%" #width PRIdPTR
1459
#define SIZE_FORMAT_W(width) "%" #width PRIuPTR
1460
#define SIZE_FORMAT_HEX_W(width) "0x%" #width PRIxPTR
1461
1462
#define INTX_FORMAT "%" PRIdPTR
1463
#define UINTX_FORMAT "%" PRIuPTR
1464
#define INTX_FORMAT_W(width) "%" #width PRIdPTR
1465
#define UINTX_FORMAT_W(width) "%" #width PRIuPTR
1466
1467
1468
// Enable zap-a-lot if in debug version.
1469
1470
# ifdef ASSERT
1471
# ifdef COMPILER2
1472
# define ENABLE_ZAP_DEAD_LOCALS
1473
#endif /* COMPILER2 */
1474
# endif /* ASSERT */
1475
1476
#define ARRAY_SIZE(array) (sizeof(array)/sizeof((array)[0]))
1477
1478
//----------------------------------------------------------------------------------------------------
1479
// Sum and product which can never overflow: they wrap, just like the
1480
// Java operations. Note that we don't intend these to be used for
1481
// general-purpose arithmetic: their purpose is to emulate Java
1482
// operations.
1483
1484
// The goal of this code to avoid undefined or implementation-defined
1485
// behaviour. The use of an lvalue to reference cast is explicitly
1486
// permitted by Lvalues and rvalues [basic.lval]. [Section 3.10 Para
1487
// 15 in C++03]
1488
#define JAVA_INTEGER_OP(OP, NAME, TYPE, UNSIGNED_TYPE) \
1489
inline TYPE NAME (TYPE in1, TYPE in2) { \
1490
UNSIGNED_TYPE ures = static_cast<UNSIGNED_TYPE>(in1); \
1491
ures OP ## = static_cast<UNSIGNED_TYPE>(in2); \
1492
return reinterpret_cast<TYPE&>(ures); \
1493
}
1494
1495
JAVA_INTEGER_OP(+, java_add, jint, juint)
1496
JAVA_INTEGER_OP(-, java_subtract, jint, juint)
1497
JAVA_INTEGER_OP(*, java_multiply, jint, juint)
1498
JAVA_INTEGER_OP(+, java_add, jlong, julong)
1499
JAVA_INTEGER_OP(-, java_subtract, jlong, julong)
1500
JAVA_INTEGER_OP(*, java_multiply, jlong, julong)
1501
1502
#undef JAVA_INTEGER_OP
1503
1504
// Dereference vptr
1505
// All C++ compilers that we know of have the vtbl pointer in the first
1506
// word. If there are exceptions, this function needs to be made compiler
1507
// specific.
1508
static inline void* dereference_vptr(const void* addr) {
1509
return *(void**)addr;
1510
}
1511
1512
#ifndef PRODUCT
1513
1514
// For unit testing only
1515
class GlobalDefinitions {
1516
public:
1517
static void test_globals();
1518
static void test_proper_unit();
1519
};
1520
1521
#endif // PRODUCT
1522
1523
#endif // SHARE_VM_UTILITIES_GLOBALDEFINITIONS_HPP
1524
1525