author | stefank |
Thu, 09 May 2019 14:28:30 +0200 | |
changeset 54786 | ebf733a324d4 |
parent 47216 | 71c04702a3d5 |
child 59122 | 5d73255c2d52 |
permissions | -rw-r--r-- |
4013 | 1 |
/* |
30209
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
25468
diff
changeset
|
2 |
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. |
4013 | 3 |
* Copyright 2009 Red Hat, Inc. |
4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4013
diff
changeset
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4013
diff
changeset
|
21 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4013
diff
changeset
|
22 |
* questions. |
4013 | 23 |
* |
24 |
*/ |
|
25 |
||
7397 | 26 |
#include "precompiled.hpp" |
27 |
#include "assembler_zero.inline.hpp" |
|
28 |
#include "memory/resourceArea.hpp" |
|
29 |
#include "runtime/java.hpp" |
|
30 |
#include "runtime/stubCodeGenerator.hpp" |
|
31 |
#include "vm_version_zero.hpp" |
|
32 |
||
30209
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
25468
diff
changeset
|
33 |
|
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
25468
diff
changeset
|
34 |
void VM_Version::initialize() { |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
25468
diff
changeset
|
35 |
// This machine does not allow unaligned memory accesses |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
25468
diff
changeset
|
36 |
if (! FLAG_IS_DEFAULT(UseUnalignedAccesses)) { |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
25468
diff
changeset
|
37 |
warning("Unaligned memory access is not available on this CPU"); |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
25468
diff
changeset
|
38 |
FLAG_SET_DEFAULT(UseUnalignedAccesses, false); |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
25468
diff
changeset
|
39 |
} |
33750
6f5873dfa67f
8141140: Zero JVM fails to initialize after JDK-8078554
sgehwolf
parents:
30209
diff
changeset
|
40 |
// Disable prefetching for Zero |
6f5873dfa67f
8141140: Zero JVM fails to initialize after JDK-8078554
sgehwolf
parents:
30209
diff
changeset
|
41 |
if (! FLAG_IS_DEFAULT(AllocatePrefetchDistance)) { |
6f5873dfa67f
8141140: Zero JVM fails to initialize after JDK-8078554
sgehwolf
parents:
30209
diff
changeset
|
42 |
warning("Prefetching is not available for a Zero VM"); |
6f5873dfa67f
8141140: Zero JVM fails to initialize after JDK-8078554
sgehwolf
parents:
30209
diff
changeset
|
43 |
} |
6f5873dfa67f
8141140: Zero JVM fails to initialize after JDK-8078554
sgehwolf
parents:
30209
diff
changeset
|
44 |
FLAG_SET_DEFAULT(AllocatePrefetchDistance, 0); |
30209
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
25468
diff
changeset
|
45 |
} |