author | sundar |
Tue, 25 Jun 2013 17:31:19 +0530 | |
changeset 18615 | 3f6e6adcbc1a |
parent 13963 | e5b53c306fb5 |
child 27691 | 733f189ad1f7 |
permissions | -rw-r--r-- |
1 | 1 |
// |
13963
e5b53c306fb5
7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents:
11961
diff
changeset
|
2 |
// Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
// |
|
5 |
// This code is free software; you can redistribute it and/or modify it |
|
6 |
// under the terms of the GNU General Public License version 2 only, as |
|
7 |
// published by the Free Software Foundation. |
|
8 |
// |
|
9 |
// This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
// version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
// accompanied this code). |
|
14 |
// |
|
15 |
// You should have received a copy of the GNU General Public License version |
|
16 |
// 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
// |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
19 |
// Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
20 |
// or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
21 |
// questions. |
1 | 22 |
// |
23 |
// |
|
24 |
||
25 |
// The argument size of each inline directive is ignored by the compiler |
|
26 |
// and is set to the number of arguments as documentation. |
|
27 |
||
28 |
// Get the raw thread ID from %gs:0 |
|
29 |
.inline _raw_thread_id,0 |
|
30 |
movq %fs:0, %rax |
|
31 |
.end |
|
32 |
||
11961
0abd4cd26e5a
7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents:
11417
diff
changeset
|
33 |
// Get current sp |
0abd4cd26e5a
7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents:
11417
diff
changeset
|
34 |
.inline _get_current_sp,0 |
0abd4cd26e5a
7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents:
11417
diff
changeset
|
35 |
.volatile |
0abd4cd26e5a
7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents:
11417
diff
changeset
|
36 |
movq %rsp, %rax |
0abd4cd26e5a
7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents:
11417
diff
changeset
|
37 |
.end |
0abd4cd26e5a
7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents:
11417
diff
changeset
|
38 |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7662
diff
changeset
|
39 |
// Get current fp |
1659
b9a3819ac7c6
6773838: There is no calling stack for Compiler thread in hs_err file on x86
coleenp
parents:
1
diff
changeset
|
40 |
.inline _get_current_fp,0 |
b9a3819ac7c6
6773838: There is no calling stack for Compiler thread in hs_err file on x86
coleenp
parents:
1
diff
changeset
|
41 |
.volatile |
1 | 42 |
movq %rbp, %rax |
43 |
.end |
|
44 |
||
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7662
diff
changeset
|
45 |
// Support for os::rdtsc() |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7662
diff
changeset
|
46 |
.inline _raw_rdtsc,0 |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7662
diff
changeset
|
47 |
rdtsc |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7662
diff
changeset
|
48 |
salq $32, %rdx |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7662
diff
changeset
|
49 |
orq %rdx, %rax |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7662
diff
changeset
|
50 |
.end |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7662
diff
changeset
|
51 |
|
1 | 52 |
// Support for jint Atomic::add(jint add_value, volatile jint* dest) |
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
2105
diff
changeset
|
53 |
.inline _Atomic_add,2 |
1 | 54 |
movl %edi, %eax // save add_value for return |
55 |
lock |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
2105
diff
changeset
|
56 |
xaddl %edi, (%rsi) |
1 | 57 |
addl %edi, %eax |
58 |
.end |
|
59 |
||
60 |
// Support for jlong Atomic::add(jlong add_value, volatile jlong* dest) |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
2105
diff
changeset
|
61 |
.inline _Atomic_add_long,2 |
1 | 62 |
movq %rdi, %rax // save add_value for return |
63 |
lock |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
2105
diff
changeset
|
64 |
xaddq %rdi, (%rsi) |
1 | 65 |
addq %rdi, %rax |
66 |
.end |
|
67 |
||
68 |
// Support for jint Atomic::xchg(jint exchange_value, volatile jint* dest). |
|
69 |
.inline _Atomic_xchg,2 |
|
70 |
xchgl (%rsi), %edi |
|
71 |
movl %edi, %eax |
|
72 |
.end |
|
73 |
||
74 |
// Support for jlong Atomic::xchg(jlong exchange_value, volatile jlong* dest). |
|
75 |
.inline _Atomic_xchg_long,2 |
|
76 |
xchgq (%rsi), %rdi |
|
77 |
movq %rdi, %rax |
|
78 |
.end |
|
79 |
||
80 |
// Support for jint Atomic::cmpxchg(jint exchange_value, |
|
81 |
// volatile jint *dest, |
|
82 |
// jint compare_value) |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
2105
diff
changeset
|
83 |
.inline _Atomic_cmpxchg,3 |
1 | 84 |
movl %edx, %eax // compare_value |
85 |
lock |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
2105
diff
changeset
|
86 |
cmpxchgl %edi, (%rsi) |
1 | 87 |
.end |
88 |
||
89 |
// Support for jlong Atomic::cmpxchg(jlong exchange_value, |
|
90 |
// volatile jlong* dest, |
|
91 |
// jlong compare_value) |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
2105
diff
changeset
|
92 |
.inline _Atomic_cmpxchg_long,3 |
1 | 93 |
movq %rdx, %rax // compare_value |
94 |
lock |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
2105
diff
changeset
|
95 |
cmpxchgq %rdi, (%rsi) |
1 | 96 |
.end |
97 |
||
98 |
// Support for OrderAccess::acquire() |
|
99 |
.inline _OrderAccess_acquire,0 |
|
100 |
movl 0(%rsp), %eax |
|
101 |
.end |
|
102 |
||
103 |
// Support for OrderAccess::fence() |
|
104 |
.inline _OrderAccess_fence,0 |
|
105 |
lock |
|
106 |
addl $0, (%rsp) |
|
107 |
.end |
|
108 |
||
109 |
// Support for u2 Bytes::swap_u2(u2 x) |
|
110 |
.inline _raw_swap_u2,1 |
|
111 |
movw %di, %ax |
|
112 |
rorw $8, %ax |
|
113 |
.end |
|
114 |
||
115 |
// Support for u4 Bytes::swap_u4(u4 x) |
|
116 |
.inline _raw_swap_u4,1 |
|
117 |
movl %edi, %eax |
|
118 |
bswapl %eax |
|
119 |
.end |
|
120 |
||
121 |
// Support for u8 Bytes::swap_u8(u8 x) |
|
122 |
.inline _raw_swap_u8,1 |
|
123 |
movq %rdi, %rax |
|
124 |
bswapq %rax |
|
125 |
.end |
|
126 |
||
127 |
// Support for void Prefetch::read |
|
128 |
.inline _Prefetch_read,2 |
|
129 |
prefetcht0 (%rdi, %rsi, 1) |
|
130 |
.end |
|
131 |
||
132 |
// Support for void Prefetch::write |
|
133 |
// We use prefetcht0 because em64t doesn't support prefetchw. |
|
134 |
// prefetchw is a 3dnow instruction. |
|
135 |
.inline _Prefetch_write,2 |
|
136 |
prefetcht0 (%rdi, %rsi, 1) |
|
137 |
.end |