编译简单的SPARC ASM数学代码时出错

时间:2011-09-27 08:15:25

标签: assembly compiler-errors sparc

编写SPARC asm代码来评估硬编码语句,但是我收到一个我不明白的错误。我一直在搜索,虽然它似乎在一些错误报告中出现了很多,但我找不到程序员的真正线索。是的,这是家庭作业,是的,我还没有完成,是的,我到处都有分支延迟。我会自己找到它们,但我需要知道错误是什么。这个错误并没有告诉我任何有用的东西,我所拥有的书也没有任何好处。

我真的很陌生,所以任何帮助都会非常感激。

  1 /*Justin Reeves*/
  2 /*max{x^3-14x^2+56x-64} from [-2,8]*/
  3 /*for (x = lwr, x <= upr, x++) */
  4 define(lwr_b, -2)       !lower bound
  5 define(upr_b, 8)        !upper bound
  6 define(x_r, %l0)        !x
  7 define(sum_r, %l1)      !sum, each pass of loop may update
  8 define(max_r, %l2)      !max, cmp to sum, store in max if larger
  9
 10     .global main
 11 main:
 12     save    %sp, -64, %sp
 13
 14     ba      loop_test
 15     mov     lwr_b,  x_r     /*init x_r = -2 */
 16
 17 loop_test:
 18     cmp     x_r,    upr_b
 19     ble     sum_loop
 20     nop
 21 /*then x > upr_b and the max has been found*/
 22 /*odd spot for it...but this is the end of the program*/
 23
 24
 25 sum_loop: ! starting backwards to give us an intial nonzero constant sum
 26     mov     -64,    sum_r   /* sum = -64 */
 27
 28     mov     x_r,    %o0     /*56x*/
 29     mov     56,     %o0
 30     clr     %o2
 31     call    .mul            /*AFAIK 56x should now be in %o0*/
 32     nop
 33     add     sum_r,  %o0,    sum_r   /* sum = 56x-64 */
 34
 35     mov     x_r,    %o0     /* 14x^2 */
 36     mov     x_r,    %o1
 37     mov     -14,    %o2
 38     call    .mul
 39     nop
 40     add     sum_r,  %o0,    sum_r   /* sum = -14x^2+56x-64 */
 41
 42     mov     x_r,    %o0
 43     mov     x_r,    %o1
 44     mov     x_r,    %o2
 45     call    .mul
 46     nop
 47     add     sum_r,  %o0,    sum_r   /*sum = x^3-14x^2+56x-64 */
 48
 49     add     x_r,    1,      x_r     /* x++ */
 50     cmp     sum_r,  max_r
 51     bge     collect_lrg             /*branches if sum > max*/
 52     nop
 53
 54 collect_lrg:
 55     mov     sum_r,  max_r
 56     ba      loop_test
 57
 58     mov     1,      %g1     /*exit request*/
 59     ta      0               /*trap to system*/

然后当我尝试定义宏并编译时我得到:

cs32107 @ matrix:〜$ m4 polynomialv2.m&gt; polynomial.s
cs32107 @ matrix:〜$ gcc -g polynomial.s -o polynomial
ld:致命:重定位错误:R_SPARC_32:file /var/tmp//ccVOrnx2.o:symbol:offset 0xfb5d11dd是不对齐的 ld:致命:重定位错误:R_SPARC_32:file /var/tmp//ccVOrnx2.o:symbol:offset 0xfb5d120f是不对齐的 ld:致命:重定位错误:R_SPARC_32:file /var/tmp//ccVOrnx2.o:symbol:offset 0xfb5d1215未对齐 ld:致命:重定位错误:R_SPARC_32:file /var/tmp//ccVOrnx2.o:symbol:offset 0xfb5d1219是不对齐的 ld:致命:重定位错误:R_SPARC_32:file /var/tmp//ccVOrnx2.o:symbol:offset 0xfb5d121d未对齐 ld:致命:重定位错误:R_SPARC_32:file /var/tmp//ccVOrnx2.o:symbol:offset 0xfb5d1266未对齐 collect2:ld返回1退出状态 cs32107 @ matrix:〜$

1 个答案:

答案 0 :(得分:1)

汇编程序中的错误导致调试代码添加未对齐的数据访问。如果需要调试信息,请不要使用-g,但可能使用-gstabs。可能还有气体更新来解决问题。