mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 19:49:36 +00:00
atomics: Add generic atom[ic]_and
Not used yet. Signed-off-by: Aaron Watry <awatry@gmail.com> Reviewed-by: Tom Stellard <thomas.stellard@amd.com> llvm-svn: 217913
This commit is contained in:
parent
49614fbfd9
commit
cc68405761
3
libclc/generic/include/clc/atomic/atomic_and.h
Normal file
3
libclc/generic/include/clc/atomic/atomic_and.h
Normal file
@ -0,0 +1,3 @@
|
||||
#define __CLC_FUNCTION atomic_and
|
||||
#include <clc/atomic/atomic_decl.inc>
|
||||
#undef __CLC_FUNCTION
|
@ -0,0 +1,2 @@
|
||||
_CLC_OVERLOAD _CLC_DECL int atom_and(global int *p, int val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned int atom_and(global unsigned int *p, unsigned int val);
|
@ -0,0 +1,2 @@
|
||||
_CLC_OVERLOAD _CLC_DECL int atom_and(local int *p, int val);
|
||||
_CLC_OVERLOAD _CLC_DECL unsigned int atom_and(local unsigned int *p, unsigned int val);
|
@ -141,6 +141,7 @@
|
||||
|
||||
/* 6.11.11 Atomic Functions */
|
||||
#include <clc/atomic/atomic_add.h>
|
||||
#include <clc/atomic/atomic_and.h>
|
||||
#include <clc/atomic/atomic_dec.h>
|
||||
#include <clc/atomic/atomic_inc.h>
|
||||
#include <clc/atomic/atomic_max.h>
|
||||
@ -153,6 +154,7 @@
|
||||
#include <clc/cl_khr_global_int32_base_atomics/atom_sub.h>
|
||||
|
||||
/* cl_khr_global_int32_extended_atomics Extension Functions */
|
||||
#include <clc/cl_khr_global_int32_extended_atomics/atom_and.h>
|
||||
#include <clc/cl_khr_global_int32_extended_atomics/atom_max.h>
|
||||
|
||||
/* cl_khr_local_int32_base_atomics Extension Functions */
|
||||
@ -162,6 +164,7 @@
|
||||
#include <clc/cl_khr_local_int32_base_atomics/atom_sub.h>
|
||||
|
||||
/* cl_khr_local_int32_extended_atomics Extension Functions */
|
||||
#include <clc/cl_khr_local_int32_extended_atomics/atom_and.h>
|
||||
#include <clc/cl_khr_local_int32_extended_atomics/atom_max.h>
|
||||
|
||||
/* libclc internal defintions */
|
||||
|
@ -4,11 +4,13 @@ cl_khr_global_int32_base_atomics/atom_add.cl
|
||||
cl_khr_global_int32_base_atomics/atom_dec.cl
|
||||
cl_khr_global_int32_base_atomics/atom_inc.cl
|
||||
cl_khr_global_int32_base_atomics/atom_sub.cl
|
||||
cl_khr_global_int32_extended_atomics/atom_and.cl
|
||||
cl_khr_global_int32_extended_atomics/atom_max.cl
|
||||
cl_khr_local_int32_base_atomics/atom_add.cl
|
||||
cl_khr_local_int32_base_atomics/atom_dec.cl
|
||||
cl_khr_local_int32_base_atomics/atom_inc.cl
|
||||
cl_khr_local_int32_base_atomics/atom_sub.cl
|
||||
cl_khr_local_int32_extended_atomics/atom_and.cl
|
||||
cl_khr_local_int32_extended_atomics/atom_max.cl
|
||||
convert.cl
|
||||
common/sign.cl
|
||||
|
@ -10,6 +10,18 @@ entry:
|
||||
ret i32 %0
|
||||
}
|
||||
|
||||
define i32 @__clc_atomic_and_addr1(i32 addrspace(1)* nocapture %ptr, i32 %value) nounwind alwaysinline {
|
||||
entry:
|
||||
%0 = atomicrmw volatile and i32 addrspace(1)* %ptr, i32 %value seq_cst
|
||||
ret i32 %0
|
||||
}
|
||||
|
||||
define i32 @__clc_atomic_and_addr3(i32 addrspace(3)* nocapture %ptr, i32 %value) nounwind alwaysinline {
|
||||
entry:
|
||||
%0 = atomicrmw volatile and i32 addrspace(3)* %ptr, i32 %value seq_cst
|
||||
ret i32 %0
|
||||
}
|
||||
|
||||
define i32 @__clc_atomic_max_addr1(i32 addrspace(1)* nocapture %ptr, i32 %value) nounwind alwaysinline {
|
||||
entry:
|
||||
%0 = atomicrmw volatile max i32 addrspace(1)* %ptr, i32 %value seq_cst
|
||||
|
@ -0,0 +1,9 @@
|
||||
#include <clc/clc.h>
|
||||
|
||||
#define IMPL(TYPE) \
|
||||
_CLC_OVERLOAD _CLC_DEF TYPE atom_and(global TYPE *p, TYPE val) { \
|
||||
return atomic_and(p, val); \
|
||||
}
|
||||
|
||||
IMPL(int)
|
||||
IMPL(unsigned int)
|
@ -0,0 +1,9 @@
|
||||
#include <clc/clc.h>
|
||||
|
||||
#define IMPL(TYPE) \
|
||||
_CLC_OVERLOAD _CLC_DEF TYPE atom_and(local TYPE *p, TYPE val) { \
|
||||
return atomic_and(p, val); \
|
||||
}
|
||||
|
||||
IMPL(int)
|
||||
IMPL(unsigned int)
|
Loading…
Reference in New Issue
Block a user