mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
Need to add a space between macro identifier and string literal Reviewed-by: stefank, dholmes, kbarrett
This commit is contained in:
parent
912d770499
commit
304b59b0c8
85 changed files with 462 additions and 462 deletions
|
@ -90,7 +90,7 @@ protected:
|
|||
// concurrency.
|
||||
|
||||
if (G1TraceHeapRegionRememberedSet) {
|
||||
gclog_or_tty->print_cr(" PRT::Add_reference_work(" PTR_FORMAT "->" PTR_FORMAT").",
|
||||
gclog_or_tty->print_cr(" PRT::Add_reference_work(" PTR_FORMAT "->" PTR_FORMAT ").",
|
||||
p2i(from),
|
||||
UseCompressedOops
|
||||
? p2i(oopDesc::load_decode_heap_oop((narrowOop*)from))
|
||||
|
@ -376,7 +376,7 @@ void FromCardCache::initialize(uint n_par_rs, uint max_num_regions) {
|
|||
|
||||
void FromCardCache::invalidate(uint start_idx, size_t new_num_regions) {
|
||||
guarantee((size_t)start_idx + new_num_regions <= max_uintx,
|
||||
err_msg("Trying to invalidate beyond maximum region, from %u size "SIZE_FORMAT,
|
||||
err_msg("Trying to invalidate beyond maximum region, from %u size " SIZE_FORMAT,
|
||||
start_idx, new_num_regions));
|
||||
for (uint i = 0; i < HeapRegionRemSet::num_par_rem_sets(); i++) {
|
||||
uint end_idx = (start_idx + (uint)new_num_regions);
|
||||
|
@ -630,13 +630,13 @@ void OtherRegionsTable::scrub(CardTableModRefBS* ctbs,
|
|||
|
||||
assert(_coarse_map.size() == region_bm->size(), "Precondition");
|
||||
if (G1RSScrubVerbose) {
|
||||
gclog_or_tty->print(" Coarse map: before = "SIZE_FORMAT"...",
|
||||
gclog_or_tty->print(" Coarse map: before = " SIZE_FORMAT "...",
|
||||
_n_coarse_entries);
|
||||
}
|
||||
_coarse_map.set_intersection(*region_bm);
|
||||
_n_coarse_entries = _coarse_map.count_one_bits();
|
||||
if (G1RSScrubVerbose) {
|
||||
gclog_or_tty->print_cr(" after = "SIZE_FORMAT".", _n_coarse_entries);
|
||||
gclog_or_tty->print_cr(" after = " SIZE_FORMAT ".", _n_coarse_entries);
|
||||
}
|
||||
|
||||
// Now do the fine-grained maps.
|
||||
|
@ -1013,7 +1013,7 @@ bool HeapRegionRemSetIterator::fine_has_next(size_t& card_index) {
|
|||
|
||||
card_index = _cur_region_card_offset + _cur_card_in_prt;
|
||||
guarantee(_cur_card_in_prt < HeapRegion::CardsPerRegion,
|
||||
err_msg("Card index "SIZE_FORMAT" must be within the region", _cur_card_in_prt));
|
||||
err_msg("Card index " SIZE_FORMAT " must be within the region", _cur_card_in_prt));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -1182,8 +1182,8 @@ void PerRegionTable::test_fl_mem_size() {
|
|||
|
||||
size_t min_prt_size = sizeof(void*) + dummy->bm()->size_in_words() * HeapWordSize;
|
||||
assert(dummy->mem_size() > min_prt_size,
|
||||
err_msg("PerRegionTable memory usage is suspiciously small, only has "SIZE_FORMAT" bytes. "
|
||||
"Should be at least "SIZE_FORMAT" bytes.", dummy->mem_size(), min_prt_size));
|
||||
err_msg("PerRegionTable memory usage is suspiciously small, only has " SIZE_FORMAT " bytes. "
|
||||
"Should be at least " SIZE_FORMAT " bytes.", dummy->mem_size(), min_prt_size));
|
||||
free(dummy);
|
||||
guarantee(dummy->mem_size() == fl_mem_size(), "fl_mem_size() does not return the correct element size");
|
||||
// try to reset the state
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue