Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 946977
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T23:00:29+00:00 2026-05-15T23:00:29+00:00

I know how to use LOCK to thread-safely increment a value: lock inc [J];

  • 0

I know how to use LOCK to thread-safely increment a value:

  lock inc     [J];

But how do I read [J] (or any value) in a thread-safe manner? The LOCK prefix can’t be used with mov. And if I do the following:

  xor eax, eax;
  lock add eax, [J];
  mov [JC], eax;

It raises an error on line 2.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T23:00:30+00:00Added an answer on May 15, 2026 at 11:00 pm

    Use XADD or MOV instruction instead ADD instruction!
    See also MFENCE, LFENCE and SFENCE instructions!

    EDIT:
    You can’t use LOCK instruction with ADD instruction if source operand is a memory operand!

    From: "Intel® 64 and IA-32 Architectures Software Developer’s Manual"

    The LOCK prefix can be prepended only
    to the following instructions and only
    to those forms of the instructions
    where the destination operand is a
    memory operand: ADD, ADC, AND, BTC,
    BTR, BTS, CMPXCHG, CMPXCH8B, DEC, INC,
    NEG, NOT, OR, SBB, SUB, XOR, XADD, and
    XCHG. If the LOCK prefix is used with
    one of these instructions and the
    source operand is a memory operand, an
    undefined opcode exception (#UD) may
    be generated. An undefined opcode
    exception will also be generated if
    the LOCK prefix is used with any
    instruction not in the above list. The
    XCHG instruction always asserts the
    LOCK# signal regardless of the
    presence or absence of the LOCK prefix

    EDIT2:
    Form: "Intel® 64 and IA-32 Architectures Software Developer’s Manual, Volume3A"

    8.1.1 Guaranteed Atomic Operations.
    The Intel486 processor (and newer
    processors since) guarantees that the
    following basic memory operations will
    always be carried out atomically:

    • Reading or writing a byte
    • Reading or writing a word aligned
      on a 16-bit boundary
    • Reading or writing a doubleword aligned on a 32-bit boundary

    The Pentium processor (and newer
    processors since) guarantees that the
    following additional memory operations
    will always be carried out atomically:

    • Reading or writing a quadword aligned on a 64-bit boundary
    • 6-bit accesses to uncached memory locations that fit within a 32-bit
      data bus The P6 family processors
      (and newer processors since)
      guarantee that the following
      additional memory operation will
      always be carried out atomically:
    • Unaligned 16-, 32-, and 64-bit accesses to cached memory that fit
      within a cache line

    Accesses to cacheable memory that are
    split across bus widths, cache lines,
    and page boundaries are not guaranteed
    to be atomic by the
    Intel Core 2 Duo,
    Intel Core Duo, Pentium M, Pentium 4,
    Intel Xeon, P6 family, Pentium, and
    Intel486 processors. The Intel Core 2
    Duo, Intel Core Duo, Pentium M,
    Pentium 4, Intel Xeon, and P6 family
    processors provide bus control signals
    that permit external memory subsystems
    to make split accesses atomic;
    however, nonaligned data accesses will
    seriously impact the performance of
    the processor and should be avoided.

    So, for reading I prefer to use CMPXCHG instruction with LOCK prefix, like:

    LOCK        CMPXCHG   EAX, [J]
    

    For writing:

    MOV   [J], EAX
    SFENCE
    

    .

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.