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 / alloc1.out.bak < prev    next >
Text File  |  2006-03-05  |  4KB  |  188 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.     .text
  103. str3:    .asciz    "Should print 123..."
  104. str2:    .asciz    "Testing IRloadIndirect..."
  105. str1:    .asciz    "Testing IRallocate, IRstore..."
  106.     .align    8
  107. ! MAIN...
  108. !   mainEntry
  109.     .global    main
  110. main:    save    %sp,-112,%sp
  111.     set    display0,%o0
  112.     st    %fp,[%o0]
  113. ! VAR INITIALIZATION...
  114. !   p := 0
  115.     set    0,%o0
  116.     st    %o0,[%fp+-4]
  117. ! WRITE STMT...
  118. !   writeString str1
  119.     sethi    %hi(str1),%o0
  120.     call    printf
  121.     or    %o0,%lo(str1),%o0
  122. !   writeNewline
  123.     sethi    %hi(strNL),%o0
  124.     call    printf
  125.     or    %o0,%lo(strNL),%o0
  126. ! ASSIGNMENT STMT...
  127. !   t1 := alloc (4)
  128.     set    1,%o0
  129.     set    4,%o1
  130.     call    calloc
  131.     nop
  132.     st    %o0,[%fp+-8]
  133. !   if t1 = 0 goto runtimeError1        (integer)
  134.     ld    [%fp+-8],%o0
  135.     set    0,%o1
  136.     cmp    %o0,%o1
  137.     be    runtimeError1
  138.     nop
  139. !   t2 := t1 + 0        (integer)
  140.     ld    [%fp+-8],%o0
  141.     set    0,%o1
  142.     add    %o0,%o1,%o1
  143.     st    %o1,[%fp+-12]
  144. !   *t2 := 123
  145.     set    123,%o0
  146.     ld    [%fp+-12],%o1
  147.     st    %o0,[%o1]
  148. !   p := t1
  149.     ld    [%fp+-8],%o0
  150.     st    %o0,[%fp+-4]
  151. ! WRITE STMT...
  152. !   writeString str2
  153.     sethi    %hi(str2),%o0
  154.     call    printf
  155.     or    %o0,%lo(str2),%o0
  156. !   writeNewline
  157.     sethi    %hi(strNL),%o0
  158.     call    printf
  159.     or    %o0,%lo(strNL),%o0
  160. ! WRITE STMT...
  161. !   writeString str3
  162.     sethi    %hi(str3),%o0
  163.     call    printf
  164.     or    %o0,%lo(str3),%o0
  165. !   if p = 0 goto runtimeError2        (integer)
  166.     ld    [%fp+-4],%o0
  167.     set    0,%o1
  168.     cmp    %o0,%o1
  169.     be    runtimeError2
  170.     nop
  171. !   t3 := *p
  172.     ld    [%fp+-4],%o0
  173.     ld    [%o0],%o0
  174.     st    %o0,[%fp+-16]
  175. !   writeInt t3
  176.     ld    [%fp+-16],%o1
  177.     sethi    %hi(strInt),%o0
  178.     call    printf
  179.     or    %o0,%lo(strInt),%o0
  180. !   writeNewline
  181.     sethi    %hi(strNL),%o0
  182.     call    printf
  183.     or    %o0,%lo(strNL),%o0
  184. ! MAIN EXIT...
  185. !   mainExit
  186.     ret
  187.     restore
  188.