Skip to content

Commit eee6a56

Browse files
committedFeb 11, 2022
8281522: Rename ADLC classes which have the same name as hotspot variants
Reviewed-by: neliasso, kvn
1 parent 84868e3 commit eee6a56

11 files changed

+109
-109
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,7 +24,7 @@
2424

2525
#include "adlc.hpp"
2626

27-
void* AllocateHeap(size_t size) {
27+
void* AdlAllocateHeap(size_t size) {
2828
unsigned char* ptr = (unsigned char*) malloc(size);
2929
if (ptr == NULL && size != 0) {
3030
fprintf(stderr, "Error: Out of memory in ADLC\n"); // logging can cause crash!
@@ -34,7 +34,7 @@ void* AllocateHeap(size_t size) {
3434
return ptr;
3535
}
3636

37-
void* ReAllocateHeap(void* old_ptr, size_t size) {
37+
void* AdlReAllocateHeap(void* old_ptr, size_t size) {
3838
unsigned char* ptr = (unsigned char*) realloc(old_ptr, size);
3939
if (ptr == NULL && size != 0) {
4040
fprintf(stderr, "Error: Out of memory in ADLC\n"); // logging can cause crash!
@@ -44,77 +44,77 @@ void* ReAllocateHeap(void* old_ptr, size_t size) {
4444
return ptr;
4545
}
4646

47-
void* Chunk::operator new(size_t requested_size, size_t length) throw() {
48-
return CHeapObj::operator new(requested_size + length);
47+
void* AdlChunk::operator new(size_t requested_size, size_t length) throw() {
48+
return AdlCHeapObj::operator new(requested_size + length);
4949
}
5050

51-
void Chunk::operator delete(void* p, size_t length) {
52-
CHeapObj::operator delete(p);
51+
void AdlChunk::operator delete(void* p, size_t length) {
52+
AdlCHeapObj::operator delete(p);
5353
}
5454

55-
Chunk::Chunk(size_t length) {
55+
AdlChunk::AdlChunk(size_t length) {
5656
_next = NULL; // Chain on the linked list
5757
_len = length; // Save actual size
5858
}
5959

6060
//------------------------------chop-------------------------------------------
61-
void Chunk::chop() {
62-
Chunk *k = this;
61+
void AdlChunk::chop() {
62+
AdlChunk *k = this;
6363
while( k ) {
64-
Chunk *tmp = k->_next;
64+
AdlChunk *tmp = k->_next;
6565
// clear out this chunk (to detect allocation bugs)
6666
memset(k, 0xBE, k->_len);
6767
free(k); // Free chunk (was malloc'd)
6868
k = tmp;
6969
}
7070
}
7171

72-
void Chunk::next_chop() {
72+
void AdlChunk::next_chop() {
7373
_next->chop();
7474
_next = NULL;
7575
}
7676

77-
//------------------------------Arena------------------------------------------
78-
Arena::Arena( size_t init_size ) {
77+
//------------------------------AdlArena------------------------------------------
78+
AdlArena::AdlArena( size_t init_size ) {
7979
init_size = (init_size+3) & ~3;
80-
_first = _chunk = new (init_size) Chunk(init_size);
80+
_first = _chunk = new (init_size) AdlChunk(init_size);
8181
_hwm = _chunk->bottom(); // Save the cached hwm, max
8282
_max = _chunk->top();
8383
set_size_in_bytes(init_size);
8484
}
8585

86-
Arena::Arena() {
87-
_first = _chunk = new (Chunk::init_size) Chunk(Chunk::init_size);
86+
AdlArena::AdlArena() {
87+
_first = _chunk = new (AdlChunk::init_size) AdlChunk(AdlChunk::init_size);
8888
_hwm = _chunk->bottom(); // Save the cached hwm, max
8989
_max = _chunk->top();
90-
set_size_in_bytes(Chunk::init_size);
90+
set_size_in_bytes(AdlChunk::init_size);
9191
}
9292

93-
Arena::Arena( Arena *a )
93+
AdlArena::AdlArena( AdlArena *a )
9494
: _chunk(a->_chunk), _hwm(a->_hwm), _max(a->_max), _first(a->_first) {
9595
set_size_in_bytes(a->size_in_bytes());
9696
}
9797

9898
//------------------------------used-------------------------------------------
99-
// Total of all Chunks in arena
100-
size_t Arena::used() const {
101-
size_t sum = _chunk->_len - (_max-_hwm); // Size leftover in this Chunk
102-
Chunk *k = _first;
103-
while( k != _chunk) { // Whilst have Chunks in a row
104-
sum += k->_len; // Total size of this Chunk
105-
k = k->_next; // Bump along to next Chunk
99+
// Total of all AdlChunks in arena
100+
size_t AdlArena::used() const {
101+
size_t sum = _chunk->_len - (_max-_hwm); // Size leftover in this AdlChunk
102+
AdlChunk *k = _first;
103+
while( k != _chunk) { // Whilst have AdlChunks in a row
104+
sum += k->_len; // Total size of this AdlChunk
105+
k = k->_next; // Bump along to next AdlChunk
106106
}
107107
return sum; // Return total consumed space.
108108
}
109109

110110
//------------------------------grow-------------------------------------------
111-
// Grow a new Chunk
112-
void* Arena::grow( size_t x ) {
111+
// Grow a new AdlChunk
112+
void* AdlArena::grow( size_t x ) {
113113
// Get minimal required size. Either real big, or even bigger for giant objs
114-
size_t len = max(x, Chunk::size);
114+
size_t len = max(x, AdlChunk::size);
115115

116-
Chunk *k = _chunk; // Get filled-up chunk address
117-
_chunk = new (len) Chunk(len);
116+
AdlChunk *k = _chunk; // Get filled-up chunk address
117+
_chunk = new (len) AdlChunk(len);
118118

119119
if( k ) k->_next = _chunk; // Append new chunk to end of linked list
120120
else _first = _chunk;
@@ -127,17 +127,17 @@ void* Arena::grow( size_t x ) {
127127
}
128128

129129
//------------------------------calloc-----------------------------------------
130-
// Allocate zeroed storage in Arena
131-
void *Arena::Acalloc( size_t items, size_t x ) {
130+
// Allocate zeroed storage in AdlArena
131+
void *AdlArena::Acalloc( size_t items, size_t x ) {
132132
size_t z = items*x; // Total size needed
133133
void *ptr = Amalloc(z); // Get space
134134
memset( ptr, 0, z ); // Zap space
135135
return ptr; // Return space
136136
}
137137

138138
//------------------------------realloc----------------------------------------
139-
// Reallocate storage in Arena.
140-
void *Arena::Arealloc( void *old_ptr, size_t old_size, size_t new_size ) {
139+
// Reallocate storage in AdlArena.
140+
void *AdlArena::Arealloc( void *old_ptr, size_t old_size, size_t new_size ) {
141141
char *c_old = (char*)old_ptr; // Handy name
142142
// Stupid fast special case
143143
if( new_size <= old_size ) { // Shrink in-place
@@ -161,32 +161,32 @@ void *Arena::Arealloc( void *old_ptr, size_t old_size, size_t new_size ) {
161161
}
162162

163163
//------------------------------reset------------------------------------------
164-
// Reset this Arena to empty, and return this Arenas guts in a new Arena.
165-
Arena *Arena::reset(void) {
166-
Arena *a = new Arena(this); // New empty arena
164+
// Reset this AdlArena to empty, and return this AdlArenas guts in a new AdlArena.
165+
AdlArena *AdlArena::reset(void) {
166+
AdlArena *a = new AdlArena(this); // New empty arena
167167
_first = _chunk = NULL; // Normal, new-arena initialization
168168
_hwm = _max = NULL;
169-
return a; // Return Arena with guts
169+
return a; // Return AdlArena with guts
170170
}
171171

172172
//------------------------------contains---------------------------------------
173-
// Determine if pointer belongs to this Arena or not.
174-
bool Arena::contains( const void *ptr ) const {
173+
// Determine if pointer belongs to this AdlArena or not.
174+
bool AdlArena::contains( const void *ptr ) const {
175175
if( (void*)_chunk->bottom() <= ptr && ptr < (void*)_hwm )
176176
return true; // Check for in this chunk
177-
for( Chunk *c = _first; c; c = c->_next )
177+
for( AdlChunk *c = _first; c; c = c->_next )
178178
if( (void*)c->bottom() <= ptr && ptr < (void*)c->top())
179-
return true; // Check for every chunk in Arena
180-
return false; // Not in any Chunk, so not in Arena
179+
return true; // Check for every chunk in AdlArena
180+
return false; // Not in any AdlChunk, so not in AdlArena
181181
}
182182

183183
//-----------------------------------------------------------------------------
184184
// CHeapObj
185185

186-
void* CHeapObj::operator new(size_t size) throw() {
187-
return (void *) AllocateHeap(size);
186+
void* AdlCHeapObj::operator new(size_t size) throw() {
187+
return (void *) AdlAllocateHeap(size);
188188
}
189189

190-
void CHeapObj::operator delete(void* p){
190+
void AdlCHeapObj::operator delete(void* p){
191191
free(p);
192192
}

‎src/hotspot/share/adlc/arena.hpp ‎src/hotspot/share/adlc/adlArena.hpp

+28-28
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -22,11 +22,11 @@
2222
*
2323
*/
2424

25-
#ifndef SHARE_ADLC_ARENA_HPP
26-
#define SHARE_ADLC_ARENA_HPP
25+
#ifndef SHARE_ADLC_ADLARENA_HPP
26+
#define SHARE_ADLC_ADLARENA_HPP
2727

28-
void* AllocateHeap(size_t size);
29-
void* ReAllocateHeap(void* old_ptr, size_t size);
28+
void* AdlAllocateHeap(size_t size);
29+
void* AdlReAllocateHeap(void* old_ptr, size_t size);
3030

3131
// All classes in adlc may be derived
3232
// from one of the following allocation classes:
@@ -35,10 +35,10 @@ void* ReAllocateHeap(void* old_ptr, size_t size);
3535
// - CHeapObj
3636
//
3737
// For classes used as name spaces.
38-
// - AllStatic
38+
// - AdlAllStatic
3939
//
4040

41-
class CHeapObj {
41+
class AdlCHeapObj {
4242
public:
4343
void* operator new(size_t size) throw();
4444
void operator delete(void* p);
@@ -47,16 +47,16 @@ class CHeapObj {
4747

4848
// Base class for classes that constitute name spaces.
4949

50-
class AllStatic {
50+
class AdlAllStatic {
5151
public:
5252
void* operator new(size_t size) throw();
5353
void operator delete(void* p);
5454
};
5555

5656

57-
//------------------------------Chunk------------------------------------------
57+
//------------------------------AdlChunk------------------------------------------
5858
// Linked list of raw memory chunks
59-
class Chunk: public CHeapObj {
59+
class AdlChunk: public AdlCHeapObj {
6060
private:
6161
// This ordinary operator delete is needed even though not used, so the
6262
// below two-argument operator delete will be treated as a placement
@@ -65,41 +65,41 @@ class Chunk: public CHeapObj {
6565
public:
6666
void* operator new(size_t size, size_t length) throw();
6767
void operator delete(void* p, size_t length);
68-
Chunk(size_t length);
68+
AdlChunk(size_t length);
6969

7070
enum {
7171
init_size = 1*1024, // Size of first chunk
72-
size = 32*1024 // Default size of an Arena chunk (following the first)
72+
size = 32*1024 // Default size of an AdlArena chunk (following the first)
7373
};
74-
Chunk* _next; // Next Chunk in list
75-
size_t _len; // Size of this Chunk
74+
AdlChunk* _next; // Next AdlChunk in list
75+
size_t _len; // Size of this AdlChunk
7676

7777
void chop(); // Chop this chunk
7878
void next_chop(); // Chop next chunk
7979

8080
// Boundaries of data area (possibly unused)
81-
char* bottom() const { return ((char*) this) + sizeof(Chunk); }
81+
char* bottom() const { return ((char*) this) + sizeof(AdlChunk); }
8282
char* top() const { return bottom() + _len; }
8383
};
8484

8585

86-
//------------------------------Arena------------------------------------------
86+
//------------------------------AdlArena------------------------------------------
8787
// Fast allocation of memory
88-
class Arena: public CHeapObj {
88+
class AdlArena: public AdlCHeapObj {
8989
protected:
9090
friend class ResourceMark;
9191
friend class HandleMark;
9292
friend class NoHandleMark;
93-
Chunk *_first; // First chunk
94-
Chunk *_chunk; // current chunk
93+
AdlChunk *_first; // First chunk
94+
AdlChunk *_chunk; // current chunk
9595
char *_hwm, *_max; // High water mark and max in current chunk
96-
void* grow(size_t x); // Get a new Chunk of at least size x
96+
void* grow(size_t x); // Get a new AdlChunk of at least size x
9797
size_t _size_in_bytes; // Size of arena (used for memory usage tracing)
9898
public:
99-
Arena();
100-
Arena(size_t init_size);
101-
Arena(Arena *old);
102-
~Arena() { _first->chop(); }
99+
AdlArena();
100+
AdlArena(size_t init_size);
101+
AdlArena(AdlArena *old);
102+
~AdlArena() { _first->chop(); }
103103
char* hwm() const { return _hwm; }
104104

105105
// Fast allocate in the arena. Common case is: pointer test + increment.
@@ -137,10 +137,10 @@ class Arena: public CHeapObj {
137137
void *Acalloc( size_t items, size_t x );
138138
void *Arealloc( void *old_ptr, size_t old_size, size_t new_size );
139139

140-
// Reset this Arena to empty, and return this Arenas guts in a new Arena.
141-
Arena *reset(void);
140+
// Reset this AdlArena to empty, and return this AdlArenas guts in a new AdlArena.
141+
AdlArena *reset(void);
142142

143-
// Determine if pointer belongs to this Arena or not.
143+
// Determine if pointer belongs to this AdlArena or not.
144144
bool contains( const void *ptr ) const;
145145

146146
// Total of all chunks in use (not thread-safe)
@@ -151,4 +151,4 @@ class Arena: public CHeapObj {
151151
void set_size_in_bytes(size_t size) { _size_in_bytes = size; }
152152
};
153153

154-
#endif // SHARE_ADLC_ARENA_HPP
154+
#endif // SHARE_ADLC_ADLARENA_HPP

‎src/hotspot/share/adlc/adlc.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ typedef unsigned int uintptr_t;
9393
#define max(a, b) (((a)>(b)) ? (a) : (b))
9494

9595
// ADLC components
96-
#include "arena.hpp"
96+
#include "adlArena.hpp"
9797
#include "opto/adlcVMDeps.hpp"
9898
#include "filebuff.hpp"
9999
#include "dict2.hpp"

0 commit comments

Comments
 (0)
Please sign in to comment.