gpt4 book ai didi

c++ - 如何加载(mov)一个类变量到cpu寄存器

转载 作者:行者123 更新时间:2023-11-28 03:50:28 25 4
gpt4 key购买 nike

我想加载一个定义为类成员的 int 值到 eax cpu 寄存器。像这样:

class x
{
int a;

x() { a=5; }

do_stuff()
{
__asm
{
mov eax, a; // mov a varbiale content into register
};
}
};

我怎样才能对任何类中的任何变量做到这一点?谢谢...

最佳答案

如果您使用的是 gcc 或 icc,这正是您想要的:

class x
{
int a;

x() { a=5; }

do_stuff()
{
asm("mov %0, %%eax; // mov a varbiale content into register \n"
:
: "r" (a)
: "%eax"
);


}
};

寄存器约束和破坏列表的解释在 http://www.ibiblio.org/gferg/ldp/GCC-Inline-Assembly-HOWTO.html如果你仍然感兴趣。在 MS VC 上,我不建议使用内联汇编,因为 MS 编译器不擅长混合内联和生成的汇编,并会产生大量开销。

关于c++ - 如何加载(mov)一个类变量到cpu寄存器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5699786/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com