Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
9ce5b5ba
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看板
提交
9ce5b5ba
编写于
3月 26, 2013
作者:
H
hseigel
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
413b5006
cc8786d6
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
3 addition
and
7 deletion
+3
-7
src/share/vm/classfile/classFileParser.cpp
src/share/vm/classfile/classFileParser.cpp
+1
-2
src/share/vm/classfile/verifier.cpp
src/share/vm/classfile/verifier.cpp
+1
-2
src/share/vm/runtime/arguments.cpp
src/share/vm/runtime/arguments.cpp
+1
-0
src/share/vm/runtime/globals.hpp
src/share/vm/runtime/globals.hpp
+0
-3
未找到文件。
src/share/vm/classfile/classFileParser.cpp
浏览文件 @
9ce5b5ba
...
...
@@ -2196,8 +2196,7 @@ methodHandle ClassFileParser::parse_method(bool is_interface,
true
,
// is LVTT
CHECK_
(
nullHandle
));
lvtt_cnt
++
;
}
else
if
(
UseSplitVerifier
&&
_major_version
>=
Verifier
::
STACKMAP_ATTRIBUTE_MAJOR_VERSION
&&
}
else
if
(
_major_version
>=
Verifier
::
STACKMAP_ATTRIBUTE_MAJOR_VERSION
&&
_cp
->
symbol_at
(
code_attribute_name_index
)
==
vmSymbols
::
tag_stack_map_table
())
{
// Stack map is only needed by the new verifier in JDK1.5.
if
(
parsed_stackmap_attribute
)
{
...
...
src/share/vm/classfile/verifier.cpp
浏览文件 @
9ce5b5ba
...
...
@@ -127,8 +127,7 @@ bool Verifier::verify(instanceKlassHandle klass, Verifier::Mode mode, bool shoul
if
(
TraceClassInitialization
)
{
tty
->
print_cr
(
"Start class verification for: %s"
,
klassName
);
}
if
(
UseSplitVerifier
&&
klass
->
major_version
()
>=
STACKMAP_ATTRIBUTE_MAJOR_VERSION
)
{
if
(
klass
->
major_version
()
>=
STACKMAP_ATTRIBUTE_MAJOR_VERSION
)
{
ClassVerifier
split_verifier
(
klass
,
THREAD
);
split_verifier
.
verify_class
(
THREAD
);
exception_name
=
split_verifier
.
result
();
...
...
src/share/vm/runtime/arguments.cpp
浏览文件 @
9ce5b5ba
...
...
@@ -260,6 +260,7 @@ static ObsoleteFlag obsolete_jvm_flags[] = {
{
"CMSRevisitStackSize"
,
JDK_Version
::
jdk
(
8
),
JDK_Version
::
jdk
(
9
)
},
{
"PrintRevisitStats"
,
JDK_Version
::
jdk
(
8
),
JDK_Version
::
jdk
(
9
)
},
{
"UseVectoredExceptions"
,
JDK_Version
::
jdk
(
8
),
JDK_Version
::
jdk
(
9
)
},
{
"UseSplitVerifier"
,
JDK_Version
::
jdk
(
8
),
JDK_Version
::
jdk
(
9
)
},
#ifdef PRODUCT
{
"DesiredMethodLimit"
,
JDK_Version
::
jdk_update
(
7
,
2
),
JDK_Version
::
jdk
(
8
)
},
...
...
src/share/vm/runtime/globals.hpp
浏览文件 @
9ce5b5ba
...
...
@@ -679,9 +679,6 @@ class CommandLineFlags {
product(bool, UseCompilerSafepoints, true, \
"Stop at safepoints in compiled code") \
\
product(bool, UseSplitVerifier, true, \
"use split verifier with StackMapTable attributes") \
\
product(bool, FailOverToOldVerifier, true, \
"fail over to old verifier when split verifier fails") \
\
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录