这里要考虑的是,从编译器的角度来看,寄存器是由内联汇编分配给的,即使您以后不再使用它。也就是说,您正在生成相当于:
register unsigned int OV_TMP = 0xffefffff, scratch;
scratch = magic() & OV_TMP;
more_magic(scratch);
/* and then don't re-use scratch for anything from here on */
由于 ,魔术和/或 more_magic 步骤无法移动或组合volatile
,因此编译器不能简单地删除已写入但未使用的寄存器。
mfsr
and看起来像 powerpc 指令,mtsr
我可能会and
在 C 代码中执行该步骤(见脚注);但以下通常应该有效:
unsigned int OV_TMP = 0xffefffff, scratch;
asm volatile("mfsr %0, $PSW\n\t"
"and %0, %0, %1\n\t"
"mtsr %0, $PSW"
: "=&r"(scratch) : "r"(OV_TMP));
这里的“=&r”约束表示输出操作数 ( %0
) 在输入操作数 ( %1
) 被读取之前写入。
脚注:据我所知(这不是很远,我只做过一点点 ppc 组装)与其他处理器上的某些锁步序列不同,不需要将
mfsr
and
mtsr
指令保持特定距离。如果是这样,我会写一些更像这样的东西:
static inline unsigned int read_psw() {
unsigned int result;
asm volatile("mfsr %0, $PSW" : "=r"(result));
return result;
}
static inline void write_psw(unsigned int value) {
asm volatile("mtsr %0, $PSW" :: "r"(value));
}
#define PSW_FE0 0x00100000 /* this looks like it's FE0 anyway */
...
write_psw(read_psw() & ~PSW_FE0); /* some appropriate comment here */