Home | History | Annotate | Download | only in priv

Lines Matching refs:Const

306       if (arg2->tag == Iex_Const && arg2->Iex.Const.con->tag == Ico_U64) {
307 ULong value = arg2->Iex.Const.con->Ico.U64;
413 switch (expr->Iex.Const.con->tag) {
414 case Ico_U1: value = expr->Iex.Const.con->Ico.U1; break;
415 case Ico_U8: value = expr->Iex.Const.con->Ico.U8; break;
416 case Ico_U16: value = expr->Iex.Const.con->Ico.U16; break;
417 case Ico_U32: value = expr->Iex.Const.con->Ico.U32; break;
418 case Ico_U64: value = expr->Iex.Const.con->Ico.U64; break;
431 get_const_value_as_ulong(const IRConst *con)
584 && guard->Iex.Const.con->tag == Ico_U1
585 && guard->Iex.Const.con->Ico.U1 == True) {
696 vassert(irrm->Iex.Const.con->tag == Ico_U32);
697 IRRoundingMode mode = irrm->Iex.Const.con->Ico.U32;
806 vassert(irrm->Iex.Const.con->tag == Ico_U32);
807 IRRoundingMode mode = irrm->Iex.Const.con->Ico.U32;
1839 const IRConst *con = expr->Iex.Const.con;
1921 switch (expr->Iex.Const.con->tag) {
1922 case Ico_U1: value = expr->Iex.Const.con->Ico.U1; break;
1923 case Ico_U8: value = expr->Iex.Const.con->Ico.U8; break;
1924 case Ico_U16: value = expr->Iex.Const.con->Ico.U16; break;
1925 case Ico_U32: value = expr->Iex.Const.con->Ico.U32; break;
1926 case Ico_U64: value = expr->Iex.Const.con->Ico.U64; break;
2285 const IRConst *con = expr->Iex.Const.con;
3267 vassert(cond->Iex.Const.con->tag == Ico_U1);
3268 vassert(cond->Iex.Const.con->Ico.U1 == True
3269 || cond->Iex.Const.con->Ico.U1 == False);
3271 return cond->Iex.Const.con->Ico.U1 == True ? S390_CC_ALWAYS : S390_CC_NEVER;
3499 get_const_value_as_ulong(stmt->Ist.Store.data->Iex.Const.con);
3576 new_value = stmt->Ist.Put.data->Iex.Const.con->Ico.U64;
3621 get_const_value_as_ulong(stmt->Ist.Put.data->Iex.Const.con);
4006 IRConst *cdst = next->Iex.Const.con;