gpt4 book ai didi

c++ - 在 __asm 中插入注释导致 C2400 错误 (VS2012)

转载 作者:行者123 更新时间:2023-11-30 03:51:26 24 4
gpt4 key购买 nike

我试图检查 VS 2012 中某些代码的编译汇编器。我添加了两行(在我的代码之前和之后):

__asm ; it begins here!
// My code
__asm ; it ends here!

然而,VS 并不喜欢那样。我得到了

error C2400: inline assembler syntax error in 'opcode'; found 'bad token'

所以我添加了一个我不想添加的NOP:

__asm NOP ; Comment!

效果很好。我的问题是双重的。

  1. 为什么 VS 不允许我添加程序集注释?
  2. 有没有其他方法可以在不添加指令(包括 NOP)的情况下添加汇编注释?

最佳答案

它不起作用的原因是 __asm是关键字,就像 int 是关键字一样,它不能单独出现,必须遵循正确的语法。以下面的代码为例:

int main()
{
int // here's a comment, but it's ignored by the compiler
return 0;
}

以下代码将因编译错误而失败,更具体地说,在 VS2012 中你会得到 error C2143: syntax error : missing ';'在“返回”之前。这是一个明显的错误,因为我们没有结束分号来表示指令结束;添加分号并编译正常,因为我们没有违背 C(或本例中的 C++)语言的语法:

int main()
{
int // here's a comment, but it's ignored by the compiler
; // white space and comments are ignored by the compiler
return 0;
}

以下代码同理:

int main()
{
__asm ; here's a comment but it's ignored

return 0;
}

除了这里,我们得到错误 error C2400: 'opcode' 中的内联汇编语法错误;找到“常量”,因为它将 __asm 关键字之后的所有内容都视为汇编程序指令,并且注释被正确地忽略了..所以下面的代码可以工作:

int main()
{
__asm ; here's a comment but it's ignored
NOP ; white space and comments are ignored by the compiler

__asm {; here's an __asm 'block'
} // outside of __asm block so only C style comments work
return 0;
}

这就回答了您的第一个问题:为什么 VS 不允许我添加程序集注释?.. 因为它语法错误。

现在回答您的第二个问题:是否有其他方法可以在不添加指令(包括 NOP)的情况下添加汇编注释?

直接的,不,没有,但间接的,是的,有。值得注意的是,__asm 关键字在您的程序中被编译成内联汇编,因此注释将从编译的汇编中删除,就好像它是标准的 C/C++ 注释一样,因此尝试“强制”不需要通过该方法在程序集中发表评论,相反,您可以使用 /FAs编译器标志,它将生成与源代码混合的程序集(机器代码),示例:

给定以下(非常简单的)代码:

int main()
{
// here's a normal comment
__asm { ; here's an asm comment and empty block
} // here's another normal comment
return 0;
}

当使用 /FAs 编译器标志编译时,生成的 file.asm 中有以下输出:

; Listing generated by Microsoft (R) Optimizing Compiler Version 18.00.31101.0 

TITLE C:\test\file.cpp
.686P
.XMM
include listing.inc
.model flat

INCLUDELIB LIBCMT
INCLUDELIB OLDNAMES

PUBLIC _main
; Function compile flags: /Odtp
; File c:\test\file.cpp
_TEXT SEGMENT
_main PROC

; 2 : {

push ebp
mov ebp, esp

; 3 : // here's a normal comment
; 4 : __asm { ; here's an asm comment and empty block
; 5 : } // here's another normal comment
; 6 : return 0;

xor eax, eax

; 7 : }

pop ebp
ret 0
_main ENDP
_TEXT ENDS
END

注意它是如何包含来源和评论的。如果此代码执行更多操作,您将看到更多程序集以及与之关联的源代码。

如果您想在内联程序集本身中放置注释,那么您可以使用普通的 C/C++ 样式注释以及 __asm block 本身中的程序集注释:

int main()
{
// here's a C comment
__asm { ; here's an asm comment
// some other comments
NOP ; asm type comment
NOP // C style comment
} // here's another comment
return 0;
}

希望对您有所帮助。

编辑:

应该注意以下代码也可以无错编译,我不是 100% 确定原因:

int main()
{
__asm
__asm ; comment
// also just doing it on a single line works too: __asm __asm
return 0;
}

使用单个 __asm 编译此代码; comment 给出了编译错误,但两者都编译得很好;向上述代码添加指令并检查 .asm 输出显示第二个 __asm 被前面的任何其他汇编命令忽略。所以我不能 100% 确定这是解析错误还是 __asm 关键字语法的一部分,因为没有关于此行为的文档。

关于c++ - 在 __asm 中插入注释导致 C2400 错误 (VS2012),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31262349/

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