g1ParScanThreadState.hpp (8869:ad916ca3715b) g1ParScanThreadState.hpp (8870:57093b085a8f)
1/*
2 * Copyright (c) 2014, 2015, 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 *

--- 73 unchanged lines hidden (view full) ---

82 }
83
84 public:
85 G1ParScanThreadState(G1CollectedHeap* g1h, uint worker_id);
86 ~G1ParScanThreadState();
87
88 void set_ref_processor(ReferenceProcessor* rp) { _scanner.set_ref_processor(rp); }
89
1/*
2 * Copyright (c) 2014, 2015, 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 *

--- 73 unchanged lines hidden (view full) ---

82 }
83
84 public:
85 G1ParScanThreadState(G1CollectedHeap* g1h, uint worker_id);
86 ~G1ParScanThreadState();
87
88 void set_ref_processor(ReferenceProcessor* rp) { _scanner.set_ref_processor(rp); }
89
90 ageTable* age_table() { return &_age_table; }
91
92#ifdef ASSERT
93 bool queue_is_empty() const { return _refs->is_empty(); }
94
95 bool verify_ref(narrowOop* ref) const;
96 bool verify_ref(oop* ref) const;
97 bool verify_task(StarTask ref) const;
98#endif // ASSERT
99

--- 91 unchanged lines hidden ---
90#ifdef ASSERT
91 bool queue_is_empty() const { return _refs->is_empty(); }
92
93 bool verify_ref(narrowOop* ref) const;
94 bool verify_ref(oop* ref) const;
95 bool verify_task(StarTask ref) const;
96#endif // ASSERT
97

--- 91 unchanged lines hidden ---