src/share/vm/gc_implementation/g1/g1BiasedArray.cpp

changeset 9327
f96fcd9e1e1b
parent 6680
78bbf4d43a14
child 9448
73d689add964
     1.1 --- a/src/share/vm/gc_implementation/g1/g1BiasedArray.cpp	Tue Feb 23 18:58:36 2016 -0500
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1BiasedArray.cpp	Thu Jun 14 09:15:08 2018 -0700
     1.3 @@ -36,19 +36,19 @@
     1.4  #ifndef PRODUCT
     1.5  void G1BiasedMappedArrayBase::verify_index(idx_t index) const {
     1.6    guarantee(_base != NULL, "Array not initialized");
     1.7 -  guarantee(index < length(), err_msg("Index out of bounds index: "SIZE_FORMAT" length: "SIZE_FORMAT, index, length()));
     1.8 +  guarantee(index < length(), err_msg("Index out of bounds index: " SIZE_FORMAT " length: " SIZE_FORMAT, index, length()));
     1.9  }
    1.10  
    1.11  void G1BiasedMappedArrayBase::verify_biased_index(idx_t biased_index) const {
    1.12    guarantee(_biased_base != NULL, "Array not initialized");
    1.13    guarantee(biased_index >= bias() && biased_index < (bias() + length()),
    1.14 -    err_msg("Biased index out of bounds, index: "SIZE_FORMAT" bias: "SIZE_FORMAT" length: "SIZE_FORMAT, biased_index, bias(), length()));
    1.15 +    err_msg("Biased index out of bounds, index: " SIZE_FORMAT " bias: " SIZE_FORMAT " length: " SIZE_FORMAT, biased_index, bias(), length()));
    1.16  }
    1.17  
    1.18  void G1BiasedMappedArrayBase::verify_biased_index_inclusive_end(idx_t biased_index) const {
    1.19    guarantee(_biased_base != NULL, "Array not initialized");
    1.20    guarantee(biased_index >= bias() && biased_index <= (bias() + length()),
    1.21 -    err_msg("Biased index out of inclusive bounds, index: "SIZE_FORMAT" bias: "SIZE_FORMAT" length: "SIZE_FORMAT, biased_index, bias(), length()));
    1.22 +    err_msg("Biased index out of inclusive bounds, index: " SIZE_FORMAT " bias: " SIZE_FORMAT " length: " SIZE_FORMAT, biased_index, bias(), length()));
    1.23  }
    1.24  
    1.25  class TestMappedArray : public G1BiasedMappedArray<int> {

mercurial