- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
众所周知,PowerPC 具有弱内存模型,允许任何推测性重新排序:存储-存储、加载-存储、存储-加载、加载-加载。
至少有 3 个栅栏:
hwsync
或 sync
- 完整的内存屏障,防止任何重新排序 lwsync
- 阻止重新排序的内存屏障:加载-加载、存储-存储、加载-存储 isync
- 指令屏障 :https://www.ibm.com/support/knowledgecenter/en/ssw_aix_71/com.ibm.aix.alangref/idalangref_isync_ics_instrs.htm stwcx.
和负载-
lwz
在此代码中?:
https://godbolt.org/g/84t5jM
lwarx 9,0,10
addi 9,9,2
stwcx. 9,0,10
bne- 0,.L2
isync
lwz 9,8(1)
isync
防止重新排序
lwarx
,
bne
<-->
any following instructions
.
isync
防止重新排序
stwcx.
,
bne
<-->
any following instructions
?
stwcx.
开始时间早于以下负载-
lwz
, 并且完成时间晚于 Load-
lwz
?
stwcx.
preforms Store 到 Store-Buffer 的时间早于以下 Load-
lwz
开始,但对所有 CPU 核心可见的缓存的实际存储发生晚于 Load-
lwz
完成的?
isync
不是内存栅栏,而只是指令栅栏。 isync
相对于访问内存的其他处理器和机制,不会强制完成所有外部访问。 isync
不等待所有其他处理器检测到存储访问 isync
是一个非常低的开销并且非常弱(低于 lwsync
和 hwsync
)isync
不保证以前和将来的存储将被本地发布的顺序中的其他处理器感知 - 这需要同步指令之一。 isync
是获取屏障,但正如我们所知,获取只能应用于加载操作,不适用于存储 ( stwcx.
) isync
不影响数据访问和不等待所有存储执行完毕 . stwcx. [a]=1
bne-
isync
lwz [b]
. hwsync
stw [b]=1
hwsync
lwz [a]
hwsync
. [b]==1
和 Core-1 见
[a]==0
?
The isync prevents speculative execution from accessing the data block before the flag has been set. And in conjunction with the preceding load, compare, and conditional branch instructions, the isync guarantees that the load on which the branch depends (the load of the flag) is performed prior to any loads that occur subsequent to the isync (loads from the shared block). isync is not a memory barrier instruction, but the load-compare-conditional branch-isync sequence can provide this ordering property.
Unlike isync, sync forces all external accesses to complete with respect to other processors and mechanisms that access memory.
Unlike sync , isync does not wait for all other processors to detect storage accesses. isync is a less conservative fence than sync because it does not delay until all processors detect previous loads and stores.
bc;isync: this is a very low-overhead and very weak form of memory fence. A specific set of preceding loads on which the bc (branch conditional) instruction depends are guaranteed to have completed before any subsequent instruction begins execution. However, store-buffer and cache-state effects can nevertheless make it appear that subsequent loads occur before the preceding loads upon which the twi instruction depends. That said, the PowerPC architecture does not permit stores to be executed speculatively, so any store following the twi;isync instruction is guaranteed to happen after any of the loads on which the bc depends.
Note that isync does not affect data accesses and does not wait for all stores to be performed.
3.5.7.2 Instruction Cache Block Invalidate (icbi)
As a result of this and other implementation-specific design optimizations, instead of requiring the instruction sequence specified by the Power ISA to be executed on a per cache-line basis, software must only execute a single sequence of three instructions to make any previous code modifications become visible:
sync
,icbi
(to any address),isync
.
isync
不保证存储加载顺序,因为“
isync 不是内存屏障指令 ”,那么
isync
不保证在下一次指令完成之前,其他 CPU 核心(使用顺序一致性)可以看到任何先前的存储。指令同步命令
isync
只保证启动指令的顺序,但不保证指令完成的顺序,即不保证它们对其他 CPU-Core 的可见效果的顺序。那些,
isync
允许在此代码中重新排序 Store-Load 的可见效果
stwcx. [a]=1; bne-; isync; lwz [b]
.
最佳答案
正如您已经猜到的以及您的大多数优秀资料所暗示的那样,这里涉及内存访问的两个属性:
能见度
如果其他处理器可以监视内存访问。
使用特定于处理器的缓冲区或高速缓存可以在处理器上完成存储,但使其对其他处理器不可见。
订购
当执行内存访问时考虑到同一处理器上的其他指令。
排序是内存访问的处理器内方面,它控制处理器的乱序功能。
不能根据其他处理器的指令进行排序。
可见性是处理器间的一个方面,它确保内存访问的副作用对其他处理器(或一般来说,对其他代理)可见。
存储主要副作用是更改内存位置。
通过控制这两个方面,可以强制执行进程间排序,即其他处理器查看内存访问序列的顺序。
不言而喻,除非在没有其他代理存在的上下文中使用,否则“排序”一词通常指的是第二种含义。
诚然,这是一个令人困惑的术语。
请注意,我对 PowerPC 体系结构没有信心,我只是在网上找到的一些官方文档和您提供的报价的帮助下应用该理论。isync
,就像 sc
和 rfi
是 Context-Synchronizing instructions ,它们的主要目的是保证后面的指令在前面的指令建立的上下文中执行。
例如,执行系统调用会更改上下文,我们不希望特权代码在非特权上下文中执行,反之亦然。
这些指令等待所有先前发送的指令完成但不可见
All previously issued instructions have completed, at least to a point where they can no longer cause an exception.
However, memory accesses that these instructions cause need not have completed with respect to other processors and mechanisms.
isync
不会或不会阻止 Load-Load、Load-Store 等重新排序。
isync
之前完成。完整,但它们不一定可见。
But does isync prevent reordering stwcx.,bne <--> any following instructions?
I.e. can Store-stwcx. begins earlier than the following Load-lwz, and finishes performed later than Load-lwz?
stwcx.
到时完成
lwz
开始,但使用 Intel 术语,它是在本地完成的 - 其他处理器可能看不到它在
lwz
之前完成开始。
I.e. can Store-stwcx. preforms Store to the Store-Buffer earlier than the following Load-lwz begun, but the actual Store to the cache that visible for all CPU-cores occurs later than the Load-lwz finished?
关于multithreading - `isync` 是否会阻止 CPU PowerPC 上的存储加载重新排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43944411/
我想知道在谈到 CPU 使用率和 CPU 利用率时,术语是否存在科学差异。我觉得这两个词都被用作同义词。它们都描述了 CPU 时间和 CPU 容量之间的关系。 Wikipedia称之为 CPU 使用率
我研究了一些关于处理器和 Tomasulo 算法的指令重新排序的内容。 为了更深入地了解这个主题,我想知道是否有任何方法可以(获取跟踪)查看为给定程序完成的实际动态重新排序? 我想给出一个输入程序并查
我有一台配备 2 个 Intel Xeon CPU E5-2620 (Sandy Bridge) 和 10Gbps 82599 NIC(2 个端口)的服务器,用于高性能计算。从 PCI 关联性中,我看
您能详细解释一下“用户 CPU 时间”和“系统 CPU 时间”吗?我读了很多,但我不太理解。 最佳答案 区别在于时间花在用户空间还是内核空间。用户 CPU 时间是处理器运行程序代码(或库中的代码)所花
我想知道如何识别 CPU 是否与 ARM v5 指令集兼容。 假设 ARM v7 指令与 ARM v5 兼容是否正确? 最佳答案 您可以阅读 CPUID base register获得PARTNO。然
我目前在具有多个六核 CPU 的服务器上使用 C 多线程。我想将我的一些线程的亲和性设置为单个 CPU 的各个核心。我使用过 pthread_setaffinity_np() 和 sched_seta
1) 独占时间是在方法中花费的时间2) 包含时间是在方法中花费的时间加上在任何被调用函数中花费的时间3)我们称调用方法为“ parent ”,称方法为“子”。引用链接:Click here 这里的问题
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 5 年前。 Improve this ques
好的,所以编译器可以出于性能原因自由地重新排序代码片段。让我们假设一些代码片段,在没有应用优化的情况下直接翻译成机器代码,看起来像这样: machine_instruction_1 machine_i
我在 zabbix 中有以下默认图表,但我不知道如何解释这些值。谁能解释一下? 最佳答案 操作系统是一件非常忙碌的事情,尤其是当你让它做某事时(即使你没有做)。当我们看到一个活跃的企业环境时,总会发生
换句话说,L1、L2、L3 等缓存是否总是反射(reflect) CPU的字节序 ? 或者总是将数据存储在某些 的缓存中更有意义吗?特定字节序 ? 有没有总体设计决策 ? 最佳答案 大多数现代缓存不会
我想知道当前的 cpus 是否避免在其中至少一个为零时将两个数字相乘。谢谢 最佳答案 这取决于 CPU 和(在某些情况下)操作数的类型。 较旧/较简单的 CPU 通常使用如下乘法算法: integer
我有一个 CUDA 应用程序,它在一台计算机(配备 GTX 275)上运行良好,而在另一台配备 GeForce 8400 的计算机上运行速度慢了大约 100 倍。我怀疑有某种回退使代码实际上在 CPU
例如,对于 8 位 CPU,堆栈大小预计为 8 位宽,16 位 CPU 与 16 位堆栈宽度,以及 32 位、64 位 CPU,等等。是否适用于所有架构? 最佳答案 CPU 具有数据总线和地址总线。它
实现 SIMD 是否需要多核 CPU? 在阅读有关 SIMD 的维基百科时,我发现了以下短语“多处理元素”。那么这句话和“多核CPU”有什么区别呢? 最佳答案 不,每个内核通常都可以执行指令集中的大多
我遗漏了一些基本的东西。 CPU 流水线:在基本层面上,为什么指令需要不同数量的时钟周期才能完成,为什么有些指令在多级 CPU 中只需要 1 个周期? 除了明显的“不同的指令需要不同的工作量才能完成”
超线程 CPU 是实现并行还是仅实现并发(上下文切换)? 我的猜测是没有并行性,只有通过上下文切换的并发性。 最佳答案 单个物理 CPU 具有超线程的核心显示为 两个逻辑 CPU 到操作系统。 CPU
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
背景是这样的:下周我们的办公室将有一天因为维护而没有暖气。预计室外温度在 7 至 12 摄氏度之间,因此可能会变冷。可移植电取暖器数量太少,无法满足所有人的需求。 但是,在我大约 6-8 平方米的办公
我开发了一个应用程序,该应用程序在我的开发箱上的三个容器中运行,该开发箱具有带超线程的四核,这意味着系统和 docker 使用 8 个核心。 容器的 CPU 分配由 docker-compose 完成
我是一名优秀的程序员,十分优秀!