.net – CIL指令是原子的吗?

.Net运行时是否对CIL指令的原子性做出任何保证?如果是这样,他们是什么?所有CIL指令都是原子的吗?或者它是否依赖于JIT编译器生成的机器代码的原子性,因此太平台特定于做出任何保证?

解决方法

C#规范谈到了这一点,同样的事实基本上也适用于CIL;基本上,所有最多4个字节的整数类型都是原子保证的,并且任何引用读/写都是保证原子的.

但是,除此之外没有任何保证;例如,double不保证是原子的 – 这里Interlocked可能会有所帮助.

引用ECMA 335(公共语言基础结构(CLI)分区I到VI)

12.6.6 Atomic reads and writes

A conforming CLI shall guarantee that
read and write access to properly
aligned memory locations no larger
than the native word size (the size of
type native int) is atomic (see
§12.6.2) when all the write accesses
to a location are the same size.
Atomic writes shall alter no bits
other than those written. Unless
explicit layout control (see
Partition II (Controlling Instance
Layout)) is used to alter the default
behavior,data elements no larger
than the natural word size (the size
of a native int) shall be properly
aligned. Object references shall be
treated as though they are stored in
the native word size.

[Note: There is
no guarantee about atomic update
(read-modify-write) of memory,except
for methods provided for that purpose
as part of the class library (see
Partition IV). An atomic write of a
―small data item‖ (an item no larger
than the native word size) is required
to do an atomic read/modify/write on
hardware that does not support direct
writes to small data items. end note]

[Note: There is no guaranteed atomic
access to 8-byte data when the size of
a native int is 32 bits even though
some implementations might perform
atomic operations when the data is
aligned on an 8-byte boundary. end
note]

由于native int必须至少为32位,这是它可以提供的最大保证.

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...