我试图解决这个问题几天了。我不知道如何分配内存来将字符串复制到另一个位置。这是代码:
caesarAsm proc string: DWORD, key: DWORD, stringLength : DWORD ; inside this procedure I have a code that ciphers string value using caesar cipher mov eax, string ret caesarAsm endp
然后在CPP文件中使用函数时:
caesar1(word, 13, strlen(word))
它会改变word的值,因为它是通过引用传递的。我希望它能做什么,直到我做:
word = caesar1(word, 13, strlen(word))
我一直试图在互联网上搜索这个问题,但我没有发现任何帮助。我想这个解决方案很简单,但我找不到它。我试图用ESI和EDI寄存器做某事。 我想我必须分配新的内存然后将字符串复制到这个分配的位置。怎么做?
答案 0 :(得分:1)
根据评论中的讨论,复制字符串的基本方法是在.bss中声明一个标签,并保留保存字符串副本所需的字节数。这是使用intel语法,因为我没有MASM可用。例如,您可以在.data中声明原始字符串。 e.g:
section .data
str_str1 db 'string one to copy', 0
section .bss
str_str2 resb 19
对于副本,请将str_str1
的地址加载到esi
,将str_str2
的地址加载到edi
。在cx
中加载要复制的字符数,然后调用rep movsb
将cx
中指定的字节数从esi
移至edi
。 e.g:
section .text
global _start
_start:
xor ecx, ecx ; clear ecx
cld ; clear direction flag (read L->R)
lea esi, [str_str1] ; load str1 in esi
lea edi, [str_str2] ; load str2 in edi
mov cx, 19 ; move 19 into cx for repeat
rep movsb ; move 19 bytes from str1 -> str2
exit:
xor edi, edi ; set zero exit code
mov eax, 1 ; set int 0x80 number to 60 (0x3c hex)
int 0x80 ; call kernel
这会将str_str
复制到str_str2
。然后你可以添加代码来打印它们等等.Nasm提供了一种简单的宏语言来帮助重复执行任务,比如读取调用和写入调用(特别是对于缩进,间距,打印等)。nasm语法中的完整示例是:
; Following macros simply print indents, newlines and strings to stdout
%macro indent 1
mov eax, 4
mov ebx, 1
mov ecx, tab
mov edx, %1
int 0x80
%endmacro
%macro newlns 1
mov eax, 4
mov ebx, 1
mov ecx, onln
mov edx, %1
int 0x80
%endmacro
; strn (string const) macro is overloaded to take 1 or 2 args
%macro strn 1
mov eax, 4
mov ebx, 1
mov ecx, %1
mov edx, 1
int 0x80
%endmacro
%macro strn 2
mov eax, 4
mov ebx, 1
mov ecx, %1
mov edx, %2
int 0x80
%endmacro
section .data
nwln db 0xa
dnln db 0xa,0xa
onln times 8 db 0xa ; 8 newlines
tab times 8 db 0x20 ; 8 spaces
msg_str1 db 0xa, ' string_1: '
msg_str2 db 0xa, ' string_2: '
str_str1 db 'string one to copy', 0
section .bss
str_str2 resb 19
section .text
global _start
_start:
xor ecx, ecx ; clear ecx
cld ; clear direction flag (read L->R)
lea esi, [str_str1] ; load str1 in esi
lea edi, [str_str2] ; load str2 in edi
mov cx, 19 ; move 19 into cx for repeat
rep movsb ; move 19 bytes from str1 -> str2
; macros to print results & add newlines
strn msg_str1, 13 ; print str1 msg
strn str_str1, 19 ; print str1
strn msg_str2, 13 ; print str2 msg
strn str_str2, 19 ; print str2
newlns 2 ; print 2 newlines
exit:
xor edi, edi ; set zero exit code
mov eax, 1 ; set int 0x80
int 0x80 ; call kernel
Nasm编译/链接
nasm -f elf -o obj/str_cpy_32.o str_cpy_32.asm
ld -m elf_i386 -o bin/str_cpy_32 obj/str_cpy_32.o
<强>输出强>
$ ./bin/str_cpy_32
string_1: string one to copy
string_2: string one to copy
查看MASM语法差异并进行必要的更改。你应该没有理由不能完成同样的事情。
确定字符串大小 - 32位
如上所述,要确定未知字符串的长度,字符串本身必须以空值终止,以提供要测试的结束标记字符。字符串地址放在edi
中然后你有效地检查每个字符为零(数字零,而不是字符零),长度由达到空终止字符所需的迭代次数确定:
; szstr computes the length of a string.
; edi - string address
; edx - contains string length (returned)
section .text
strsz:
xor ecx, ecx ; zero rcx
not ecx ; set rcx = -1 (uses bitwise id: ~x = -x-1)
xor al,al ; zero the al register (initialize to NUL)
cld ; clear the direction flag
repnz scasb ; get the string length (dec ecx through NUL)
not ecx ; rev all bits of negative -> absolute value
dec ecx ; -1 to skip the null-term, ecx contains length
mov edx, ecx ; size returned in edx, ready to call write
ret
当然,您不必将它用作函数,只需将代码放在汇编程序的主体中,但由于它是您经常使用的东西,因此将其用作函数是有帮助的。 / p>