author | stefank |
Thu, 09 May 2019 14:28:30 +0200 | |
changeset 54786 | ebf733a324d4 |
parent 53244 | 9807daeb47c4 |
child 57835 | c2bc7b07c67a |
permissions | -rw-r--r-- |
4013 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49390
diff
changeset
|
2 |
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved. |
31590
427d073af867
8086069: Adapt runtime calls to recent intrinsics to pass ints as long
goetz
parents:
22834
diff
changeset
|
3 |
* Copyright 2009, 2015, Red Hat, Inc. |
4013 | 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 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49390
diff
changeset
|
26 |
#ifndef CPU_ZERO_GLOBALDEFINITIONS_ZERO_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49390
diff
changeset
|
27 |
#define CPU_ZERO_GLOBALDEFINITIONS_ZERO_HPP |
7397 | 28 |
|
49390
95f0b54a3024
8199220: Zero build broken after 8195103, 8191102 and 8189871
enevill
parents:
47216
diff
changeset
|
29 |
#ifdef _LP64 |
95f0b54a3024
8199220: Zero build broken after 8195103, 8191102 and 8189871
enevill
parents:
47216
diff
changeset
|
30 |
#define SUPPORTS_NATIVE_CX8 |
95f0b54a3024
8199220: Zero build broken after 8195103, 8191102 and 8189871
enevill
parents:
47216
diff
changeset
|
31 |
#endif |
95f0b54a3024
8199220: Zero build broken after 8195103, 8191102 and 8189871
enevill
parents:
47216
diff
changeset
|
32 |
|
4013 | 33 |
#include <ffi.h> |
7397 | 34 |
|
35112
b3c4347bb751
8144466: ppc64: fix argument passing through opto stubs.
goetz
parents:
31590
diff
changeset
|
35 |
// Indicates whether the C calling conventions require that |
b3c4347bb751
8144466: ppc64: fix argument passing through opto stubs.
goetz
parents:
31590
diff
changeset
|
36 |
// 32-bit integer argument values are extended to 64 bits. |
b3c4347bb751
8144466: ppc64: fix argument passing through opto stubs.
goetz
parents:
31590
diff
changeset
|
37 |
const bool CCallingConventionRequiresIntsAsLongs = false; |
b3c4347bb751
8144466: ppc64: fix argument passing through opto stubs.
goetz
parents:
31590
diff
changeset
|
38 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49390
diff
changeset
|
39 |
#endif // CPU_ZERO_GLOBALDEFINITIONS_ZERO_HPP |