Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
a177158b
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看板
提交
a177158b
编写于
12月 02, 2010
作者:
T
twisti
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6998985: faulty generic arraycopy on windows x86_64: 4th arg overwritten with oop
Reviewed-by: kvn, never
上级
9f8985bb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
54 addition
and
59 deletion
+54
-59
src/cpu/x86/vm/stubGenerator_x86_64.cpp
src/cpu/x86/vm/stubGenerator_x86_64.cpp
+54
-59
未找到文件。
src/cpu/x86/vm/stubGenerator_x86_64.cpp
浏览文件 @
a177158b
...
@@ -2197,9 +2197,6 @@ class StubGenerator: public StubCodeGenerator {
...
@@ -2197,9 +2197,6 @@ class StubGenerator: public StubCodeGenerator {
__
enter
();
// required for proper stackwalking of RuntimeStub frame
__
enter
();
// required for proper stackwalking of RuntimeStub frame
checkcast_copy_entry
=
__
pc
();
BLOCK_COMMENT
(
"Entry:"
);
#ifdef ASSERT
#ifdef ASSERT
// caller guarantees that the arrays really are different
// caller guarantees that the arrays really are different
// otherwise, we would have to make conjoint checks
// otherwise, we would have to make conjoint checks
...
@@ -2210,25 +2207,27 @@ class StubGenerator: public StubCodeGenerator {
...
@@ -2210,25 +2207,27 @@ class StubGenerator: public StubCodeGenerator {
}
}
#endif //ASSERT
#endif //ASSERT
setup_arg_regs
(
4
);
// from => rdi, to => rsi, length => rdx
// ckoff => rcx, ckval => r8
// r9 and r10 may be used to save non-volatile registers
#ifdef _WIN64
// last argument (#4) is on stack on Win64
__
movptr
(
ckval
,
Address
(
rsp
,
6
*
wordSize
));
#endif
// Caller of this entry point must set up the argument registers.
checkcast_copy_entry
=
__
pc
();
BLOCK_COMMENT
(
"Entry:"
);
// allocate spill slots for r13, r14
// allocate spill slots for r13, r14
enum
{
enum
{
saved_r13_offset
,
saved_r13_offset
,
saved_r14_offset
,
saved_r14_offset
,
saved_rbp_offset
,
saved_rbp_offset
saved_rip_offset
,
saved_rarg0_offset
};
};
__
subptr
(
rsp
,
saved_rbp_offset
*
wordSize
);
__
subptr
(
rsp
,
saved_rbp_offset
*
wordSize
);
__
movptr
(
Address
(
rsp
,
saved_r13_offset
*
wordSize
),
r13
);
__
movptr
(
Address
(
rsp
,
saved_r13_offset
*
wordSize
),
r13
);
__
movptr
(
Address
(
rsp
,
saved_r14_offset
*
wordSize
),
r14
);
__
movptr
(
Address
(
rsp
,
saved_r14_offset
*
wordSize
),
r14
);
setup_arg_regs
(
4
);
// from => rdi, to => rsi, length => rdx
// ckoff => rcx, ckval => r8
// r9 and r10 may be used to save non-volatile registers
#ifdef _WIN64
// last argument (#4) is on stack on Win64
const
int
ckval_offset
=
saved_rarg0_offset
+
4
;
__
movptr
(
ckval
,
Address
(
rsp
,
ckval_offset
*
wordSize
));
#endif
// check that int operands are properly extended to size_t
// check that int operands are properly extended to size_t
assert_clean_int
(
length
,
rax
);
assert_clean_int
(
length
,
rax
);
...
@@ -2443,11 +2442,10 @@ class StubGenerator: public StubCodeGenerator {
...
@@ -2443,11 +2442,10 @@ class StubGenerator: public StubCodeGenerator {
const
Register
src_pos
=
c_rarg1
;
// source position
const
Register
src_pos
=
c_rarg1
;
// source position
const
Register
dst
=
c_rarg2
;
// destination array oop
const
Register
dst
=
c_rarg2
;
// destination array oop
const
Register
dst_pos
=
c_rarg3
;
// destination position
const
Register
dst_pos
=
c_rarg3
;
// destination position
// elements count is on stack on Win64
#ifndef _WIN64
#ifdef _WIN64
const
Register
length
=
c_rarg4
;
#define C_RARG4 Address(rsp, 6 * wordSize)
#else
#else
#define C_RARG4 c_rarg
4
const
Address
length
(
rsp
,
6
*
wordSize
);
// elements count is on stack on Win6
4
#endif
#endif
{
int
modulus
=
CodeEntryAlignment
;
{
int
modulus
=
CodeEntryAlignment
;
...
@@ -2514,27 +2512,27 @@ class StubGenerator: public StubCodeGenerator {
...
@@ -2514,27 +2512,27 @@ class StubGenerator: public StubCodeGenerator {
// registers used as temp
// registers used as temp
const
Register
r11_length
=
r11
;
// elements count to copy
const
Register
r11_length
=
r11
;
// elements count to copy
const
Register
r10_src_klass
=
r10
;
// array klass
const
Register
r10_src_klass
=
r10
;
// array klass
const
Register
r9_dst_klass
=
r9
;
// dest array klass
// if (length < 0) return -1;
// if (length < 0) return -1;
__
movl
(
r11_length
,
C_RARG4
);
// length (elements count, 32-bits value)
__
movl
(
r11_length
,
length
);
// length (elements count, 32-bits value)
__
testl
(
r11_length
,
r11_length
);
__
testl
(
r11_length
,
r11_length
);
__
jccb
(
Assembler
::
negative
,
L_failed_0
);
__
jccb
(
Assembler
::
negative
,
L_failed_0
);
__
load_klass
(
r10_src_klass
,
src
);
__
load_klass
(
r10_src_klass
,
src
);
#ifdef ASSERT
#ifdef ASSERT
// assert(src->klass() != NULL);
// assert(src->klass() != NULL);
BLOCK_COMMENT
(
"assert klasses not null"
);
{
{
Label
L1
,
L2
;
BLOCK_COMMENT
(
"assert klasses not null {"
);
Label
L1
,
L2
;
__
testptr
(
r10_src_klass
,
r10_src_klass
);
__
testptr
(
r10_src_klass
,
r10_src_klass
);
__
jcc
(
Assembler
::
notZero
,
L2
);
// it is broken if klass is NULL
__
jcc
(
Assembler
::
notZero
,
L2
);
// it is broken if klass is NULL
__
bind
(
L1
);
__
bind
(
L1
);
__
stop
(
"broken null klass"
);
__
stop
(
"broken null klass"
);
__
bind
(
L2
);
__
bind
(
L2
);
__
load_klass
(
r
9_dst_klass
,
dst
);
__
load_klass
(
r
ax
,
dst
);
__
cmpq
(
r
9_dst_klass
,
0
);
__
cmpq
(
r
ax
,
0
);
__
jcc
(
Assembler
::
equal
,
L1
);
// this would be broken also
__
jcc
(
Assembler
::
equal
,
L1
);
// this would be broken also
BLOCK_COMMENT
(
"
assert
done"
);
BLOCK_COMMENT
(
"
} assert klasses not null
done"
);
}
}
#endif
#endif
...
@@ -2546,34 +2544,36 @@ class StubGenerator: public StubCodeGenerator {
...
@@ -2546,34 +2544,36 @@ class StubGenerator: public StubCodeGenerator {
// array_tag: typeArray = 0x3, objArray = 0x2, non-array = 0x0
// array_tag: typeArray = 0x3, objArray = 0x2, non-array = 0x0
//
//
int
lh_offset
=
klassOopDesc
::
header_size
()
*
HeapWordSize
+
const
int
lh_offset
=
klassOopDesc
::
header_size
()
*
HeapWordSize
+
Klass
::
layout_helper_offset_in_bytes
();
Klass
::
layout_helper_offset_in_bytes
();
const
Register
rax_lh
=
rax
;
// layout helper
__
movl
(
rax_lh
,
Address
(
r10_src_klass
,
lh_offset
));
// Handle objArrays completely differently...
// Handle objArrays completely differently...
jint
objArray_lh
=
Klass
::
array_layout_helper
(
T_OBJECT
);
const
jint
objArray_lh
=
Klass
::
array_layout_helper
(
T_OBJECT
);
__
cmpl
(
rax_lh
,
objArray_lh
);
__
cmpl
(
Address
(
r10_src_klass
,
lh_offset
)
,
objArray_lh
);
__
jcc
(
Assembler
::
equal
,
L_objArray
);
__
jcc
(
Assembler
::
equal
,
L_objArray
);
// if (src->klass() != dst->klass()) return -1;
// if (src->klass() != dst->klass()) return -1;
__
load_klass
(
r
9_dst_klass
,
dst
);
__
load_klass
(
r
ax
,
dst
);
__
cmpq
(
r10_src_klass
,
r
9_dst_klass
);
__
cmpq
(
r10_src_klass
,
r
ax
);
__
jcc
(
Assembler
::
notEqual
,
L_failed
);
__
jcc
(
Assembler
::
notEqual
,
L_failed
);
const
Register
rax_lh
=
rax
;
// layout helper
__
movl
(
rax_lh
,
Address
(
r10_src_klass
,
lh_offset
));
// if (!src->is_Array()) return -1;
// if (!src->is_Array()) return -1;
__
cmpl
(
rax_lh
,
Klass
::
_lh_neutral_value
);
__
cmpl
(
rax_lh
,
Klass
::
_lh_neutral_value
);
__
jcc
(
Assembler
::
greaterEqual
,
L_failed
);
__
jcc
(
Assembler
::
greaterEqual
,
L_failed
);
// At this point, it is known to be a typeArray (array_tag 0x3).
// At this point, it is known to be a typeArray (array_tag 0x3).
#ifdef ASSERT
#ifdef ASSERT
{
Label
L
;
{
BLOCK_COMMENT
(
"assert primitive array {"
);
Label
L
;
__
cmpl
(
rax_lh
,
(
Klass
::
_lh_array_tag_type_value
<<
Klass
::
_lh_array_tag_shift
));
__
cmpl
(
rax_lh
,
(
Klass
::
_lh_array_tag_type_value
<<
Klass
::
_lh_array_tag_shift
));
__
jcc
(
Assembler
::
greaterEqual
,
L
);
__
jcc
(
Assembler
::
greaterEqual
,
L
);
__
stop
(
"must be a primitive array"
);
__
stop
(
"must be a primitive array"
);
__
bind
(
L
);
__
bind
(
L
);
BLOCK_COMMENT
(
"} assert primitive array done"
);
}
}
#endif
#endif
...
@@ -2631,11 +2631,14 @@ class StubGenerator: public StubCodeGenerator {
...
@@ -2631,11 +2631,14 @@ class StubGenerator: public StubCodeGenerator {
__
BIND
(
L_copy_longs
);
__
BIND
(
L_copy_longs
);
#ifdef ASSERT
#ifdef ASSERT
{
Label
L
;
{
BLOCK_COMMENT
(
"assert long copy {"
);
Label
L
;
__
cmpl
(
rax_elsize
,
LogBytesPerLong
);
__
cmpl
(
rax_elsize
,
LogBytesPerLong
);
__
jcc
(
Assembler
::
equal
,
L
);
__
jcc
(
Assembler
::
equal
,
L
);
__
stop
(
"must be long copy, but elsize is wrong"
);
__
stop
(
"must be long copy, but elsize is wrong"
);
__
bind
(
L
);
__
bind
(
L
);
BLOCK_COMMENT
(
"} assert long copy done"
);
}
}
#endif
#endif
__
lea
(
from
,
Address
(
src
,
src_pos
,
Address
::
times_8
,
0
));
// src_addr
__
lea
(
from
,
Address
(
src
,
src_pos
,
Address
::
times_8
,
0
));
// src_addr
...
@@ -2645,12 +2648,12 @@ class StubGenerator: public StubCodeGenerator {
...
@@ -2645,12 +2648,12 @@ class StubGenerator: public StubCodeGenerator {
// objArrayKlass
// objArrayKlass
__
BIND
(
L_objArray
);
__
BIND
(
L_objArray
);
// live at this point: r10_src_klass, src[_pos], dst[_pos]
// live at this point: r10_src_klass,
r11_length,
src[_pos], dst[_pos]
Label
L_plain_copy
,
L_checkcast_copy
;
Label
L_plain_copy
,
L_checkcast_copy
;
// test array classes for subtyping
// test array classes for subtyping
__
load_klass
(
r
9_dst_klass
,
dst
);
__
load_klass
(
r
ax
,
dst
);
__
cmpq
(
r10_src_klass
,
r
9_dst_klass
);
// usual case is exact equality
__
cmpq
(
r10_src_klass
,
r
ax
);
// usual case is exact equality
__
jcc
(
Assembler
::
notEqual
,
L_checkcast_copy
);
__
jcc
(
Assembler
::
notEqual
,
L_checkcast_copy
);
// Identically typed arrays can be copied without element-wise checks.
// Identically typed arrays can be copied without element-wise checks.
...
@@ -2666,41 +2669,33 @@ class StubGenerator: public StubCodeGenerator {
...
@@ -2666,41 +2669,33 @@ class StubGenerator: public StubCodeGenerator {
__
jump
(
RuntimeAddress
(
oop_copy_entry
));
__
jump
(
RuntimeAddress
(
oop_copy_entry
));
__
BIND
(
L_checkcast_copy
);
__
BIND
(
L_checkcast_copy
);
// live at this point: r10_src_klass,
!r11_length
// live at this point: r10_src_klass,
r11_length, rax (dst_klass)
{
{
// assert(r11_length == C_RARG4); // will reload from here
Register
r11_dst_klass
=
r11
;
__
load_klass
(
r11_dst_klass
,
dst
);
// Before looking at dst.length, make sure dst is also an objArray.
// Before looking at dst.length, make sure dst is also an objArray.
__
cmpl
(
Address
(
r
11_dst_klass
,
lh_offset
),
objArray_lh
);
__
cmpl
(
Address
(
r
ax
,
lh_offset
),
objArray_lh
);
__
jcc
(
Assembler
::
notEqual
,
L_failed
);
__
jcc
(
Assembler
::
notEqual
,
L_failed
);
// It is safe to examine both src.length and dst.length.
// It is safe to examine both src.length and dst.length.
#ifndef _WIN64
arraycopy_range_checks
(
src
,
src_pos
,
dst
,
dst_pos
,
C_RARG4
,
rax
,
L_failed
);
#else
__
movl
(
r11_length
,
C_RARG4
);
// reload
arraycopy_range_checks
(
src
,
src_pos
,
dst
,
dst_pos
,
r11_length
,
arraycopy_range_checks
(
src
,
src_pos
,
dst
,
dst_pos
,
r11_length
,
rax
,
L_failed
);
rax
,
L_failed
);
const
Register
r11_dst_klass
=
r11
;
__
load_klass
(
r11_dst_klass
,
dst
);
// reload
__
load_klass
(
r11_dst_klass
,
dst
);
// reload
#endif
// Marshal the base address arguments now, freeing registers.
// Marshal the base address arguments now, freeing registers.
__
lea
(
from
,
Address
(
src
,
src_pos
,
TIMES_OOP
,
__
lea
(
from
,
Address
(
src
,
src_pos
,
TIMES_OOP
,
arrayOopDesc
::
base_offset_in_bytes
(
T_OBJECT
)));
arrayOopDesc
::
base_offset_in_bytes
(
T_OBJECT
)));
__
lea
(
to
,
Address
(
dst
,
dst_pos
,
TIMES_OOP
,
__
lea
(
to
,
Address
(
dst
,
dst_pos
,
TIMES_OOP
,
arrayOopDesc
::
base_offset_in_bytes
(
T_OBJECT
)));
arrayOopDesc
::
base_offset_in_bytes
(
T_OBJECT
)));
__
movl
(
count
,
C_RARG4
);
// length (reloaded)
__
movl
(
count
,
length
);
// length (reloaded)
Register
sco_temp
=
c_rarg3
;
// this register is free now
Register
sco_temp
=
c_rarg3
;
// this register is free now
assert_different_registers
(
from
,
to
,
count
,
sco_temp
,
assert_different_registers
(
from
,
to
,
count
,
sco_temp
,
r11_dst_klass
,
r10_src_klass
);
r11_dst_klass
,
r10_src_klass
);
assert_clean_int
(
count
,
sco_temp
);
assert_clean_int
(
count
,
sco_temp
);
// Generate the type check.
// Generate the type check.
int
sco_offset
=
(
klassOopDesc
::
header_size
()
*
HeapWordSize
+
const
int
sco_offset
=
(
klassOopDesc
::
header_size
()
*
HeapWordSize
+
Klass
::
super_check_offset_offset_in_bytes
());
Klass
::
super_check_offset_offset_in_bytes
());
__
movl
(
sco_temp
,
Address
(
r11_dst_klass
,
sco_offset
));
__
movl
(
sco_temp
,
Address
(
r11_dst_klass
,
sco_offset
));
assert_clean_int
(
sco_temp
,
rax
);
assert_clean_int
(
sco_temp
,
rax
);
generate_type_check
(
r10_src_klass
,
sco_temp
,
r11_dst_klass
,
L_plain_copy
);
generate_type_check
(
r10_src_klass
,
sco_temp
,
r11_dst_klass
,
L_plain_copy
);
...
@@ -2709,12 +2704,14 @@ class StubGenerator: public StubCodeGenerator {
...
@@ -2709,12 +2704,14 @@ class StubGenerator: public StubCodeGenerator {
int
ek_offset
=
(
klassOopDesc
::
header_size
()
*
HeapWordSize
+
int
ek_offset
=
(
klassOopDesc
::
header_size
()
*
HeapWordSize
+
objArrayKlass
::
element_klass_offset_in_bytes
());
objArrayKlass
::
element_klass_offset_in_bytes
());
__
movptr
(
r11_dst_klass
,
Address
(
r11_dst_klass
,
ek_offset
));
__
movptr
(
r11_dst_klass
,
Address
(
r11_dst_klass
,
ek_offset
));
__
movl
(
sco_temp
,
Address
(
r11_dst_klass
,
sco_offset
));
__
movl
(
sco_temp
,
Address
(
r11_dst_klass
,
sco_offset
));
assert_clean_int
(
sco_temp
,
rax
);
assert_clean_int
(
sco_temp
,
rax
);
// the checkcast_copy loop needs two extra arguments:
// the checkcast_copy loop needs two extra arguments:
assert
(
c_rarg3
==
sco_temp
,
"#3 already in place"
);
assert
(
c_rarg3
==
sco_temp
,
"#3 already in place"
);
__
movptr
(
C_RARG4
,
r11_dst_klass
);
// dst.klass.element_klass
// Set up arguments for checkcast_copy_entry.
setup_arg_regs
(
4
);
__
movptr
(
r8
,
r11_dst_klass
);
// dst.klass.element_klass, r8 is c_rarg4 on Linux/Solaris
__
jump
(
RuntimeAddress
(
checkcast_copy_entry
));
__
jump
(
RuntimeAddress
(
checkcast_copy_entry
));
}
}
...
@@ -2727,8 +2724,6 @@ class StubGenerator: public StubCodeGenerator {
...
@@ -2727,8 +2724,6 @@ class StubGenerator: public StubCodeGenerator {
return
start
;
return
start
;
}
}
#undef length_arg
void
generate_arraycopy_stubs
()
{
void
generate_arraycopy_stubs
()
{
// Call the conjoint generation methods immediately after
// Call the conjoint generation methods immediately after
// the disjoint ones so that short branches from the former
// the disjoint ones so that short branches from the former
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录