Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Compiler-dependent intrinsics. |
| 3 | * |
| 4 | * Copyright (C) 2002-2003 Hewlett-Packard Co |
| 5 | * David Mosberger-Tang <davidm@hpl.hp.com> |
| 6 | */ |
David Howells | 43e40f2 | 2012-10-09 09:47:00 +0100 | [diff] [blame] | 7 | #ifndef _ASM_IA64_INTRINSICS_H |
| 8 | #define _ASM_IA64_INTRINSICS_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
Isaku Yamahata | 1ff730b | 2008-05-19 22:13:34 +0900 | [diff] [blame] | 10 | #include <asm/paravirt_privop.h> |
David Howells | 43e40f2 | 2012-10-09 09:47:00 +0100 | [diff] [blame] | 11 | #include <uapi/asm/intrinsics.h> |
Isaku Yamahata | 1ff730b | 2008-05-19 22:13:34 +0900 | [diff] [blame] | 12 | |
| 13 | #ifndef __ASSEMBLY__ |
David Howells | 1632b9e | 2011-12-13 15:07:49 +0000 | [diff] [blame] | 14 | #if defined(CONFIG_PARAVIRT) |
| 15 | # undef IA64_INTRINSIC_API |
| 16 | # undef IA64_INTRINSIC_MACRO |
| 17 | # ifdef ASM_SUPPORTED |
| 18 | # define IA64_INTRINSIC_API(name) paravirt_ ## name |
| 19 | # else |
| 20 | # define IA64_INTRINSIC_API(name) pv_cpu_ops.name |
| 21 | # endif |
| 22 | #define IA64_INTRINSIC_MACRO(name) paravirt_ ## name |
| 23 | #endif |
Isaku Yamahata | 1ff730b | 2008-05-19 22:13:34 +0900 | [diff] [blame] | 24 | #endif /* !__ASSEMBLY__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #endif /* _ASM_IA64_INTRINSICS_H */ |