home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / pub / users / Harry / compilers / p11 / tst / call3.out.bak < prev    next >
Text File  |  2006-03-05  |  5KB  |  262 lines

  1. !
  2. ! PCAT Compiler Version 1.0
  3. !
  4.              .global  .div
  5.              .global  .rem
  6. !
  7. ! Standard data fields
  8. !
  9.              .data
  10.              .align   8
  11. temp:        .double  0
  12.              .text
  13. strNL:       .asciz   "\n"
  14. strInt:      .asciz   "%d"
  15. strFlt:      .asciz   "%g"
  16. strTrue:     .asciz   "TRUE"
  17. strFalse:    .asciz   "FALSE"
  18. message1:    .asciz   "Execution Error: Allocation failed!\n"
  19. message2:    .asciz   "Execution Error: Pointer is NIL!\n"
  20. message3:    .asciz   "Execution Error: Read statement failed!\n"
  21. message4:    .asciz   "Execution Error: Array index is out of bounds!\n"
  22. message5:    .asciz   "Execution Error: Count is not positive in array constructor!\n"
  23.              .align   8
  24. !
  25. ! runtimeError1-5
  26. !
  27. ! Branch to one of these labels to print an error message and abort.
  28. !
  29. runtimeError1:
  30.              set      message1,%o0
  31.              call     printf
  32.              nop
  33.              call     exit
  34.              mov      1,%o0
  35. runtimeError2:
  36.              set      message2,%o0
  37.              call     printf
  38.              nop
  39.              call     exit
  40.              mov      1,%o0
  41. runtimeError3:
  42.              set      message3,%o0
  43.              call     printf
  44.              nop
  45.              call     exit
  46.              mov      1,%o0
  47. runtimeError4:
  48.              set      message4,%o0
  49.              call     printf
  50.              nop
  51.              call     exit
  52.              mov      1,%o0
  53. runtimeError5:
  54.              set      message5,%o0
  55.              call     printf
  56.              nop
  57.              call     exit
  58.              mov      1,%o0
  59. ! writeFlt
  60. !
  61. ! This routine is passed a single precision floating number in %f0.
  62. ! It prints it by calling printf.  It uses registers %f0, %f1.
  63. !
  64. writeFlt:
  65.         save    %sp,-128,%sp
  66.         fstod   %f0,%f0
  67.         set     temp,%l0
  68.         std     %f0,[%l0]
  69.         ldd     [%l0],%o0
  70.         mov     %o1,%o2
  71.         mov     %o0,%o1
  72.         set     strFlt,%o0
  73.         call    printf
  74.         nop
  75.         ret
  76.         restore
  77. ! writeBool
  78. !
  79. ! This routine is passed an integer in %i0/o0.  It prints "FALSE" if this
  80. ! integer is 0 and "TRUE" otherwise.
  81. !
  82. writeBool:
  83.         save    %sp,-128,%sp
  84.         cmp     %i0,%g0
  85.         be      printFalse
  86.         nop
  87.         set     strTrue,%o0
  88.         ba      printEnd
  89.         nop
  90. printFalse:
  91.         set     strFalse,%o0
  92. printEnd:
  93.         call    printf
  94.         nop
  95.         ret
  96.         restore
  97. !
  98. ! Additional Fields
  99. !
  100.     .data
  101. display0:    .word    0
  102. display1:    .word    0
  103. display2:    .word    0
  104.     .text
  105. str8:    .asciz    "    Leaving foo2"
  106. str7:    .asciz    "    Within foo2..."
  107. str6:    .asciz    "  Leaving foo1"
  108. str5:    .asciz    "   foo2 returned "
  109. str4:    .asciz    "  Within foo1..."
  110. str3:    .asciz    "Leaving main"
  111. str2:    .asciz    " foo1 returned "
  112. str1:    .asciz    "Within main..."
  113.     .align    8
  114. ! MAIN...
  115. !   mainEntry
  116.     .global    main
  117. main:    save    %sp,-104,%sp
  118.     set    display0,%o0
  119.     st    %fp,[%o0]
  120. ! VAR INITIALIZATION...
  121. !   i := 0
  122.     set    0,%o0
  123.     st    %o0,[%fp+-4]
  124. ! WRITE STMT...
  125. !   writeString str1
  126.     sethi    %hi(str1),%o0
  127.     call    printf
  128.     or    %o0,%lo(str1),%o0
  129. !   writeNewline
  130.     sethi    %hi(strNL),%o0
  131.     call    printf
  132.     or    %o0,%lo(strNL),%o0
  133. ! ASSIGNMENT STMT...
  134. !   call p1_foo1
  135.     call    p1_foo1
  136.     nop
  137. !   resultTo t1
  138.     st    %o0,[%fp+-8]
  139. !   i := t1
  140.     ld    [%fp+-8],%o0
  141.     st    %o0,[%fp+-4]
  142. ! WRITE STMT...
  143. !   writeString str2
  144.     sethi    %hi(str2),%o0
  145.     call    printf
  146.     or    %o0,%lo(str2),%o0
  147. !   writeInt i
  148.     ld    [%fp+-4],%o1
  149.     sethi    %hi(strInt),%o0
  150.     call    printf
  151.     or    %o0,%lo(strInt),%o0
  152. !   writeNewline
  153.     sethi    %hi(strNL),%o0
  154.     call    printf
  155.     or    %o0,%lo(strNL),%o0
  156. ! WRITE STMT...
  157. !   writeString str3
  158.     sethi    %hi(str3),%o0
  159.     call    printf
  160.     or    %o0,%lo(str3),%o0
  161. !   writeNewline
  162.     sethi    %hi(strNL),%o0
  163.     call    printf
  164.     or    %o0,%lo(strNL),%o0
  165. ! MAIN EXIT...
  166. !   mainExit
  167.     ret
  168.     restore
  169. ! PROCEDURE...
  170. !   procEntry p1_foo1,lexLev=1,frameSize=104
  171. p1_foo1:    save    %sp,-104,%sp
  172.     set    display1,%o0
  173.     ld    [%o0],%o1
  174.     st    %o1,[%fp+64]
  175.     st    %fp,[%o0]
  176. ! VAR INITIALIZATION...
  177. !   j := 0
  178.     set    0,%o0
  179.     st    %o0,[%fp+-4]
  180. ! WRITE STMT...
  181. !   writeString str4
  182.     sethi    %hi(str4),%o0
  183.     call    printf
  184.     or    %o0,%lo(str4),%o0
  185. !   writeNewline
  186.     sethi    %hi(strNL),%o0
  187.     call    printf
  188.     or    %o0,%lo(strNL),%o0
  189. ! ASSIGNMENT STMT...
  190. !   call p2_foo2
  191.     call    p2_foo2
  192.     nop
  193. !   resultTo t2
  194.     st    %o0,[%fp+-8]
  195. !   j := t2
  196.     ld    [%fp+-8],%o0
  197.     st    %o0,[%fp+-4]
  198. ! WRITE STMT...
  199. !   writeString str5
  200.     sethi    %hi(str5),%o0
  201.     call    printf
  202.     or    %o0,%lo(str5),%o0
  203. !   writeInt j
  204.     ld    [%fp+-4],%o1
  205.     sethi    %hi(strInt),%o0
  206.     call    printf
  207.     or    %o0,%lo(strInt),%o0
  208. !   writeNewline
  209.     sethi    %hi(strNL),%o0
  210.     call    printf
  211.     or    %o0,%lo(strNL),%o0
  212. ! WRITE STMT...
  213. !   writeString str6
  214.     sethi    %hi(str6),%o0
  215.     call    printf
  216.     or    %o0,%lo(str6),%o0
  217. !   writeNewline
  218.     sethi    %hi(strNL),%o0
  219.     call    printf
  220.     or    %o0,%lo(strNL),%o0
  221. ! RETURN...
  222. !   returnExpr 456
  223.     set    456,%i0
  224.     set    display1,%o0
  225.     ld    [%fp+64],%o1
  226.     st    %o1,[%o0]
  227.     ret
  228.     restore
  229. ! PROCEDURE...
  230. !   procEntry p2_foo2,lexLev=2,frameSize=96
  231. p2_foo2:    save    %sp,-96,%sp
  232.     set    display2,%o0
  233.     ld    [%o0],%o1
  234.     st    %o1,[%fp+64]
  235.     st    %fp,[%o0]
  236. ! WRITE STMT...
  237. !   writeString str7
  238.     sethi    %hi(str7),%o0
  239.     call    printf
  240.     or    %o0,%lo(str7),%o0
  241. !   writeNewline
  242.     sethi    %hi(strNL),%o0
  243.     call    printf
  244.     or    %o0,%lo(strNL),%o0
  245. ! WRITE STMT...
  246. !   writeString str8
  247.     sethi    %hi(str8),%o0
  248.     call    printf
  249.     or    %o0,%lo(str8),%o0
  250. !   writeNewline
  251.     sethi    %hi(strNL),%o0
  252.     call    printf
  253.     or    %o0,%lo(strNL),%o0
  254. ! RETURN...
  255. !   returnExpr 123
  256.     set    123,%i0
  257.     set    display2,%o0
  258.     ld    [%fp+64],%o1
  259.     st    %o1,[%o0]
  260.     ret
  261.     restore
  262.