author | dfuchs |
Wed, 28 Jan 2015 17:52:48 +0100 | |
changeset 28737 | ca4b6a6e5cc8 |
parent 28168 | b9139c952329 |
child 28947 | 2ea471384931 |
permissions | -rw-r--r-- |
1 | 1 |
# |
28737
ca4b6a6e5cc8
8068730: Increase the precision of the implementation of java.time.Clock.systemUTC()
dfuchs
parents:
28168
diff
changeset
|
2 |
# Copyright (c) 2002, 2015, 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:
5045
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5045
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:
5045
diff
changeset
|
21 |
# questions. |
1 | 22 |
# |
23 |
# |
|
24 |
||
25 |
# Define public interface. |
|
26 |
||
27 |
SUNWprivate_1.1 { |
|
28 |
global: |
|
29 |
# JNI |
|
30 |
JNI_CreateJavaVM; |
|
31 |
JNI_GetCreatedJavaVMs; |
|
32 |
JNI_GetDefaultJavaVMInitArgs; |
|
33 |
||
34 |
# JVM |
|
35 |
JVM_ActiveProcessorCount; |
|
36 |
JVM_ArrayCopy; |
|
37 |
JVM_AssertionStatusDirectives; |
|
38 |
JVM_ClassDepth; |
|
39 |
JVM_ClassLoaderDepth; |
|
40 |
JVM_Clone; |
|
41 |
JVM_ConstantPoolGetClassAt; |
|
42 |
JVM_ConstantPoolGetClassAtIfLoaded; |
|
43 |
JVM_ConstantPoolGetDoubleAt; |
|
44 |
JVM_ConstantPoolGetFieldAt; |
|
45 |
JVM_ConstantPoolGetFieldAtIfLoaded; |
|
46 |
JVM_ConstantPoolGetFloatAt; |
|
47 |
JVM_ConstantPoolGetIntAt; |
|
48 |
JVM_ConstantPoolGetLongAt; |
|
49 |
JVM_ConstantPoolGetMethodAt; |
|
50 |
JVM_ConstantPoolGetMethodAtIfLoaded; |
|
51 |
JVM_ConstantPoolGetMemberRefInfoAt; |
|
52 |
JVM_ConstantPoolGetSize; |
|
53 |
JVM_ConstantPoolGetStringAt; |
|
54 |
JVM_ConstantPoolGetUTF8At; |
|
55 |
JVM_CountStackFrames; |
|
56 |
JVM_CurrentClassLoader; |
|
57 |
JVM_CurrentLoadedClass; |
|
58 |
JVM_CurrentThread; |
|
59 |
JVM_CurrentTimeMillis; |
|
60 |
JVM_DefineClass; |
|
61 |
JVM_DefineClassWithSource; |
|
3820
0a8fbbe180db
6830542: Performance: JVM_DefineClass already verified.
acorn
parents:
781
diff
changeset
|
62 |
JVM_DefineClassWithSourceCond; |
1 | 63 |
JVM_DesiredAssertionStatus; |
64 |
JVM_DoPrivileged; |
|
363
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
65 |
JVM_DTraceGetVersion; |
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
66 |
JVM_DTraceActivate; |
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
67 |
JVM_DTraceIsProbeEnabled; |
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
68 |
JVM_DTraceIsSupported; |
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
69 |
JVM_DTraceDispose; |
1 | 70 |
JVM_DumpAllStacks; |
71 |
JVM_DumpThreads; |
|
72 |
JVM_FillInStackTrace; |
|
27021 | 73 |
JVM_FindClassFromCaller; |
1 | 74 |
JVM_FindClassFromClass; |
772
96110c02b165
6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents:
389
diff
changeset
|
75 |
JVM_FindClassFromBootLoader; |
1 | 76 |
JVM_FindLibraryEntry; |
77 |
JVM_FindLoadedClass; |
|
78 |
JVM_FindPrimitiveClass; |
|
79 |
JVM_FindSignal; |
|
80 |
JVM_FreeMemory; |
|
81 |
JVM_GC; |
|
82 |
JVM_GetAllThreads; |
|
83 |
JVM_GetArrayElement; |
|
84 |
JVM_GetArrayLength; |
|
85 |
JVM_GetCPClassNameUTF; |
|
86 |
JVM_GetCPFieldClassNameUTF; |
|
87 |
JVM_GetCPFieldModifiers; |
|
88 |
JVM_GetCPFieldNameUTF; |
|
89 |
JVM_GetCPFieldSignatureUTF; |
|
90 |
JVM_GetCPMethodClassNameUTF; |
|
91 |
JVM_GetCPMethodModifiers; |
|
92 |
JVM_GetCPMethodNameUTF; |
|
93 |
JVM_GetCPMethodSignatureUTF; |
|
94 |
JVM_GetCallerClass; |
|
95 |
JVM_GetClassAccessFlags; |
|
96 |
JVM_GetClassAnnotations; |
|
97 |
JVM_GetClassCPEntriesCount; |
|
98 |
JVM_GetClassCPTypes; |
|
99 |
JVM_GetClassConstantPool; |
|
100 |
JVM_GetClassContext; |
|
101 |
JVM_GetClassDeclaredConstructors; |
|
102 |
JVM_GetClassDeclaredFields; |
|
103 |
JVM_GetClassDeclaredMethods; |
|
104 |
JVM_GetClassFieldsCount; |
|
105 |
JVM_GetClassInterfaces; |
|
106 |
JVM_GetClassMethodsCount; |
|
107 |
JVM_GetClassModifiers; |
|
108 |
JVM_GetClassName; |
|
109 |
JVM_GetClassNameUTF; |
|
24242
73337a12595a
8041980: (hotspot) sun/jvmstat/monitor/MonitoredVm/CR6672135.java failing on all platforms
sla
parents:
22189
diff
changeset
|
110 |
JVM_GetClassSignature; |
1 | 111 |
JVM_GetClassSigners; |
15097
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
11165
diff
changeset
|
112 |
JVM_GetClassTypeAnnotations; |
1 | 113 |
JVM_GetDeclaredClasses; |
114 |
JVM_GetDeclaringClass; |
|
115 |
JVM_GetEnclosingMethodInfo; |
|
116 |
JVM_GetFieldIxModifiers; |
|
16444
e9cfab742724
8009382: Add JVM_Get{Field|Method}TypeAnnotations
rbackman
parents:
15439
diff
changeset
|
117 |
JVM_GetFieldTypeAnnotations; |
1 | 118 |
JVM_GetInheritedAccessControlContext; |
119 |
JVM_GetInterfaceVersion; |
|
120 |
JVM_GetManagement; |
|
121 |
JVM_GetMethodIxArgsSize; |
|
122 |
JVM_GetMethodIxByteCode; |
|
123 |
JVM_GetMethodIxByteCodeLength; |
|
124 |
JVM_GetMethodIxExceptionIndexes; |
|
125 |
JVM_GetMethodIxExceptionTableEntry; |
|
126 |
JVM_GetMethodIxExceptionTableLength; |
|
127 |
JVM_GetMethodIxExceptionsCount; |
|
128 |
JVM_GetMethodIxLocalsCount; |
|
129 |
JVM_GetMethodIxMaxStack; |
|
130 |
JVM_GetMethodIxModifiers; |
|
131 |
JVM_GetMethodIxNameUTF; |
|
132 |
JVM_GetMethodIxSignatureUTF; |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15097
diff
changeset
|
133 |
JVM_GetMethodParameters; |
16444
e9cfab742724
8009382: Add JVM_Get{Field|Method}TypeAnnotations
rbackman
parents:
15439
diff
changeset
|
134 |
JVM_GetMethodTypeAnnotations; |
28737
ca4b6a6e5cc8
8068730: Increase the precision of the implementation of java.time.Clock.systemUTC()
dfuchs
parents:
28168
diff
changeset
|
135 |
JVM_GetNanoTimeAdjustment; |
1 | 136 |
JVM_GetPrimitiveArrayElement; |
137 |
JVM_GetProtectionDomain; |
|
138 |
JVM_GetStackAccessControlContext; |
|
139 |
JVM_GetStackTraceDepth; |
|
140 |
JVM_GetStackTraceElement; |
|
141 |
JVM_GetSystemPackage; |
|
142 |
JVM_GetSystemPackages; |
|
24242
73337a12595a
8041980: (hotspot) sun/jvmstat/monitor/MonitoredVm/CR6672135.java failing on all platforms
sla
parents:
22189
diff
changeset
|
143 |
JVM_GetTemporaryDirectory; |
1 | 144 |
JVM_GetVersionInfo; |
145 |
JVM_Halt; |
|
146 |
JVM_HoldsLock; |
|
147 |
JVM_IHashCode; |
|
148 |
JVM_InitAgentProperties; |
|
149 |
JVM_InitProperties; |
|
150 |
JVM_InternString; |
|
151 |
JVM_Interrupt; |
|
152 |
JVM_InvokeMethod; |
|
153 |
JVM_IsArrayClass; |
|
154 |
JVM_IsConstructorIx; |
|
155 |
JVM_IsInterface; |
|
156 |
JVM_IsInterrupted; |
|
157 |
JVM_IsPrimitiveClass; |
|
158 |
JVM_IsSameClassPackage; |
|
159 |
JVM_IsSupportedJNIVersion; |
|
160 |
JVM_IsThreadAlive; |
|
15439
a72c53517fe7
8004967: Default method cause VerifyError: Illegal use of nonvirtual
acorn
parents:
15229
diff
changeset
|
161 |
JVM_IsVMGeneratedMethodIx; |
1 | 162 |
JVM_LatestUserDefinedLoader; |
163 |
JVM_LoadLibrary; |
|
164 |
JVM_MaxObjectInspectionAge; |
|
165 |
JVM_MaxMemory; |
|
166 |
JVM_MonitorNotify; |
|
167 |
JVM_MonitorNotifyAll; |
|
168 |
JVM_MonitorWait; |
|
169 |
JVM_NanoTime; |
|
170 |
JVM_NativePath; |
|
171 |
JVM_NewArray; |
|
172 |
JVM_NewInstanceFromConstructor; |
|
173 |
JVM_NewMultiArray; |
|
174 |
JVM_RaiseSignal; |
|
175 |
JVM_RawMonitorCreate; |
|
176 |
JVM_RawMonitorDestroy; |
|
177 |
JVM_RawMonitorEnter; |
|
178 |
JVM_RawMonitorExit; |
|
179 |
JVM_RegisterSignal; |
|
180 |
JVM_ReleaseUTF; |
|
181 |
JVM_ResumeThread; |
|
182 |
JVM_SetArrayElement; |
|
183 |
JVM_SetClassSigners; |
|
11165 | 184 |
JVM_SetNativeThreadName; |
1 | 185 |
JVM_SetPrimitiveArrayElement; |
186 |
JVM_SetThreadPriority; |
|
187 |
JVM_Sleep; |
|
188 |
JVM_StartThread; |
|
189 |
JVM_StopThread; |
|
190 |
JVM_SuspendThread; |
|
191 |
JVM_SupportsCX8; |
|
192 |
JVM_TotalMemory; |
|
193 |
JVM_UnloadLibrary; |
|
194 |
JVM_Yield; |
|
195 |
JVM_handle_linux_signal; |
|
196 |
||
197 |
# miscellaneous functions |
|
198 |
jio_fprintf; |
|
199 |
jio_printf; |
|
200 |
jio_snprintf; |
|
201 |
jio_vfprintf; |
|
202 |
jio_vsnprintf; |
|
388 | 203 |
fork1; |
204 |
numa_warn; |
|
205 |
numa_error; |
|
1 | 206 |
|
207 |
# Needed because there is no JVM interface for this. |
|
208 |
sysThreadAvailableStackWithSlack; |
|
209 |
||
210 |
# This is for Forte Analyzer profiling support. |
|
211 |
AsyncGetCallTrace; |
|
5045
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
3820
diff
changeset
|
212 |
|
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
3820
diff
changeset
|
213 |
# INSERT VTABLE SYMBOLS HERE |
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
3820
diff
changeset
|
214 |
|
1 | 215 |
local: |
216 |
*; |
|
217 |
}; |
|
218 |