mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 14:20:17 +00:00
atom: Consolidate cl_khr_int64_{base,extended}_atomics declarations
Reviewed-By: Aaron Watry <awatry@gmail.com> Tested-By: Aaron Watry <awatry@gmail.com> Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu> llvm-svn: 335277
This commit is contained in:
parent
d1c3811ff7
commit
b9cbe0bf51
11
libclc/generic/include/clc/atom_decl_int64.inc
Normal file
11
libclc/generic/include/clc/atom_decl_int64.inc
Normal file
@ -0,0 +1,11 @@
|
||||
#define __CLC_DECLARE_ATOM(ADDRSPACE, TYPE) \
|
||||
_CLC_OVERLOAD _CLC_DECL TYPE __CLC_FUNCTION (volatile ADDRSPACE TYPE *, TYPE);
|
||||
|
||||
__CLC_DECLARE_ATOM(local, long)
|
||||
__CLC_DECLARE_ATOM(local, ulong)
|
||||
__CLC_DECLARE_ATOM(global, long)
|
||||
__CLC_DECLARE_ATOM(global, ulong)
|
||||
|
||||
#undef __CLC_DECLARE_ATOM
|
||||
|
||||
#undef __CLC_FUNCTION
|
@ -1,4 +1,2 @@
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_add(volatile global long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_add(volatile global unsigned long *p, unsigned long val);
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_add(volatile local long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_add(volatile local unsigned long *p, unsigned long val);
|
||||
#define __CLC_FUNCTION atom_add
|
||||
#include <clc/atom_decl_int64.inc>
|
||||
|
@ -1,4 +1,2 @@
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_sub(volatile global long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_sub(volatile global unsigned long *p, unsigned long val);
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_sub(volatile local long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_sub(volatile local unsigned long *p, unsigned long val);
|
||||
#define __CLC_FUNCTION atom_sub
|
||||
#include <clc/atom_decl_int64.inc>
|
||||
|
@ -1,4 +1,2 @@
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_xchg(volatile global long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_xchg(volatile global unsigned long *p, unsigned long val);
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_xchg(volatile local long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_xchg(volatile local unsigned long *p, unsigned long val);
|
||||
#define __CLC_FUNCTION atom_xchg
|
||||
#include <clc/atom_decl_int64.inc>
|
||||
|
@ -1,4 +1,2 @@
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_and(volatile global long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_and(volatile global unsigned long *p, unsigned long val);
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_and(volatile local long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_and(volatile local unsigned long *p, unsigned long val);
|
||||
#define __CLC_FUNCTION atom_and
|
||||
#include <clc/atom_decl_int64.inc>
|
||||
|
@ -1,4 +1,2 @@
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_max(volatile global long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_max(volatile global unsigned long *p, unsigned long val);
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_max(volatile local long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_max(volatile local unsigned long *p, unsigned long val);
|
||||
#define __CLC_FUNCTION atom_max
|
||||
#include <clc/atom_decl_int64.inc>
|
||||
|
@ -1,4 +1,2 @@
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_min(volatile global long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_min(volatile global unsigned long *p, unsigned long val);
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_min(volatile local long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_min(volatile local unsigned long *p, unsigned long val);
|
||||
#define __CLC_FUNCTION atom_min
|
||||
#include <clc/atom_decl_int64.inc>
|
||||
|
@ -1,4 +1,2 @@
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_or(volatile global long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_or(volatile global unsigned long *p, unsigned long val);
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_or(volatile local long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_or(volatile local unsigned long *p, unsigned long val);
|
||||
#define __CLC_FUNCTION atom_or
|
||||
#include <clc/atom_decl_int64.inc>
|
||||
|
@ -1,4 +1,2 @@
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_xor(volatile global long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_xor(volatile global unsigned long *p, unsigned long val);
|
||||
_CLC_OVERLOAD _CLC_DECL long atom_xor(volatile local long *p, long val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned long atom_xor(volatile local unsigned long *p, unsigned long val);
|
||||
#define __CLC_FUNCTION atom_xor
|
||||
#include <clc/atom_decl_int64.inc>
|
||||
|
Loading…
Reference in New Issue
Block a user