Skip to content

Commit 9d5bab1

Browse files
committedMay 16, 2023
8300081: Replace NULL with nullptr in share/asm/
Reviewed-by: coleenp
1 parent 41ee125 commit 9d5bab1

File tree

5 files changed

+99
-99
lines changed

5 files changed

+99
-99
lines changed
 

‎src/hotspot/share/asm/assembler.cpp

+10-10
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@
4242
// The code buffer is updated via set_code_end(...) after emitting a whole instruction.
4343

4444
AbstractAssembler::AbstractAssembler(CodeBuffer* code) {
45-
if (code == NULL) return;
45+
if (code == nullptr) return;
4646
CodeSection* cs = code->insts();
4747
cs->clear_mark(); // new assembler kills old mark
48-
if (cs->start() == NULL) {
48+
if (cs->start() == nullptr) {
4949
vm_exit_out_of_memory(0, OOM_MMAP_ERROR, "CodeCache: no room for %s", code->name());
5050
}
5151
_code_section = cs;
@@ -66,15 +66,15 @@ address AbstractAssembler::start_a_stub(int required_space) {
6666
CodeSection* cs = cb->stubs();
6767
assert(_code_section == cb->insts(), "not in insts?");
6868
if (cs->maybe_expand_to_ensure_remaining(required_space)
69-
&& cb->blob() == NULL) {
70-
return NULL;
69+
&& cb->blob() == nullptr) {
70+
return nullptr;
7171
}
7272
set_code_section(cs);
7373
return pc();
7474
}
7575

7676
// Inform CodeBuffer that incoming code and relocation will be code
77-
// Should not be called if start_a_stub() returned NULL
77+
// Should not be called if start_a_stub() returned null
7878
void AbstractAssembler::end_a_stub() {
7979
assert(_code_section == code()->stubs(), "not in stubs?");
8080
set_code_section(code()->insts());
@@ -88,7 +88,7 @@ address AbstractAssembler::start_a_const(int required_space, int required_align)
8888
address end = cs->end();
8989
int pad = -(intptr_t)end & (required_align-1);
9090
if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) {
91-
if (cb->blob() == NULL) return NULL;
91+
if (cb->blob() == nullptr) return nullptr;
9292
end = cs->end(); // refresh pointer
9393
}
9494
if (pad > 0) {
@@ -162,7 +162,7 @@ void Label::add_patch_at(CodeBuffer* cb, int branch_loc, const char* file, int l
162162
_files[_patch_index] = file;
163163
#endif
164164
} else {
165-
if (_patch_overflow == NULL) {
165+
if (_patch_overflow == nullptr) {
166166
_patch_overflow = cb->create_patch_overflow();
167167
}
168168
_patch_overflow->push(branch_loc);
@@ -179,7 +179,7 @@ void Label::patch_instructions(MacroAssembler* masm) {
179179
--_patch_index;
180180
int branch_loc;
181181
int line = 0;
182-
const char* file = NULL;
182+
const char* file = nullptr;
183183
if (_patch_index >= PatchCacheSize) {
184184
branch_loc = _patch_overflow->pop();
185185
} else {
@@ -212,7 +212,7 @@ const char* AbstractAssembler::code_string(const char* str) {
212212
if (sect() == CodeBuffer::SECT_INSTS || sect() == CodeBuffer::SECT_STUBS) {
213213
return code_section()->outer()->code_string(str);
214214
}
215-
return NULL;
215+
return nullptr;
216216
}
217217

218218
bool MacroAssembler::uses_implicit_null_check(void* address) {
@@ -221,7 +221,7 @@ bool MacroAssembler::uses_implicit_null_check(void* address) {
221221
uintptr_t addr = reinterpret_cast<uintptr_t>(address);
222222
uintptr_t page_size = (uintptr_t)os::vm_page_size();
223223
#ifdef _LP64
224-
if (UseCompressedOops && CompressedOops::base() != NULL) {
224+
if (UseCompressedOops && CompressedOops::base() != nullptr) {
225225
// A SEGV can legitimately happen in C2 code at address
226226
// (heap_base + offset) if Matcher::narrow_oop_use_complex_address
227227
// is configured to allow narrow oops field loads to be implicitly

‎src/hotspot/share/asm/assembler.hpp

+11-11
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ class Label {
145145
* @param cb the code buffer being patched
146146
* @param branch_loc the locator of the branch instruction in the code buffer
147147
*/
148-
void add_patch_at(CodeBuffer* cb, int branch_loc, const char* file = NULL, int line = 0);
148+
void add_patch_at(CodeBuffer* cb, int branch_loc, const char* file = nullptr, int line = 0);
149149

150150
/**
151151
* Iterate over the list of patches, resolving the instructions
@@ -156,7 +156,7 @@ class Label {
156156
void init() {
157157
_loc = -1;
158158
_patch_index = 0;
159-
_patch_overflow = NULL;
159+
_patch_overflow = nullptr;
160160
_is_near = false;
161161
}
162162

@@ -233,7 +233,7 @@ class AbstractAssembler : public ResourceObj {
233233

234234
public:
235235
InstructionMark(AbstractAssembler* assm) : _assm(assm) {
236-
assert(assm->inst_mark() == NULL, "overlapping instructions");
236+
assert(assm->inst_mark() == nullptr, "overlapping instructions");
237237
_assm->set_inst_mark();
238238
}
239239
~InstructionMark() {
@@ -359,7 +359,7 @@ class AbstractAssembler : public ResourceObj {
359359
// Constants in code
360360
void relocate(RelocationHolder const& rspec, int format = 0) {
361361
assert(!pd_check_instruction_mark()
362-
|| inst_mark() == NULL || inst_mark() == code_section()->end(),
362+
|| inst_mark() == nullptr || inst_mark() == code_section()->end(),
363363
"call relocate() between instructions");
364364
code_section()->relocate(code_section()->end(), rspec, format);
365365
}
@@ -396,7 +396,7 @@ class AbstractAssembler : public ResourceObj {
396396
address int_constant(jint c) {
397397
CodeSection* c1 = _code_section;
398398
address ptr = start_a_const(sizeof(c), sizeof(c));
399-
if (ptr != NULL) {
399+
if (ptr != nullptr) {
400400
emit_int32(c);
401401
end_a_const(c1);
402402
}
@@ -405,7 +405,7 @@ class AbstractAssembler : public ResourceObj {
405405
address long_constant(jlong c) {
406406
CodeSection* c1 = _code_section;
407407
address ptr = start_a_const(sizeof(c), sizeof(c));
408-
if (ptr != NULL) {
408+
if (ptr != nullptr) {
409409
emit_int64(c);
410410
end_a_const(c1);
411411
}
@@ -414,7 +414,7 @@ class AbstractAssembler : public ResourceObj {
414414
address double_constant(jdouble c) {
415415
CodeSection* c1 = _code_section;
416416
address ptr = start_a_const(sizeof(c), sizeof(c));
417-
if (ptr != NULL) {
417+
if (ptr != nullptr) {
418418
emit_double(c);
419419
end_a_const(c1);
420420
}
@@ -423,7 +423,7 @@ class AbstractAssembler : public ResourceObj {
423423
address float_constant(jfloat c) {
424424
CodeSection* c1 = _code_section;
425425
address ptr = start_a_const(sizeof(c), sizeof(c));
426-
if (ptr != NULL) {
426+
if (ptr != nullptr) {
427427
emit_float(c);
428428
end_a_const(c1);
429429
}
@@ -432,7 +432,7 @@ class AbstractAssembler : public ResourceObj {
432432
address address_constant(address c) {
433433
CodeSection* c1 = _code_section;
434434
address ptr = start_a_const(sizeof(c), sizeof(c));
435-
if (ptr != NULL) {
435+
if (ptr != nullptr) {
436436
emit_address(c);
437437
end_a_const(c1);
438438
}
@@ -441,7 +441,7 @@ class AbstractAssembler : public ResourceObj {
441441
address address_constant(address c, RelocationHolder const& rspec) {
442442
CodeSection* c1 = _code_section;
443443
address ptr = start_a_const(sizeof(c), sizeof(c));
444-
if (ptr != NULL) {
444+
if (ptr != nullptr) {
445445
relocate(rspec);
446446
emit_address(c);
447447
end_a_const(c1);
@@ -453,7 +453,7 @@ class AbstractAssembler : public ResourceObj {
453453
int len = c->length();
454454
int size = type2aelembytes(bt) * len;
455455
address ptr = start_a_const(size, alignment);
456-
if (ptr != NULL) {
456+
if (ptr != nullptr) {
457457
for (int i = 0; i < len; i++) {
458458
jvalue e = c->at(i);
459459
switch(bt) {

‎src/hotspot/share/asm/codeBuffer.cpp

+44-44
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ void CodeBuffer::initialize(csize_t code_size, csize_t locs_size) {
102102
assert(SECT_LIMIT == 3, "total_size explicitly lists all section alignments");
103103
int total_size = code_size + _consts.alignment() + _insts.alignment() + _stubs.alignment() + SECT_LIMIT * slop;
104104

105-
assert(blob() == NULL, "only once");
105+
assert(blob() == nullptr, "only once");
106106
set_blob(BufferBlob::create(_name, total_size));
107-
if (blob() == NULL) {
107+
if (blob() == nullptr) {
108108
// The assembler constructor will throw a fatal on an empty CodeBuffer.
109109
return; // caller must test this
110110
}
@@ -130,7 +130,7 @@ CodeBuffer::~CodeBuffer() {
130130
// If we allocated our code buffer from the CodeCache via a BufferBlob, and
131131
// it's not permanent, then free the BufferBlob. The rest of the memory
132132
// will be freed when the ResourceObj is released.
133-
for (CodeBuffer* cb = this; cb != NULL; cb = cb->before_expand()) {
133+
for (CodeBuffer* cb = this; cb != nullptr; cb = cb->before_expand()) {
134134
// Previous incarnations of this buffer are held live, so that internal
135135
// addresses constructed before expansions will not be confused.
136136
cb->free_blob();
@@ -171,7 +171,7 @@ void CodeBuffer::initialize_section_size(CodeSection* cs, csize_t size) {
171171

172172
void CodeBuffer::set_blob(BufferBlob* blob) {
173173
_blob = blob;
174-
if (blob != NULL) {
174+
if (blob != nullptr) {
175175
address start = blob->content_begin();
176176
address end = blob->content_end();
177177
// Round up the starting address.
@@ -191,21 +191,21 @@ void CodeBuffer::set_blob(BufferBlob* blob) {
191191
}
192192

193193
void CodeBuffer::free_blob() {
194-
if (_blob != NULL) {
194+
if (_blob != nullptr) {
195195
BufferBlob::free(_blob);
196-
set_blob(NULL);
196+
set_blob(nullptr);
197197
}
198198
}
199199

200200
const char* CodeBuffer::code_section_name(int n) {
201201
#ifdef PRODUCT
202-
return NULL;
202+
return nullptr;
203203
#else //PRODUCT
204204
switch (n) {
205205
case SECT_CONSTS: return "consts";
206206
case SECT_INSTS: return "insts";
207207
case SECT_STUBS: return "stubs";
208-
default: return NULL;
208+
default: return nullptr;
209209
}
210210
#endif //PRODUCT
211211
}
@@ -236,14 +236,14 @@ bool CodeBuffer::is_backward_branch(Label& L) {
236236
#ifndef PRODUCT
237237
address CodeBuffer::decode_begin() {
238238
address begin = _insts.start();
239-
if (_decode_begin != NULL && _decode_begin > begin)
239+
if (_decode_begin != nullptr && _decode_begin > begin)
240240
begin = _decode_begin;
241241
return begin;
242242
}
243243
#endif // !PRODUCT
244244

245245
GrowableArray<int>* CodeBuffer::create_patch_overflow() {
246-
if (_overflow_arena == NULL) {
246+
if (_overflow_arena == nullptr) {
247247
_overflow_arena = new (mtCode) Arena(mtCode);
248248
}
249249
return new (_overflow_arena) GrowableArray<int>(_overflow_arena, 8, 0, 0);
@@ -269,7 +269,7 @@ address CodeSection::target(Label& L, address branch_pc) {
269269

270270
// Need to return a pc, doesn't matter what it is since it will be
271271
// replaced during resolution later.
272-
// Don't return NULL or badAddress, since branches shouldn't overflow.
272+
// Don't return null or badAddress, since branches shouldn't overflow.
273273
// Don't return base either because that could overflow displacements
274274
// for shorter branches. It will get checked when bound.
275275
return branch_pc;
@@ -365,7 +365,7 @@ void CodeSection::relocate(address at, RelocationHolder const& spec, int format)
365365
}
366366

367367
void CodeSection::initialize_locs(int locs_capacity) {
368-
assert(_locs_start == NULL, "only one locs init step, please");
368+
assert(_locs_start == nullptr, "only one locs init step, please");
369369
// Apply a priori lower limits to relocation size:
370370
csize_t min_locs = MAX2(size() / 16, (csize_t)4);
371371
if (locs_capacity < min_locs) locs_capacity = min_locs;
@@ -377,7 +377,7 @@ void CodeSection::initialize_locs(int locs_capacity) {
377377
}
378378

379379
void CodeSection::initialize_shared_locs(relocInfo* buf, int length) {
380-
assert(_locs_start == NULL, "do this before locs are allocated");
380+
assert(_locs_start == nullptr, "do this before locs are allocated");
381381
// Internal invariant: locs buf must be fully aligned.
382382
// See copy_relocations_to() below.
383383
while ((uintptr_t)buf % HeapWordSize != 0 && length > 0) {
@@ -403,7 +403,7 @@ void CodeSection::initialize_locs_from(const CodeSection* source_cs) {
403403
}
404404

405405
void CodeSection::expand_locs(int new_capacity) {
406-
if (_locs_start == NULL) {
406+
if (_locs_start == nullptr) {
407407
initialize_locs(new_capacity);
408408
return;
409409
} else {
@@ -468,8 +468,8 @@ void CodeBuffer::compute_final_layout(CodeBuffer* dest) const {
468468
assert( (dest->_total_start - _insts.start()) % alignSize == 0, "copy must preserve alignment");
469469
}
470470

471-
const CodeSection* prev_cs = NULL;
472-
CodeSection* prev_dest_cs = NULL;
471+
const CodeSection* prev_cs = nullptr;
472+
CodeSection* prev_dest_cs = nullptr;
473473

474474
for (int n = (int) SECT_FIRST; n < (int) SECT_LIMIT; n++) {
475475
// figure compact layout of each section
@@ -481,7 +481,7 @@ void CodeBuffer::compute_final_layout(CodeBuffer* dest) const {
481481
// Compute initial padding; assign it to the previous non-empty guy.
482482
// Cf. figure_expanded_capacities.
483483
csize_t padding = cs->align_at_start(buf_offset) - buf_offset;
484-
if (prev_dest_cs != NULL) {
484+
if (prev_dest_cs != nullptr) {
485485
if (padding != 0) {
486486
buf_offset += padding;
487487
prev_dest_cs->_limit += padding;
@@ -493,7 +493,7 @@ void CodeBuffer::compute_final_layout(CodeBuffer* dest) const {
493493
prev_cs = cs;
494494
}
495495

496-
debug_only(dest_cs->_start = NULL); // defeat double-initialization assert
496+
debug_only(dest_cs->_start = nullptr); // defeat double-initialization assert
497497
dest_cs->initialize(buf+buf_offset, csize);
498498
dest_cs->set_end(buf+buf_offset+csize);
499499
assert(dest_cs->is_allocated(), "must always be allocated");
@@ -510,7 +510,7 @@ void CodeBuffer::compute_final_layout(CodeBuffer* dest) const {
510510
// Append an oop reference that keeps the class alive.
511511
static void append_oop_references(GrowableArray<oop>* oops, Klass* k) {
512512
oop cl = k->klass_holder();
513-
if (cl != NULL && !oops->contains(cl)) {
513+
if (cl != nullptr && !oops->contains(cl)) {
514514
oops->append(cl);
515515
}
516516
}
@@ -613,7 +613,7 @@ int CodeBuffer::total_skipped_instructions_size() const {
613613
}
614614

615615
csize_t CodeBuffer::total_relocation_size() const {
616-
csize_t total = copy_relocations_to(NULL); // dry run only
616+
csize_t total = copy_relocations_to(nullptr); // dry run only
617617
return (csize_t) align_up(total, HeapWordSize);
618618
}
619619

@@ -656,7 +656,7 @@ csize_t CodeBuffer::copy_relocations_to(address buf, csize_t buf_limit, bool onl
656656
} else { // else shrink the filler to fit
657657
filler = relocInfo(relocInfo::none, jump);
658658
}
659-
if (buf != NULL) {
659+
if (buf != nullptr) {
660660
assert(buf_offset + (csize_t)sizeof(filler) <= buf_limit, "filler in bounds");
661661
*(relocInfo*)(buf+buf_offset) = filler;
662662
}
@@ -671,7 +671,7 @@ csize_t CodeBuffer::copy_relocations_to(address buf, csize_t buf_limit, bool onl
671671
code_end_so_far += csize; // advance past this guy's instructions too
672672

673673
// Done with filler; emit the real relocations:
674-
if (buf != NULL && lsize != 0) {
674+
if (buf != nullptr && lsize != 0) {
675675
assert(buf_offset + lsize <= buf_limit, "target in bounds");
676676
assert((uintptr_t)lstart % HeapWordSize == 0, "sane start");
677677
if (buf_offset % HeapWordSize == 0) {
@@ -688,7 +688,7 @@ csize_t CodeBuffer::copy_relocations_to(address buf, csize_t buf_limit, bool onl
688688

689689
// Align end of relocation info in target.
690690
while (buf_offset % HeapWordSize != 0) {
691-
if (buf != NULL) {
691+
if (buf != nullptr) {
692692
relocInfo padding = relocInfo(relocInfo::none, 0);
693693
assert(buf_offset + (csize_t)sizeof(padding) <= buf_limit, "padding in bounds");
694694
*(relocInfo*)(buf+buf_offset) = padding;
@@ -702,15 +702,15 @@ csize_t CodeBuffer::copy_relocations_to(address buf, csize_t buf_limit, bool onl
702702
}
703703

704704
csize_t CodeBuffer::copy_relocations_to(CodeBlob* dest) const {
705-
address buf = NULL;
705+
address buf = nullptr;
706706
csize_t buf_offset = 0;
707707
csize_t buf_limit = 0;
708708

709-
if (dest != NULL) {
709+
if (dest != nullptr) {
710710
buf = (address)dest->relocation_begin();
711711
buf_limit = (address)dest->relocation_end() - buf;
712712
}
713-
// if dest == NULL, this is just the sizing pass
713+
// if dest is null, this is just the sizing pass
714714
//
715715
buf_offset = copy_relocations_to(buf, buf_limit, false);
716716

@@ -752,7 +752,7 @@ void CodeBuffer::copy_code_to(CodeBlob* dest_blob) {
752752
// ascending address).
753753
void CodeBuffer::relocate_code_to(CodeBuffer* dest) const {
754754
address dest_end = dest->_total_start + dest->_total_size;
755-
address dest_filled = NULL;
755+
address dest_filled = nullptr;
756756
for (int n = (int) SECT_FIRST; n < (int) SECT_LIMIT; n++) {
757757
// pull code out of each section
758758
const CodeSection* cs = code_section(n);
@@ -768,7 +768,7 @@ void CodeBuffer::relocate_code_to(CodeBuffer* dest) const {
768768
(HeapWord*)dest_cs->start(),
769769
wsize / HeapWordSize);
770770

771-
if (dest->blob() == NULL) {
771+
if (dest->blob() == nullptr) {
772772
// Destination is a final resting place, not just another buffer.
773773
// Normalize uninitialized bytes in the final padding.
774774
Copy::fill_to_bytes(dest_cs->end(), dest_cs->remaining(),
@@ -802,7 +802,7 @@ void CodeBuffer::relocate_code_to(CodeBuffer* dest) const {
802802
}
803803
}
804804

805-
if (dest->blob() == NULL && dest_filled != NULL) {
805+
if (dest->blob() == nullptr && dest_filled != nullptr) {
806806
// Destination is a final resting place, not just another buffer.
807807
// Normalize uninitialized bytes in the final padding.
808808
Copy::fill_to_bytes(dest_filled, dest_end - dest_filled,
@@ -865,7 +865,7 @@ void CodeBuffer::expand(CodeSection* which_cs, csize_t amount) {
865865
this->print();
866866
}
867867

868-
if (StressCodeBuffers && blob() != NULL) {
868+
if (StressCodeBuffers && blob() != nullptr) {
869869
static int expand_count = 0;
870870
if (expand_count >= 0) expand_count += 1;
871871
if (expand_count > 100 && is_power_of_2(expand_count)) {
@@ -878,7 +878,7 @@ void CodeBuffer::expand(CodeSection* which_cs, csize_t amount) {
878878

879879
// Resizing must be allowed
880880
{
881-
if (blob() == NULL) return; // caller must check for blob == NULL
881+
if (blob() == nullptr) return; // caller must check if blob is null
882882
}
883883

884884
// Figure new capacity for each section.
@@ -889,7 +889,7 @@ void CodeBuffer::expand(CodeSection* which_cs, csize_t amount) {
889889

890890
// Create a new (temporary) code buffer to hold all the new data
891891
CodeBuffer cb(name(), new_total_cap, 0);
892-
if (cb.blob() == NULL) {
892+
if (cb.blob() == nullptr) {
893893
// Failed to allocate in code cache.
894894
free_blob();
895895
return;
@@ -901,7 +901,7 @@ void CodeBuffer::expand(CodeSection* which_cs, csize_t amount) {
901901
// has been created at any time in this CodeBuffer's past.
902902
CodeBuffer* bxp = new CodeBuffer(_total_start, _total_size);
903903
bxp->take_over_code_from(this); // remember the old undersized blob
904-
DEBUG_ONLY(this->_blob = NULL); // silence a later assert
904+
DEBUG_ONLY(this->_blob = nullptr); // silence a later assert
905905
bxp->_before_expand = this->_before_expand;
906906
this->_before_expand = bxp;
907907

@@ -916,7 +916,7 @@ void CodeBuffer::expand(CodeSection* which_cs, csize_t amount) {
916916
assert(cb_sect->capacity() >= new_capacity[n], "big enough");
917917
address cb_start = cb_sect->start();
918918
cb_sect->set_end(cb_start + this_sect->size());
919-
if (this_sect->mark() == NULL) {
919+
if (this_sect->mark() == nullptr) {
920920
cb_sect->clear_mark();
921921
} else {
922922
cb_sect->set_mark(cb_start + this_sect->mark_off());
@@ -932,7 +932,7 @@ void CodeBuffer::expand(CodeSection* which_cs, csize_t amount) {
932932
// Copy the temporary code buffer into the current code buffer.
933933
// Basically, do {*this = cb}, except for some control information.
934934
this->take_over_code_from(&cb);
935-
cb.set_blob(NULL);
935+
cb.set_blob(nullptr);
936936

937937
// Zap the old code buffer contents, to avoid mistakenly using them.
938938
debug_only(Copy::fill_to_bytes(bxp->_total_start, bxp->_total_size,
@@ -942,7 +942,7 @@ void CodeBuffer::expand(CodeSection* which_cs, csize_t amount) {
942942
debug_only(verify_section_allocation();)
943943

944944
#ifndef PRODUCT
945-
_decode_begin = NULL; // sanity
945+
_decode_begin = nullptr; // sanity
946946
if (PrintNMethods && (WizardMode || Verbose)) {
947947
tty->print("expanded CodeBuffer:");
948948
this->print();
@@ -952,7 +952,7 @@ void CodeBuffer::expand(CodeSection* which_cs, csize_t amount) {
952952

953953
void CodeBuffer::take_over_code_from(CodeBuffer* cb) {
954954
// Must already have disposed of the old blob somehow.
955-
assert(blob() == NULL, "must be empty");
955+
assert(blob() == nullptr, "must be empty");
956956
// Take the new blob away from cb.
957957
set_blob(cb->blob());
958958
// Take over all the section pointers.
@@ -962,16 +962,16 @@ void CodeBuffer::take_over_code_from(CodeBuffer* cb) {
962962
this_sect->take_over_code_from(cb_sect);
963963
}
964964
_overflow_arena = cb->_overflow_arena;
965-
cb->_overflow_arena = NULL;
965+
cb->_overflow_arena = nullptr;
966966
// Make sure the old cb won't try to use it or free it.
967967
DEBUG_ONLY(cb->_blob = (BufferBlob*)badAddress);
968968
}
969969

970970
void CodeBuffer::verify_section_allocation() {
971971
address tstart = _total_start;
972-
if (tstart == badAddress) return; // smashed by set_blob(NULL)
972+
if (tstart == badAddress) return; // smashed by set_blob(nullptr)
973973
address tend = tstart + _total_size;
974-
if (_blob != NULL) {
974+
if (_blob != nullptr) {
975975
guarantee(tstart >= _blob->content_begin(), "sanity");
976976
guarantee(tend <= _blob->content_end(), "sanity");
977977
}
@@ -996,7 +996,7 @@ void CodeBuffer::verify_section_allocation() {
996996
}
997997

998998
void CodeBuffer::log_section_sizes(const char* name) {
999-
if (xtty != NULL) {
999+
if (xtty != nullptr) {
10001000
ttyLocker ttyl;
10011001
// log info about buffer usage
10021002
xtty->print_cr("<blob name='%s' total_size='%d'>", name, _total_size);
@@ -1020,7 +1020,7 @@ bool CodeBuffer::finalize_stubs() {
10201020
}
10211021

10221022
void CodeBuffer::shared_stub_to_interp_for(ciMethod* callee, csize_t call_offset) {
1023-
if (_shared_stub_to_interp_requests == NULL) {
1023+
if (_shared_stub_to_interp_requests == nullptr) {
10241024
_shared_stub_to_interp_requests = new SharedStubToInterpRequests(8);
10251025
}
10261026
SharedStubToInterpRequest request(callee, call_offset);
@@ -1061,8 +1061,8 @@ void CodeSection::print(const char* name) {
10611061
}
10621062

10631063
void CodeBuffer::print() {
1064-
if (this == NULL) {
1065-
tty->print_cr("NULL CodeBuffer pointer");
1064+
if (this == nullptr) {
1065+
tty->print_cr("null CodeBuffer pointer");
10661066
return;
10671067
}
10681068

‎src/hotspot/share/asm/codeBuffer.hpp

+32-32
Original file line numberDiff line numberDiff line change
@@ -110,14 +110,14 @@ class CodeSection {
110110
// (Note: _locs_point used to be called _last_reloc_offset.)
111111

112112
CodeSection() {
113-
_start = NULL;
114-
_mark = NULL;
115-
_end = NULL;
116-
_limit = NULL;
117-
_locs_start = NULL;
118-
_locs_end = NULL;
119-
_locs_limit = NULL;
120-
_locs_point = NULL;
113+
_start = nullptr;
114+
_mark = nullptr;
115+
_end = nullptr;
116+
_limit = nullptr;
117+
_locs_start = nullptr;
118+
_locs_end = nullptr;
119+
_locs_limit = nullptr;
120+
_locs_point = nullptr;
121121
_locs_own = false;
122122
_scratch_emit = false;
123123
_skipped_instructions_size = 0;
@@ -131,9 +131,9 @@ class CodeSection {
131131
}
132132

133133
void initialize(address start, csize_t size = 0) {
134-
assert(_start == NULL, "only one init step, please");
134+
assert(_start == nullptr, "only one init step, please");
135135
_start = start;
136-
_mark = NULL;
136+
_mark = nullptr;
137137
_end = start;
138138

139139
_limit = start + size;
@@ -160,7 +160,7 @@ class CodeSection {
160160
address end() const { return _end; }
161161
address limit() const { return _limit; }
162162
csize_t size() const { return (csize_t)(_end - _start); }
163-
csize_t mark_off() const { assert(_mark != NULL, "not an offset");
163+
csize_t mark_off() const { assert(_mark != nullptr, "not an offset");
164164
return (csize_t)(_mark - _start); }
165165
csize_t capacity() const { return (csize_t)(_limit - _start); }
166166
csize_t remaining() const { return (csize_t)(_limit - _end); }
@@ -174,9 +174,9 @@ class CodeSection {
174174
csize_t locs_capacity() const { return (csize_t)(_locs_limit - _locs_start); }
175175

176176
int index() const { return _index; }
177-
bool is_allocated() const { return _start != NULL; }
177+
bool is_allocated() const { return _start != nullptr; }
178178
bool is_empty() const { return _start == _end; }
179-
bool has_locs() const { return _locs_end != NULL; }
179+
bool has_locs() const { return _locs_end != nullptr; }
180180

181181
// Mark scratch buffer.
182182
void set_scratch_emit() { _scratch_emit = true; }
@@ -201,7 +201,7 @@ class CodeSection {
201201
void set_mark(address pc) { assert(contains2(pc), "not in codeBuffer");
202202
_mark = pc; }
203203
void set_mark() { _mark = _end; }
204-
void clear_mark() { _mark = NULL; }
204+
void clear_mark() { _mark = nullptr; }
205205

206206
void set_locs_end(relocInfo* p) {
207207
assert(p <= locs_limit(), "locs data fits in allocated buffer");
@@ -450,16 +450,16 @@ class CodeBuffer: public StackObj DEBUG_ONLY(COMMA private Scrubber) {
450450

451451
void initialize_misc(const char * name) {
452452
// all pointers other than code_start/end and those inside the sections
453-
assert(name != NULL, "must have a name");
453+
assert(name != nullptr, "must have a name");
454454
_name = name;
455-
_before_expand = NULL;
456-
_blob = NULL;
457-
_oop_recorder = NULL;
458-
_overflow_arena = NULL;
459-
_last_insn = NULL;
455+
_before_expand = nullptr;
456+
_blob = nullptr;
457+
_oop_recorder = nullptr;
458+
_overflow_arena = nullptr;
459+
_last_insn = nullptr;
460460
_finalize_stubs = false;
461-
_shared_stub_to_interp_requests = NULL;
462-
_shared_trampoline_requests = NULL;
461+
_shared_stub_to_interp_requests = nullptr;
462+
_shared_trampoline_requests = nullptr;
463463

464464
_consts.initialize_outer(this, SECT_CONSTS);
465465
_insts.initialize_outer(this, SECT_INSTS);
@@ -470,7 +470,7 @@ class CodeBuffer: public StackObj DEBUG_ONLY(COMMA private Scrubber) {
470470
_const_section_alignment = (int) sizeof(jdouble);
471471

472472
#ifndef PRODUCT
473-
_decode_begin = NULL;
473+
_decode_begin = nullptr;
474474
// Collect block comments, but restrict collection to cases where a disassembly is output.
475475
_collect_comments = ( PrintAssembly
476476
|| PrintStubCode
@@ -525,7 +525,7 @@ class CodeBuffer: public StackObj DEBUG_ONLY(COMMA private Scrubber) {
525525
CodeBuffer(address code_start, csize_t code_size)
526526
DEBUG_ONLY(: Scrubber(this, sizeof(*this)))
527527
{
528-
assert(code_start != NULL, "sanity");
528+
assert(code_start != nullptr, "sanity");
529529
initialize_misc("static buffer");
530530
initialize(code_start, code_size);
531531
debug_only(verify_section_allocation();)
@@ -567,7 +567,7 @@ class CodeBuffer: public StackObj DEBUG_ONLY(COMMA private Scrubber) {
567567

568568
const CodeSection* insts() const { return &_insts; }
569569

570-
// present sections in order; return NULL at end; consts is #0, etc.
570+
// present sections in order; return null at end; consts is #0, etc.
571571
CodeSection* code_section(int n) {
572572
// This makes the slightly questionable but portable assumption
573573
// that the various members (_consts, _insts, _stubs, etc.) are
@@ -592,7 +592,7 @@ class CodeBuffer: public StackObj DEBUG_ONLY(COMMA private Scrubber) {
592592
static int locator(int pos, int sect) { return (pos << sect_bits) | sect; }
593593
int locator(address addr) const;
594594
address locator_address(int locator) const {
595-
if (locator < 0) return NULL;
595+
if (locator < 0) return nullptr;
596596
address start = code_section(locator_sect(locator))->start();
597597
return start + locator_pos(locator);
598598
}
@@ -656,13 +656,13 @@ class CodeBuffer: public StackObj DEBUG_ONLY(COMMA private Scrubber) {
656656
// allocated size of any and all recorded oops
657657
csize_t total_oop_size() const {
658658
OopRecorder* recorder = oop_recorder();
659-
return (recorder == NULL)? 0: recorder->oop_size();
659+
return (recorder == nullptr)? 0: recorder->oop_size();
660660
}
661661

662662
// allocated size of any and all recorded metadata
663663
csize_t total_metadata_size() const {
664664
OopRecorder* recorder = oop_recorder();
665-
return (recorder == NULL)? 0: recorder->metadata_size();
665+
return (recorder == nullptr)? 0: recorder->metadata_size();
666666
}
667667

668668
// Configuration functions, called immediately after the CB is constructed.
@@ -677,7 +677,7 @@ class CodeBuffer: public StackObj DEBUG_ONLY(COMMA private Scrubber) {
677677

678678
address last_insn() const { return _last_insn; }
679679
void set_last_insn(address a) { _last_insn = a; }
680-
void clear_last_insn() { set_last_insn(NULL); }
680+
void clear_last_insn() { set_last_insn(nullptr); }
681681

682682
#ifndef PRODUCT
683683
AsmRemarks &asm_remarks() { return _asm_remarks; }
@@ -702,7 +702,7 @@ class CodeBuffer: public StackObj DEBUG_ONLY(COMMA private Scrubber) {
702702

703703
// NMethod generation
704704
void copy_code_and_locs_to(CodeBlob* blob) {
705-
assert(blob != NULL, "sane");
705+
assert(blob != nullptr, "sane");
706706
copy_relocations_to(blob);
707707
copy_code_to(blob);
708708
}
@@ -713,7 +713,7 @@ class CodeBuffer: public StackObj DEBUG_ONLY(COMMA private Scrubber) {
713713
}
714714

715715
void block_comment(ptrdiff_t offset, const char* comment) PRODUCT_RETURN;
716-
const char* code_string(const char* str) PRODUCT_RETURN_(return NULL;);
716+
const char* code_string(const char* str) PRODUCT_RETURN_(return nullptr;);
717717

718718
// Log a little info about section usage in the CodeBuffer
719719
void log_section_sizes(const char* name);
@@ -753,7 +753,7 @@ class SharedStubToInterpRequest : public ResourceObj {
753753
CodeBuffer::csize_t _call_offset; // The offset of the call in CodeBuffer
754754

755755
public:
756-
SharedStubToInterpRequest(ciMethod* method = NULL, CodeBuffer::csize_t call_offset = -1) : _shared_method(method),
756+
SharedStubToInterpRequest(ciMethod* method = nullptr, CodeBuffer::csize_t call_offset = -1) : _shared_method(method),
757757
_call_offset(call_offset) {}
758758

759759
ciMethod* shared_method() const { return _shared_method; }

‎src/hotspot/share/asm/codeBuffer.inline.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
template <typename MacroAssembler, int relocate_format = 0>
3535
bool emit_shared_stubs_to_interp(CodeBuffer* cb, SharedStubToInterpRequests* shared_stub_to_interp_requests) {
36-
if (shared_stub_to_interp_requests == NULL) {
36+
if (shared_stub_to_interp_requests == nullptr) {
3737
return true;
3838
}
3939
auto by_shared_method = [](SharedStubToInterpRequest* r1, SharedStubToInterpRequest* r2) {
@@ -49,7 +49,7 @@ bool emit_shared_stubs_to_interp(CodeBuffer* cb, SharedStubToInterpRequests* sha
4949
MacroAssembler masm(cb);
5050
for (int i = 0; i < shared_stub_to_interp_requests->length();) {
5151
address stub = __ start_a_stub(CompiledStaticCall::to_interp_stub_size());
52-
if (stub == NULL) {
52+
if (stub == nullptr) {
5353
return false;
5454
}
5555

0 commit comments

Comments
 (0)
Please sign in to comment.