几天前我问了一个关于这段代码的问题,所以有些人可能会觉得它很熟悉。对于那些不熟悉它的人来说,这段代码应该做的是从用户请求25个有符号整数并将它们存储到数组中;这是通过requestSignedInts子例程完成的(我很确定这部分工作正常)。之后,“calcMean”子程序应该将数组中的所有值相加,将它们除以数组中的元素数,然后“将结果截断为整数”。这就是我被困住的地方。我试图编写一个calcMean子例程,它将执行我刚才描述的内容,但似乎无法弄清楚如何正确地进行除法。最重要的是,我甚至不确定我的calcMean子例程中当前有什么能够正常工作。有人可以提供帮助吗?
INCLUDE c:\irvine\irvine32.inc
INCLUDELIB c:\irvine\irvine32.lib
INCLUDELIB c:\masm32\lib\user32.lib
INCLUDELIB c:\masm32\lib\kernel32.lib
.data
theSINTArray BYTE 25 dup(?)
lengthOfArray BYTE ?
indexCounter BYTE 0
prompt BYTE "Please enter a value: ",0
.CODE
main PROC
call requestSignedInts
call calculateMean
exit
main ENDP
requestSignedInts PROC
mov edx, offset theSINTArray
Next:
push edx
mov edx,OFFSET prompt
call WriteString
call ReadInt
pop edx
mov [edx], al
inc edx
cmp edx, offset theSINTArray + 25
jb Next
ret
requestSignedInts ENDP
calculateMean PROC
push ecx
mov ecx,lengthOfArray - theSINTArray ; Determine array length
xor eax, eax ; Clear EAX
mov esi, OFFSET theSINTArray ; Starting point for index into array
calcMean:
movsx edx, byte ptr[esi] ; Sign extended move a byte into EDX
add eax, edx ; Accumulate in EAX
inc esi ; Increment source pointer to the next element
loop calcMean ; or cmp esi,endOfArray / jb, then you wouldn't need to touch ecx
mov ecx,lengthOfArray - theSINTArray ; Determine array length
cdq ; sign-extend eax into edx:eax
idiv ecx ; Divide edx:eax by ecx
; eax now contains the integer and edx contains
; the remainder.
pop ecx
ret
calculateMean ENDP
END main
答案 0 :(得分:2)
在我看来,你可能会错过评论中提到的idiv
的功能。为什么不:
calculateMean PROC
push ecx
mov ecx,lengthOfArray - theSINTArray ; Determine array length
xor eax, eax ; Clear EAX
mov esi, theSINTArray ; Starting point for index into array
calcMean:
movsx edx, byte ptr[esi] ; Sign extended move a byte into EDX
add eax, edx ; Accumulate in EAX
inc esi ; Increment source pointer to the next element
loop calcMean ; or cmp esi,endOfArray / jb, then you wouldn't need to touch ecx
mov ecx,lengthOfArray - theSINTArray ; Determine array length
cdq ; sign-extend eax into edx:eax
idiv ecx ; Divide edx:eax by ecx
; eax now contains the integer and edx contains
; the remainder.
pop ecx
ret
calculateMean ENDP
您已经知道列表的长度,只需要清除edx
并除以ecx
。这也正确地使用movsx
来对一个字节(从您的数组)进行符号扩展移动到32位寄存器(edx
)。总数累计到eax
,最后,我们签署延伸和除法。
答案 1 :(得分:1)
除了大卫的答案之外,你的原始代码还有很多奇怪的地方。我发布了一个新的答案,而不是进一步编辑David的。
评论中注明了更改。旧的评论被删除,所以变更说明脱颖而出。
.data
SBYTEArray BYTE 25 dup(?) ; SINT = signed int, which makes most x86 C programmers think 32bit
; lengthOfArray BYTE ? ; totally bogus: named wrong, and there doesn't need to be any storage there
; SBYTEArray_len equ $ - SBYTEArray ; that's NASM syntax and IDK the MASM syntax
SBYTEArray_end: ; SBYTEArray_end and prompt have the same address. That's fine.
prompt BYTE "Please enter a value: ",0 ; If MASM/Windows has a .rodata section, you should put constant data there. It goes in the text section, along with code, because each instance of your process doesn't need a private copy.
.CODE
main PROC
call requestSignedInts
call calculateMean
exit
main ENDP
requestSignedInts PROC
; indent code one level deeper than labels / directives
push esi ; save a call-preserved reg
mov esi, offset SBYTEArray
Next:
mov edx,OFFSET prompt
call WriteString
call ReadInt
mov [esi], al
inc esi
; cmp edx, offset SBYTEArray + 25 ; hard-coding the size defeats the purpose of defining lengthOfArray
cmp esi, offset SBYTEArray_end
jb Next
pop esi ; note that the push/pop are outside the loop
ret
requestSignedInts ENDP
calculateMean PROC
; push ecx ; The normal function-call ABIs allow clobbering ecx, and I don't see any reason to make this function go beyond the ABI requirements (although that is an option in asm)
; push esi ; esi *is* call-preserved in the standard 32bit ABIs. But by changing our function to use fewer registers, we can avoid the save/restore
xor eax, eax ; start with sum=0
mov ecx, offset SBYTEArray
calcMean:
movsx edx, byte ptr[ecx]
add eax, edx
inc ecx
cmp ecx, offset SBYTEArray_end
jb calcMean ; loop while our pointer is below the end pointer
mov ecx, SBYTEArray_end - SBYTEArray ; Determine array length. Does this need OFFSET?
cdq
idiv ecx
; pop esi ; we ended up not needing it
ret
calculateMean ENDP
END Main
loop
is slow, avoid it. Esp。当你可以通过使用其他东西来保存寄存器来保存寄存器时。