Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
60d6e656
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看板
提交
60d6e656
编写于
10月 18, 2010
作者:
T
twisti
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6991596: JSR 292 unimplemented adapter_opt_i2i and adapter_opt_l2i on SPARC
Reviewed-by: kvn, jrose, dsamersoff
上级
8bd36bc1
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
460 addition
and
3 deletion
+460
-3
src/cpu/sparc/vm/methodHandles_sparc.cpp
src/cpu/sparc/vm/methodHandles_sparc.cpp
+8
-2
test/Makefile
test/Makefile
+5
-1
test/compiler/6991596/Test6991596.java
test/compiler/6991596/Test6991596.java
+447
-0
未找到文件。
src/cpu/sparc/vm/methodHandles_sparc.cpp
浏览文件 @
60d6e656
...
...
@@ -630,10 +630,16 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
switch
(
ek
)
{
case
_adapter_opt_i2i
:
case
_adapter_opt_l2i
:
__
unimplemented
(
entry_name
(
ek
));
value
=
vmarg
;
break
;
case
_adapter_opt_l2i
:
{
// just delete the extra slot
__
add
(
Gargs
,
__
argument_offset
(
O0_argslot
),
O0_argslot
);
remove_arg_slots
(
_masm
,
-
stack_move_unit
(),
O0_argslot
,
O1_scratch
,
O2_scratch
,
O3_scratch
);
value
=
vmarg
=
Address
(
O0_argslot
,
0
);
}
break
;
case
_adapter_opt_unboxi
:
{
// Load the value up from the heap.
...
...
test/Makefile
浏览文件 @
60d6e656
...
...
@@ -78,7 +78,11 @@ ZIP = zip
TEST_ROOT
:=
$(
shell
pwd
)
# Root of all test results
ABS_BUILD_ROOT
=
$(TEST_ROOT)
/../build/
$(PLATFORM)
-
$(ARCH)
ifdef
ALT_OUTPUTDIR
ABS_BUILD_ROOT
=
$(ALT_OUTPUTDIR)
/
$(PLATFORM)
-
$(ARCH)
else
ABS_BUILD_ROOT
=
$(TEST_ROOT)
/../build/
$(PLATFORM)
-
$(ARCH)
endif
ABS_TEST_OUTPUT_DIR
=
$(ABS_BUILD_ROOT)
/testoutput
# Expect JPRT to set PRODUCT_HOME (the product or jdk in this case to test)
...
...
test/compiler/6991596/Test6991596.java
0 → 100644
浏览文件 @
60d6e656
/*
* Copyright (c) 2010, 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 6991596
* @summary JSR 292 unimplemented adapter_opt_i2i and adapter_opt_l2i on SPARC
*
* @run main/othervm -ea -XX:+UnlockExperimentalVMOptions -XX:+EnableMethodHandles -XX:+EnableInvokeDynamic -XX:+UnlockDiagnosticVMOptions -XX:+VerifyMethodHandles Test6991596
*/
import
java.dyn.*
;
public
class
Test6991596
{
private
static
final
Class
CLASS
=
Test6991596
.
class
;
private
static
final
String
NAME
=
"foo"
;
private
static
final
boolean
DEBUG
=
false
;
public
static
void
main
(
String
[]
args
)
throws
Throwable
{
testboolean
();
testbyte
();
testchar
();
testshort
();
testint
();
testlong
();
}
// Helpers to get various methods.
static
MethodHandle
getmh1
(
Class
ret
,
Class
arg
)
{
return
MethodHandles
.
lookup
().
findStatic
(
CLASS
,
NAME
,
MethodType
.
methodType
(
ret
,
arg
));
}
static
MethodHandle
getmh2
(
MethodHandle
mh1
,
Class
ret
,
Class
arg
)
{
return
MethodHandles
.
convertArguments
(
mh1
,
MethodType
.
methodType
(
ret
,
arg
));
}
static
MethodHandle
getmh3
(
MethodHandle
mh1
,
Class
ret
,
Class
arg
)
{
return
MethodHandles
.
convertArguments
(
mh1
,
MethodType
.
methodType
(
ret
,
arg
));
}
// test adapter_opt_i2i
static
void
testboolean
()
throws
Throwable
{
boolean
[]
a
=
new
boolean
[]
{
true
,
false
};
for
(
int
i
=
0
;
i
<
a
.
length
;
i
++)
{
doboolean
(
a
[
i
]);
}
}
static
void
doboolean
(
boolean
x
)
throws
Throwable
{
if
(
DEBUG
)
System
.
out
.
println
(
"boolean="
+
x
);
// boolean
{
MethodHandle
mh1
=
getmh1
(
boolean
.
class
,
boolean
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
boolean
.
class
,
boolean
.
class
);
// TODO add this for all cases when the bugs are fixed.
//MethodHandle mh3 = getmh3(mh1, boolean.class, boolean.class);
boolean
a
=
mh1
.<
boolean
>
invokeExact
((
boolean
)
x
);
boolean
b
=
mh2
.<
boolean
>
invokeExact
(
x
);
//boolean c = mh3.<boolean>invokeExact((boolean) x);
assert
a
==
b
:
a
+
" != "
+
b
;
//assert c == x : c + " != " + x;
}
// byte
{
MethodHandle
mh1
=
getmh1
(
byte
.
class
,
byte
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
byte
.
class
,
boolean
.
class
);
byte
a
=
mh1
.<
byte
>
invokeExact
((
byte
)
(
x
?
1
:
0
));
byte
b
=
mh2
.<
byte
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// char
{
MethodHandle
mh1
=
getmh1
(
char
.
class
,
char
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
char
.
class
,
boolean
.
class
);
char
a
=
mh1
.<
char
>
invokeExact
((
char
)
(
x
?
1
:
0
));
char
b
=
mh2
.<
char
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// short
{
MethodHandle
mh1
=
getmh1
(
short
.
class
,
short
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
short
.
class
,
boolean
.
class
);
short
a
=
mh1
.<
short
>
invokeExact
((
short
)
(
x
?
1
:
0
));
short
b
=
mh2
.<
short
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
}
static
void
testbyte
()
throws
Throwable
{
byte
[]
a
=
new
byte
[]
{
Byte
.
MIN_VALUE
,
Byte
.
MIN_VALUE
+
1
,
-
0x0F
,
-
1
,
0
,
1
,
0x0F
,
Byte
.
MAX_VALUE
-
1
,
Byte
.
MAX_VALUE
};
for
(
int
i
=
0
;
i
<
a
.
length
;
i
++)
{
dobyte
(
a
[
i
]);
}
}
static
void
dobyte
(
byte
x
)
throws
Throwable
{
if
(
DEBUG
)
System
.
out
.
println
(
"byte="
+
x
);
// boolean
{
MethodHandle
mh1
=
getmh1
(
boolean
.
class
,
boolean
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
boolean
.
class
,
byte
.
class
);
boolean
a
=
mh1
.<
boolean
>
invokeExact
((
x
&
1
)
==
1
);
boolean
b
=
mh2
.<
boolean
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// byte
{
MethodHandle
mh1
=
getmh1
(
byte
.
class
,
byte
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
byte
.
class
,
byte
.
class
);
byte
a
=
mh1
.<
byte
>
invokeExact
((
byte
)
x
);
byte
b
=
mh2
.<
byte
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// char
{
MethodHandle
mh1
=
getmh1
(
char
.
class
,
char
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
char
.
class
,
byte
.
class
);
char
a
=
mh1
.<
char
>
invokeExact
((
char
)
x
);
char
b
=
mh2
.<
char
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// short
{
MethodHandle
mh1
=
getmh1
(
short
.
class
,
short
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
short
.
class
,
byte
.
class
);
short
a
=
mh1
.<
short
>
invokeExact
((
short
)
x
);
short
b
=
mh2
.<
short
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
}
static
void
testchar
()
throws
Throwable
{
char
[]
a
=
new
char
[]
{
Character
.
MIN_VALUE
,
Character
.
MIN_VALUE
+
1
,
0x000F
,
0x00FF
,
0x0FFF
,
Character
.
MAX_VALUE
-
1
,
Character
.
MAX_VALUE
};
for
(
int
i
=
0
;
i
<
a
.
length
;
i
++)
{
dochar
(
a
[
i
]);
}
}
static
void
dochar
(
char
x
)
throws
Throwable
{
if
(
DEBUG
)
System
.
out
.
println
(
"char="
+
x
);
// boolean
{
MethodHandle
mh1
=
getmh1
(
boolean
.
class
,
boolean
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
boolean
.
class
,
char
.
class
);
boolean
a
=
mh1
.<
boolean
>
invokeExact
((
x
&
1
)
==
1
);
boolean
b
=
mh2
.<
boolean
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// byte
{
MethodHandle
mh1
=
getmh1
(
byte
.
class
,
byte
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
byte
.
class
,
char
.
class
);
byte
a
=
mh1
.<
byte
>
invokeExact
((
byte
)
x
);
byte
b
=
mh2
.<
byte
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// char
{
MethodHandle
mh1
=
getmh1
(
char
.
class
,
char
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
char
.
class
,
char
.
class
);
char
a
=
mh1
.<
char
>
invokeExact
((
char
)
x
);
char
b
=
mh2
.<
char
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// short
{
MethodHandle
mh1
=
getmh1
(
short
.
class
,
short
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
short
.
class
,
char
.
class
);
short
a
=
mh1
.<
short
>
invokeExact
((
short
)
x
);
short
b
=
mh2
.<
short
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
}
static
void
testshort
()
throws
Throwable
{
short
[]
a
=
new
short
[]
{
Short
.
MIN_VALUE
,
Short
.
MIN_VALUE
+
1
,
-
0x0FFF
,
-
0x00FF
,
-
0x000F
,
-
1
,
0
,
1
,
0x000F
,
0x00FF
,
0x0FFF
,
Short
.
MAX_VALUE
-
1
,
Short
.
MAX_VALUE
};
for
(
int
i
=
0
;
i
<
a
.
length
;
i
++)
{
doshort
(
a
[
i
]);
}
}
static
void
doshort
(
short
x
)
throws
Throwable
{
if
(
DEBUG
)
System
.
out
.
println
(
"short="
+
x
);
// boolean
{
MethodHandle
mh1
=
getmh1
(
boolean
.
class
,
boolean
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
boolean
.
class
,
short
.
class
);
boolean
a
=
mh1
.<
boolean
>
invokeExact
((
x
&
1
)
==
1
);
boolean
b
=
mh2
.<
boolean
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// byte
{
MethodHandle
mh1
=
getmh1
(
byte
.
class
,
byte
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
byte
.
class
,
short
.
class
);
byte
a
=
mh1
.<
byte
>
invokeExact
((
byte
)
x
);
byte
b
=
mh2
.<
byte
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// char
{
MethodHandle
mh1
=
getmh1
(
char
.
class
,
char
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
char
.
class
,
short
.
class
);
char
a
=
mh1
.<
char
>
invokeExact
((
char
)
x
);
char
b
=
mh2
.<
char
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// short
{
MethodHandle
mh1
=
getmh1
(
short
.
class
,
short
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
short
.
class
,
short
.
class
);
short
a
=
mh1
.<
short
>
invokeExact
((
short
)
x
);
short
b
=
mh2
.<
short
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
}
static
void
testint
()
throws
Throwable
{
int
[]
a
=
new
int
[]
{
Integer
.
MIN_VALUE
,
Integer
.
MIN_VALUE
+
1
,
-
0x0FFFFFFF
,
-
0x00FFFFFF
,
-
0x000FFFFF
,
-
0x0000FFFF
,
-
0x00000FFF
,
-
0x000000FF
,
-
0x0000000F
,
-
1
,
0
,
1
,
0x0000000F
,
0x000000FF
,
0x00000FFF
,
0x0000FFFF
,
0x000FFFFF
,
0x00FFFFFF
,
0x0FFFFFFF
,
Integer
.
MAX_VALUE
-
1
,
Integer
.
MAX_VALUE
};
for
(
int
i
=
0
;
i
<
a
.
length
;
i
++)
{
doint
(
a
[
i
]);
}
}
static
void
doint
(
int
x
)
throws
Throwable
{
if
(
DEBUG
)
System
.
out
.
println
(
"int="
+
x
);
// boolean
{
MethodHandle
mh1
=
getmh1
(
boolean
.
class
,
boolean
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
boolean
.
class
,
int
.
class
);
boolean
a
=
mh1
.<
boolean
>
invokeExact
((
x
&
1
)
==
1
);
boolean
b
=
mh2
.<
boolean
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// byte
{
MethodHandle
mh1
=
getmh1
(
byte
.
class
,
byte
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
byte
.
class
,
int
.
class
);
byte
a
=
mh1
.<
byte
>
invokeExact
((
byte
)
x
);
byte
b
=
mh2
.<
byte
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// char
{
MethodHandle
mh1
=
getmh1
(
char
.
class
,
char
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
char
.
class
,
int
.
class
);
char
a
=
mh1
.<
char
>
invokeExact
((
char
)
x
);
char
b
=
mh2
.<
char
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// short
{
MethodHandle
mh1
=
getmh1
(
short
.
class
,
short
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
short
.
class
,
int
.
class
);
short
a
=
mh1
.<
short
>
invokeExact
((
short
)
x
);
short
b
=
mh2
.<
short
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// int
{
MethodHandle
mh1
=
getmh1
(
int
.
class
,
int
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
int
.
class
,
int
.
class
);
int
a
=
mh1
.<
int
>
invokeExact
((
int
)
x
);
int
b
=
mh2
.<
int
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
}
// test adapter_opt_l2i
static
void
testlong
()
throws
Throwable
{
long
[]
a
=
new
long
[]
{
Long
.
MIN_VALUE
,
Long
.
MIN_VALUE
+
1
,
-
0x000000000FFFFFFF
L
,
-
0x0000000000FFFFFF
L
,
-
0x00000000000FFFFF
L
,
-
0x000000000000FFFF
L
,
-
0x0000000000000FFF
L
,
-
0x00000000000000FF
L
,
-
0x000000000000000F
L
,
-
1L
,
0L
,
1L
,
0x000000000000000F
L
,
0x00000000000000FF
L
,
0x0000000000000FFF
L
,
0x0000000000000FFF
L
,
0x000000000000FFFF
L
,
0x00000000000FFFFF
L
,
0x0000000000FFFFFF
L
,
0x000000000FFFFFFF
L
,
Long
.
MAX_VALUE
-
1
,
Long
.
MAX_VALUE
};
for
(
int
i
=
0
;
i
<
a
.
length
;
i
++)
{
dolong
(
a
[
i
]);
}
}
static
void
dolong
(
long
x
)
throws
Throwable
{
if
(
DEBUG
)
System
.
out
.
println
(
"long="
+
x
);
// boolean
{
MethodHandle
mh1
=
getmh1
(
boolean
.
class
,
boolean
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
boolean
.
class
,
long
.
class
);
boolean
a
=
mh1
.<
boolean
>
invokeExact
((
x
&
1L
)
==
1L
);
boolean
b
=
mh2
.<
boolean
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// byte
{
MethodHandle
mh1
=
getmh1
(
byte
.
class
,
byte
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
byte
.
class
,
long
.
class
);
byte
a
=
mh1
.<
byte
>
invokeExact
((
byte
)
x
);
byte
b
=
mh2
.<
byte
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// char
{
MethodHandle
mh1
=
getmh1
(
char
.
class
,
char
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
char
.
class
,
long
.
class
);
char
a
=
mh1
.<
char
>
invokeExact
((
char
)
x
);
char
b
=
mh2
.<
char
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// short
{
MethodHandle
mh1
=
getmh1
(
short
.
class
,
short
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
short
.
class
,
long
.
class
);
short
a
=
mh1
.<
short
>
invokeExact
((
short
)
x
);
short
b
=
mh2
.<
short
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
// int
{
MethodHandle
mh1
=
getmh1
(
int
.
class
,
int
.
class
);
MethodHandle
mh2
=
getmh2
(
mh1
,
int
.
class
,
long
.
class
);
int
a
=
mh1
.<
int
>
invokeExact
((
int
)
x
);
int
b
=
mh2
.<
int
>
invokeExact
(
x
);
assert
a
==
b
:
a
+
" != "
+
b
;
}
}
// to int
public
static
boolean
foo
(
boolean
i
)
{
return
i
;
}
public
static
byte
foo
(
byte
i
)
{
return
i
;
}
public
static
char
foo
(
char
i
)
{
return
i
;
}
public
static
short
foo
(
short
i
)
{
return
i
;
}
public
static
int
foo
(
int
i
)
{
return
i
;
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录