Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
63d7394d
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看板
提交
63d7394d
编写于
7月 27, 2011
作者:
N
never
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7071427: AdapterFingerPrint can hold 8 entries per int
Reviewed-by: kvn
上级
227e46c8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
6 deletion
+8
-6
src/share/vm/runtime/java.cpp
src/share/vm/runtime/java.cpp
+2
-1
src/share/vm/runtime/sharedRuntime.cpp
src/share/vm/runtime/sharedRuntime.cpp
+6
-5
未找到文件。
src/share/vm/runtime/java.cpp
浏览文件 @
63d7394d
...
...
@@ -243,6 +243,7 @@ void print_statistics() {
FlagSetting
fs
(
DisplayVMOutput
,
DisplayVMOutput
&&
PrintC1Statistics
);
Runtime1
::
print_statistics
();
Deoptimization
::
print_statistics
();
SharedRuntime
::
print_statistics
();
nmethod
::
print_statistics
();
}
#endif
/* COMPILER1 */
...
...
@@ -254,8 +255,8 @@ void print_statistics() {
#ifndef COMPILER1
Deoptimization
::
print_statistics
();
nmethod
::
print_statistics
();
#endif //COMPILER1
SharedRuntime
::
print_statistics
();
#endif //COMPILER1
os
::
print_statistics
();
}
...
...
src/share/vm/runtime/sharedRuntime.cpp
浏览文件 @
63d7394d
...
...
@@ -2130,9 +2130,9 @@ class AdapterFingerPrint : public CHeapObj {
public:
AdapterFingerPrint
(
int
total_args_passed
,
BasicType
*
sig_bt
)
{
// The fingerprint is based on the BasicType signature encoded
// into an array of ints with
four
entries per int.
// into an array of ints with
eight
entries per int.
int
*
ptr
;
int
len
=
(
total_args_passed
+
3
)
>>
2
;
int
len
=
(
total_args_passed
+
7
)
>>
3
;
if
(
len
<=
(
int
)(
sizeof
(
_value
.
_compact
)
/
sizeof
(
int
)))
{
_value
.
_compact
[
0
]
=
_value
.
_compact
[
1
]
=
_value
.
_compact
[
2
]
=
0
;
// Storing the signature encoded as signed chars hits about 98%
...
...
@@ -2145,11 +2145,11 @@ class AdapterFingerPrint : public CHeapObj {
ptr
=
_value
.
_fingerprint
;
}
// Now pack the BasicTypes with
4
per int
// Now pack the BasicTypes with
8
per int
int
sig_index
=
0
;
for
(
int
index
=
0
;
index
<
len
;
index
++
)
{
int
value
=
0
;
for
(
int
byte
=
0
;
byte
<
4
;
byte
++
)
{
for
(
int
byte
=
0
;
byte
<
8
;
byte
++
)
{
if
(
sig_index
<
total_args_passed
)
{
value
=
(
value
<<
4
)
|
adapter_encoding
(
sig_bt
[
sig_index
++
]);
}
...
...
@@ -2190,8 +2190,9 @@ class AdapterFingerPrint : public CHeapObj {
const
char
*
as_string
()
{
stringStream
st
;
st
.
print
(
"0x"
);
for
(
int
i
=
0
;
i
<
length
();
i
++
)
{
st
.
print
(
PTR_FORMAT
,
value
(
i
));
st
.
print
(
"%08x"
,
value
(
i
));
}
return
st
.
as_string
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录