elftest.asm
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:2k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. ; test source file for assembling to ELF
  2. ; build with:
  3. ;    nasm -f elf elftest.asm
  4. ;    gcc -o elftest elftest.c elftest.o
  5. ; (assuming your gcc is ELF)
  6. ; This file should test the following:
  7. ; [1] Define and export a global text-section symbol
  8. ; [2] Define and export a global data-section symbol
  9. ; [3] Define and export a global BSS-section symbol
  10. ; [4] Define a non-global text-section symbol
  11. ; [5] Define a non-global data-section symbol
  12. ; [6] Define a non-global BSS-section symbol
  13. ; [7] Define a COMMON symbol
  14. ; [8] Define a NASM local label
  15. ; [9] Reference a NASM local label
  16. ; [10] Import an external symbol
  17. ; [11] Make a PC-relative call to an external symbol
  18. ; [12] Reference a text-section symbol in the text section
  19. ; [13] Reference a data-section symbol in the text section
  20. ; [14] Reference a BSS-section symbol in the text section
  21. ; [15] Reference a text-section symbol in the data section
  22. ; [16] Reference a data-section symbol in the data section
  23. ; [17] Reference a BSS-section symbol in the data section
  24.   BITS 32
  25.   GLOBAL lrotate ; [1]
  26.   GLOBAL greet ; [1]
  27.   GLOBAL asmstr ; [2]
  28.   GLOBAL textptr ; [2]
  29.   GLOBAL selfptr ; [2]
  30.   GLOBAL integer ; [3]
  31.   EXTERN printf ; [10]
  32.   COMMON commvar 4 ; [7]
  33.   SECTION .text
  34. ; prototype: long lrotate(long x, int num);
  35. lrotate: ; [1]
  36.   push ebp
  37.   mov ebp,esp
  38.   mov eax,[ebp+8]
  39.   mov ecx,[ebp+12]
  40. .label   rol eax,1 ; [4] [8]
  41.   loop .label ; [9] [12]
  42.   mov esp,ebp
  43.   pop ebp
  44.   ret
  45. ; prototype: void greet(void);
  46. greet   mov eax,[integer] ; [14]
  47.   inc eax
  48.   mov [localint],eax ; [14]
  49.   push dword [commvar]
  50.   mov eax,[localptr] ; [13]
  51.   push dword [eax]
  52.   push dword [integer] ; [1] [14]
  53.   push dword printfstr ; [13]
  54.   call printf ; [11]
  55.   add esp,16
  56.   ret
  57.   SECTION .data
  58. ; a string
  59. asmstr   db 'hello, world', 0 ; [2]
  60. ; a string for Printf
  61. printfstr db "integer==%d, localint==%d, commvar=%d"
  62.   db 10, 0
  63. ; some pointers
  64. localptr  dd localint ; [5] [17]
  65. textptr   dd greet ; [15]
  66. selfptr   dd selfptr ; [16]
  67.   SECTION .bss
  68. ; an integer
  69. integer   resd 1 ; [3]
  70. ; a local integer
  71. localint  resd 1 ; [6]