mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8223621: Move Universe usage out of oopRecorder.hpp
Reviewed-by: coleenp, lkorinth
This commit is contained in:
parent
cd6079acdd
commit
34c357ee6f
4 changed files with 49 additions and 10 deletions
|
@ -24,6 +24,7 @@
|
||||||
|
|
||||||
#include "precompiled.hpp"
|
#include "precompiled.hpp"
|
||||||
#include "asm/codeBuffer.hpp"
|
#include "asm/codeBuffer.hpp"
|
||||||
|
#include "code/oopRecorder.inline.hpp"
|
||||||
#include "compiler/disassembler.hpp"
|
#include "compiler/disassembler.hpp"
|
||||||
#include "oops/methodData.hpp"
|
#include "oops/methodData.hpp"
|
||||||
#include "oops/oop.inline.hpp"
|
#include "oops/oop.inline.hpp"
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "ci/ciEnv.hpp"
|
#include "ci/ciEnv.hpp"
|
||||||
#include "ci/ciInstance.hpp"
|
#include "ci/ciInstance.hpp"
|
||||||
#include "ci/ciMetadata.hpp"
|
#include "ci/ciMetadata.hpp"
|
||||||
#include "code/oopRecorder.hpp"
|
#include "code/oopRecorder.inline.hpp"
|
||||||
#include "memory/allocation.inline.hpp"
|
#include "memory/allocation.inline.hpp"
|
||||||
#include "oops/oop.inline.hpp"
|
#include "oops/oop.inline.hpp"
|
||||||
#include "runtime/jniHandles.inline.hpp"
|
#include "runtime/jniHandles.inline.hpp"
|
||||||
|
|
|
@ -77,9 +77,7 @@ template <class T> class ValueRecorder : public StackObj {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Helper function; returns false for NULL or Universe::non_oop_word().
|
// Helper function; returns false for NULL or Universe::non_oop_word().
|
||||||
bool is_real(T h) {
|
inline bool is_real(T h);
|
||||||
return h != NULL && h != (T)Universe::non_oop_word();
|
|
||||||
}
|
|
||||||
|
|
||||||
// copy the generated table to nmethod
|
// copy the generated table to nmethod
|
||||||
void copy_values_to(nmethod* nm);
|
void copy_values_to(nmethod* nm);
|
||||||
|
@ -207,9 +205,7 @@ class OopRecorder : public ResourceObj {
|
||||||
int oop_count() {
|
int oop_count() {
|
||||||
return _oops.count();
|
return _oops.count();
|
||||||
}
|
}
|
||||||
bool is_real(jobject h) {
|
inline bool is_real(jobject h);
|
||||||
return _oops.is_real(h);
|
|
||||||
}
|
|
||||||
|
|
||||||
int allocate_metadata_index(Metadata* oop) {
|
int allocate_metadata_index(Metadata* oop) {
|
||||||
return _metadata.allocate_index(oop);
|
return _metadata.allocate_index(oop);
|
||||||
|
@ -226,9 +222,7 @@ class OopRecorder : public ResourceObj {
|
||||||
int metadata_count() {
|
int metadata_count() {
|
||||||
return _metadata.count();
|
return _metadata.count();
|
||||||
}
|
}
|
||||||
bool is_real(Metadata* h) {
|
inline bool is_real(Metadata* h);
|
||||||
return _metadata.is_real(h);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool is_unused() {
|
bool is_unused() {
|
||||||
return _oops.is_unused() && _metadata.is_unused();
|
return _oops.is_unused() && _metadata.is_unused();
|
||||||
|
|
44
src/hotspot/share/code/oopRecorder.inline.hpp
Normal file
44
src/hotspot/share/code/oopRecorder.inline.hpp
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2019, 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.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef SHARE_CODE_OOPRECORDER_INLINE_HPP
|
||||||
|
#define SHARE_CODE_OOPRECORDER_INLINE_HPP
|
||||||
|
|
||||||
|
#include "code/oopRecorder.hpp"
|
||||||
|
#include "memory/universe.hpp"
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
bool ValueRecorder<T>::is_real(T h) {
|
||||||
|
return h != NULL && h != (T)Universe::non_oop_word();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool OopRecorder::is_real(jobject h) {
|
||||||
|
return _oops.is_real(h);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool OopRecorder::is_real(Metadata* h) {
|
||||||
|
return _metadata.is_real(h);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // SHARE_CODE_OOPRECORDER_INLINE_HPP
|
Loading…
Add table
Add a link
Reference in a new issue