8025564: gc/memory/UniThread/Linear1 times out during heap verification

Reviewed-by: stefank, tschatzl
This commit is contained in:
Bengt Rutisson 2014-09-08 10:41:06 +02:00
parent 98f413fa1f
commit ff1498ba6b
3 changed files with 42 additions and 41 deletions

View file

@ -304,14 +304,10 @@ public:
virtual HeapWord* block_start_unsafe(const void* addr);
virtual HeapWord* block_start_unsafe_const(const void* addr) const;
// Used by region verification. Checks that the contents of the
// BOT reflect that there's a single object that spans the address
// range [obj_start, obj_start + word_size); returns true if this is
// the case, returns false if it's not.
bool verify_for_object(HeapWord* obj_start, size_t word_size) const;
void check_all_cards(size_t left_card, size_t right_card) const;
void verify() const;
virtual void print_on(outputStream* out) PRODUCT_RETURN;
};