如何在C ++内联汇编代码中使用String?

时间:2012-02-02 14:22:58

标签: c++ assembly

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

  • 将ESI指向数组中的条目
  • 将EDI指向我们在数组中搜索的字符串
  • cmps byte ptr ds:[esi],byte 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寄存器指向我正在搜索的字符串的正确方法是什么?

我在Win XP SP3上使用Visual Studio C ++ Express Edition 2010进行编程。

1 个答案:

答案 0 :(得分:6)

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 %s\n";
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。你可以获得所有的速度,而不必费力地找出变量存储的位置。

相关问题