blob: d4c71132d07f0bd03b22766310455b8c133b6070 [file] [log] [blame]
Robert P. J. Day94f582f2007-10-16 23:26:11 -07001#ifndef __LINUX_COMPILER_H
2#error "Please don't include <linux/compiler-intel.h> directly, include <linux/compiler.h> instead."
3#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5#ifdef __ECC
6
7/* Some compiler specific definitions are overwritten here
8 * for Intel ECC compiler
9 */
10
11#include <asm/intrinsics.h>
12
13/* Intel ECC compiler doesn't support gcc specific asm stmts.
14 * It uses intrinsics to do the equivalent things.
15 */
Daniel Borkmannb86a50c2015-06-25 15:01:05 -070016#undef barrier
Daniel Borkmann7829fb02015-04-30 04:13:52 +020017#undef barrier_data
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#undef RELOC_HIDE
Cesar Eduardo Barrosfe8c8a12013-11-25 22:00:41 -020019#undef OPTIMIZER_HIDE_VAR
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Daniel Borkmannb86a50c2015-06-25 15:01:05 -070021#define barrier() __memory_barrier()
Daniel Borkmann7829fb02015-04-30 04:13:52 +020022#define barrier_data(ptr) barrier()
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define RELOC_HIDE(ptr, off) \
25 ({ unsigned long __ptr; \
26 __ptr = (unsigned long) (ptr); \
27 (typeof(ptr)) (__ptr + (off)); })
28
Cesar Eduardo Barrosfe8c8a12013-11-25 22:00:41 -020029/* This should act as an optimization barrier on var.
30 * Given that this compiler does not have inline assembly, a compiler barrier
31 * is the best we can do.
32 */
33#define OPTIMIZER_HIDE_VAR(var) barrier()
34
Rusty Russellc5e631cf2007-05-06 14:51:05 -070035/* Intel ECC compiler doesn't support __builtin_types_compatible_p() */
36#define __must_be_array(a) 0
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#endif
Borislav Petkov94909912007-05-06 14:49:17 -070039
David Woodhousecf66bb92012-12-03 16:25:40 +000040#ifndef __HAVE_BUILTIN_BSWAP16__
41/* icc has this, but it's called _bswap16 */
42#define __HAVE_BUILTIN_BSWAP16__
43#define __builtin_bswap16 _bswap16
44#endif
45