Lines Matching refs:udst
4744 IRExpr* udst; in maybe_loop_unroll_BB() local
4765 udst = bb0->next; in maybe_loop_unroll_BB()
4766 if (udst->tag == Iex_Const in maybe_loop_unroll_BB()
4767 && (udst->Iex.Const.con->tag == Ico_U32 in maybe_loop_unroll_BB()
4768 || udst->Iex.Const.con->tag == Ico_U64)) { in maybe_loop_unroll_BB()
4771 xxx_value = udst->Iex.Const.con->tag == Ico_U64 in maybe_loop_unroll_BB()
4772 ? udst->Iex.Const.con->Ico.U64 in maybe_loop_unroll_BB()
4773 : (Addr64)(udst->Iex.Const.con->Ico.U32); in maybe_loop_unroll_BB()
4789 udst = NULL; /* is now invalid */ in maybe_loop_unroll_BB()
4820 vassert(con->tag == udst->Iex.Const.con->tag); in maybe_loop_unroll_BB()
4837 udst = NULL; /* is now invalid */ in maybe_loop_unroll_BB()
4853 udst = bb1->next; in maybe_loop_unroll_BB()
4854 vassert(udst->tag == Iex_Const); in maybe_loop_unroll_BB()
4855 vassert(udst->Iex.Const.con->tag == Ico_U32 in maybe_loop_unroll_BB()
4856 || udst->Iex.Const.con->tag == Ico_U64); in maybe_loop_unroll_BB()
4857 vassert(con->tag == udst->Iex.Const.con->tag); in maybe_loop_unroll_BB()
4861 udst->Iex.Const.con->Ico.U64 = xxx_value; in maybe_loop_unroll_BB()
4864 udst->Iex.Const.con->Ico.U32 = (UInt)xxx_value; in maybe_loop_unroll_BB()