1 /*
2 * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 #include "precompiled.hpp"
26 #include "gc/g1/g1CardTable.hpp"
27 #include "gc/g1/g1CollectedHeap.inline.hpp"
28 #include "gc/shared/memset_with_concurrent_readers.hpp"
29 #include "logging/log.hpp"
30
g1_mark_as_young(const MemRegion & mr)31 void G1CardTable::g1_mark_as_young(const MemRegion& mr) {
32 CardValue *const first = byte_for(mr.start());
33 CardValue *const last = byte_after(mr.last());
34
35 memset_with_concurrent_readers(first, g1_young_gen, last - first);
36 }
37
38 #ifndef PRODUCT
verify_g1_young_region(MemRegion mr)39 void G1CardTable::verify_g1_young_region(MemRegion mr) {
40 verify_region(mr, g1_young_gen, true);
41 }
42 #endif
43
on_commit(uint start_idx,size_t num_regions,bool zero_filled)44 void G1CardTableChangedListener::on_commit(uint start_idx, size_t num_regions, bool zero_filled) {
45 // Default value for a clean card on the card table is -1. So we cannot take advantage of the zero_filled parameter.
46 MemRegion mr(G1CollectedHeap::heap()->bottom_addr_for_region(start_idx), num_regions * HeapRegion::GrainWords);
47 _card_table->clear(mr);
48 }
49
initialize(G1RegionToSpaceMapper * mapper)50 void G1CardTable::initialize(G1RegionToSpaceMapper* mapper) {
51 mapper->set_mapping_changed_listener(&_listener);
52
53 _byte_map_size = mapper->reserved().byte_size();
54
55 _guard_index = cards_required(_whole_heap.word_size()) - 1;
56 _last_valid_index = _guard_index - 1;
57
58 HeapWord* low_bound = _whole_heap.start();
59 HeapWord* high_bound = _whole_heap.end();
60
61 _cur_covered_regions = 1;
62 _covered[0] = _whole_heap;
63
64 _byte_map = (CardValue*) mapper->reserved().start();
65 _byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
66 assert(byte_for(low_bound) == &_byte_map[0], "Checking start of map");
67 assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map");
68
69 log_trace(gc, barrier)("G1CardTable::G1CardTable: ");
70 log_trace(gc, barrier)(" &_byte_map[0]: " INTPTR_FORMAT " &_byte_map[_last_valid_index]: " INTPTR_FORMAT,
71 p2i(&_byte_map[0]), p2i(&_byte_map[_last_valid_index]));
72 log_trace(gc, barrier)(" _byte_map_base: " INTPTR_FORMAT, p2i(_byte_map_base));
73 }
74
is_in_young(oop obj) const75 bool G1CardTable::is_in_young(oop obj) const {
76 volatile CardValue* p = byte_for(obj);
77 return *p == G1CardTable::g1_young_card_val();
78 }
79