Ted's Blog

Happy coding

Linux 汇编语言开发指南

Ted posted @ 2008年9月02日 23:29 in asm with tags ASM , 3596 阅读
汇编语言的优点是速度快,可以直接对硬件进行操作,这对诸如图形处理等关键应用是非常重要的。Linux 是一个用 C 语言开发的操作系统,这使得很多程序员开始忘记在 Linux 中还可以直接使用汇编这一底层语言来优化程序的性能。本文为那些在Linux 平台上编写汇编代码的程序员提供指南,介绍 Linux 汇编语言的语法格式和开发工具,并辅以具体的例子讲述如何开发实用的Linux 汇编程序。

一、简介

作为最基本的编程语言之一,汇编语言虽然应用的范围不算很广,但重要性却勿庸置疑,因为它能够完成许多其它语言所无法完成的功能。就拿 Linux 内核来讲,虽然绝大部分代码是用 C 语言编写的,但仍然不可避免地在某些关键地方使用了汇编代码,其中主要是在 Linux 的启动部分。由于这部分代码与硬件的关系非常密切,即使是 C 语言也会有些力不从心,而汇编语言则能够很好扬长避短,最大限度地发挥硬件的性能。

大多数情况下 Linux 程序员不需要使用汇编语言,因为即便是硬件驱动这样的底层程序在 Linux 操作系统中也可以用完全用 C 语言来实现,再加上 GCC 这一优秀的编译器目前已经能够对最终生成的代码进行很好的优化,的确有足够的理由让我们可以暂时将汇编语言抛在一边了。但实现情况是 Linux 程序员有时还是需要使用汇编,或者不得不使用汇编,理由很简单:精简、高效和 libc 无关性。假设要移植 Linux 到某一特定的嵌入式硬件环境下,首先必然面临如何减少系统大小、提高执行效率等问题,此时或许只有汇编语言能帮上忙了。

汇编语言直接同计算机的底层软件甚至硬件进行交互,它具有如下一些优点:

  • 能够直接访问与硬件相关的存储器或 I/O 端口;
  • 能够不受编译器的限制,对生成的二进制代码进行完全的控制;
  • 能够对关键代码进行更准确的控制,避免因线程共同访问或者硬件设备共享引起的死锁;
  • 能够根据特定的应用对代码做最佳的优化,提高运行速度;
  • 能够最大限度地发挥硬件的功能。

同时还应该认识到,汇编语言是一种层次非常低的语言,它仅仅高于直接手工编写二进制的机器指令码,因此不可避免地存在一些缺点:

  • 编写的代码非常难懂,不好维护;
  • 很容易产生 bug,难于调试;
  • 只能针对特定的体系结构和处理器进行优化;
  • 开发效率很低,时间长且单调。

Linux 下用汇编语言编写的代码具有两种不同的形式。第一种是完全的汇编代码,指的是整个程序全部用汇编语言编写。尽管是完全的汇编代码,Linux 平台下的汇编工具也吸收了 C 语言的长处,使得程序员可以使用 #include、#ifdef 等预处理指令,并能够通过宏定义来简化代码。第二种是内嵌的汇编代码,指的是可以嵌入到C语言程序中的汇编代码片段。虽然 ANSI 的 C 语言标准中没有关于内嵌汇编代码的相应规定,但各种实际使用的 C 编译器都做了这方面的扩充,这其中当然就包括 Linux 平台下的 GCC。



回页首

二、Linux 汇编语法格式

绝大多数 Linux 程序员以前只接触过DOS/Windows 下的汇编语言,这些汇编代码都是 Intel 风格的。但在 Unix 和 Linux 系统中,更多采用的还是 AT&T 格式,两者在语法格式上有着很大的不同:

  1. 在 AT&T 汇编格式中,寄存器名要加上 '%' 作为前缀;而在 Intel 汇编格式中,寄存器名不需要加前缀。例如:

    AT&T 格式 Intel 格式
    pushl %eax push eax
  2. 在 AT&T 汇编格式中,用 '$' 前缀表示一个立即操作数;而在 Intel 汇编格式中,立即数的表示不用带任何前缀。例如:

    AT&T 格式 Intel 格式
    pushl $1 push 1
  3. AT&T 和 Intel 格式中的源操作数和目标操作数的位置正好相反。在 Intel 汇编格式中,目标操作数在源操作数的左边;而在 AT&T 汇编格式中,目标操作数在源操作数的右边。例如:

    AT&T 格式 Intel 格式
    addl $1, %eax add eax, 1
  4. 在 AT&T 汇编格式中,操作数的字长由操作符的最后一个字母决定,后缀'b'、'w'、'l'分别表示操作数为字节(byte,8 比特)、字(word,16 比特)和长字(long,32比特);而在 Intel 汇编格式中,操作数的字长是用 "byte ptr" 和 "word ptr" 等前缀来表示的。例如:

    AT&T 格式 Intel 格式
    movb val, %al mov al, byte ptr val
  5. 在 AT&T 汇编格式中,绝对转移和调用指令(jump/call)的操作数前要加上'*'作为前缀,而在 Intel 格式中则不需要。
  6. 远程转移指令和远程子调用指令的操作码,在 AT&T 汇编格式中为 "ljump" 和 "lcall",而在 Intel 汇编格式中则为 "jmp far" 和 "call far",即:

    AT&T 格式 Intel 格式
    ljump $section, $offset jmp far section:offset
    lcall $section, $offset call far section:offset

    与之相应的远程返回指令则为:

    AT&T 格式 Intel 格式
    lret $stack_adjust ret far stack_adjust
  7. 在 AT&T 汇编格式中,内存操作数的寻址方式是

    section:disp(base, index, scale)
    

    而在 Intel 汇编格式中,内存操作数的寻址方式为:

    section:[base + index*scale + disp]
    

    由于 Linux 工作在保护模式下,用的是 32 位线性地址,所以在计算地址时不用考虑段基址和偏移量,而是采用如下的地址计算方法:

    disp + base + index * scale
    

    下面是一些内存操作数的例子:

    AT&T 格式 Intel 格式
    movl -4(%ebp), %eax mov eax, [ebp - 4]
    movl array(, %eax, 4), %eax mov eax, [eax*4 + array]
    movw array(%ebx, %eax, 4), %cx mov cx, [ebx + 4*eax + array]
    movb $4, %fs:(%eax) mov fs:eax, 4



回页首

三、Hello World!

真不知道打破这个传统会带来什么样的后果,但既然所有程序设计语言的第一个例子都是在屏幕上打印一个字符串 "Hello World!",那我们也以这种方式来开始介绍 Linux 下的汇编语言程序设计。

在 Linux 操作系统中,你有很多办法可以实现在屏幕上显示一个字符串,但最简洁的方式是使用 Linux 内核提供的系统调用。使用这种方法最大的好处是可以直接和操作系统的内核进行通讯,不需要链接诸如 libc 这样的函数库,也不需要使用 ELF 解释器,因而代码尺寸小且执行速度快。

Linux 是一个运行在保护模式下的 32 位操作系统,采用 flat memory 模式,目前最常用到的是 ELF 格式的二进制代码。一个 ELF 格式的可执行程序通常划分为如下几个部分:.text、.data 和 .bss,其中 .text 是只读的代码区,.data 是可读可写的数据区,而 .bss 则是可读可写且没有初始化的数据区。代码区和数据区在 ELF 中统称为 section,根据实际需要你可以使用其它标准的 section,也可以添加自定义 section,但一个 ELF 可执行程序至少应该有一个 .text 部分。 下面给出我们的第一个汇编程序,用的是 AT&T 汇编语言格式:

例1. AT&T 格式

#hello.s 
.data                    # 数据段声明
        msg : .string "Hello, world!\\n" # 要输出的字符串
        len = . - msg                   # 字串长度
.text                    # 代码段声明
.global _start           # 指定入口函数
        
_start:                  # 在屏幕上显示一个字符串
        movl $len, %edx  # 参数三:字符串长度
        movl $msg, %ecx  # 参数二:要显示的字符串
        movl $1, %ebx    # 参数一:文件描述符(stdout) 
        movl $4, %eax    # 系统调用号(sys_write) 
        int  $0x80       # 调用内核功能
        
                         # 退出程序
        movl $0,%ebx     # 参数一:退出代码
        movl $1,%eax     # 系统调用号(sys_exit) 
        int  $0x80       # 调用内核功能

初次接触到 AT&T 格式的汇编代码时,很多程序员都认为太晦涩难懂了,没有关系,在 Linux 平台上你同样可以使用 Intel 格式来编写汇编程序:

例2. Intel 格式

; hello.asm 
section .data            ; 数据段声明
        msg db "Hello, world!", 0xA     ; 要输出的字符串
        len equ $ - msg                 ; 字串长度
section .text            ; 代码段声明
global _start            ; 指定入口函数
_start:                  ; 在屏幕上显示一个字符串
        mov edx, len     ; 参数三:字符串长度
        mov ecx, msg     ; 参数二:要显示的字符串
        mov ebx, 1       ; 参数一:文件描述符(stdout) 
        mov eax, 4       ; 系统调用号(sys_write) 
        int 0x80         ; 调用内核功能
                         ; 退出程序
        mov ebx, 0       ; 参数一:退出代码
        mov eax, 1       ; 系统调用号(sys_exit) 
        int 0x80         ; 调用内核功能

上面两个汇编程序采用的语法虽然完全不同,但功能却都是调用 Linux 内核提供的 sys_write 来显示一个字符串,然后再调用 sys_exit 退出程序。在 Linux 内核源文件 include/asm-i386/unistd.h 中,可以找到所有系统调用的定义。



回页首

四、Linux 汇编工具

Linux 平台下的汇编工具虽然种类很多,但同 DOS/Windows 一样,最基本的仍然是汇编器、连接器和调试器。

1.汇编器

汇编器(assembler)的作用是将用汇编语言编写的源程序转换成二进制形式的目标代码。Linux 平台的标准汇编器是 GAS,它是 GCC 所依赖的后台汇编工具,通常包含在 binutils 软件包中。GAS 使用标准的 AT&T 汇编语法,可以用来汇编用 AT&T 格式编写的程序:

[xiaowp@gary code]$ as -o hello.o hello.s

Linux 平台上另一个经常用到的汇编器是 NASM,它提供了很好的宏指令功能,并能够支持相当多的目标代码格式,包括 bin、a.out、coff、elf、rdf 等。NASM 采用的是人工编写的语法分析器,因而执行速度要比 GAS 快很多,更重要的是它使用的是 Intel 汇编语法,可以用来编译用 Intel 语法格式编写的汇编程序:

[xiaowp@gary code]$ nasm -f elf hello.asm

2.链接器

由汇编器产生的目标代码是不能直接在计算机上运行的,它必须经过链接器的处理才能生成可执行代码。链接器通常用来将多个目标代码连接成一个可执行代码,这样可以先将整个程序分成几个模块来单独开发,然后才将它们组合(链接)成一个应用程序。 Linux 使用 ld 作为标准的链接程序,它同样也包含在 binutils 软件包中。汇编程序在成功通过 GAS 或 NASM 的编译并生成目标代码后,就可以使用 ld 将其链接成可执行程序了:

[xiaowp@gary code]$ ld -s -o hello hello.o

3.调试器

有人说程序不是编出来而是调出来的,足见调试在软件开发中的重要作用,在用汇编语言编写程序时尤其如此。Linux 下调试汇编代码既可以用 GDB、DDD 这类通用的调试器,也可以使用专门用来调试汇编代码的 ALD(Assembly Language Debugger)。

从调试的角度来看,使用 GAS 的好处是可以在生成的目标代码中包含符号表(symbol table),这样就可以使用 GDB 和 DDD 来进行源码级的调试了。要在生成的可执行程序中包含符号表,可以采用下面的方式进行编译和链接:

[xiaowp@gary code]$ as --gstabs -o hello.o hello.s
[xiaowp@gary code]$ ld -o hello hello.o

执行 as 命令时带上参数 --gstabs 可以告诉汇编器在生成的目标代码中加上符号表,同时需要注意的是,在用 ld 命令进行链接时不要加上 -s 参数,否则目标代码中的符号表在链接时将被删去。

在 GDB 和 DDD 中调试汇编代码和调试 C 语言代码是一样的,你可以通过设置断点来中断程序的运行,查看变量和寄存器的当前值,并可以对代码进行单步跟踪。图1 是在 DDD 中调试汇编代码时的情景:


图1 用 DDD 中调试汇编程序

汇编程序员通常面对的都是一些比较苛刻的软硬件环境,短小精悍的ALD可能更能符合实际的需要,因此下面主要介绍一下如何用ALD来调试汇编程序。首先在命令行方式下执行ald命令来启动调试器,该命令的参数是将要被调试的可执行程序:

[xiaowp@gary doc]$ ald hello
Assembly Language Debugger 0.1.3
Copyright (C) 2000-2002 Patrick Alken
hello: ELF Intel 80386 (32 bit), LSB, Executable, Version 1 (current)
Loading debugging symbols...(15 symbols loaded)
ald>

当 ALD 的提示符出现之后,用 disassemble 命令对代码段进行反汇编:

ald> disassemble -s .text
Disassembling section .text (0x08048074 - 0x08048096)
08048074  BA0F000000                 mov edx, 0xf
08048079  B998900408                 mov ecx, 0x8049098
0804807E  BB01000000                 mov ebx, 0x1
08048083  B804000000                 mov eax, 0x4
08048088  CD80                       int 0x80
0804808A  BB00000000                 mov ebx, 0x0
0804808F  B801000000                 mov eax, 0x1
08048094  CD80                       int 0x80

上述输出信息的第一列是指令对应的地址码,利用它可以设置在程序执行时的断点:

ald> break 0x08048088
Breakpoint 1 set for 0x08048088

断点设置好后,使用 run 命令开始执行程序。ALD 在遇到断点时将自动暂停程序的运行,同时会显示所有寄存器的当前值:

ald> run
Starting program: hello
Breakpoint 1 encountered at 0x08048088
eax = 0x00000004 ebx = 0x00000001 ecx = 0x08049098 edx = 0x0000000F
esp = 0xBFFFF6C0 ebp = 0x00000000 esi = 0x00000000 edi = 0x00000000
ds  = 0x0000002B es  = 0x0000002B fs  = 0x00000000 gs  = 0x00000000
ss  = 0x0000002B cs  = 0x00000023 eip = 0x08048088 eflags = 0x00000246
Flags: PF ZF IF
08048088  CD80                       int 0x80

如果需要对汇编代码进行单步调试,可以使用 next 命令:

ald> next
Hello, world!
eax = 0x0000000F ebx = 0x00000000 ecx = 0x08049098 edx = 0x0000000F
esp = 0xBFFFF6C0 ebp = 0x00000000 esi = 0x00000000 edi = 0x00000000
ds  = 0x0000002B es  = 0x0000002B fs  = 0x00000000 gs  = 0x00000000
ss  = 0x0000002B cs  = 0x00000023 eip = 0x0804808F eflags = 0x00000346
Flags: PF ZF TF IF
0804808F  B801000000                 mov eax, 0x1

若想获得 ALD 支持的所有调试命令的详细列表,可以使用 help 命令:

ald> help
Commands may be abbreviated.
If a blank command is entered, the last command is repeated.
Type `help <command>' for more specific information on <command>.
General commands
attach         clear          continue       detach         disassemble
enter          examine        file           help           load
next           quit           register       run            set
step           unload         window         write
Breakpoint related commands
break          delete         disable        enable         ignore
lbreak         tbreak



回页首

五、系统调用

即便是最简单的汇编程序,也难免要用到诸如输入、输出以及退出等操作,而要进行这些操作则需要调用操作系统所提供的服务,也就是系统调用。除非你的程序只完成加减乘除等数学运算,否则将很难避免使用系统调用,事实上除了系统调用不同之外,各种操作系统的汇编编程往往都是很类似的。

在 Linux 平台下有两种方式来使用系统调用:利用封装后的 C 库(libc)或者通过汇编直接调用。其中通过汇编语言来直接调用系统调用,是最高效地使用 Linux 内核服务的方法,因为最终生成的程序不需要与任何库进行链接,而是直接和内核通信。

和 DOS 一样,Linux 下的系统调用也是通过中断(int 0x80)来实现的。在执行 int 80 指令时,寄存器 eax 中存放的是系统调用的功能号,而传给系统调用的参数则必须按顺序放到寄存器 ebx,ecx,edx,esi,edi 中,当系统调用完成之后,返回值可以在寄存器 eax 中获得。

所有的系统调用功能号都可以在文件 /usr/include/bits/syscall.h 中找到,为了便于使用,它们是用 SYS_<name> 这样的宏来定义的,如 SYS_write、SYS_exit 等。例如,经常用到的 write 函数是如下定义的:

ssize_t write(int fd, const void *buf, size_t count);

该函数的功能最终是通过 SYS_write 这一系统调用来实现的。根据上面的约定,参数 fb、buf 和 count 分别存在寄存器 ebx、ecx 和 edx 中,而系统调用号 SYS_write 则放在寄存器 eax 中,当 int 0x80 指令执行完毕后,返回值可以从寄存器 eax 中获得。

或许你已经发现,在进行系统调用时至多只有 5 个寄存器能够用来保存参数,难道所有系统调用的参数个数都不超过 5 吗?当然不是,例如 mmap 函数就有 6 个参数,这些参数最后都需要传递给系统调用 SYS_mmap:

void  *  mmap(void *start, size_t length, int prot , int flags, int fd, off_t offset);

当一个系统调用所需的参数个数大于 5 时,执行int 0x80 指令时仍需将系统调用功能号保存在寄存器 eax 中,所不同的只是全部参数应该依次放在一块连续的内存区域里,同时在寄存器 ebx 中保存指向该内存区域的指针。系统调用完成之后,返回值仍将保存在寄存器 eax 中。

由于只是需要一块连续的内存区域来保存系统调用的参数,因此完全可以像普通的函数调用一样使用栈(stack)来传递系统调用所需的参数。但要注意一点,Linux 采用的是 C 语言的调用模式,这就意味着所有参数必须以相反的顺序进栈,即最后一个参数先入栈,而第一个参数则最后入栈。如果采用栈来传递系统调用所需的参数,在执行int 0x80 指令时还应该将栈指针的当前值复制到寄存器 ebx中。



回页首

六、命令行参数

在 Linux 操作系统中,当一个可执行程序通过命令行启动时,其所需的参数将被保存到栈中:首先是 argc,然后是指向各个命令行参数的指针数组 argv,最后是指向环境变量的指针数据 envp。在编写汇编语言程序时,很多时候需要对这些参数进行处理,下面的代码示范了如何在汇编代码中进行命令行参数的处理:

例3. 处理命令行参数

# args.s
.text
.globl _start
        
_start:
        popl	%ecx		# argc
vnext:
        popl	%ecx		# argv
        test 	%ecx, %ecx      # 空指针表明结束
        jz	exit
        movl	%ecx, %ebx
        xorl	%edx, %edx
strlen:
        movb	(%ebx), %al
        inc	%edx
        inc	%ebx
        test	%al, %al
        jnz	strlen
        movb	$10, -1(%ebx)
        movl	$4, %eax        # 系统调用号(sys_write) 
        movl	$1, %ebx        # 文件描述符(stdout) 
        int	$0x80
        jmp	vnext
exit:
        movl	$1,%eax         # 系统调用号(sys_exit) 
        xorl	%ebx, %ebx      # 退出代码
        int 	$0x80
		
        ret



回页首

七、GCC 内联汇编

用汇编编写的程序虽然运行速度快,但开发速度非常慢,效率也很低。如果只是想对关键代码段进行优化,或许更好的办法是将汇编指令嵌入到 C 语言程序中,从而充分利用高级语言和汇编语言各自的特点。但一般来讲,在 C 代码中嵌入汇编语句要比"纯粹"的汇编语言代码复杂得多,因为需要解决如何分配寄存器,以及如何与C代码中的变量相结合等问题。

GCC 提供了很好的内联汇编支持,最基本的格式是:

__asm__("asm statements");

例如:

__asm__("nop"); 

如果需要同时执行多条汇编语句,则应该用"\\n\\t"将各个语句分隔开,例如:

__asm__( "pushl %%eax \\n\\t"
         "movl $0, %%eax \\n\\t"
         "popl %eax");

通常嵌入到 C 代码中的汇编语句很难做到与其它部分没有任何关系,因此更多时候需要用到完整的内联汇编格式:

__asm__("asm statements" : outputs : inputs : registers-modified);

插入到 C 代码中的汇编语句是以":"分隔的四个部分,其中第一部分就是汇编代码本身,通常称为指令部,其格式和在汇编语言中使用的格式基本相同。指令部分是必须的,而其它部分则可以根据实际情况而省略。

在将汇编语句嵌入到C代码中时,操作数如何与C代码中的变量相结合是个很大的问题。GCC采用如下方法来解决这个问题:程序员提供具体的指令,而对寄存器的使用则只需给出"样板"和约束条件就可以了,具体如何将寄存器与变量结合起来完全由GCC和GAS来负责。

在GCC内联汇编语句的指令部中,加上前缀'%'的数字(如%0,%1)表示的就是需要使用寄存器的"样板"操作数。指令部中使用了几个样板操作数,就表明有几个变量需要与寄存器相结合,这样GCC和GAS在编译和汇编时会根据后面给定的约束条件进行恰当的处理。由于样板操作数也使用'%'作为前缀,因此在涉及到具体的寄存器时,寄存器名前面应该加上两个'%',以免产生混淆。

紧跟在指令部后面的是输出部,是规定输出变量如何与样板操作数进行结合的条件,每个条件称为一个"约束",必要时可以包含多个约束,相互之间用逗号分隔开就可以了。每个输出约束都以'='号开始,然后紧跟一个对操作数类型进行说明的字后,最后是如何与变量相结合的约束。凡是与输出部中说明的操作数相结合的寄存器或操作数本身,在执行完嵌入的汇编代码后均不保留执行之前的内容,这是GCC在调度寄存器时所使用的依据。

输出部后面是输入部,输入约束的格式和输出约束相似,但不带'='号。如果一个输入约束要求使用寄存器,则GCC在预处理时就会为之分配一个寄存器,并插入必要的指令将操作数装入该寄存器。与输入部中说明的操作数结合的寄存器或操作数本身,在执行完嵌入的汇编代码后也不保留执行之前的内容。

有时在进行某些操作时,除了要用到进行数据输入和输出的寄存器外,还要使用多个寄存器来保存中间计算结果,这样就难免会破坏原有寄存器的内容。在GCC内联汇编格式中的最后一个部分中,可以对将产生副作用的寄存器进行说明,以便GCC能够采用相应的措施。

下面是一个内联汇编的简单例子:

例4.内联汇编

/* inline.c */
int main()
{
    int a = 10, b = 0;
    __asm__ __volatile__("movl %1, %%eax;\\n\\r"
                         "movl %%eax, %0;"
                         :"=r"(b)      /* 输出 */    
                         :"r"(a)       /* 输入 */
                         :"%eax");     /* 不受影响的寄存器 */
    
    printf("Result: %d, %d\\n", a, b);
}

上面的程序完成将变量a的值赋予变量b,有几点需要说明:

  • 变量b是输出操作数,通过%0来引用,而变量a是输入操作数,通过%1来引用。
  • 输入操作数和输出操作数都使用r进行约束,表示将变量a和变量b存储在寄存器中。输入约束和输出约束的不同点在于输出约束多一个约束修饰符'='。
  • 在内联汇编语句中使用寄存器eax时,寄存器名前应该加两个'%',即%%eax。内联汇编中使用%0、%1等来标识变量,任何只带一个'%'的标识符都看成是操作数,而不是寄存器。
  • 内联汇编语句的最后一个部分告诉GCC它将改变寄存器eax中的值,GCC在处理时不应使用该寄存器来存储任何其它的值。
  • 由于变量b被指定成输出操作数,当内联汇编语句执行完毕后,它所保存的值将被更新。

在内联汇编中用到的操作数从输出部的第一个约束开始编号,序号从0开始,每个约束记数一次,指令部要引用这些操作数时,只需在序号前加上'%'作为前缀就可以了。需要注意的是,内联汇编语句的指令部在引用一个操作数时总是将其作为32位的长字使用,但实际情况可能需要的是字或字节,因此应该在约束中指明正确的限定符:

限定符 意义
"m"、"v"、"o" 内存单元
"r" 任何寄存器
"q" 寄存器eax、ebx、ecx、edx之一
"i"、"h" 直接操作数
"E"和"F" 浮点数
"g" 任意
"a"、"b"、"c"、"d" 分别表示寄存器eax、ebx、ecx和edx
"S"和"D" 寄存器esi、edi
"I" 常数(0至31)



回页首

八、小结

Linux操作系统是用C语言编写的,汇编只在必要的时候才被人们想到,但它却是减少代码尺寸和优化代码性能的一种非常重要的手段,特别是在与硬件直接交互的时候,汇编可以说是最佳的选择。Linux提供了非常优秀的工具来支持汇编程序的开发,使用GCC的内联汇编能够充分地发挥C语言和汇编语言各自的优点。

参考资料

  1. 在网站 http://linuxassembly.org上可以找到大量的Linux汇编资源。
  2. 软件包binutils提供了as和ld等实用工具,其相关信息可以在网站 http://sources.redhat.com/binutils/上找到。
  3. NASM是Intel格式的汇编器,其相关信息可以在网站 http://nasm.sourceforge.net上找到。
  4. ALD是一个短小精悍的汇编调试器,其相关信息可以在网站 http://dunx1.irt.drexel.edu/~psa22/ald.html上找到。
  5. intel2gas是一个能够将Intel汇编格式转换成AT&T汇编格式的小工具,其相关信息可以在网站 http://www.niksula.cs.hut.fi/~mtiihone/intel2gas/上找到。
  6. IBM developerWorks上有一篇介绍GCC内联汇编的文章( http://www.ibm.com/developerworks/cn/linux/sdk/assemble/inline/index.shtml)。
  7. 本文代码下载: 代码
Avatar_small
LEGEND SEO 说:
2021年1月07日 16:49

I'm glad I found this web site, I couldn't find any knowledge on this matter prior to.Also operate a site and if you are ever interested in doing some visitor writing for me if possible feel free to let me know, im always look for people to check out my web site. 123movie

Avatar_small
LEGEND SEO 说:
2021年1月09日 19:52 Very useful post. This is my first time i visit here. I found so many interesting stuff in your blog especially its discussion. Really its great article. Keep it up. 메이저사이트
Avatar_small
Legend Seo 说:
2021年1月12日 17:06 Thanks a lot for sharing this excellent info! I am looking forward to seeing more posts by you as soon as possible! I have judged that you do not compromise on quality. casino online pl
Avatar_small
전설 서구 说:
2021年1月14日 22:24 I visit your blog regularly and recommend it to all of those who wanted to enhance their knowledge with ease. The style of writing is excellent and also the content is top-notch. Thanks for that shrewdness you provide the readers! best canadian online casino
Avatar_small
전설 서구 说:
2021年1月16日 22:11

I love the way you write and share your niche! Very interesting and different! Keep it coming! Pro Housekeepers cleaning tips

Avatar_small
먹튀검증 说:
2021年1月23日 06:24

i am for the first time here. I found this board and I in finding It truly helpful & it helped me out a lot. I hope to present something back and help others such as you helped me.

Avatar_small
리니지프리서버 说:
2021年1月30日 19:14

I’ve been surfing online more than 5 hours today, yet I never found any interesting article like yours without a doubt. It’s pretty worth enough for me. Thanks...

Avatar_small
Mangastream 说:
2021年2月02日 03:15

Thanks again for the article. Thanks Again. Great.

Avatar_small
먹튀폴리스 说:
2021年2月06日 01:00

Hey There. I found your blog using msn. This is a very well written article. I’ll be sure to bookmark it and come back to read more of your useful info. Thanks for the post. I’ll definitely return.

Avatar_small
UMAIR 说:
2021年2月06日 14:19

The Rajasthan Board releases old RBSE Class 12 question papers as well as sample papers on its[url=https://12thmodelpaper.in/rbse-12th-v-upadhyay-model-paper-blueprint/]Rajasthan 12th Blueprint 2021[/url official website. Students must practise as many as sample papers they can to analyse and assess their preparation. Students must be thorough with the RBSE 12th Syllabus as well as the RBSE 10th Exam Pattern to know all the topics that need to be covered along with the marking scheme and the type of questions asked in the examination.

Avatar_small
UMAIR 说:
2021年2月06日 14:20

The Rajasthan Board releases old RBSE Class 12 question papers as well as sample papers on its official website. Students must practise as many as sample papers they<a href="https://12thmodelpaper.in/rbse-12th-v-upadhyay-model-paper-blueprint/">Rajasthan 12th Blueprint 2021</a> can to analyse and assess their preparation. Students must be thorough with the RBSE 12th Syllabus as well as the RBSE 10th Exam Pattern to know all the topics that need to be covered along with the marking scheme and the type of questions asked in the examination.

Avatar_small
UMAIR 说:
2021年2月06日 14:21

The Rajasthan Board releases old RBSE Class 12 question papers as well as sample papers on its official website. Students must practise as many as sample papers they can to Rajasthan 12th Blueprint 2021 analyse and assess their preparation. Students must be thorough with the RBSE 12th Syllabus as well as the RBSE 10th Exam Pattern to know all the topics that need to be covered along with the marking scheme and the type of questions asked in the examination.

Avatar_small
Kutty Movies 说:
2021年2月07日 02:10

I really enjoy the article. Will read on... <a href="http://www.bloggeron.net/kutty-movies-2020-kutty-movies-hd-tamil-movies-download/">Kutty Movies</a>

Avatar_small
UMAIR 说:
2021年2月09日 19:13

Adobe signature is flawed with paid options which make it a half baked attempt for https://techpatio.com/2020/articles/signnow-worthy-alternative-adobe-sign signnow-worthy-alternative-adobe-sign people aiming to use the service for free. However. Signnow offers better services which I have been a fan of and prefer it over adobe.

Avatar_small
Robinjack 说:
2021年2月25日 19:40

i have always been interested in the paranormal and the occult, that is why i bought some trifield meter and emf meters. vancouver custom t shirts

Avatar_small
heets smaki 说:
2021年3月07日 21:33

I really enjoy the blog. Really thank you! Really Cool.

Avatar_small
heets smaki 说:
2021年3月07日 21:34

Really informative post. Much thanks again. Fantastic.

Avatar_small
토토사이트 说:
2021年3月11日 18:50

I'm glad to see the great detail here!.

Avatar_small
먹튀검증 说:
2021年3月21日 18:56

i was just browsing along and came upon your blog. just wanted to say good blog and this article really helped me.

Avatar_small
burn-out behandeling 说:
2021年3月26日 01:08

Excellent publish, Thanks with regard to discussing This particular understanding. Wonderfully created post, if perhaps just about all writers provided exactly the same degree of content material while you, the web will be a far better location. Make sure you continue the good work!

Avatar_small
re-integratie tweede 说:
2021年3月26日 21:45

Used to do get pleasure from looking at content put up on this internet site. These are extraordinary and possesses a great deal of valuable data.

Avatar_small
Asia Gaming 说:
2021年4月07日 18:16

Youre so cool! I dont suppose Ive read anything such as this before. So nice to get somebody by original ideas on this subject. realy thank you for starting this up. this amazing site is a thing that is needed on-line, a person with a bit of originality. valuable task for bringing new stuff on the world wide web!

Avatar_small
nevenmaguireblog.com 说:
2021年4月12日 02:45

I was reading your article and wondered if you had considered creating an ebook on this subject. Your writing would sell it fast. You have a lot of writing talent.

Avatar_small
wm casino 说:
2021年4月18日 00:34

Best casino site # 1 in Asia, quality guaranteed, WM casino, baccarat betting, extreme, football betting, lottery, slots, roulette, full All camps here, only one place No boring bets, no wagering money, only here

Avatar_small
men's hair salon Sin 说:
2021年4月30日 18:23

I just now idea it can be a notion to share incase anybody else seemed to be experiencing difficulty investigating although My business is a bit undecided plainly was allowed to fit bands in addition to deals with with in this article.

Avatar_small
hardware shop online 说:
2021年5月26日 00:13

Fantastic Put up, I'm sure a giant believer through post feed-back concerning webpages towards allow the blog page consultants recognise that they’ve further a specific thing positive towards the web!

Avatar_small
best renters insuran 说:
2021年5月26日 13:20

That was a great blog. You made some exceptional points and I appreciate for your insight!

Avatar_small
admin ted 说:
2021年6月22日 02:27

<h3>Our midia, visit us:</h3>
<a href="http://www.google.com.br/url?q=https%3A%2F%2Fwww.eadcon.com.br">search eadcon google</a><br>
<a href="http://www.youtube.com/redirect?event=channel_description&q=https%3A%2F%2Fwww.eadcon.com.br">channel eadcon</a><br>
<a href="http://www.google.com/url?q=https%3A%2F%2Fwww.eadcon.com.br">search at the top serp</a><br>
<a href="http://www.youtube.com/redirect?q=https%3A%2F%2Fwww.eadcon.com.br">help us with a like</a><br>

Avatar_small
Robinjack 说:
2021年7月01日 20:02

An intriguing discussion may be valued at comment. I do think you should write regarding this topic, may well certainly be a taboo subject but usually individuals are too few to speak on such topics. Yet another. Cheers Baccarat Casino Match

Avatar_small
buffet catering serv 说:
2021年8月12日 05:43

Deference to article author , some superb selective information .

Avatar_small
danske casino 说:
2021年8月22日 02:00

Excellent website! I adore how it is easy on my eyes it is. I am questioning how I might be notified whenever a new post has been made. Looking for more new updates. Have a great day!

Avatar_small
Robinjack 说:
2021年8月22日 22:32

Nice blog entre. I really have to say, good work. facilities scheduling software

Avatar_small
Robinjack 说:
2021年9月06日 21:17

we always buy our dog supplies at least once a week from the local pet store. “ retro shirts mens

Avatar_small
Robinjack 说:
2021年9月18日 19:43

Peak Residence by Tuan Sing & Rich Capital . Hotline 61009266. Get Discounts, Direct Developer Price, Brochure, Floor Plan, Price List & More. (Former Peak Court) Peak Residence Showroom

Avatar_small
Harry 说:
2021年9月23日 17:01

This is a great post. I like this topic.This site has lots of advantage.I found many interesting things from this site. It helps me in many ways.Thanks for posting this again. free instagram reels downloader

Avatar_small
Robinjack 说:
2021年10月06日 19:45

i believe,When misery restorative healing, some sort of unhappy restful sample, but even check out the trip if noticeable consumed. Good care of the night time, insert your name installing while in the eyeport, glazing is a love, Wanted Recollection is sweet. phoenix heights

Avatar_small
Robinjack 说:
2021年10月10日 19:25

the idea beach towel should be colored white because it reflects heat away` addiction rehab in new jersey

Avatar_small
Robinjack 说:
2021年10月18日 20:52

laminate floorings provide a cheaper and easier way to setup a good flooring~ One Pearl Bank Showroom

Avatar_small
Robinjack 说:
2021年10月18日 20:52

Hey There. I found your blog using msn. This is a really well written article. I will be sure to bookmark it and return to read more of your useful information. Thanks for the post. I will definitely comeback. Kent Ridge Hill Residences Showflat

Avatar_small
Robinjack 说:
2021年10月18日 20:52

Sometimes your blog is loading slowly, better find a better host..:~-. The Landmark Condo

Avatar_small
Robinjack 说:
2021年10月18日 20:52

I simply needed to make a quick comment as a way to express gratitude for you for anyone wonderful pointers you happen to be posting here. My time consuming internet investigation has right at the end of waking time been rewarded with good quality ways of present to my guests. I would state that many people readers are actually endowed to take place in an incredible network with the greatest marvellous those with useful hints. I am quite privileged to own used your webpages and look toward really more fabulous minutes reading here. Many thanks for a number of things. The M Showroom

Avatar_small
Robinjack 说:
2021年10月18日 20:52

I just added this site to my google reader, excellent stuff. Cannot get enough! midtown modern

Avatar_small
Robinjack 说:
2021年10月18日 20:53

I love it! am going to share your post to my friends, keep posting! Forett Showflat

Avatar_small
Robinjack 说:
2021年10月18日 20:53

I just desired to come up with a quick comment as a way to express gratitude for you for all those wonderful pointers you are posting here. My own time consuming internet investigation has by the end of the day been rewarded with high quality ways to present to my guests. We would say that a number of us guests can be extremely endowed to appear in a wonderful network with very many marvellous individuals with useful hints. I believe quite privileged to have used your webpages and appearance toward really more fabulous minutes reading here. Thank you for most things. phoenix heights

Avatar_small
Robinjack 说:
2021年10月18日 20:53

I’m no longer sure the place you are getting your info, but good topic. I needs to spend some time studying much more or figuring out more. Thank you for fantastic information I was looking for this info for my mission. the avenir

Avatar_small
Robinjack 说:
2021年10月20日 18:30

Well We certainly loved studying this. This topic acquired using a person is quite effective for accurate planning. 1234 Angel Number

Avatar_small
Robinjack 说:
2021年10月20日 18:30

Great post, I think blog owners should larn a lot from this web blog its really user friendly . Bigg Boss Telugu Season 4 Online Voting Process

Avatar_small
Robinjack 说:
2021年10月20日 18:31

I like the efforts you have put in this, regards for all the great blog posts. Campaign Manager Certification

Avatar_small
Robinjack 说:
2021年10月20日 18:31

This writer is truly amazing with the amount of knowledge conveyed, and the in-depth descriptions used in the information. The article written would make a wonderful start for a weekly newsletter posted on the web. Dreams About Pizza  Meaning, Symbolism and Interpretation

Avatar_small
Robinjack 说:
2021年10月20日 18:31

Meaning to commence a independent business hosted strategy getting the your service and / or vendors not only to associates nearby, but unfortunately to a lot people will likely be within the web normally. cash 20:02 MEANING

Avatar_small
Robinjack 说:
2021年10月20日 18:31

I read so many articles with poorly-written content that your article is very impressive. It’s good to know there are writers that can write well and make their points clear. names that mean hope

Avatar_small
Robinjack 说:
2021年10月20日 18:31

The article is worth to read. The clarity and balance that reflects from this blog post. These days blogs are used everywhere. The idea that we recieve from them are unevitable. The art needed is the power of creativity within yourself via learning, thinking, creating and rigorous study. Therefore the article is truely helpful for the readers. Thanks a lot for writing such a wonderful article. I await your next article with great egarness. Tips for keeping a laptop cool on your bed

Avatar_small
Robinjack 说:
2021年10月20日 18:31

You write very interesting articles which are very fun to read. Amazon Daily Quiz Answers for 18 May 2021

Avatar_small
Robinjack 说:
2021年10月20日 18:31

This article weighs in as a heavy weight hitter in my opinion. The content is informative, but it’s also clear. This is right on point as far as I’m concerned. Do I Need Aftershave? Importance of Aftershave

Avatar_small
Robinjack 说:
2021年10月20日 18:32

e. Lead something that would benefit readers. Most likely you are able to help many others reap the benefits of your activities. Certainly it is easy to inspire visitors in certain way. Do not be scared to expose a little something about your self that lets visitors know alot more about who you are. It is not nearly running a blog for organization. Blogging is intended to become like pleasurable conversation. 192.168.59.254

Avatar_small
Robinjack 说:
2021年10月20日 18:32

I real glad to locate this great site on bing, just the thing I used to be seeking : D also saved to bookmarks . horizontal asymptote rules

Avatar_small
Robinjack 说:
2021年10月20日 18:32

Thanks, wonderful blog?? enjoy it and added it into my social bookmarks. Sustain the excellent work Is the Post Office Open on Saturday and Sunday?

Avatar_small
Robinjack 说:
2021年10月20日 18:32

I read a lot of online articles and I’ve found that it’s hard to find quality writing. I’m so happy I found this article because it’s renews my faith in good writers. This is awesome! Anushka Shetty Age

Avatar_small
Robinjack 说:
2021年10月20日 18:32

Someone Sometimes with visits your blog regularly and recommended it in my experience to read as well. The way of writing is excellent and also the content is top-notch. Thanks for that insight you provide the readers! https://trapontech.com/

Avatar_small
Robinjack 说:
2021年10月20日 18:32

After study just a few of the blog posts in your web site now, and I really like your way of blogging. I bookmarked it to my bookmark web site checklist and shall be checking back soon. Pls try my web page as effectively and let me know what you think. tech argue

Avatar_small
Robinjack 说:
2021年10月20日 18:32

Great post, you have pointed out some fantastic points , I likewise think this s a very wonderful website. https://techrivulet.com/

Avatar_small
Robinjack 说:
2021年10月20日 18:32

you have got an important weblog right here! would you wish to make some invite posts on my blog? educationspike

Avatar_small
Robinjack 说:
2021年10月20日 18:33

I precisely needed to appreciate you once again. I am not sure the things that I would’ve gone through without these tips shown by you about that subject. It actually was an absolute frustrating dilemma in my circumstances, however , taking note of the professional technique you solved it took me to weep over contentment. Now i am grateful for your assistance as well as believe you find out what a powerful job that you are providing training many people using your website. Most likely you have never got to know all of us. [Reply] educationwaves

Avatar_small
Robinjack 说:
2021年10月20日 18:33

After study few of the articles on your blog these days, and that i like your manner of blogging. I tag it to my favorites internet site list and will be checking back soon. Please visit my web site too and let me recognize your thought. https://lifeeducationpoint.com/

Avatar_small
Robinjack 说:
2021年10月20日 18:33

I real glad to find this website on bing, just what I was looking for : D too saved to favorites . sportsrill

Avatar_small
Robinjack 说:
2021年10月20日 18:33

hey there i stumbled upon your website searching around the web. I wanted to say I like the look of things around here. Keep it up will bookmark for sure. sportsinlet

Avatar_small
Robinjack 说:
2021年10月20日 18:33

I’m happy I found this website! From time to time, students want to cognitive the keys of productive literary essays composing. Your first-class know-how about this good post can become a proper basis for such people. cheers! healthargue

Avatar_small
Robinjack 说:
2021年10月20日 18:33

Thanks so much for sharing this awesome info! I am looking forward to see more postsby you! healthweighup

Avatar_small
Robinjack 说:
2021年10月20日 18:33

I read your blog frequently and I just thought I’d say keep up the amazing work! cybertechyt

Avatar_small
Robinjack 说:
2021年10月20日 18:33

I can’t appear to locate your contact us page, I really think you need to make your website layout more straightforward to navigate via. who else agrees? https://techwarriorx.com/

Avatar_small
Robinjack 说:
2021年10月21日 21:10

Specialized dryers or dehydrators are also used, and are generally ideal for making your own at home, but are not widely used commercially. lsd for sale online

Avatar_small
Robinjack 说:
2021年11月03日 19:18

Aw, this was an exceptionally good post. In thought I would like to put in writing like that additionally – taking time and actual effort to produce a very good article… but exactly what do I say… I procrastinate alot and also no indicates find a way to go done. Büro mieten, Büros in Zürich

Avatar_small
Robinjack 说:
2021年11月03日 19:18

i wish to have some diamond necklace but they are quite expensive:: Büro vermieten

Avatar_small
Robinjack 说:
2021年11月03日 19:19

Intimately, the article is in reality the greatest on this precious topic. I agree with your conclusions and can thirstily look forward to your coming updates. Just saying thanks can not just be enough, for the phenomenal lucidity in your writing. I will certainly at once grab your rss feed to stay informed of any updates. Fabulous work and much success in your business dealings! Büro mieten

Avatar_small
Robinjack 说:
2021年11月03日 19:19

Do you mind if I quote a few of your posts as long as I provide credit and sources back to your webpage? My blog site is in the very same area of interest as yours and my users would truly benefit from a lot of the information you provide here. Please let me know if this ok with you. Thanks a lot! Büro in Zürich mieten

Avatar_small
Robinjack 说:
2021年11月07日 19:49

I would like to voice my gratitude for your kindness in support of those people who really want guidance on this particular study. Your personal commitment to getting the message around appeared to be exceptionally informative and has usually encouraged individuals like me to arrive at their goals. Your new important guideline means a lot to me and further more to my fellow workers. Regards; from all of us. perfect golf swing

Avatar_small
dark web/deep web/d 说:
2022年8月04日 18:48

The Dark Web does not have a distinguishable interface like the Normal Web. This means that when you try to view any web site on the Dark Web you will not be able to tell at a glance what it is.  dark web links

Avatar_small
dark web/deep web/d 说:
2022年8月04日 19:32

Once these criminals get your information, they may use it for illegal activities. Hackers can open up a new account using your name or create entirely new email accounts that contain sensitive information, making it extremely difficult to stop their activities.  deep web

Avatar_small
dark web/deep web/d 说:
2022年8月04日 19:48

It is important to understand the risks of exposing your identity and personal information to the public. While there are legitimate reasons to use these types of sites, you should exercise caution when doing so.  dark web links

Avatar_small
dark web/deep web/d 说:
2022年8月04日 20:10

Recently, I have been discussing on twitter about how the dark web is a home of many illegal activities, including money laundering, credit card fraud, and identity theft. Many people ask me why the dark web has such a bad reputation. Well, it's time we take a closer look.  dark web sites

Avatar_small
dark web/deep web/d 说:
2022年8月04日 20:26

In my experience, the dark web is full of dangerous individuals. The only way to avoid these links is to simply use a VPN service that will keep you safe from the many connections that exist on the dark web.   dark web

Avatar_small
dark web/deep web/d 说:
2022年8月04日 20:41

You will need to create a marketing plan for your affiliate product, and you will also find helpful information on finding the best advertising sources for your product. Some marketers even find useful information in books on how to market through the use of article marketing, forum marketing, or email marketing.  work from home jobs

Avatar_small
dark web/deep web/d 说:
2022年8月04日 20:57

While some are benefiting from a few select techniques, others are benefiting from a comprehensive overhaul. If you've been around for awhile, there's no doubt you've heard the same stories.   affiliate marketing success

Avatar_small
sa game 66 说:
2023年1月09日 07:38

A debt of gratitude is in order for sharing the information, keep doing awesome... I truly delighted in investigating your site. great asset... sa game 66

Avatar_small
ONLINE SHIA QURAN TE 说:
2023年9月19日 05:22

Shia Quran Teacher

Shia Quran Teacher Online for kids and adults focuses on those qualities exhibited by them which have an important impact on the students.

Shia Quran Teacher Program has further multiple domains.The response and learning outcomes of our Shia Quran Teacher Online have always been highly appreciated. These outcomes are somewhat what kept us going and motivated us to run this Online Shia Quran Teacher program.

This helped us to promote our programs like Shia Quran Teacher Online USA and Shia Quran Teacher Online UK in a much better way. The promising skills and abilities of our teachers convinced Muslims around the globe.

So the skills of our staff are highly appreciated in Australia and Canada through the programs like Shia Quran Teacher Online AU and Shia Quran Teacher Online Canada.

Our Shia Online Quran Teacher program highly focuses on the integration of these two types of behaviors. So we train our Shia Quran Teacher for Kids and Shia Quran Teacher for Adults in a particular way.

Shiaquranteacheronlineforkids,

Shiaquranteacher,

Shiaquranteacheronline,

Onlineshiaquranteacher,

Shiaquranteacheronlineusa,

Shiaquranteacheronlineuk,

Shiaquranteacheronlinecanada,

Shiaquranteacheronlineau,

 

 

Avatar_small
seo service london 说:
2023年10月18日 13:59

Superb article. Thanks to this blog my expedition has actually ended.

Avatar_small
Imamia Quran Center 说:
2023年10月25日 15:52

Imamia Quran Center is a Shia Online Quran Center among the best educational institutes worldwide for religious studies for both kids and adults. Shia Online Yassarnal Quran Serves as an opportunity to initially start with the holy Quran. If you belong to the Ahle Tashi community then you must know how to recite Quran with Tajweed. We offer multiple courses on Shia Online Quran with Tajweed. Allah revealed the Holy Quran in Arabic language. When we learn to read Quran, understanding Quran becomes our responsibility for which we have to learn Shia Online Quran Tafseer. Our Shia Online Quran Academy understands this and has come up with a Shia Online Quran Translation program for the ease of Muslims to understand the meaning of the holy Quran. Memorizing the Holy Quran is a very rewarding task. If you are interested in memorizing, then join our Shia Online Quran Memorization course today, that too with a free trial for the first 3 days. Our Shia Online Quran Madrasa hired a Shia Female Quran Teacher Online so that she can teach Ahle Tashi families about the Education of Quran and the life of Ahle Bayt a.s. Shia Male Quran Teacher Online will help you to clarify all concepts related to Holy Quran in the light of Ahle Tashi sect. If you are passionate about education then our Shia Quran Teacher Online service is definitely a must for you. The Shia Online Quran Tutor program works under the supervision of highly skilled teachers. We want to prove that learning can be fun and exciting. Shia Online Quran Classes was specially designed for the deliverance of Islamic education in the most magnificent way. Our Shia Online Quran Lessons being online lessons play a huge role in this regard. Our Shia Online Quran Institute is the best resource for Shia Online Quran Education. Join our Shia Online Quran Center for kids & Adults in USA now, and Start your free 3 days Trial.

Avatar_small
바둑이 뷰어 프로그램 说:
2024年2月08日 17:24

Thank you for your post, I look for such article along time, today and find it finally. this post give me lots of advise it is very useful for me

Avatar_small
먹튀검증 说:
2024年2月10日 18:11

I wear t have room schedule-wise right now to completely read your site yet I have bookmarked it and furthermore include your RSS channels. I will return in a day or two. much obliged for an extraordinary site

Avatar_small
스포츠무료중계 说:
2024年2月19日 22:08

Thanks for sharing nice information with us. i like your post and all you share with us is uptodate and quite informative, i would like to bookmark the page so i can come here again to read you, as you have done a wonderful job


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter