comparison src/share/vm/memory/metachunk.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents ce86c36b8921
children 52b4284cb496
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
141 #ifdef ASSERT 141 #ifdef ASSERT
142 bool is_tagged_free() { return _is_tagged_free; } 142 bool is_tagged_free() { return _is_tagged_free; }
143 void set_is_tagged_free(bool v) { _is_tagged_free = v; } 143 void set_is_tagged_free(bool v) { _is_tagged_free = v; }
144 #endif 144 #endif
145 145
146 bool contains(const void* ptr) { return bottom() <= ptr && ptr < _top; }
147
148 NOT_PRODUCT(void mangle();) 146 NOT_PRODUCT(void mangle();)
149 147
150 void print_on(outputStream* st) const; 148 void print_on(outputStream* st) const;
151 void verify(); 149 void verify();
152 }; 150 };