mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
93 lines
1.6 KiB
Common Lisp
93 lines
1.6 KiB
Common Lisp
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#include "inc_vendor.h"
|
|
#include "inc_types.h"
|
|
#include "inc_platform.h"
|
|
|
|
#ifdef IS_NATIVE
|
|
#define SYNC_THREADS()
|
|
#endif
|
|
|
|
#ifdef IS_CUDA
|
|
|
|
DECLSPEC u32 atomic_dec (u32 *p)
|
|
{
|
|
return atomicSub (p, 1);
|
|
}
|
|
|
|
DECLSPEC u32 atomic_inc (u32 *p)
|
|
{
|
|
return atomicAdd (p, 1);
|
|
}
|
|
|
|
DECLSPEC u32 atomic_or (u32 *p, u32 val)
|
|
{
|
|
return atomicOr (p, val);
|
|
}
|
|
|
|
DECLSPEC size_t get_global_id (const u32 dimindx __attribute__((unused)))
|
|
{
|
|
return (blockIdx.x * blockDim.x) + threadIdx.x;
|
|
}
|
|
|
|
DECLSPEC size_t get_local_id (const u32 dimindx __attribute__((unused)))
|
|
{
|
|
return threadIdx.x;
|
|
}
|
|
|
|
DECLSPEC size_t get_local_size (const u32 dimindx __attribute__((unused)))
|
|
{
|
|
// verify
|
|
return blockDim.x;
|
|
}
|
|
|
|
DECLSPEC u32x rotl32 (const u32x a, const int n)
|
|
{
|
|
return ((a << n) | ((a >> (32 - n))));
|
|
}
|
|
|
|
DECLSPEC u32x rotr32 (const u32x a, const int n)
|
|
{
|
|
return ((a >> n) | ((a << (32 - n))));
|
|
}
|
|
|
|
DECLSPEC u32 rotl32_S (const u32 a, const int n)
|
|
{
|
|
return ((a << n) | ((a >> (32 - n))));
|
|
}
|
|
|
|
DECLSPEC u32 rotr32_S (const u32 a, const int n)
|
|
{
|
|
return ((a >> n) | ((a << (32 - n))));
|
|
}
|
|
|
|
DECLSPEC u64x rotl64 (const u64x a, const int n)
|
|
{
|
|
return ((a << n) | ((a >> (64 - n))));
|
|
}
|
|
|
|
DECLSPEC u64x rotr64 (const u64x a, const int n)
|
|
{
|
|
return ((a >> n) | ((a << (64 - n))));
|
|
}
|
|
|
|
DECLSPEC u64 rotl64_S (const u64 a, const int n)
|
|
{
|
|
return ((a << n) | ((a >> (64 - n))));
|
|
}
|
|
|
|
DECLSPEC u64 rotr64_S (const u64 a, const int n)
|
|
{
|
|
return ((a >> n) | ((a << (64 - n))));
|
|
}
|
|
|
|
#define SYNC_THREADS() __syncthreads ()
|
|
#endif
|
|
|
|
#ifdef IS_OPENCL
|
|
#define SYNC_THREADS() barrier (CLK_LOCAL_MEM_FENCE)
|
|
#endif
|