Files
mirror_zfs/lib/libspl/include/sys/isa_defs.h
T

295 lines
5.6 KiB
C
Raw Normal View History

2025-01-04 11:04:27 +11:00
// SPDX-License-Identifier: CDDL-1.0
2010-08-26 11:50:56 -07:00
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2022-07-11 23:16:13 +02:00
* or https://opensource.org/licenses/CDDL-1.0.
2010-08-26 11:50:56 -07:00
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _SYS_ISA_DEFS_H
#define _SYS_ISA_DEFS_H
#ifdef __cplusplus
extern "C" {
#endif
/* x86_64 arch specific defines */
#if defined(__x86_64) || defined(__x86_64__)
#if !defined(__x86_64)
2013-11-01 20:26:11 +01:00
#define __x86_64
2010-08-26 11:50:56 -07:00
#endif
#if !defined(__amd64)
2013-11-01 20:26:11 +01:00
#define __amd64
2010-08-26 11:50:56 -07:00
#endif
#if !defined(__x86)
2013-11-01 20:26:11 +01:00
#define __x86
2010-08-26 11:50:56 -07:00
#endif
2020-05-18 00:00:49 +02:00
#if defined(_ILP32)
/* x32-specific defines; careful to *not* define _LP64 here */
#else
2010-08-26 11:50:56 -07:00
#if !defined(_LP64)
2013-11-01 20:26:11 +01:00
#define _LP64
2010-08-26 11:50:56 -07:00
#endif
2020-05-18 00:00:49 +02:00
#endif
2010-08-26 11:50:56 -07:00
2020-07-28 13:02:49 -07:00
#if !defined(_ZFS_LITTLE_ENDIAN)
#define _ZFS_LITTLE_ENDIAN
2010-08-26 11:50:56 -07:00
#endif
2013-11-01 20:26:11 +01:00
#define _SUNOS_VTOC_16
2018-07-11 13:10:40 -07:00
#define HAVE_EFFICIENT_UNALIGNED_ACCESS
2010-08-26 11:50:56 -07:00
/* i386 arch specific defines */
#elif defined(__i386) || defined(__i386__)
#if !defined(__i386)
2013-11-01 20:26:11 +01:00
#define __i386
2010-08-26 11:50:56 -07:00
#endif
#if !defined(__x86)
2013-11-01 20:26:11 +01:00
#define __x86
2010-08-26 11:50:56 -07:00
#endif
#if !defined(_ILP32)
2013-11-01 20:26:11 +01:00
#define _ILP32
2010-08-26 11:50:56 -07:00
#endif
2020-07-28 13:02:49 -07:00
#if !defined(_ZFS_LITTLE_ENDIAN)
#define _ZFS_LITTLE_ENDIAN
2010-08-26 11:50:56 -07:00
#endif
2013-11-01 20:26:11 +01:00
#define _SUNOS_VTOC_16
2018-07-11 13:10:40 -07:00
#define HAVE_EFFICIENT_UNALIGNED_ACCESS
2010-08-26 11:50:56 -07:00
/* powerpc arch specific defines */
2015-12-09 14:58:29 -08:00
#elif defined(__powerpc) || defined(__powerpc__) || defined(__powerpc64__)
2010-08-26 11:50:56 -07:00
#if !defined(__powerpc)
2013-11-01 20:26:11 +01:00
#define __powerpc
2010-08-26 11:50:56 -07:00
#endif
#if !defined(__powerpc__)
2013-11-01 20:26:11 +01:00
#define __powerpc__
2010-08-26 11:50:56 -07:00
#endif
2015-12-09 14:58:29 -08:00
#if defined(__powerpc64__)
2010-08-26 11:50:56 -07:00
#if !defined(_LP64)
2013-11-01 20:26:11 +01:00
#define _LP64
2015-12-09 14:58:29 -08:00
#endif
2010-08-26 11:50:56 -07:00
#else
2015-12-09 14:58:29 -08:00
#if !defined(_ILP32)
#define _ILP32
2010-08-26 11:50:56 -07:00
#endif
#endif
2013-11-01 20:26:11 +01:00
#define _SUNOS_VTOC_16
2018-07-11 13:10:40 -07:00
#define HAVE_EFFICIENT_UNALIGNED_ACCESS
2010-08-26 11:50:56 -07:00
2020-07-28 13:02:49 -07:00
#if defined(__BYTE_ORDER)
#if defined(__BIG_ENDIAN) && __BYTE_ORDER == __BIG_ENDIAN
#define _ZFS_BIG_ENDIAN
#elif defined(__LITTLE_ENDIAN) && __BYTE_ORDER == __LITTLE_ENDIAN
#define _ZFS_LITTLE_ENDIAN
#endif
#elif defined(_BYTE_ORDER)
#if defined(_BIG_ENDIAN) && _BYTE_ORDER == _BIG_ENDIAN
#define _ZFS_BIG_ENDIAN
#elif defined(_LITTLE_ENDIAN) && _BYTE_ORDER == _LITTLE_ENDIAN
#define _ZFS_LITTLE_ENDIAN
#endif
#elif defined(_BIG_ENDIAN) && !defined(_LITTLE_ENDIAN)
#define _ZFS_BIG_ENDIAN
#elif defined(_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN)
#define _ZFS_LITTLE_ENDIAN
#endif
2012-04-28 06:31:20 +00:00
/* arm arch specific defines */
2022-03-08 02:49:34 +01:00
#elif defined(__arm) || defined(__arm__)
2012-04-28 06:31:20 +00:00
#if !defined(__arm)
2013-11-01 20:26:11 +01:00
#define __arm
2012-04-28 06:31:20 +00:00
#endif
#if !defined(__arm__)
2013-11-01 20:26:11 +01:00
#define __arm__
2012-04-28 06:31:20 +00:00
#endif
2015-12-09 14:58:29 -08:00
#if !defined(_ILP32)
#define _ILP32
#endif
2022-03-08 02:49:34 +01:00
#if defined(__ARMEL__)
2020-07-28 13:02:49 -07:00
#define _ZFS_LITTLE_ENDIAN
2012-04-28 06:31:20 +00:00
#else
2020-07-28 13:02:49 -07:00
#define _ZFS_BIG_ENDIAN
2012-04-28 06:31:20 +00:00
#endif
2013-11-01 20:26:11 +01:00
#define _SUNOS_VTOC_16
2012-04-28 06:31:20 +00:00
2018-07-11 13:10:40 -07:00
#if defined(__ARM_FEATURE_UNALIGNED)
#define HAVE_EFFICIENT_UNALIGNED_ACCESS
#endif
2022-03-08 02:49:34 +01:00
/* aarch64 arch specific defines */
#elif defined(__aarch64__)
#if !defined(_LP64)
#define _LP64
#endif
#if defined(__AARCH64EL__)
#define _ZFS_LITTLE_ENDIAN
#else
#define _ZFS_BIG_ENDIAN
#endif
#define _SUNOS_VTOC_16
2014-01-07 23:14:33 +01:00
/* sparc arch specific defines */
#elif defined(__sparc) || defined(__sparc__)
2014-01-07 23:14:33 +01:00
#if !defined(__sparc)
#define __sparc
#endif
#if !defined(__sparc__)
#define __sparc__
#endif
2020-07-28 13:02:49 -07:00
#define _ZFS_BIG_ENDIAN
2014-01-07 23:14:33 +01:00
#define _SUNOS_VTOC_16
#if defined(__arch64__)
2015-12-09 14:58:29 -08:00
#if !defined(_LP64)
#define _LP64
#endif
#else
#if !defined(_ILP32)
#define _ILP32
2014-01-07 23:14:33 +01:00
#endif
#endif
2016-03-16 21:53:20 +00:00
/* s390 arch specific defines */
#elif defined(__s390__)
#if defined(__s390x__)
#if !defined(_LP64)
#define _LP64
#endif
#else
#if !defined(_ILP32)
#define _ILP32
#endif
#endif
2020-07-28 13:02:49 -07:00
#define _ZFS_BIG_ENDIAN
2016-03-16 21:53:20 +00:00
#define _SUNOS_VTOC_16
2016-05-28 20:33:15 +08:00
/* MIPS arch specific defines */
#elif defined(__mips__)
#if defined(__MIPSEB__)
2020-07-28 13:02:49 -07:00
#define _ZFS_BIG_ENDIAN
2016-05-28 20:33:15 +08:00
#elif defined(__MIPSEL__)
2020-07-28 13:02:49 -07:00
#define _ZFS_LITTLE_ENDIAN
2016-05-28 20:33:15 +08:00
#else
#error MIPS no endian specified
#endif
#if !defined(_LP64) && !defined(_ILP32)
2016-05-28 20:33:15 +08:00
#define _ILP32
#endif
#define _SUNOS_VTOC_16
2019-11-06 19:56:09 +01:00
/*
* RISC-V arch specific defines
2020-07-28 13:02:49 -07:00
* only RV64G (including atomic) LP64 is supported yet
2019-11-06 19:56:09 +01:00
*/
2022-10-28 00:58:41 +01:00
#elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64 && \
2019-11-06 19:56:09 +01:00
defined(__riscv_atomic) && __riscv_atomic
2022-10-28 00:58:41 +01:00
#if !defined(_LP64)
#define _LP64 1
#endif
2019-11-06 19:56:09 +01:00
#ifndef __riscv__
#define __riscv__
#endif
#ifndef __rv64g__
#define __rv64g__
#endif
2020-07-28 13:02:49 -07:00
#define _ZFS_LITTLE_ENDIAN
2019-11-06 19:56:09 +01:00
#define _SUNOS_VTOC_16
2023-04-26 07:05:45 +08:00
/*
* LoongArch arch specific defines
* only LoongArch64 is supported yet
*/
#elif defined(__loongarch__) && defined(__loongarch_lp64)
#if !defined(_LP64)
#define _LP64
#endif
#define _ZFS_LITTLE_ENDIAN
#define _SUNOS_VTOC_16
/* not all LoongArch cores support unaligned accesses in hardware */
#define _ALIGNMENT_REQUIRED 1
2016-05-28 20:33:15 +08:00
#else
/*
* Currently supported:
2023-04-26 07:05:45 +08:00
* x86_64, x32, i386, arm, powerpc, s390, sparc, mips, RV64G, and LoongArch64
2016-05-28 20:33:15 +08:00
*/
2010-08-26 11:50:56 -07:00
#error "Unsupported ISA type"
#endif
#if defined(_ILP32) && defined(_LP64)
#error "Both _ILP32 and _LP64 are defined"
#endif
2015-12-09 14:58:29 -08:00
#if !defined(_ILP32) && !defined(_LP64)
#error "Neither _ILP32 or _LP64 are defined"
#endif
2020-07-28 13:02:49 -07:00
#if defined(_ZFS_LITTLE_ENDIAN) && defined(_ZFS_BIG_ENDIAN)
#error "Both _ZFS_LITTLE_ENDIAN and _ZFS_BIG_ENDIAN are defined"
2010-08-26 11:50:56 -07:00
#endif
2020-07-28 13:02:49 -07:00
#if !defined(_ZFS_LITTLE_ENDIAN) && !defined(_ZFS_BIG_ENDIAN)
#error "Neither _ZFS_LITTLE_ENDIAN nor _ZFS_BIG_ENDIAN are defined"
2010-08-26 11:50:56 -07:00
#endif
#ifdef __cplusplus
}
#endif
#endif /* _SYS_ISA_DEFS_H */