Home | History | Annotate | Download | only in priv

Lines Matching full:simm

873       Long simm = (Long)e->Iex.Binop.arg2->Iex.Const.con->Ico.U64;
874 if (simm >= -255 && simm <= 255) {
876 simm >= -256 && simm <= 255
877 we will need to negate simm in the case where the op is Sub64.
881 if (e->Iex.Binop.op == Iop_Sub64) simm = -simm;
882 return ARM64AMode_RI9(reg, (Int)simm);