src/hotspot/share/gc/z/zPage.hpp
changeset 57903 5e2576c303a2
parent 54834 39ba09047e19
child 58708 f74ec3cbfcc0
equal deleted inserted replaced
57901:53ed0cf870b0 57903:5e2576c303a2
    88   ZPage* split(size_t size);
    88   ZPage* split(size_t size);
    89   ZPage* split(uint8_t type, size_t size);
    89   ZPage* split(uint8_t type, size_t size);
    90 
    90 
    91   bool is_in(uintptr_t addr) const;
    91   bool is_in(uintptr_t addr) const;
    92 
    92 
    93   uintptr_t block_start(uintptr_t addr) const;
       
    94   bool block_is_obj(uintptr_t addr) const;
       
    95 
       
    96   bool is_marked() const;
    93   bool is_marked() const;
    97   bool is_object_live(uintptr_t addr) const;
    94   bool is_object_live(uintptr_t addr) const;
    98   bool is_object_strongly_live(uintptr_t addr) const;
    95   bool is_object_strongly_live(uintptr_t addr) const;
    99   bool mark_object(uintptr_t addr, bool finalizable, bool& inc_live);
    96   bool mark_object(uintptr_t addr, bool finalizable, bool& inc_live);
   100 
    97