add word-sized ctz function to atomic.h
strictly speaking this and a few other ops should be factored into asm.h or the file should just be renamed to asm.h, but whatever. clean it up someday.
This commit is contained in:
parent
b5b41212a6
commit
4bb9b4f3b4
2 changed files with 16 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef _INTERNAA_ATOMIC_H
|
||||
#define _INTERNAA_ATOMIC_H
|
||||
#ifndef _INTERNAL_ATOMIC_H
|
||||
#define _INTERNAL_ATOMIC_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
|
@ -11,6 +11,12 @@ static inline int a_ctz_64(uint64_t x)
|
|||
return r;
|
||||
}
|
||||
|
||||
static inline int a_ctz_l(unsigned long x)
|
||||
{
|
||||
long r;
|
||||
__asm__( "bsf %1,%0" : "=r"(r) : "r"(x) );
|
||||
return r;
|
||||
}
|
||||
|
||||
static inline void a_and_64(volatile uint64_t *p, uint64_t v)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef _INTERNAA_ATOMIC_H
|
||||
#define _INTERNAA_ATOMIC_H
|
||||
#ifndef _INTERNAL_ATOMIC_H
|
||||
#define _INTERNAL_ATOMIC_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
|
@ -10,6 +10,12 @@ static inline int a_ctz_64(uint64_t x)
|
|||
return r;
|
||||
}
|
||||
|
||||
static inline int a_ctz_l(unsigned long x)
|
||||
{
|
||||
long r;
|
||||
__asm__( "bsf %1,%0" : "=r"(r) : "r"(x) );
|
||||
return r;
|
||||
}
|
||||
|
||||
static inline void a_and_64(volatile uint64_t *p, uint64_t v)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue