The MASM Forum

General => The Campus => Topic started by: xanatose on July 09, 2012, 05:05:11 PM

Title: Lock/Unlock
Post by: xanatose on July 09, 2012, 05:05:11 PM
What assembly instructions are available for creating a lightweight mutex on the same process.

I can use CriticalSection on Win32. But I was wondering if there where assembly instructions that where to accomplish the same thing as a CriticalSection but without the need of calling the API.

Also, How does one implement something similar to the InterlockedIncrement, InterlockedAcquire, etc?
Title: Re: Lock/Unlock
Post by: qWord on July 09, 2012, 05:41:48 PM
hi,
Quote from: xanatose on July 09, 2012, 05:05:11 PM
What assembly instructions are available for creating a lightweight mutex on the same process.

I can use CriticalSection on Win32. But I was wondering if there where assembly instructions that where to accomplish the same thing as a CriticalSection but without the need of calling the API.
The problem is that you need to wait for the ownership. Using the PAUSE (http://software.intel.com/file/25602) instruction in a wait loop may be a solution.

Quote from: xanatose on July 09, 2012, 05:05:11 PM
Also, How does one implement something similar to the InterlockedIncrement, InterlockedAcquire, etc?
The Interlock* functions are implemented using the LOCK-Instruction prefix (see documentation). Also note, that not all functions are available for x86-32/64.
Title: Re: Lock/Unlock
Post by: dedndave on July 09, 2012, 07:13:22 PM
LOCK works - bus lock
certain instructions imply bus lock
i sometimes use XCHG EAX,mem32 for that reason
you can change and read a semaphore at the same time