hotspot/src/cpu/ppc/vm/globalDefinitions_ppc.hpp
author mdoerr
Fri, 18 Mar 2016 12:50:17 +0100
changeset 37275 a8858401c5f9
parent 36560 59ca2b7f6162
child 38931 3cf28d630349
permissions -rw-r--r--
8152172: PPC64: Support AES intrinsics Reviewed-by: kvn, mdoerr, simonis Contributed-by: horii@jp.ibm.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     1
/*
31590
427d073af867 8086069: Adapt runtime calls to recent intrinsics to pass ints as long
goetz
parents: 27012
diff changeset
     2
 * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved.
35594
cc13089c6327 8147937: Adapt SAP copyrights to new company name.
goetz
parents: 35232
diff changeset
     3
 * Copyright (c) 2012, 2015 SAP SE. All rights reserved.
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     5
 *
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     6
 * This code is free software; you can redistribute it and/or modify it
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     7
 * under the terms of the GNU General Public License version 2 only, as
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     8
 * published by the Free Software Foundation.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     9
 *
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    14
 * accompanied this code).
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    15
 *
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    19
 *
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    22
 * questions.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    23
 *
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    24
 */
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    25
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    26
#ifndef CPU_PPC_VM_GLOBALDEFINITIONS_PPC_HPP
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    27
#define CPU_PPC_VM_GLOBALDEFINITIONS_PPC_HPP
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    28
35166
23125410af16 8145117: PPC64: Remove cpp interpreter implementation
goetz
parents: 35063
diff changeset
    29
#ifdef CC_INTERP
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 35166
diff changeset
    30
#error "CC_INTERP is no longer supported. Removed in change 8145117."
35166
23125410af16 8145117: PPC64: Remove cpp interpreter implementation
goetz
parents: 35063
diff changeset
    31
#endif
23125410af16 8145117: PPC64: Remove cpp interpreter implementation
goetz
parents: 35063
diff changeset
    32
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    33
// Size of PPC Instructions
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    34
const int BytesPerInstWord = 4;
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    35
22834
3e2df6a4a28c 8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents: 22824
diff changeset
    36
const int StackAlignmentInBytes = 16;
3e2df6a4a28c 8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents: 22824
diff changeset
    37
35112
b3c4347bb751 8144466: ppc64: fix argument passing through opto stubs.
goetz
parents: 35085
diff changeset
    38
// Indicates whether the C calling conventions require that
b3c4347bb751 8144466: ppc64: fix argument passing through opto stubs.
goetz
parents: 35085
diff changeset
    39
// 32-bit integer argument values are extended to 64 bits.
b3c4347bb751 8144466: ppc64: fix argument passing through opto stubs.
goetz
parents: 35085
diff changeset
    40
const bool CCallingConventionRequiresIntsAsLongs = true;
b3c4347bb751 8144466: ppc64: fix argument passing through opto stubs.
goetz
parents: 35085
diff changeset
    41
27012
f8fdfab4757b 8059592: Recent bugfixes in ppc64 port.
goetz
parents: 22868
diff changeset
    42
#define SUPPORTS_NATIVE_CX8
f8fdfab4757b 8059592: Recent bugfixes in ppc64 port.
goetz
parents: 22868
diff changeset
    43
22868
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22834
diff changeset
    44
// The PPC CPUs are NOT multiple-copy-atomic.
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22834
diff changeset
    45
#define CPU_NOT_MULTIPLE_COPY_ATOMIC
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22834
diff changeset
    46
35085
839c8ba29724 8144019: PPC64 C1: Introduce Client Compiler
mdoerr
parents: 31590
diff changeset
    47
// The expected size in bytes of a cache line, used to pad data structures.
839c8ba29724 8144019: PPC64 C1: Introduce Client Compiler
mdoerr
parents: 31590
diff changeset
    48
#define DEFAULT_CACHE_LINE_SIZE 128
839c8ba29724 8144019: PPC64 C1: Introduce Client Compiler
mdoerr
parents: 31590
diff changeset
    49
36560
59ca2b7f6162 8150353: PPC64LE: Support RTM on linux
kvn
parents: 35594
diff changeset
    50
#if defined(COMPILER2) && (defined(AIX) || defined(linux))
35063
cb24277be2e7 8144847: PPC64: Update Transactional Memory and Atomic::cmpxchg code
mdoerr
parents: 31590
diff changeset
    51
// Include Transactional Memory lock eliding optimization
cb24277be2e7 8144847: PPC64: Update Transactional Memory and Atomic::cmpxchg code
mdoerr
parents: 31590
diff changeset
    52
#define INCLUDE_RTM_OPT 1
cb24277be2e7 8144847: PPC64: Update Transactional Memory and Atomic::cmpxchg code
mdoerr
parents: 31590
diff changeset
    53
#endif
cb24277be2e7 8144847: PPC64: Update Transactional Memory and Atomic::cmpxchg code
mdoerr
parents: 31590
diff changeset
    54
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    55
#endif // CPU_PPC_VM_GLOBALDEFINITIONS_PPC_HPP