2014-03-17 10:12:21 +01:00
|
|
|
/*
|
2016-08-29 20:15:12 +03:00
|
|
|
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
|
2014-03-17 10:12:21 +01:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#ifndef SHARE_VM_GC_G1_G1CODECACHEREMSET_HPP
|
|
|
|
#define SHARE_VM_GC_G1_G1CODECACHEREMSET_HPP
|
2014-03-17 10:12:21 +01:00
|
|
|
|
|
|
|
#include "memory/allocation.hpp"
|
|
|
|
|
|
|
|
class CodeBlobClosure;
|
2016-08-29 20:15:12 +03:00
|
|
|
class G1CodeRootSetTable;
|
2014-08-29 13:12:21 +02:00
|
|
|
class HeapRegion;
|
|
|
|
class nmethod;
|
2014-04-16 10:14:50 +02:00
|
|
|
|
2014-03-17 10:12:21 +01:00
|
|
|
// Implements storage for a set of code roots.
|
|
|
|
// All methods that modify the set are not thread-safe except if otherwise noted.
|
|
|
|
class G1CodeRootSet VALUE_OBJ_CLASS_SPEC {
|
2014-08-29 13:12:21 +02:00
|
|
|
friend class G1CodeRootSetTest;
|
2014-03-17 10:12:21 +01:00
|
|
|
private:
|
|
|
|
|
2014-08-29 13:12:21 +02:00
|
|
|
const static size_t SmallSize = 32;
|
|
|
|
const static size_t Threshold = 24;
|
|
|
|
const static size_t LargeSize = 512;
|
2014-03-17 10:12:21 +01:00
|
|
|
|
2016-08-29 20:15:12 +03:00
|
|
|
G1CodeRootSetTable* _table;
|
|
|
|
G1CodeRootSetTable* load_acquire_table();
|
2014-03-17 10:12:21 +01:00
|
|
|
|
|
|
|
size_t _length;
|
2014-08-29 13:12:21 +02:00
|
|
|
|
|
|
|
void move_to_large();
|
|
|
|
void allocate_small_table();
|
2014-03-17 10:12:21 +01:00
|
|
|
|
|
|
|
public:
|
2014-08-29 13:12:21 +02:00
|
|
|
G1CodeRootSet() : _table(NULL), _length(0) {}
|
2014-03-17 10:12:21 +01:00
|
|
|
~G1CodeRootSet();
|
|
|
|
|
2014-08-29 13:12:21 +02:00
|
|
|
static void purge();
|
2014-03-17 10:12:21 +01:00
|
|
|
|
2014-08-29 13:12:21 +02:00
|
|
|
static size_t static_mem_size();
|
2014-03-17 10:12:21 +01:00
|
|
|
|
|
|
|
void add(nmethod* method);
|
|
|
|
|
2014-08-29 13:12:21 +02:00
|
|
|
bool remove(nmethod* method);
|
2014-03-17 10:12:21 +01:00
|
|
|
|
2014-08-29 13:12:21 +02:00
|
|
|
// Safe to call without synchronization, but may return false negatives.
|
2014-03-17 10:12:21 +01:00
|
|
|
bool contains(nmethod* method);
|
|
|
|
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
void nmethods_do(CodeBlobClosure* blk) const;
|
|
|
|
|
2014-08-29 13:12:21 +02:00
|
|
|
// Remove all nmethods which no longer contain pointers into our "owner" region
|
|
|
|
void clean(HeapRegion* owner);
|
|
|
|
|
|
|
|
bool is_empty() {
|
|
|
|
bool empty = length() == 0;
|
|
|
|
assert(empty == (_table == NULL), "is empty only if table is deallocated");
|
|
|
|
return empty;
|
|
|
|
}
|
2014-03-17 10:12:21 +01:00
|
|
|
|
|
|
|
// Length in elements
|
|
|
|
size_t length() const { return _length; }
|
|
|
|
|
|
|
|
// Memory size in bytes taken by this set.
|
|
|
|
size_t mem_size();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#endif // SHARE_VM_GC_G1_G1CODECACHEREMSET_HPP
|