< prev index next >

src/share/vm/gc/shared/space.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 445,454 **** --- 445,457 ---- HeapWord* compact_top); // Return a size with adjustments as required of the space. virtual size_t adjust_object_size_v(size_t size) const { return size; } + void set_first_dead(HeapWord* value) { _first_dead = value; } + void set_end_of_live(HeapWord* value) { _end_of_live = value; } + protected: // Used during compaction. HeapWord* _first_dead; HeapWord* _end_of_live;
< prev index next >