2016-07-23 01:24:24 +08:00
|
|
|
#include <clc/clc.h>
|
|
|
|
|
2018-02-23 15:37:01 +08:00
|
|
|
#if __clang_major__ >= 7
|
|
|
|
#define CONST_AS __attribute__((address_space(4)))
|
|
|
|
#else
|
|
|
|
#define CONST_AS __attribute__((address_space(2)))
|
|
|
|
#endif
|
|
|
|
|
2016-08-20 06:49:39 +08:00
|
|
|
_CLC_DEF size_t get_global_offset(uint dim)
|
2016-07-23 01:24:24 +08:00
|
|
|
{
|
2018-02-23 15:37:01 +08:00
|
|
|
CONST_AS uint * ptr =
|
|
|
|
(CONST_AS uint *) __builtin_amdgcn_implicitarg_ptr();
|
2016-07-23 01:24:24 +08:00
|
|
|
if (dim < 3)
|
|
|
|
return ptr[dim + 1];
|
|
|
|
return 0;
|
|
|
|
}
|