我不知道如何打印数组,反过来,我也不知道如何交换数组中的元素

I can't figure out how to print arrays and in turn, I can't figure out how to swap elements in an array

这是 C++ 文件:

#include <iostream>
using namespace std;

//This is the C prototype of the assembly function, it requires extern"C" to
//show the name is going to be decorated as _test and not the C++ way of
//doing things
extern"C"
{
    //char arrayReverse(char*, int);
    int numChars(char *, int);
    char swapChars(char *, int);
}

int main()
{
    const int SIZE = 7;
    char arr[SIZE] = { 'h', 'e', 'l', 'l', 'o', '1', '2' };

    int val1 = numChars(arr, SIZE);
    cout << "The number of elements is: " << val1 << endl;

    char val2 = swapChars(arr, SIZE);
    cout << "Swapped! " << endl;


    return 0;
}

和我的 swapChars() 文件:

    .686
    .model flat
    .code

    _swapChars PROC ; named _test because C automatically prepends an underscode, it is needed to interoperate
        push ebp
        mov ebp,esp ; stack pointer to ebp

        mov ebx,[ebp+8] ; address of first array element
        mov ecx,[ebp+12] ; number of elements in array
        mov ebp,0
        mov eax,0
        mov edx,ebx     ;move first to edx
        add edx, 7      ;last element in the array

    loopMe:
        cmp ebp, ecx        ;comparing iterator to total elements
        jge nextLoopMe
        mov eax, [ebx]      ;move 1st element into tmp eax
        mov ebx, [edx]      ;move last element into first
        mov edx, eax        ;move tmp into last
        push ebx            ;push first element onto stack
        add ebx, 1          ;first + 1
        sub edx, 1          ;last - 1
        add ebp, 1          ;increment
    jmp loopMe




        nextLoopMe:
            mov ebx,[ebp+8] ;find first element again  USING AS FFRAME POINTER AGAIN
            cmp ebx, ecx    ;comparing first element to number of elements
            je allDone

            pop ebx
            add ebx, 1
        jmp nextLoopMe

    allDone:    
        pop ebp
        ret
    _swapChars ENDP

    END 

这应该取arr[0]中的值并将其与arr[6]、arr[1]与arr[5]等交换,直到交换整个数组然后显示它。我不知道我写的任何代码是否能满足我的要求,但我正在寻找一种方法来查看发生了什么。

有没有办法让 asm 代码在遍历循环时向控制台打印一些东西?

寄存器周围的括号 ( [ebx] ) 表示寄存器的值吗?

在loopMe:时,第三行

mov eax, [ebx]

我遇到异常 "Exception thrown at 0x012125FC in assignment4.exe: 0xC0000005: Access violation reading location 0xCCCCCCCD."

我是否正确处理掉期交易?

感谢您的宝贵时间。

首先,您的代码不安全,因为您忘记在 char 数组的末尾添加 \0。当您使用函数来处理您的 char 或 char 字符串时,它会引发内存泄漏。大小应为 8,数组中的最后一个应为 \0.

您确实需要学习使用调试器来单步执行此操作。也就是说,这是我看到的一些问题。

add edx,7

会将 edx 指向数组的末尾。就像 C 代码中的 arr[7] 一样。应该是 add edx,6 把 edx 指向最后一个字符。

在你的程序中间更改 ebp 很容易出错,我认为你在那里有错误。您更改了它的值,但随后期望 [ebp+8] 稍后引用相同的数据。

您也没有正确修改列表。要将 char 从一个元素移动到另一个元素,您可以执行以下操作:

mov al, [ebx]     ; copy byte from address ebx to register al
mov [edx], al     ; copy byte in register al into address edx

eax 寄存器是 32 位的,一次将复制 4 个字节,而不是 1 个。