Searched refs:proxy_set (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.cpp219 void HeapRegionSet::update_from_proxy(HeapRegionSet* proxy_set) { argument
221 hrs_assert_mt_safety_ok(proxy_set);
222 hrs_assert_sets_match(this, proxy_set);
225 proxy_set->verify_optional();
227 if (proxy_set->is_empty()) return;
229 assert(proxy_set->length() <= _length,
231 name(), proxy_set->length(), _length));
232 _length -= proxy_set->length();
234 assert(proxy_set->region_num() <= _region_num,
236 name(), proxy_set
[all...]
H A DheapRegionSet.inline.hpp91 HeapRegionSet* proxy_set) {
94 // the changes in proxy_set which is assumed to be thread-local.
95 hrs_assert_sets_match(this, proxy_set);
99 proxy_set->update_for_addition(hr);
90 remove_with_proxy(HeapRegion* hr, HeapRegionSet* proxy_set) argument
H A DheapRegionSet.hpp263 // in proxy_set. The idea is that proxy_set is thread-local to
267 // proxy_set.
268 inline void remove_with_proxy(HeapRegion* hr, HeapRegionSet* proxy_set);
271 // fields of the set are accumulated in proxy_set. This call
272 // updates the fields of the set from proxy_set.
273 void update_from_proxy(HeapRegionSet* proxy_set);

Completed in 503 milliseconds