青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

牽著老婆滿(mǎn)街逛

嚴(yán)以律己,寬以待人. 三思而后行.
GMail/GTalk: yanglinbo#google.com;
MSN/Email: tx7do#yahoo.com.cn;
QQ: 3 0 3 3 9 6 9 2 0 .

CriticalSection的ASM原代碼

        title   "Critical Section Support"
;
++
;
;  Copyright (c) 
1991  Microsoft Corporation
;
;  Module Name:
;
;     critsect.asm
;
;  Abstract:
;
;     This module implements functions to support user mode critical sections.
;
;  Author:
;
;     Bryan M. Willman (bryanwi) 
2-Oct-91
;
;  Environment:
;
;     Any mode.
;
;  Revision History:
;
;
--

.486p
        .xlist
include ks386.inc
include callconv.inc                    ; calling convention macros
include mac386.inc
        .list

_DATA   SEGMENT DWORD PUBLIC 
'DATA'
    
public _LdrpLockPrefixTable
_LdrpLockPrefixTable    label dword
        dd offset FLAT:Lock1
        dd offset FLAT:Lock2
        dd offset FLAT:Lock3
        dd offset FLAT:Lock4
        dd offset FLAT:Lock5
        dd offset FLAT:Lock6
        dd offset FLAT:Lock7
        dd 
0
_DATA   ENDS

_TEXT   SEGMENT PARA PUBLIC 
'CODE'
        ASSUME  DS:FLAT, ES:FLAT, SS:NOTHING, FS:NOTHING, GS:NOTHING

        EXTRNP  _RtlpWaitForCriticalSection,
1
        EXTRNP  _RtlpUnWaitCriticalSection,
1
if DEVL
        EXTRNP  _RtlpNotOwnerCriticalSection,
1
endif
if DBG
        EXTRNP  _RtlpCriticalSectionIsOwned,
1
endif

CriticalSection equ     [esp 
+ 4]

        page , 
132
        subttl  
"RtlEnterCriticalSection"

;
++
;
; NTSTATUS
; RtlEnterCriticalSection(
;    IN PRTL_CRITICAL_SECTION CriticalSection
;    )
;
; Routine Description:
;
;    This function enters a critical section.
;
; Arguments:
;
;    CriticalSection 
- supplies a pointer to a critical section.
;
; Return Value:
;
;   STATUS_SUCCESS or raises an exception 
if an error occured.
;
;
--

        align   
16
cPublicProc _RtlEnterCriticalSection,
1
cPublicFpo 
1,0

        mov     ecx,fs:PcTeb            ; 
get current TEB address
        mov     edx,CriticalSection     ; 
get address of critical section
        cmp     CsSpinCount[edx],
0      ; check if spin count is zero
        jne     
short Ent40             ; if ne, spin count specified

;
; Attempt to acquire critical section.
;

Lock1:                                  ;
   
lock inc     dword ptr CsLockCount[edx] ; increment lock count
        jnz     
short Ent20             ; if nz, already owned

;
; Set critical section owner and initialize recursion count.
;

Ent10:
if DBG
        cmp     CsOwningThread[edx],
0
        je      @F
        stdCall _RtlpCriticalSectionIsOwned, 
<edx>
        mov     ecx,fs:PcTeb            ; 
get current TEB address
        mov     edx,CriticalSection     ; 
get address of critical section
@@:
endif ; DBG
        mov     eax,TbClientId 
+ 4[ecx] ; get current client ID
        mov     CsOwningThread[edx],eax ; 
set critical section owner
        mov     dword ptr CsRecursionCount[edx],
1 ; set recursion count

if DBG

        inc     dword ptr TbCountOfOwnedCriticalSections[ecx] ; increment owned count
        mov     eax,CsDebugInfo[edx]    ; 
get debug information address
        inc     dword ptr CsEntryCount[eax] ; increment entry count

endif ; DBG

        xor     eax,eax                 ; 
set success status

        stdRET  _RtlEnterCriticalSection

;
; The critical section 
is already owned, but may be owned by the current thread.
;

        align   
16
Ent20:  mov     eax,TbClientId 
+ 4[ecx] ; get current client ID
        cmp     CsOwningThread[edx],eax ; check 
if current thread is owner
        jne     
short Ent30             ; if ne, current thread not owner
        inc     dword ptr CsRecursionCount[edx] ; increment recursion count

if DBG

        mov     eax,CsDebugInfo[edx]    ; 
get debug information address
        inc     dword ptr CsEntryCount[eax] ; increment entry count

endif ; DBG

        xor     eax,eax                 ; 
set success status

        stdRET  _RtlEnterCriticalSection

;
; The critcal section 
is owned by another thread and the current thread must
; wait 
for ownership.
;

Ent30:  stdCall _RtlpWaitForCriticalSection, 
<edx> ; wait for ownership
        mov     ecx,fs:PcTeb            ; 
get current TEB address
        mov     edx,CriticalSection     ; 
get address of critical section
        jmp     Ent10                   ; 
set owner and recursion count

;
; A nonzero spin count 
is specified.
;

        align   
16
Ent40:  mov     eax,TbClientId 
+ 4[ecx] ; get current client ID
        cmp     CsOwningThread[edx],eax ; check 
if current thread is owner
        jne     
short Ent50             ; if ne, current thread not owner

;
; The critical section 
is owned by the current thread. Increment the lock
; count and the recursion count.
;

Lock6:                                  ;
   
lock inc     dword ptr CsLockCount[edx] ; increment lock count
        inc     dword ptr CsRecursionCount[edx] ; increment recursion count

if DBG

        mov     eax,CsDebugInfo[edx]    ; 
get debug information address
        inc     dword ptr CsEntryCount[eax] ; increment entry count

endif ; DBG

        xor     eax,eax                 ; 
set success status

        stdRET  _RtlEnterCriticalSection

;
; A nonzero spin count 
is specified and the current thread is not the owner.
;

        align   
16
Ent50:  push    CsSpinCount[edx]        ; 
get spin count value
Ent60:  mov     eax,
-1                  ; set comparand value
        mov     ecx,
0                   ; set exchange value

Lock7:
   
lock cmpxchg dword ptr CsLockCount[edx],ecx ; attempt to acquire critical section
        jnz     
short Ent70             ; if nz, critical section not acquired

;
; The critical section has been acquired. Set the owning thread and the initial
; recursion count.
;

        add     esp,
4                   ; remove spin count from stack
        mov     ecx,fs:PcTeb            ; 
get current TEB address
        mov     eax,TbClientId 
+ 4[ecx] ; get current client ID
        mov     CsOwningThread[edx],eax ; 
set critical section owner
        mov     dword ptr CsRecursionCount[edx],
1 ; set recursion count

if DBG

        inc     dword ptr TbCountOfOwnedCriticalSections[ecx] ; increment owned count
        mov     eax,CsDebugInfo[edx]    ; 
get debug information address
        inc     dword ptr CsEntryCount[eax] ; increment entry count

endif ; DBG

        xor     eax,eax                 ; 
set success status

        stdRET  _RtlEnterCriticalSection

;
; The critical section 
is currently owned. Spin until it is either unowned
; or the spin count has reached zero.
;
; If waiters are present, don
't spin on the lock since we will never see it go free
;

Ent70:  cmp     CsLockCount[edx],
1      ; check if waiters are present,
        jge     
short Ent76             ; if ge 1, then do not spin

Ent75:  YIELD
        cmp     CsLockCount[edx],
-1     ; check if lock is owned
        je      
short Ent60             ; if e, lock is not owned
        dec     dword ptr [esp]         ; decrement spin count
        jnz     
short Ent75             ; if nz, continue spinning
Ent76:  add     esp,
4                   ; remove spin count from stack
        mov     ecx,fs:PcTeb            ; 
get current TEB address
        jmp     Lock1                   ;

stdENDP _RtlEnterCriticalSection

        page , 
132
        subttl  
"RtlLeaveCriticalSection"
;
++
;
; NTSTATUS
; RtlLeaveCriticalSection(
;    IN PRTL_CRITICAL_SECTION CriticalSection
;    )
;
; Routine Description:
;
;    This function leaves a critical section.
;
; Arguments:
;
;    CriticalSection 
- supplies a pointer to a critical section.
;
; Return Value:
;
;   STATUS_SUCCESS or raises an exception 
if an error occured.
;
;
--

        align   
16
cPublicProc _RtlLeaveCriticalSection,
1
cPublicFpo 
1,0

        mov     edx,CriticalSection
if DBG
        mov     ecx,fs:PcTeb                ; (ecx) 
== NtCurrentTeb()
        mov     eax,TbClientId
+4[ecx]       ; (eax) == NtCurrentTeb()->ClientId.UniqueThread
        cmp     eax,CsOwningThread[edx]
        je      @F
        stdCall _RtlpNotOwnerCriticalSection, 
<edx>
        mov     eax,STATUS_INVALID_OWNER
        stdRET  _RtlLeaveCriticalSection
@@:
endif ; DBG
        xor     eax,eax                     ; Assume STATUS_SUCCESS
        dec     dword ptr CsRecursionCount[edx]
        jnz     leave_recurs                ; skip 
if only leaving recursion

        mov     CsOwningThread[edx],eax     ; clear owning thread id

if DBG
        mov     ecx,fs:PcTeb                ; (ecx) 
== NtCurrentTeb()
        dec     dword ptr TbCountOfOwnedCriticalSections[ecx]
endif ; DBG

Lock2:
   
lock dec     dword ptr CsLockCount[edx]  ; interlocked dec of
                                            ;  CriticalSection
->LockCount
        jge     @F
        stdRET  _RtlLeaveCriticalSection

@@:
        stdCall _RtlpUnWaitCriticalSection, 
<edx>
        xor     eax,eax                     ; 
return STATUS_SUCCESS
        stdRET  _RtlLeaveCriticalSection

        align   
16
leave_recurs:
Lock3:
   
lock dec     dword ptr CsLockCount[edx]  ; interlocked dec of
                                            ;  CriticalSection
->LockCount
        stdRET  _RtlLeaveCriticalSection

_RtlLeaveCriticalSection    endp

        page    ,
132
        subttl  
"RtlTryEnterCriticalSection"
;
++
;
; BOOL
; RtlTryEnterCriticalSection(
;    IN PRTL_CRITICAL_SECTION CriticalSection
;    )
;
; Routine Description:
;
;    This function attempts to enter a critical section without blocking.
;
; Arguments:
;
;    CriticalSection (a0) 
- Supplies a pointer to a critical section.
;
; Return Value:
;
;    If the critical section was successfully entered, then a value of TRUE
;    
is returned as the function value. Otherwise, a value of FALSE is returned.
;
;
--

CriticalSection equ     [esp 
+ 4]

cPublicProc _RtlTryEnterCriticalSection,
1
cPublicFpo 
1,0

        mov     ecx,CriticalSection         ; interlocked inc of
        mov     eax, 
-1                     ; set value to compare against
        mov     edx, 
0                      ; set value to set
Lock4:
   
lock cmpxchg dword ptr CsLockCount[ecx],edx  ; Attempt to acquire critsect
        jnz     
short tec10                 ; if nz, critsect already owned

        mov     eax,fs:TbClientId
+4         ; (eax) == NtCurrentTeb()->ClientId.UniqueThread
        mov     CsOwningThread[ecx],eax
        mov     dword ptr CsRecursionCount[ecx],
1

if DBG
        mov     eax,fs:PcTeb                ; (ecx) 
== NtCurrentTeb()
        inc     dword ptr TbCountOfOwnedCriticalSections[eax]
endif ; DBG

        mov     eax, 
1                      ; set successful status

        stdRET  _RtlTryEnterCriticalSection

tec10:
;
; The critical section 
is already owned. If it is owned by another thread,
return FALSE immediately. If it is owned by this thread, we must increment
; the 
lock count here.
;
        mov     eax, fs:TbClientId
+4        ; (eax) == NtCurrentTeb()->ClientId.UniqueThread
        cmp     CsOwningThread[ecx], eax
        jz      tec20                       ; 
if eq, this thread is already the owner
        xor     eax, eax                    ; 
set failure status
        YIELD
        stdRET  _RtlTryEnterCriticalSection

tec20:
;
; This thread 
is already the owner of the critical section. Perform an atomic
; increment of the LockCount and a normal increment of the RecursionCount and
return success.
;
Lock5:
   
lock inc     dword ptr CsLockCount[ecx]
        inc     dword ptr CsRecursionCount[ecx]
        mov     eax, 
1
        stdRET  _RtlTryEnterCriticalSection

stdENDP _RtlTryEnterCriticalSection


_TEXT   ends
        end


posted on 2008-01-25 11:17 楊粼波 閱讀(934) 評(píng)論(2)  編輯 收藏 引用

評(píng)論

# re: CriticalSection的ASM原代碼 2015-11-11 17:07 xmpdhml

一點(diǎn)小建議:代碼尤其是匯編代碼設(shè)置成等寬字體可能更容易閱讀。  回復(fù)  更多評(píng)論   

# re: CriticalSection的ASM原代碼 2015-11-12 09:54 楊粼波

@ xmpdhml
如果你本機(jī)不支持等寬字體,那也是白瞎。
  回復(fù)  更多評(píng)論   


只有注冊(cè)用戶(hù)登錄后才能發(fā)表評(píng)論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問(wèn)   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久国产日韩欧美| 久久在线免费观看| 亚洲天堂久久| 亚洲一区欧美二区| 性伦欧美刺激片在线观看| 亚洲一区二区三区国产| 久久精品亚洲精品| 亚洲视频精选| 午夜精品成人在线| 久久国产精品72免费观看| 久久久久久久综合狠狠综合| 欧美88av| 国产精品成人一区| 狠狠综合久久| 日韩视频在线观看| 午夜精品久久久久影视| 美日韩精品视频| 最新日韩欧美| 香港成人在线视频| 99视频超级精品| 欧美一级淫片aaaaaaa视频| 免费在线看成人av| 亚洲国产成人精品女人久久久| 亚洲精品影视在线观看| 午夜国产精品视频| 一区二区三区日韩精品视频| 久久视频一区| 国产精品久久夜| 亚洲国产第一| 免费在线亚洲| 亚洲一区bb| 亚洲欧美日韩综合国产aⅴ| 国产精品久久久久久久久久尿| 一区二区三区波多野结衣在线观看| 久久av一区二区三区漫画| 亚洲欧洲日本mm| 欧美精品免费视频| 国产一区二区三区久久久久久久久| 亚洲国产精品成人久久综合一区| 免费黄网站欧美| 老司机精品视频网站| 国产欧美日韩视频一区二区三区| 亚洲国产欧美一区| 欧美一区二视频| 亚洲精品乱码久久久久久黑人 | 亚洲你懂的在线视频| 久久综合影视| 亚洲欧美春色| 久久久综合网站| 亚洲欧美激情诱惑| 国产欧美日韩综合| 卡一卡二国产精品| 农夫在线精品视频免费观看| 日韩亚洲不卡在线| 日韩一级在线观看| 欧美国产日韩一区| 亚洲第一中文字幕| 久久久xxx| 亚洲永久在线观看| 国内精品久久久久影院色| 亚洲欧美综合网| 欧美在线一二三| 国产欧美日韩视频| 麻豆国产精品va在线观看不卡| 你懂的国产精品永久在线| 日韩视频中午一区| 亚洲午夜视频在线观看| 国产一区二区久久精品| 欧美激情女人20p| 久久中文久久字幕| 99re66热这里只有精品4| 亚洲视频一区二区| 精品9999| 久久综合久久久久88| 欧美成人综合一区| 亚洲欧洲综合另类在线| 欧美va天堂在线| 欧美日韩免费观看一区三区| 日韩亚洲欧美一区二区三区| 亚洲一区二区视频在线观看| 精品96久久久久久中文字幕无| 亚洲欧洲日产国产网站| 国产精品视频内| 欧美一级视频精品观看| 久久午夜av| 亚洲一区二三| 久久青草福利网站| 亚洲一区高清| 久久综合狠狠综合久久综合88| 亚洲一区视频| 麻豆91精品91久久久的内涵| 亚洲人成网站在线观看播放| 亚洲一区日韩在线| 91久久精品网| 欧美一区二区观看视频| 日韩一级裸体免费视频| 久久成人18免费网站| 日韩亚洲欧美一区二区三区| 欧美综合国产精品久久丁香| 一区二区三区欧美视频| 久久久久久夜| 亚洲欧美伊人| 欧美精品久久一区| 久久综合久久久久88| 国产精品捆绑调教| 91久久精品网| 精品成人一区| 亚洲一区影院| 一区二区三区欧美日韩| 久热精品视频在线| 久久国产主播| 国产精品大全| 亚洲精品综合| 国产精品羞羞答答| 亚洲人成啪啪网站| 永久91嫩草亚洲精品人人| 欧美高清在线一区二区| 欧美乱妇高清无乱码| 午夜久久久久久| 欧美日本乱大交xxxxx| 欧美暴力喷水在线| 国产一二精品视频| 亚洲视频中文| 亚洲网站视频| 欧美国产日韩精品免费观看| 欧美成人国产一区二区| 国产一区深夜福利| 亚洲欧美一区二区原创| 亚洲午夜日本在线观看| 欧美精品国产精品日韩精品| 欧美成年人视频网站| 激情偷拍久久| 久久aⅴ国产欧美74aaa| 欧美在线日韩在线| 国产精品日韩久久久| 99精品99久久久久久宅男| 亚洲美洲欧洲综合国产一区| 美女亚洲精品| 欧美国产一区二区在线观看| 在线欧美日韩国产| 久久久99免费视频| 亚洲欧美在线视频观看| 欧美调教视频| 美女日韩欧美| 影音先锋久久久| 久久久久久日产精品| 久久亚洲精品欧美| 极品日韩久久| 久久久水蜜桃av免费网站| 美日韩精品视频| 亚洲电影av| 毛片一区二区| 亚洲第一黄网| 国产欧美一区二区精品秋霞影院| 亚洲在线一区二区三区| 性8sex亚洲区入口| 国产日韩欧美在线视频观看| 亚洲国产日韩欧美在线99| 国产一区二区黄| 欧美在线高清| 欧美不卡视频一区| 亚洲人成在线播放| 欧美大色视频| 亚洲免费观看| 午夜精品久久久久久久久久久| 国产精品美女www爽爽爽| 亚洲在线视频网站| 久久久之久亚州精品露出| 一区二区视频在线观看| 你懂的国产精品| 亚洲狼人精品一区二区三区| 亚洲尤物影院| 国产亚洲一区精品| 久久亚洲国产成人| 最新国产の精品合集bt伙计| 亚洲天堂成人| 国产一区二区三区四区| 麻豆91精品| 9久草视频在线视频精品| 欧美在线啊v一区| 曰韩精品一区二区| 欧美精品成人91久久久久久久| 日韩视频在线观看一区二区| 欧美亚洲日本一区| 伊人婷婷久久| 欧美麻豆久久久久久中文| 亚洲一区影院| 欧美成人免费在线| 亚洲一二三区在线观看| 国产亚洲欧美一级| 欧美88av| 亚洲专区在线视频| 免费在线观看精品| 亚洲天堂成人在线视频| 国产中文一区二区| 欧美理论电影在线观看| 性亚洲最疯狂xxxx高清| 欧美一区在线视频| 亚洲国产精品一区二区第一页| 欧美日韩免费观看一区|