Page 18 - BG555
P. 18

int logical(int x, int y)                                                                                       logical:
                                                                                                                                pushl %ebp                                         Set
         {                                                                                                                      movl %esp,%ebp                                     Up

             int t1 = x^y;


             int t2 = t1 >> 17;

             int mask = (1<<13) - 7;                                                                                            movl 8(%ebp),%eax


             int rval = t2 & mask;                                                                                              xorl 12(%ebp),%eax
                                                                                                                                sarl $17,%eax                                      Body
             return rval;                                                                                                       andl $8185,%eax

         }




                                                                                                                                movl %ebp,%esp
      2 = 8192, 2 – 7 = 8185                                                                                                    popl %ebp                                           Finish
                          13
        13
            movl 8(%ebp),%eax                                        eax = x                                                    ret

            xorl 12(%ebp),%eax                                       eax = x^y                          (t1)

            sarl $17,%eax                                            eax = t1>>17 (t2)

            andl $8185,%eax                                          eax = t2 & 8185
   13   14   15   16   17   18   19