blob: b17f3cd18334df3d4958316a52177064ee4248d0 [file] [log] [blame]
Tom Rini67f51b42020-05-14 08:30:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __LINUX_COMPILER_TYPES_H
Masahiro Yamadafb8ffd72014-09-04 02:40:58 +09003#error "Please don't include <linux/compiler-intel.h> directly, include <linux/compiler.h> instead."
4#endif
5
6#ifdef __ECC
7
Tom Rini67f51b42020-05-14 08:30:06 -04008/* Compiler specific definitions for Intel ECC compiler */
Masahiro Yamadafb8ffd72014-09-04 02:40:58 +09009
10#include <asm/intrinsics.h>
11
12/* Intel ECC compiler doesn't support gcc specific asm stmts.
13 * It uses intrinsics to do the equivalent things.
14 */
Masahiro Yamadafb8ffd72014-09-04 02:40:58 +090015
Tom Rini9b2c2822016-02-29 11:34:15 -050016#define barrier() __memory_barrier()
17#define barrier_data(ptr) barrier()
18
Masahiro Yamadafb8ffd72014-09-04 02:40:58 +090019#define RELOC_HIDE(ptr, off) \
20 ({ unsigned long __ptr; \
21 __ptr = (unsigned long) (ptr); \
22 (typeof(ptr)) (__ptr + (off)); })
23
24/* This should act as an optimization barrier on var.
25 * Given that this compiler does not have inline assembly, a compiler barrier
26 * is the best we can do.
27 */
28#define OPTIMIZER_HIDE_VAR(var) barrier()
29
Masahiro Yamadafb8ffd72014-09-04 02:40:58 +090030#endif
31
Masahiro Yamadafb8ffd72014-09-04 02:40:58 +090032/* icc has this, but it's called _bswap16 */
33#define __HAVE_BUILTIN_BSWAP16__
34#define __builtin_bswap16 _bswap16