linux 原子整数操作详解 及 volatile (二)
2019獨角獸企業重金招聘Python工程師標準>>>
原子操作,顧名思義,就是說像原子一樣不可再細分不可被中途打斷。一個操作是原子操作,意思就是說這個操作是以原子的方式被執行,要一口氣執行完,執行過程不能夠被OS的其他行為打斷,是一個整體的過程,在其執行過程中,OS的其它行為是插不進來的。
在linux中提供了兩種形式的原子操作:
??? 一種是對整數進行的操作
??? 一種是對單獨的位進行操作
在linux中有一個專門的atomic_t類型(一個24位原子訪問計數器)和一些對atomic類型變量進行相應操作的的函數
其atomic_t原型如下:
??? typedef struct { volatile int counter; } atomic_t;
它是一個只含有一個volatile類型的成員變量的結構體;因此編譯器不對相應的值進行訪問優化(因為是volatile類型的)。
原子整數操作的使用:
??? 常見的用途是計數器,因為計數器是一個很簡單的操作,所以無需復雜的鎖機制;
??? 能使用原子操作的地方,盡量不使用復雜的鎖機制;
對atomic_t類型的變量的使用方法以及對其所能進行的操作:
下面是相應的函數及其原型:
小提示:
******
在其函數的實現體中,有一個LOCK_PREFIX宏定義,如果選了CONFIG_SMP,就會定義這么一個宏,與SMP相關的一些設置,否則LOCK_PREFIX的定義就為空;
******
//原子的讀取atomic_t變量的值,v是這個變量的地址
#define atomic_read(v)??????? ((v)->counter)
//原子的設置atomic_t變量的值,v是這個變量的地址,i要設置的新值;
#define atomic_set(v,i)??????? (((v)->counter) = (i))
//原子的增加atomic_t變量的值,i是要增加的數值,v是這個變量的地址
static __inline__ void atomic_add(int i, atomic_t *v)
{
??? __asm__ __volatile__(
??????? LOCK_PREFIX "addl %1,%0"
??????? :"=m" (v->counter)
??????? :"ir" (i), "m" (v->counter));
}
//原子的減少atomic_t變量的值,i是要減少的數值,v是這個變量的地址;
static __inline__ void atomic_sub(int i, atomic_t *v)
{
??? __asm__ __volatile__(
??????? LOCK_PREFIX "subl %1,%0"
??????? :"=m" (v->counter)
??????? :"ir" (i), "m" (v->counter));
}
//原子的對atomic_t變量的值進行減少i的操作,并且檢測其結果是否為0;若為0,返回true,否則,返回false;
//i是要減少的數值,v是這個變量的地址;
static __inline__ int atomic_sub_and_test(int i, atomic_t *v)
{
??? unsigned char c;
??? __asm__ __volatile__(
??????? LOCK_PREFIX "subl %2,%0; sete %1"
??????? :"=m" (v->counter), "=qm" (c)
??????? :"ir" (i), "m" (v->counter) : "memory");
??? return c;
}
//原子的對atomic_t變量的值進行加1的操作,v是這個變量的地址;
static __inline__ void atomic_inc(atomic_t *v)
{
??? __asm__ __volatile__(
??????? LOCK_PREFIX "incl %0"
??????? :"=m" (v->counter)
??????? :"m" (v->counter));
}
//原子的對atomic_t變量的值進行減1的操作,v是這個變量的地址;
static __inline__ void atomic_dec(atomic_t *v)
{
??? __asm__ __volatile__(
??????? LOCK_PREFIX "decl %0"
??????? :"=m" (v->counter)
??????? :"m" (v->counter));
}
//原子的對atomic_t變量的值進行減少1的操作,并且檢測其結果是否為0;若為0,返回true,否則,返回false;
//v是這個變量的地址;
static __inline__ int atomic_dec_and_test(atomic_t *v)
{
??? unsigned char c;
??? __asm__ __volatile__(
??????? LOCK_PREFIX "decl %0; sete %1"
??????? :"=m" (v->counter), "=qm" (c)
??????? :"m" (v->counter) : "memory");
??? return c != 0;
}
//原子的對atomic_t變量的值進行加1的操作,并且檢測其結果是否為0;若為0,返回true,否則,返回false;
//v是這個變量的地址;
static __inline__ int atomic_inc_and_test(atomic_t *v)
{
??? unsigned char c;
??? __asm__ __volatile__(
??????? LOCK_PREFIX "incl %0; sete %1"
??????? :"=m" (v->counter), "=qm" (c)
??????? :"m" (v->counter) : "memory");
??? return c != 0;
}
//原子的對atomic_t變量的值進行加i的操作,并且檢測其結果是否為負;若為負,返回true,否則,返回false;
//i是要增加的數值,v是這個變量的地址;
static __inline__ int atomic_add_negative(int i, atomic_t *v)
{
??? unsigned char c;
??? __asm__ __volatile__(
??????? LOCK_PREFIX "addl %2,%0; sets %1"
??????? :"=m" (v->counter), "=qm" (c)
??????? :"ir" (i), "m" (v->counter) : "memory");
??? return c;
}
//原子的對atomic_t變量的值進行加i的操作,并且將所得結果返回;
//i是要增加的數值,v是這個變量的地址;
static __inline__ int atomic_add_return(int i, atomic_t *v)
{
??? int __i;
#ifdef CONFIG_M386
??? unsigned long flags;
??? if(unlikely(boot_cpu_data.x86==3))
??????? goto no_xadd;
#endif
??? /* Modern 486+ processor */
??? __i = i;
??? __asm__ __volatile__(
??????? LOCK_PREFIX "xaddl %0, %1;"
??????? :"=r"(i)
??????? :"m"(v->counter), "0"(i));
??? return i + __i;
#ifdef CONFIG_M386
no_xadd: /* Legacy 386 processor */
??? local_irq_save(flags);
??? __i = atomic_read(v);
??? atomic_set(v, i + __i);
??? local_irq_restore(flags);
??? return i + __i;
#endif
}
//原子的對atomic_t變量的值進行減i的操作,并且將所得結果返回;
//i是要減少的數值,v是這個變量的地址;
static __inline__ int atomic_sub_return(int i, atomic_t *v)
{
??? return atomic_add_return(-i,v);
}
//原子的比較old與v是否相等,若相等,則把new的值寫入到v中,并且返回old的值;
#define atomic_cmpxchg(v, old, new) ((int)cmpxchg(&((v)->counter), old, new))
//原子的比較
#define atomic_xchg(v, new) (xchg(&((v)->counter), new))
/**
?* atomic_add_unless - add unless the number is a given value
?* @v : pointer of type atomic_t
?* @a : the amount to add to v...
?* @u : ...unless v is equal to u.
?*
?* Atomically adds @a ?to @v , so long as it was not @u.
?* Returns non-zero if @v was not @u, and zero otherwise.
?*/
//原子的對atomic_t變量的值進行加a的操作,直到v等于u,如果v與u不等,返回非零值;否則返回0;
//a是要增加的數值,v是這個變量的地址,u是要比較的值;
#define atomic_add_unless(v, a, u)??????????????? \
({??????????????????????????????? \
??? int c, old;??????????????????????? \
??? c = atomic_read(v);??????????????????? \
??? for (;;) {??????????????????????? \
??????? if (unlikely(c == (u)))??????????????? \
??????????? break;??????????????????? \
??????? old = atomic_cmpxchg((v), c, c + (a));??????? \
??????? if (likely(old == c))??????????????? \
??????????? break;??????????????????? \
??????? c = old;??????????????????? \
??? }??????????????????????????? \
??? c != (u);??????????????????????? \
})
#define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
#define atomic_inc_return(v)? (atomic_add_return(1,v))
#define atomic_dec_return(v)? (atomic_sub_return(1,v))
//掩碼
/* These are x86-specific, used by some header files */
#define atomic_clear_mask(mask, addr) \
__asm__ __volatile__(LOCK_PREFIX "andl %0,%1" \
: : "r" (~(mask)),"m" (*addr) : "memory")
#define atomic_set_mask(mask, addr) \
__asm__ __volatile__(LOCK_PREFIX "orl %0,%1" \
: : "r" (mask),"m" (*(addr)) : "memory")
轉載于:https://my.oschina.net/u/1178070/blog/317529
總結
以上是生活随笔為你收集整理的linux 原子整数操作详解 及 volatile (二)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: The Historical Accid
- 下一篇: 取消chrome下input和texta