我现在正在使用x86类,我们有一个ARM程序集,它是我们所做的x86分配的副本。基本上它从文件读入,将小写字母更改为大写,并保留空格。因此它只会写大写字母(如果它们是小写的话,则更改小写字母),并复制空格,同时删除数字和字符。我们只使用十六进制字符00h-7F(即使我们拥有的最低可用字符是0x20)。我试图将我的代码从x86转换为ARM但它只是直接通过,而不写入输出。任何想法为什么,以及如何解决它?
我写了标有&#34的部分;检查是否小写" "检查大写"和"检查空格"
;---------------------------------------------------------------------
; File: ARMkey.s
;
; Function: This program copies an ASCII file
; It assumes the file uses CR/LF as the end of line sequence
; - It opens an input file named key.in
; - It opens an output file named key.out
; - It reads one line of text from the input file.
; - It writes that one line to the output file, only using chars 00h-7Fh then a CR LF
; - It loops until it reaches end of file
; - It closes the input and output file
;
;
;---------------------------------------------------------------------
;----------------------------------
; Software Interrupt values
;----------------------------------
.equ SWI_Open, 0x66 ;Open a file
.equ SWI_Close, 0x68 ;Close a file
.equ SWI_PrStr, 0x69 ;Write a null-ending string
.equ SWI_RdStr, 0x6a ;Read a string and terminate with null char
.equ SWI_Exit, 0x11 ;Stop execution
;----------------------------------
.global _start
.text
_start:
;----------------------------------
; open input file
; - r0 points to the file name
; - r1 0 for input
; - the open swi is 66h
; - after the open r0 will have the file handle
;----------------------------------
ldr r0, =InFileName ;r0 points to the file name
ldr r1, =0 ;r1 = 0 specifies the file is input
swi SWI_Open ;open the file ... r0 will be the file handle
ldr r1, =InFileHandle ;r1 points to handle location
str r0, [r1] ;store the file handle
;----------------------------------
;----------------------------------
; open output file
; - r0 points to the file name
; - r1 1 for output
; - the open swi is 66h
; - after the open r0 will have the file handle
;----------------------------------
ldr r0, =OutFileName ;r0 points to the file name
ldr r1, =1 ;r1 = 1 specifies the file is output
swi SWI_Open ;open the file ... r0 will be the file handle
ldr r1, =OutFileHandle ;r1 points to handle location
str r0, [r1] ;store the file handle
;----------------------------------
;----------------------------------
; read a string from the input file
; - r0 contains the file handle
; - r1 points to the input string buffer
; - r2 contains the max number of characters to read
; - the read swi is 6ah
; - the input string will be terminated with 0
;----------------------------------
_read: ;
ldr r0, =InFileHandle ;r0 points to the input file handle
ldr r0, [r0] ;r0 has the input file handle
ldr r1, =String ;r1 points to the input string
ldr r2, =128 ;r2 has the max size of the input string
swi SWI_RdStr ;read a string from the input file
cmp r0,#0 ;no characters read means EOF
beq _exit ;so close and exit
;----------------------------------
;----------------------------------
; Check if Lower Case Letter
;----------------------------------
cmp r1, #0x61 ;check against lowercase a
blt _notlower ;if less go to notlow
cmp r1, #0x7A ;check against lowercase z
bgt _notlower
sub r1, r1, #0x14 ;Make letter uppercase
bal _read
;----------------------------------
; Check if Upper Case Letter
;----------------------------------
_notlower:
cmp r1, #0x41 ;dl < A
blt _space ;jump to not letter
cmp r1, #0x5A ;dl > Z
blt _space ;jump to not letter
;----------------------------------
; Check if Space
;----------------------------------
_space:
cmp r1, #0x20 ; r1 = space?
beq _read ; yes, get new letter
;----------------------------------
; Write the outputs string
;----------------------------------
_write: ;
ldr r0, =OutFileHandle ;r0 points to the output file handle
ldr r0, [r0] ;r0 has the output file handle
ldr r1, =String ;r1 points to the output string
swi SWI_PrStr ;write the null terminated string
;
ldrb r1, [r1] ;get the first byte of the line
cmp r1, #0x1A ;if line was DOS eof then do not write CRLF
beq _read ;so do next read
;
ldr r1, =CRLF ;r1 points to the CRLF string
swi SWI_PrStr ;write the null terminated string
;
bal _read ;read the next line
;----------------------------------
;----------------------------------
; Close input and output files
; Terminate the program
;----------------------------------
_exit: ;
ldr r0, =InFileHandle ;r0 points to the input file handle
ldr r0, [r0] ;r0 has the input file handle
swi SWI_Close ;close the file
;
ldr r0, =OutFileHandle ;r0 points to the output file handle
ldr r0, [r0] ;r0 has the output file handle
swi SWI_Close ;close the file
;
swi SWI_Exit ;terminate the program
;----------------------------------
.data
;----------------------------------
InFileHandle: .skip 4 ;4 byte field to hold the input file handle
OutFileHandle: .skip 4 ;4 byte field to hold the output file handle
;
InFileName: .asciz "KEY.IN" ;Input file name, null terminated
;
String: .skip 128 ;reserve a 128 byte string
;
CRLF: .byte 13, 10, 0 ;CR LF
;
OutFileName: .asciz "KEY.OUT" ;Output file name, null terminated
;----------------------------------
.end
测试文件包含以下字符:
!"#$%&'()*+,-/0123456789:;<=>?@
ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`
abcdefghijklmnopqrstuvwxyz{|}~
它应该只输出:
ABCDEFGHIJKLMNOPQRSTUVWXYZ
ABCDEFGHIJKLMNOPQRSTUVWXYZ
答案 0 :(得分:1)
您的代码存在多个问题,您应该首先制作伪代码或流程图来确定算法。
类似的东西:
_read:
ldr r0, =InFileHandle ;r0 points to the input file handle
ldr r0, [r0] ;r0 has the input file handle
ldr r1, =String ;r1 points to the input string
ldr r2, =128 ;r2 has the max size of the input string
swi SWI_RdStr ;read a string from the input file
cmp r0,#0 ;no characters read means EOF
beq _exit ;so close and exit
ldr r0, =String
mov r1, r0
charloop:
ldrb r2, [r0]
cmp r2, #0
beq endofstring
cmp r2, #'z'
bgt skip
cmp r2, #'a'
bge lower
cmp r2, #'Z'
bgt skip
cmp r2, #'A'
bge copy
cmp r2, #' '
beq copy
bal skip
lower:
sub r2, r2, #0x20
copy:
strb r2, [r1], #1
skip:
add r0, r0, #1
bal charloop
endofstring:
strb r2, [r1] ; copy the terminating zero
ldr r0, =OutFileHandle ;r0 points to the output file handle
ldr r0, [r0] ;r0 has the output file handle
ldr r1, =String ;r1 points to the output string
swi SWI_PrStr ;write the null terminated string
;
ldr r1, =CRLF ;r1 points to the CRLF string
swi SWI_PrStr ;write the null terminated string
;
bal _read ;read the next line
现在,将其转换为汇编代码是一件简单的事情。类似的东西:
$GetGroupByID = mysqli_fetch_object(mysqli_query($db, "SELECT * FROM Groups WHERE ID=$ID"));
请注意上述代码中的错误,我还没有测试过它:)
PS:从上到下的差异是0x20而不是20,这将是你代码中的0x14。