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

牽著老婆滿街逛

嚴以律己,寬以待人. 三思而后行.
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) 評論(2)  編輯 收藏 引用

評論

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

一點小建議:代碼尤其是匯編代碼設置成等寬字體可能更容易閱讀。  回復  更多評論   

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

@ xmpdhml
如果你本機不支持等寬字體,那也是白瞎。
  回復  更多評論   


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   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>
            欧美激情视频一区二区三区不卡| 国产主播一区二区三区四区| 日韩手机在线导航| 亚洲婷婷在线| 国产欧美精品va在线观看| 欧美一区二区在线视频| 欧美.日韩.国产.一区.二区| 亚洲精品中文字幕女同| 欧美日韩一区二区免费视频| 亚洲在线视频| 另类图片国产| 一本色道久久综合狠狠躁篇的优点| 国产精品第一页第二页第三页| 午夜精品福利视频| 欧美岛国在线观看| 亚洲视频在线观看免费| 国产色综合天天综合网| 免费av成人在线| 一本色道88久久加勒比精品| 久久久久久久久综合| 日韩午夜剧场| 国产亚洲精品久久久| 你懂的国产精品永久在线| 一区二区三区免费在线观看| 久久久久这里只有精品| 99riav1国产精品视频| 国产欧美日韩综合一区在线观看 | 久久久久久黄| 99国产精品久久久久久久| 久久久精品动漫| 99综合在线| 一区二区三区亚洲| 国产精品成人在线| 免费成人小视频| 亚洲欧美日韩精品| 亚洲精品久久久久久久久| 久久精品国产久精国产爱| 日韩视频中文字幕| 曰韩精品一区二区| 国产精品高清在线| 欧美成人一区在线| 久久精品国产精品亚洲综合| 日韩西西人体444www| 免费日韩av| 久久成人免费网| 在线视频欧美精品| 亚洲国产精品一区二区三区| 国产视频不卡| 国产精品久久久久av免费| 欧美激情精品久久久久久大尺度 | 亚洲免费小视频| 亚洲精品在线视频观看| 欧美激情精品久久久久久大尺度| 性久久久久久久久久久久| 夜夜嗨av一区二区三区| 亚洲国产国产亚洲一二三| 国产亚洲一区二区三区在线观看| 国产精品久久久久久久午夜片| 欧美福利视频在线观看| 另类天堂av| 麻豆av一区二区三区久久| 久久精品91久久香蕉加勒比| 香蕉成人啪国产精品视频综合网| 亚洲午夜电影网| 正在播放亚洲一区| 一区二区91| 一区二区三区四区五区在线| 日韩视频在线永久播放| 日韩视频一区| 亚洲作爱视频| 中文国产成人精品| 亚洲视频1区| 亚洲一区二区三区激情| 亚洲永久字幕| 亚洲制服av| 欧美一区二区三区男人的天堂 | 欧美日韩亚洲一区二区| 欧美日韩美女在线观看| 欧美日韩视频| 国产精品美女视频网站| 国产欧美 在线欧美| 国产日韩精品久久| 国产一区二区三区在线观看网站 | 欧美一区二区三区日韩视频| 久久se精品一区精品二区| 久久国内精品自在自线400部| 久久久久国产精品麻豆ai换脸| 久久免费精品日本久久中文字幕| 久久夜色精品国产欧美乱| 免费成人在线视频网站| 欧美激情影院| 国产精品久久久久久久久借妻 | 欧美性色视频在线| 国产精品网站一区| 狠狠干综合网| 亚洲精品影视| 亚洲欧美日韩一区二区三区在线观看| 午夜一级久久| 免费成人av| 亚洲精品孕妇| 性欧美超级视频| 欧美xxx成人| 欧美性猛交xxxx乱大交蜜桃| 国产亚洲精品自拍| 亚洲精品视频免费观看| 亚洲欧美精品suv| 久热精品视频在线| 日韩视频在线观看国产| 欧美一级一区| 欧美国产综合一区二区| 国产精品一区二区黑丝| 亚洲激情av| 午夜精品网站| 欧美激情视频免费观看| 亚洲一区二区精品| 欧美成人性生活| 国产日韩欧美亚洲| 日韩午夜高潮| 久久香蕉国产线看观看av| 亚洲精品在线一区二区| 久久成人18免费网站| 欧美久久影院| 一区二区视频免费在线观看 | 国产一区导航| 一区二区三区国产精品| 免播放器亚洲| 午夜精品久久久久影视| 欧美激情一区二区在线| 国内精品视频在线播放| 亚洲线精品一区二区三区八戒| 老司机精品视频网站| 亚洲图片在线观看| 欧美电影电视剧在线观看| 国产亚洲成人一区| 亚洲一区网站| 亚洲欧洲精品天堂一级| 久久久视频精品| 国产日产欧美一区| 亚洲在线电影| 亚洲精品一区久久久久久| 裸体一区二区| 在线成人国产| 久久久久国产一区二区三区| 这里只有精品丝袜| 欧美区在线观看| 亚洲日韩成人| 亚洲福利国产| 噜噜噜躁狠狠躁狠狠精品视频| 国内成+人亚洲| 久久成人免费日本黄色| 亚洲综合色噜噜狠狠| 国产精品成人一区二区网站软件 | 亚洲一区二区在线看| 亚洲激情中文1区| 免费成人网www| 亚洲国产综合在线看不卡| 免费在线观看日韩欧美| 久久精品视频免费| 黄色在线成人| 蜜月aⅴ免费一区二区三区 | 最新国产成人av网站网址麻豆 | 国产欧美在线视频| 亚洲欧美综合网| 宅男噜噜噜66一区二区 | 国产女人精品视频| 欧美一区在线视频| 亚洲在线一区二区| 国产欧美va欧美不卡在线| 午夜精品免费| 午夜天堂精品久久久久| 国产一区二区视频在线观看| 久久噜噜亚洲综合| 久久婷婷丁香| 亚洲欧洲日韩在线| 亚洲精品在线电影| 国产精品每日更新| 久久久999成人| 久久一区二区视频| 亚洲美女免费精品视频在线观看| 91久久久久久| 国产精品久久久久9999| 久久久精品一区| 美女脱光内衣内裤视频久久影院| 亚洲人成在线免费观看| 亚洲美女中文字幕| 国产欧美日韩不卡免费| 久热精品在线视频| 欧美国产日韩a欧美在线观看| 中国女人久久久| 亚洲一区中文| 在线观看欧美日韩国产| 亚洲精品一区中文| 国产色综合久久| 欧美寡妇偷汉性猛交| 欧美网站在线| 老巨人导航500精品| 欧美日韩国产999| 久久不见久久见免费视频1| 美女网站在线免费欧美精品| 亚洲视频欧美在线|