Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell11
提交
abc383eb
D
dragonwell11
项目概览
openanolis
/
dragonwell11
通知
7
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell11
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
abc383eb
编写于
2月 11, 2011
作者:
T
twisti
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7018673: Zero: 6953144, 6990754 and 7009756 made some changes which broke Zero
Reviewed-by: kvn, chrisphi, twisti
上级
e4d10c2d
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
23 addition
and
7 deletion
+23
-7
hotspot/src/os_cpu/linux_zero/vm/atomic_linux_zero.inline.hpp
...pot/src/os_cpu/linux_zero/vm/atomic_linux_zero.inline.hpp
+16
-2
hotspot/src/share/vm/compiler/compileBroker.cpp
hotspot/src/share/vm/compiler/compileBroker.cpp
+3
-1
hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp
hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp
+3
-3
hotspot/src/share/vm/oops/methodOop.cpp
hotspot/src/share/vm/oops/methodOop.cpp
+1
-1
未找到文件。
hotspot/src/os_cpu/linux_zero/vm/atomic_linux_zero.inline.hpp
浏览文件 @
abc383eb
/*
* Copyright (c) 2003, 201
0
, Oracle and/or its affiliates. All rights reserved.
* Copyright 2007, 2008 Red Hat, Inc.
* Copyright (c) 2003, 201
1
, Oracle and/or its affiliates. All rights reserved.
* Copyright 2007, 2008
, 2011
Red Hat, Inc.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -300,4 +300,18 @@ inline void* Atomic::cmpxchg_ptr(void* exchange_value,
(
intptr_t
)
compare_value
);
}
inline
jlong
Atomic
::
load
(
volatile
jlong
*
src
)
{
volatile
jlong
dest
;
os
::
atomic_copy64
(
src
,
&
dest
);
return
dest
;
}
inline
void
Atomic
::
store
(
jlong
store_value
,
jlong
*
dest
)
{
os
::
atomic_copy64
((
volatile
jlong
*
)
&
store_value
,
(
volatile
jlong
*
)
dest
);
}
inline
void
Atomic
::
store
(
jlong
store_value
,
volatile
jlong
*
dest
)
{
os
::
atomic_copy64
((
volatile
jlong
*
)
&
store_value
,
dest
);
}
#endif // OS_CPU_LINUX_ZERO_VM_ATOMIC_LINUX_ZERO_INLINE_HPP
hotspot/src/share/vm/compiler/compileBroker.cpp
浏览文件 @
abc383eb
/*
* Copyright (c) 1999, 201
0
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1999, 201
1
, 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
...
...
@@ -768,7 +768,9 @@ CompilerThread* CompileBroker::make_compiler_thread(const char* name, CompileQue
// Initialize the compilation queue
void
CompileBroker
::
init_compiler_threads
(
int
c1_compiler_count
,
int
c2_compiler_count
)
{
EXCEPTION_MARK
;
#ifndef ZERO
assert
(
c2_compiler_count
>
0
||
c1_compiler_count
>
0
,
"No compilers?"
);
#endif // !ZERO
if
(
c2_compiler_count
>
0
)
{
_c2_method_queue
=
new
CompileQueue
(
"C2MethodQueue"
,
MethodCompileQueue_lock
);
}
...
...
hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp
浏览文件 @
abc383eb
...
...
@@ -1936,7 +1936,7 @@ run:
constantPoolOop
constants
=
istate
->
method
()
->
constants
();
if
(
!
constants
->
tag_at
(
index
).
is_unresolved_klass
())
{
// Make sure klass is initialized and doesn't have a finalizer
oop
entry
=
(
klassOop
)
*
constants
->
obj_at_addr
(
index
);
oop
entry
=
constants
->
slot_at
(
index
).
get_oop
(
);
assert
(
entry
->
is_klass
(),
"Should be resolved klass"
);
klassOop
k_entry
=
(
klassOop
)
entry
;
assert
(
k_entry
->
klass_part
()
->
oop_is_instance
(),
"Should be instanceKlass"
);
...
...
@@ -2026,7 +2026,7 @@ run:
if
(
METHOD
->
constants
()
->
tag_at
(
index
).
is_unresolved_klass
())
{
CALL_VM
(
InterpreterRuntime
::
quicken_io_cc
(
THREAD
),
handle_exception
);
}
klassOop
klassOf
=
(
klassOop
)
*
(
METHOD
->
constants
()
->
obj_at_addr
(
index
)
);
klassOop
klassOf
=
(
klassOop
)
METHOD
->
constants
()
->
slot_at
(
index
).
get_oop
(
);
klassOop
objKlassOop
=
STACK_OBJECT
(
-
1
)
->
klass
();
//ebx
//
// Check for compatibilty. This check must not GC!!
...
...
@@ -2061,7 +2061,7 @@ run:
if
(
METHOD
->
constants
()
->
tag_at
(
index
).
is_unresolved_klass
())
{
CALL_VM
(
InterpreterRuntime
::
quicken_io_cc
(
THREAD
),
handle_exception
);
}
klassOop
klassOf
=
(
klassOop
)
*
(
METHOD
->
constants
()
->
obj_at_addr
(
index
)
);
klassOop
klassOf
=
(
klassOop
)
METHOD
->
constants
()
->
slot_at
(
index
).
get_oop
(
);
klassOop
objKlassOop
=
STACK_OBJECT
(
-
1
)
->
klass
();
//
// Check for compatibilty. This check must not GC!!
...
...
hotspot/src/share/vm/oops/methodOop.cpp
浏览文件 @
abc383eb
...
...
@@ -934,7 +934,7 @@ methodHandle methodOopDesc::make_invoke_method(KlassHandle holder,
assert
(
m
->
signature
()
==
signature
,
""
);
assert
(
m
->
is_method_handle_invoke
(),
""
);
#ifdef CC_INTERP
ResultTypeFinder
rtf
(
signature
()
);
ResultTypeFinder
rtf
(
signature
);
m
->
set_result_index
(
rtf
.
type
());
#endif
m
->
compute_size_of_parameters
(
THREAD
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录