author | alexsch |
Thu, 31 Jul 2014 14:28:10 +0400 | |
changeset 26019 | 10a56d28f48d |
parent 22234 | da823d78ad65 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
22234
da823d78ad65
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents:
20279
diff
changeset
|
2 |
* Copyright (c) 1999, 2013, 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:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
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:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef OS_CPU_LINUX_X86_VM_OS_LINUX_X86_HPP |
26 |
#define OS_CPU_LINUX_X86_VM_OS_LINUX_X86_HPP |
|
27 |
||
1 | 28 |
static void setup_fpu(); |
29 |
static bool supports_sse(); |
|
30 |
||
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7397
diff
changeset
|
31 |
static jlong rdtsc(); |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7397
diff
changeset
|
32 |
|
1 | 33 |
static bool is_allocatable(size_t bytes); |
34 |
||
35 |
// Used to register dynamic code cache area with the OS |
|
36 |
// Note: Currently only used in 64 bit Windows implementations |
|
37 |
static bool register_code_area(char *low, char *high) { return true; } |
|
7397 | 38 |
|
20279
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
39 |
/* |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
40 |
* Work-around for broken NX emulation using CS limit, Red Hat patch "Exec-Shield" |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
41 |
* (IA32 only). |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
42 |
* |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
43 |
* Map and execute at a high VA to prevent CS lazy updates race with SMP MM |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
44 |
* invalidation.Further code generation by the JVM will no longer cause CS limit |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
45 |
* updates. |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
46 |
* |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
47 |
* Affects IA32: RHEL 5 & 6, Ubuntu 10.04 (LTS), 10.10, 11.04, 11.10, 12.04. |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
48 |
* @see JDK-8023956 |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
49 |
*/ |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
50 |
static void workaround_expand_exec_shield_cs_limit(); |
7ffa08fef52a
8023956: Provide a work-around to broken Linux 32 bit "Exec Shield" using CS for NX emulation (crashing with SI_KERNEL)
dsimms
parents:
13963
diff
changeset
|
51 |
|
7397 | 52 |
#endif // OS_CPU_LINUX_X86_VM_OS_LINUX_X86_HPP |