32位汇编语言学习笔记(23)--大小写转换程序2

上一篇的大小写转换程序效率比较低,每读入一个字节就会做一次系统调用,如下是一个快速版本的大小写转换程序。

SECTION .bss                    ; Section containing uninitialized data

    BUFFLEN equ 1024;Length of buffer
    Buff: resb BUFFLEN ; Text buffer itself

SECTION .data                           ; Section containing initialised data

SECTION .text                   ; Section containing code

global _start                         ; Linker needs this tofind the entry point!

_start:

    nop                    ; This no-op keeps gdbhappy...

; Read a buffer full of text from stdin:
read:
    mov eax,3                 ; Specify sys_readcall
    mov ebx,0                 ; Specify FileDescriptor 0: Standard Input
    mov ecx,Buff            ; Pass offset of thebuffer to read to
    mov edx,BUFFLEN            ; Pass number ofbytes to read at one pass
    int 80h                       ; Call sys_readto fill the buffer

    mov esi,eax              ; Copy sys_readreturn value for safekeeping
    cmp eax,0                 ; If eax=0,sys_read reached EOF on stdin

    jle Done            ; Jump If equal or below(to 0, from compare)

; Set up the registers for the process buffer step:
    mov ecx,esi              ; Place the number of bytes read into ecx

; Go through the buffer and convertlowercase to uppercase characters:
Scan:
    cmp byte [Buff-1+ecx],61h      ; Test inputchar against lowercase 'a'
    jb Next                       ; If below 'a'in ASCII, not lowercase
    cmp byte [Buff-1+ecx],7Ah     ; Test inputchar against lowercase 'z'
    ja Next                       ; If above 'z'in ASCII, not lowercase
                                    ;At this point, we have a lowercase char
    sub byte [Buff-1+ecx],20h       ; Subtract20h to give uppercase...

Next:       
    dec ecx                      ; Decrementcounter
    jnz Scan            ; If characters remain,loop back
    
; Write the buffer full of processed textto stdout:
Write:
    mov eax,4                 ; Specify sys_writecall
    mov ebx,1                 ; Specify FileDescriptor 1: Standard output
    mov ecx,Buff            ; Pass offset of thebuffer
    mov edx,esi              ; Pass the # ofbytes of data in the buffer
    int 80h                       ; Make kernelcall

    jmp read          ; Loop back and loadanother buffer full

; All done! Let's end this party:
Done:
    mov eax,1                 ; Code for ExitSyscall
    mov ebx,0                 ; Return a code ofzero   
    int 80H                       ; Make kernelcall

BUFFLEN equ1024; Length of buffer

Buff:      resb BUFFLEN

Buff在装载时预留了1024字节的空间。

mov esi,eax

sys_read系统调用的返回结果保存到esi

sys_read返回值如果是0,表示读取文件结束(遇到了EOF),大于0表示读入的字节数,如果小于0表示出错。

mov ecx,esi

esi装入的是sys_read系统调用的返回值,所以ecx也保存了这个返回值,此时ecx中的值是大于0的,表示读入的字节数。

Scan标号到Write标号之前是进行循环,扫描Buffer的内容,如果大于等于’a’,小于等于’z’,就进行大小写转换,循环的次数就是读入的字节个数。

makefile文件如下:

uppercaser2: uppercaser2.o
	ld -m elf_i386 -o uppercaser2 uppercaser2.o

uppercaser2.o: uppercaser2.asm
	nasm -f elf32 -g -F stabs uppercaser2.asm -l uppercaser2.lst

[root@bogon uppercaser2]# ./uppercaser2> output.txt < uppercaser2.asm

打开output.txt文件可以看到完成了大小写转换操作。




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值