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 / fact.out.bak < prev    next >
Text File  |  2006-03-05  |  5KB  |  255 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.     .text
  104. str1:    .asciz    "The first factorial numbers are:"
  105.     .align    8
  106. ! MAIN...
  107. !   mainEntry
  108.     .global    main
  109. main:    save    %sp,-120,%sp
  110.     set    display0,%o0
  111.     st    %fp,[%o0]
  112. ! VAR INITIALIZATION...
  113. !   i := 0
  114.     set    0,%o0
  115.     st    %o0,[%fp+-4]
  116. ! WRITE STMT...
  117. !   writeString str1
  118.     sethi    %hi(str1),%o0
  119.     call    printf
  120.     or    %o0,%lo(str1),%o0
  121. !   writeNewline
  122.     sethi    %hi(strNL),%o0
  123.     call    printf
  124.     or    %o0,%lo(strNL),%o0
  125. ! FOR...
  126. !   t4 := &i
  127.     add    %fp,-4,%o0
  128.     st    %o0,[%fp+-20]
  129. !   t1 := 1
  130.     set    1,%o0
  131.     st    %o0,[%fp+-8]
  132. !   t2 := 10
  133.     set    10,%o0
  134.     st    %o0,[%fp+-12]
  135. !   t3 := 1
  136.     set    1,%o0
  137.     st    %o0,[%fp+-16]
  138. !   *t4 := t1
  139.     ld    [%fp+-8],%o0
  140.     ld    [%fp+-20],%o1
  141.     st    %o0,[%o1]
  142. !   Label_1:
  143. Label_1:
  144. !   if t1 > t2 goto Label_2        (integer)
  145.     ld    [%fp+-8],%o0
  146.     ld    [%fp+-12],%o1
  147.     cmp    %o0,%o1
  148.     bg    Label_2
  149.     nop
  150. ! WRITE STMT...
  151. !   param 1,i
  152.     ld    [%fp+-4],%o0
  153.     st    %o0,[%sp+68]
  154. !   call p1_fact
  155.     call    p1_fact
  156.     nop
  157. !   resultTo t5
  158.     st    %o0,[%fp+-24]
  159. !   writeInt t5
  160.     ld    [%fp+-24],%o1
  161.     sethi    %hi(strInt),%o0
  162.     call    printf
  163.     or    %o0,%lo(strInt),%o0
  164. !   writeNewline
  165.     sethi    %hi(strNL),%o0
  166.     call    printf
  167.     or    %o0,%lo(strNL),%o0
  168. ! END FOR...
  169. !   t1 := *t4
  170.     ld    [%fp+-20],%o0
  171.     ld    [%o0],%o0
  172.     st    %o0,[%fp+-8]
  173. !   t1 := t1 + t3        (integer)
  174.     ld    [%fp+-8],%o0
  175.     ld    [%fp+-16],%o1
  176.     add    %o0,%o1,%o1
  177.     st    %o1,[%fp+-8]
  178. !   *t4 := t1
  179.     ld    [%fp+-8],%o0
  180.     ld    [%fp+-20],%o1
  181.     st    %o0,[%o1]
  182. !   goto Label_1
  183.     ba    Label_1
  184.     nop
  185. !   Label_2:
  186. Label_2:
  187. ! MAIN EXIT...
  188. !   mainExit
  189.     ret
  190.     restore
  191. ! PROCEDURE...
  192. !   procEntry p1_fact,lexLev=1,frameSize=104
  193. p1_fact:    save    %sp,-104,%sp
  194.     set    display1,%o0
  195.     ld    [%o0],%o1
  196.     st    %o1,[%fp+64]
  197.     st    %fp,[%o0]
  198. !   formal 1,x
  199. ! IF...
  200. !   if x < 2 goto Label_3        (integer)
  201.     ld    [%fp+68],%o0
  202.     set    2,%o1
  203.     cmp    %o0,%o1
  204.     bl    Label_3
  205.     nop
  206. !   goto Label_4
  207.     ba    Label_4
  208.     nop
  209. !   Label_3:
  210. Label_3:
  211. ! THEN...
  212. ! RETURN...
  213. !   returnExpr 1
  214.     set    1,%i0
  215.     set    display1,%o0
  216.     ld    [%fp+64],%o1
  217.     st    %o1,[%o0]
  218.     ret
  219.     restore
  220. !   goto Label_5
  221.     ba    Label_5
  222.     nop
  223. !   Label_4:
  224. Label_4:
  225. ! ELSE...
  226. ! RETURN...
  227. !   t7 := x - 1        (integer)
  228.     ld    [%fp+68],%o0
  229.     set    1,%o1
  230.     sub    %o0,%o1,%o1
  231.     st    %o1,[%fp+-8]
  232. !   param 1,t7
  233.     ld    [%fp+-8],%o0
  234.     st    %o0,[%sp+68]
  235. !   call p1_fact
  236.     call    p1_fact
  237.     nop
  238. !   resultTo t6
  239.     st    %o0,[%fp+-4]
  240. !   t8 := x * t6        (integer)
  241.     ld    [%fp+68],%o0
  242.     ld    [%fp+-4],%o1
  243.     smul    %o0,%o1,%o1
  244.     st    %o1,[%fp+-12]
  245. !   returnExpr t8
  246.     ld    [%fp+-12],%i0
  247.     set    display1,%o0
  248.     ld    [%fp+64],%o1
  249.     st    %o1,[%o0]
  250.     ret
  251.     restore
  252. ! END IF...
  253. !   Label_5:
  254. Label_5:
  255.