Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
6cbab986
D
dragonwell8_hotspot
项目概览
openanolis
/
dragonwell8_hotspot
通知
2
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_hotspot
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6cbab986
编写于
3月 13, 2015
作者:
A
amurillo
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
552dcd98
aed6603b
变更
12
展开全部
显示空白变更内容
内联
并排
Showing
12 changed file
with
333 addition
and
118 deletion
+333
-118
agent/src/share/classes/sun/jvm/hotspot/HotSpotTypeDataBase.java
...rc/share/classes/sun/jvm/hotspot/HotSpotTypeDataBase.java
+41
-6
make/hotspot_version
make/hotspot_version
+1
-1
src/os/solaris/vm/jvm_solaris.h
src/os/solaris/vm/jvm_solaris.h
+3
-1
src/share/vm/ci/bcEscapeAnalyzer.cpp
src/share/vm/ci/bcEscapeAnalyzer.cpp
+5
-3
src/share/vm/memory/guardedMemory.hpp
src/share/vm/memory/guardedMemory.hpp
+4
-4
src/share/vm/prims/jniCheck.cpp
src/share/vm/prims/jniCheck.cpp
+173
-98
src/share/vm/runtime/jniHandles.cpp
src/share/vm/runtime/jniHandles.cpp
+8
-1
src/share/vm/runtime/jniHandles.hpp
src/share/vm/runtime/jniHandles.hpp
+9
-1
src/share/vm/runtime/thread.cpp
src/share/vm/runtime/thread.cpp
+2
-1
src/share/vm/runtime/thread.hpp
src/share/vm/runtime/thread.hpp
+10
-1
src/share/vm/utilities/globalDefinitions_sparcWorks.hpp
src/share/vm/utilities/globalDefinitions_sparcWorks.hpp
+3
-1
test/compiler/escapeAnalysis/TestEscapeThroughInvoke.java
test/compiler/escapeAnalysis/TestEscapeThroughInvoke.java
+74
-0
未找到文件。
agent/src/share/classes/sun/jvm/hotspot/HotSpotTypeDataBase.java
浏览文件 @
6cbab986
...
...
@@ -51,6 +51,9 @@ public class HotSpotTypeDataBase extends BasicTypeDataBase {
private
static
final
int
C_INT32_SIZE
=
4
;
private
static
final
int
C_INT64_SIZE
=
8
;
private
static
int
pointerSize
=
UNINITIALIZED_SIZE
;
// Counter to ensure read loops terminate:
private
static
final
int
MAX_DUPLICATE_DEFINITIONS
=
100
;
private
int
duplicateDefCount
=
0
;
private
static
final
boolean
DEBUG
;
static
{
...
...
@@ -166,6 +169,10 @@ public class HotSpotTypeDataBase extends BasicTypeDataBase {
typeEntrySizeOffset
=
getLongValueFromProcess
(
"gHotSpotVMTypeEntrySizeOffset"
);
typeEntryArrayStride
=
getLongValueFromProcess
(
"gHotSpotVMTypeEntryArrayStride"
);
if
(
typeEntryArrayStride
==
0L
)
{
throw
new
RuntimeException
(
"zero stride: cannot read types."
);
}
// Start iterating down it until we find an entry with no name
Address
typeNameAddr
=
null
;
do
{
...
...
@@ -192,7 +199,11 @@ public class HotSpotTypeDataBase extends BasicTypeDataBase {
}
entryAddr
=
entryAddr
.
addOffsetTo
(
typeEntryArrayStride
);
}
while
(
typeNameAddr
!=
null
);
}
while
(
typeNameAddr
!=
null
&&
duplicateDefCount
<
MAX_DUPLICATE_DEFINITIONS
);
if
(
duplicateDefCount
>=
MAX_DUPLICATE_DEFINITIONS
)
{
throw
new
RuntimeException
(
"too many duplicate definitions"
);
}
}
private
void
initializePrimitiveTypes
()
{
...
...
@@ -395,6 +406,10 @@ public class HotSpotTypeDataBase extends BasicTypeDataBase {
structEntryAddressOffset
=
getLongValueFromProcess
(
"gHotSpotVMStructEntryAddressOffset"
);
structEntryArrayStride
=
getLongValueFromProcess
(
"gHotSpotVMStructEntryArrayStride"
);
if
(
structEntryArrayStride
==
0L
)
{
throw
new
RuntimeException
(
"zero stride: cannot read types."
);
}
// Fetch the address of the VMStructEntry*
Address
entryAddr
=
lookupInProcess
(
"gHotSpotVMStructs"
);
// Dereference this once to get the pointer to the first VMStructEntry
...
...
@@ -472,6 +487,11 @@ public class HotSpotTypeDataBase extends BasicTypeDataBase {
intConstantEntryValueOffset
=
getLongValueFromProcess
(
"gHotSpotVMIntConstantEntryValueOffset"
);
intConstantEntryArrayStride
=
getLongValueFromProcess
(
"gHotSpotVMIntConstantEntryArrayStride"
);
if
(
intConstantEntryArrayStride
==
0L
)
{
throw
new
RuntimeException
(
"zero stride: cannot read types."
);
}
// Fetch the address of the VMIntConstantEntry*
Address
entryAddr
=
lookupInProcess
(
"gHotSpotVMIntConstants"
);
// Dereference this once to get the pointer to the first VMIntConstantEntry
...
...
@@ -501,12 +521,17 @@ public class HotSpotTypeDataBase extends BasicTypeDataBase {
}
else
{
System
.
err
.
println
(
"Warning: the int constant \""
+
name
+
"\" (declared in the remote VM in VMStructs::localHotSpotVMIntConstants) "
+
"had its value declared as "
+
value
+
" twice. Continuing."
);
duplicateDefCount
++;
}
}
}
entryAddr
=
entryAddr
.
addOffsetTo
(
intConstantEntryArrayStride
);
}
while
(
nameAddr
!=
null
);
}
while
(
nameAddr
!=
null
&&
duplicateDefCount
<
MAX_DUPLICATE_DEFINITIONS
);
if
(
duplicateDefCount
>=
MAX_DUPLICATE_DEFINITIONS
)
{
throw
new
RuntimeException
(
"too many duplicate definitions"
);
}
}
private
void
readVMLongConstants
()
{
...
...
@@ -519,6 +544,10 @@ public class HotSpotTypeDataBase extends BasicTypeDataBase {
longConstantEntryValueOffset
=
getLongValueFromProcess
(
"gHotSpotVMLongConstantEntryValueOffset"
);
longConstantEntryArrayStride
=
getLongValueFromProcess
(
"gHotSpotVMLongConstantEntryArrayStride"
);
if
(
longConstantEntryArrayStride
==
0L
)
{
throw
new
RuntimeException
(
"zero stride: cannot read types."
);
}
// Fetch the address of the VMLongConstantEntry*
Address
entryAddr
=
lookupInProcess
(
"gHotSpotVMLongConstants"
);
// Dereference this once to get the pointer to the first VMLongConstantEntry
...
...
@@ -548,12 +577,17 @@ public class HotSpotTypeDataBase extends BasicTypeDataBase {
}
else
{
System
.
err
.
println
(
"Warning: the long constant \""
+
name
+
"\" (declared in the remote VM in VMStructs::localHotSpotVMLongConstants) "
+
"had its value declared as "
+
value
+
" twice. Continuing."
);
duplicateDefCount
++;
}
}
}
entryAddr
=
entryAddr
.
addOffsetTo
(
longConstantEntryArrayStride
);
}
while
(
nameAddr
!=
null
);
}
while
(
nameAddr
!=
null
&&
duplicateDefCount
<
MAX_DUPLICATE_DEFINITIONS
);
if
(
duplicateDefCount
>=
MAX_DUPLICATE_DEFINITIONS
)
{
throw
new
RuntimeException
(
"too many duplicate definitions."
);
}
}
private
BasicType
lookupOrFail
(
String
typeName
)
{
...
...
@@ -742,6 +776,7 @@ public class HotSpotTypeDataBase extends BasicTypeDataBase {
if
(!
typeNameIsPointerType
(
typeName
))
{
System
.
err
.
println
(
"Warning: the type \""
+
typeName
+
"\" (declared in the remote VM in VMStructs::localHotSpotVMTypes) "
+
"had its size declared as "
+
size
+
" twice. Continuing."
);
duplicateDefCount
++;
}
}
...
...
make/hotspot_version
浏览文件 @
6cbab986
...
...
@@ -35,7 +35,7 @@ HOTSPOT_VM_COPYRIGHT=Copyright 2015
HS_MAJOR_VER=25
HS_MINOR_VER=60
HS_BUILD_NUMBER=0
6
HS_BUILD_NUMBER=0
7
JDK_MAJOR_VER=1
JDK_MINOR_VER=8
...
...
src/os/solaris/vm/jvm_solaris.h
浏览文件 @
6cbab986
/*
* Copyright (c) 1998, 201
0
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 201
5
, 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
...
...
@@ -41,7 +41,9 @@
* JNI conversion, which should be sorted out later.
*/
#define __USE_LEGACY_PROTOTYPES__
#include <dirent.h>
/* For DIR */
#undef __USE_LEGACY_PROTOTYPES__
#include <sys/param.h>
/* For MAXPATHLEN */
#include <sys/socket.h>
/* For socklen_t */
#include <unistd.h>
/* For F_OK, R_OK, W_OK */
...
...
src/share/vm/ci/bcEscapeAnalyzer.cpp
浏览文件 @
6cbab986
...
...
@@ -42,7 +42,7 @@
#define TRACE_BCEA(level, code)
#endif
// Maintain a map of which aguments a local variable or
// Maintain a map of which a
r
guments a local variable or
// stack slot may contain. In addition to tracking
// arguments, it tracks two special values, "allocated"
// which represents any object allocated in the current
...
...
@@ -318,14 +318,16 @@ void BCEscapeAnalyzer::invoke(StateInfo &state, Bytecodes::Code code, ciMethod*
bool
must_record_dependencies
=
false
;
for
(
i
=
arg_size
-
1
;
i
>=
0
;
i
--
)
{
ArgumentMap
arg
=
state
.
raw_pop
();
if
(
!
is_argument
(
arg
))
// Check if callee arg is a caller arg or an allocated object
bool
allocated
=
arg
.
contains_allocated
();
if
(
!
(
is_argument
(
arg
)
||
allocated
))
continue
;
for
(
int
j
=
0
;
j
<
_arg_size
;
j
++
)
{
if
(
arg
.
contains
(
j
))
{
_arg_modified
[
j
]
|=
analyzer
.
_arg_modified
[
i
];
}
}
if
(
!
is_arg_stack
(
arg
))
{
if
(
!
(
is_arg_stack
(
arg
)
||
allocated
))
{
// arguments have already been recognized as escaping
}
else
if
(
analyzer
.
is_arg_stack
(
i
)
&&
!
analyzer
.
is_arg_returned
(
i
))
{
set_method_escape
(
arg
);
...
...
src/share/vm/memory/guardedMemory.hpp
浏览文件 @
6cbab986
/*
* Copyright (c) 201
4
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 201
5
, 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
...
...
@@ -235,7 +235,7 @@ protected:
* @return the size of the user data.
*/
size_t
get_user_size
()
const
{
assert
(
_base_addr
,
"Not wrapping any memory"
);
assert
(
_base_addr
!=
NULL
,
"Not wrapping any memory"
);
return
get_head_guard
()
->
get_user_size
();
}
...
...
@@ -245,7 +245,7 @@ protected:
* @return the user data pointer.
*/
u_char
*
get_user_ptr
()
const
{
assert
(
_base_addr
,
"Not wrapping any memory"
);
assert
(
_base_addr
!=
NULL
,
"Not wrapping any memory"
);
return
_base_addr
+
sizeof
(
GuardHeader
);
}
...
...
@@ -281,7 +281,7 @@ protected:
memset
(
get_user_ptr
(),
ch
,
get_user_size
());
}
public:
public:
/**
* Return the total size required for wrapping the given user size.
*
...
...
src/share/vm/prims/jniCheck.cpp
浏览文件 @
6cbab986
此差异已折叠。
点击以展开。
src/share/vm/runtime/jniHandles.cpp
浏览文件 @
6cbab986
/*
* Copyright (c) 1998, 201
4
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 201
5
, 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
...
...
@@ -296,6 +296,7 @@ JNIHandleBlock* JNIHandleBlock::allocate_block(Thread* thread) {
block
->
_top
=
0
;
block
->
_next
=
NULL
;
block
->
_pop_frame_link
=
NULL
;
block
->
_planned_capacity
=
block_size_in_oops
;
// _last, _free_list & _allocate_before_rebuild initialized in allocate_handle
debug_only
(
block
->
_last
=
NULL
);
debug_only
(
block
->
_free_list
=
NULL
);
...
...
@@ -529,6 +530,12 @@ int JNIHandleBlock::length() const {
return
result
;
}
const
size_t
JNIHandleBlock
::
get_number_of_live_handles
()
{
CountHandleClosure
counter
;
oops_do
(
&
counter
);
return
counter
.
count
();
}
// This method is not thread-safe, i.e., must be called whule holding a lock on the
// structure.
long
JNIHandleBlock
::
memory_usage
()
const
{
...
...
src/share/vm/runtime/jniHandles.hpp
浏览文件 @
6cbab986
/*
* Copyright (c) 1998, 201
2
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 201
5
, 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
...
...
@@ -112,6 +112,9 @@ class JNIHandleBlock : public CHeapObj<mtInternal> {
oop
*
_free_list
;
// Handle free list
int
_allocate_before_rebuild
;
// Number of blocks to allocate before rebuilding free list
// Check JNI, "planned capacity" for current frame (or push/ensure)
size_t
_planned_capacity
;
#ifndef PRODUCT
JNIHandleBlock
*
_block_list_link
;
// Link for list below
static
JNIHandleBlock
*
_block_list
;
// List of all allocated blocks (for debugging only)
...
...
@@ -152,6 +155,11 @@ class JNIHandleBlock : public CHeapObj<mtInternal> {
// Traversal of weak handles. Unreachable oops are cleared.
void
weak_oops_do
(
BoolObjectClosure
*
is_alive
,
OopClosure
*
f
);
// Checked JNI support
void
set_planned_capacity
(
size_t
planned_capacity
)
{
_planned_capacity
=
planned_capacity
;
}
const
size_t
get_planned_capacity
()
{
return
_planned_capacity
;
}
const
size_t
get_number_of_live_handles
();
// Debugging
bool
chain_contains
(
jobject
handle
)
const
;
// Does this block or following blocks contain handle
bool
contains
(
jobject
handle
)
const
;
// Does this block contain handle
...
...
src/share/vm/runtime/thread.cpp
浏览文件 @
6cbab986
/*
* Copyright (c) 1997, 201
4
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 201
5
, 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
...
...
@@ -1465,6 +1465,7 @@ void JavaThread::initialize() {
_thread_stat
=
new
ThreadStatistics
();
_blocked_on_compilation
=
false
;
_jni_active_critical
=
0
;
_pending_jni_exception_check_fn
=
NULL
;
_do_not_unlock_if_synchronized
=
false
;
_cached_monitor_info
=
NULL
;
_parker
=
Parker
::
Allocate
(
this
)
;
...
...
src/share/vm/runtime/thread.hpp
浏览文件 @
6cbab986
/*
* Copyright (c) 1997, 201
4
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 201
5
, 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
...
...
@@ -926,6 +926,9 @@ class JavaThread: public Thread {
// support for JNI critical regions
jint
_jni_active_critical
;
// count of entries into JNI critical region
// Checked JNI: function name requires exception check
char
*
_pending_jni_exception_check_fn
;
// For deadlock detection.
int
_depth_first_number
;
...
...
@@ -1408,6 +1411,12 @@ class JavaThread: public Thread {
assert
(
_jni_active_critical
>=
0
,
"JNI critical nesting problem?"
);
}
// Checked JNI, is the programmer required to check for exceptions, specify which function name
bool
is_pending_jni_exception_check
()
const
{
return
_pending_jni_exception_check_fn
!=
NULL
;
}
void
clear_pending_jni_exception_check
()
{
_pending_jni_exception_check_fn
=
NULL
;
}
const
char
*
get_pending_jni_exception_check
()
const
{
return
_pending_jni_exception_check_fn
;
}
void
set_pending_jni_exception_check
(
const
char
*
fn_name
)
{
_pending_jni_exception_check_fn
=
(
char
*
)
fn_name
;
}
// For deadlock detection
int
depth_first_number
()
{
return
_depth_first_number
;
}
void
set_depth_first_number
(
int
dfn
)
{
_depth_first_number
=
dfn
;
}
...
...
src/share/vm/utilities/globalDefinitions_sparcWorks.hpp
浏览文件 @
6cbab986
/*
* Copyright (c) 1997, 201
1
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 201
5
, 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
...
...
@@ -33,7 +33,9 @@
# include <ctype.h>
#define __USE_LEGACY_PROTOTYPES__
# include <dirent.h>
#undef __USE_LEGACY_PROTOTYPES__
# include <string.h>
# include <strings.h> // for bsd'isms
# include <stdarg.h>
...
...
test/compiler/escapeAnalysis/TestEscapeThroughInvoke.java
0 → 100644
浏览文件 @
6cbab986
/*
* Copyright (c) 2015, 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.
*/
/**
* @test
* @bug 8073956
* @summary Tests C2 EA with allocated object escaping through a call.
* @run main/othervm -XX:CompileCommand=dontinline,TestEscapeThroughInvoke::create TestEscapeThroughInvoke
*/
public
class
TestEscapeThroughInvoke
{
private
A
a
;
public
static
void
main
(
String
[]
args
)
{
TestEscapeThroughInvoke
test
=
new
TestEscapeThroughInvoke
();
test
.
a
=
new
A
(
42
);
// Make sure run gets compiled by C2
for
(
int
i
=
0
;
i
<
100_000
;
++
i
)
{
test
.
run
();
}
}
private
void
run
()
{
// Allocate something to trigger EA
new
Object
();
// Create a new escaping instance of A and
// verify that it is always equal to 'a.saved'.
A
escapingA
=
create
(
42
);
a
.
check
(
escapingA
);
}
// Create and return a new instance of A that escaped through 'A::saveInto'.
// The 'dummy' parameters are needed to avoid EA skipping the methods.
private
A
create
(
Integer
dummy
)
{
A
result
=
new
A
(
dummy
);
result
.
saveInto
(
a
,
dummy
);
// result escapes into 'a' here
return
result
;
}
}
class
A
{
private
A
saved
;
public
A
(
Integer
dummy
)
{
}
public
void
saveInto
(
A
other
,
Integer
dummy
)
{
other
.
saved
=
this
;
}
public
void
check
(
A
other
)
{
if
(
this
.
saved
!=
other
)
{
throw
new
RuntimeException
(
"TEST FAILED: Objects not equal."
);
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录