hotspot/src/share/vm/classfile/compactHashtable.cpp
changeset 39615 9ab0913a0e65
parent 38647 e17e25c51396
child 42565 b433edc423da
equal deleted inserted replaced
39452:eebe070746ad 39615:9ab0913a0e65
   246     if (bucket_type == VALUE_ONLY_BUCKET_TYPE) {
   246     if (bucket_type == VALUE_ONLY_BUCKET_TYPE) {
   247       iterator.do_value(_base_address, entry[0]);
   247       iterator.do_value(_base_address, entry[0]);
   248     } else {
   248     } else {
   249       u4*entry_max = _entries + BUCKET_OFFSET(_buckets[i + 1]);
   249       u4*entry_max = _entries + BUCKET_OFFSET(_buckets[i + 1]);
   250       while (entry < entry_max) {
   250       while (entry < entry_max) {
   251         iterator.do_value(_base_address, entry[0]);
   251         iterator.do_value(_base_address, entry[1]);
   252         entry += 2;
   252         entry += 2;
   253       }
   253       }
   254     }
   254     }
   255   }
   255   }
   256 }
   256 }