Searched refs:is_free (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DfreeChunk.hpp78 return ((volatile FreeChunk*)addr)->is_free();
81 bool is_free() const volatile { function in class:VALUE_OBJ_CLASS_SPEC
86 assert(is_free(), "can't get coalesce bit on not free");
91 assert(is_free(), "Should look like a free block");
132 assert(!is_free(), "Error");
H A DpromotionInfo.hpp46 // when we are using compressed oops; see FreeChunk::is_free().
68 assert(!((FreeChunk*)this)->is_free(), "Error");
88 assert(!((FreeChunk*)this)->is_free(), "Error");
92 assert(!((FreeChunk*)this)->is_free(), "Error");
95 assert(!((FreeChunk*)this)->is_free(), "Error");
100 assert(!((FreeChunk*)this)->is_free(), "Error");
103 assert(!((FreeChunk*)this)->is_free(), "Error");
108 assert(!((FreeChunk*)this)->is_free(), "Error");
H A DcompactibleFreeListSpace.cpp373 return fc->is_free();
920 if (fc->is_free()) {
962 if (fc->is_free()) {
1078 if (fc->is_free()) {
1169 if (!fc->is_free()) {
1231 assert(!fc->is_free(), "shouldn't be marked free");
1343 assert(ret == NULL || ret->is_free(), "Should be returning a free chunk");
1362 assert(ret->is_free(), "This chunk should be free");
1365 assert(ret == NULL || ret->is_free(), "Should be returning a free chunk");
1421 assert(fc->is_free(), "Shoul
[all...]
H A DconcurrentMarkSweepGeneration.cpp1029 assert(!((FreeChunk*)res)->is_free(), "Error, block will look free but show wrong size");
1394 assert(!((FreeChunk*)obj_ptr)->is_free(), "Error, block will look free but show wrong size");
1403 assert(!((FreeChunk*)obj_ptr)->is_free(), "Error, block will look free but show wrong size");
1424 assert(!((FreeChunk*)obj_ptr)->is_free(), "Error, block will look free but show wrong size");
8057 assert(fc->is_free(), "A chunk on the free list should be free.");
8129 if (fc->is_free()) {
8243 nextChunk->is_free() && // ... which is free...
8423 const bool fcInFreeLists = fc->is_free();
8531 assert(eob == _limit || fc->is_free(), "Only a free chunk should allow us to cross over the limit");
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp256 assert(res == NULL || res->is_free(),
269 assert(chunk->is_free(), "Should still be a free chunk");
H A DbinaryTreeDictionary.cpp111 assert(tc->is_free(), "Header is not marked correctly");
168 assert(nextTC->is_free(), "Should be a free chunk");
210 assert(tc->is_free(), "Should still be a free chunk");
459 assert(retTC->is_free(), "Header is not marked correctly");
517 assert(tc->is_free(), "Header is not marked correctly");
543 assert(tc->is_free(), "Chunk should still be free");
1297 assert(curFC->prev() == NULL || curFC->prev()->is_free(),
1319 guarantee(tl->head() == NULL || tl->head()->is_free(), "!Free");
H A DfreeList.cpp175 assert(fc->is_free(), "Should still be a free chunk");

Completed in 76 milliseconds