如何在C++内联汇编代码中使用字符串

How to use a String in C++ Inline Assembly code?

本文关键字:代码 字符串 汇编 C++      更新时间:2023-10-16

我正在尝试在字符串数组中查找字符串的索引。我知道数组的基本地址,现在我想做的事情如下所示:

  • 将ESI指向数组中的条目
  • 将EDI指向我们在数组中搜索的字符串
  • cmps字节ptr ds:[esi],字节ptr es:[edi],用于在esi和edi时一次比较一个字节

然而,我很困惑如何将EDI寄存器指向我正在搜索的字符串?

int main(int argc, char *argv[])
{
char entry[]="apple";
__asm
{
mov esi, entry
mov edi, [ebx] //ebx has base address of the array

等等

那么,将我的esi寄存器指向我正在搜索的字符串的正确方法是什么呢?

我正在WinXPSP3上使用Visual Studio C++速成版2010进行编程。

Visual C++编译器允许您直接在汇编代码中使用变量。此处的示例:http://msdn.microsoft.com/en-us/library/y8b57x4b(v=vs.80).aspx

// InlineAssembler_Calling_C_Functions_in_Inline_Assembly.cpp
// processor: x86
#include <stdio.h>
char format[] = "%s %sn";
char hello[] = "Hello";
char world[] = "world";
int main( void )
{
   __asm
   {
      mov  eax, offset world
      push eax
      mov  eax, offset hello
      push eax
      mov  eax, offset format
      push eax
      call printf
      //clean up the stack so that main can exit cleanly
      //use the unused register ebx to do the cleanup
      pop  ebx
      pop  ebx
      pop  ebx
   }
}

没有比这更容易的了,IMO。你可以获得所有的速度,而不必费力地找出变量存储在哪里。