Lines Matching refs:Ico
75 case Ico_U1: vex_printf( "%d:I1", con->Ico.U1 ? 1 : 0); break; in ppIRConst()
76 case Ico_U8: vex_printf( "0x%x:I8", (UInt)(con->Ico.U8)); break; in ppIRConst()
77 case Ico_U16: vex_printf( "0x%x:I16", (UInt)(con->Ico.U16)); break; in ppIRConst()
78 case Ico_U32: vex_printf( "0x%x:I32", (UInt)(con->Ico.U32)); break; in ppIRConst()
79 case Ico_U64: vex_printf( "0x%llx:I64", (ULong)(con->Ico.U64)); break; in ppIRConst()
80 case Ico_F32: u.f32 = con->Ico.F32; in ppIRConst()
83 case Ico_F32i: vex_printf( "F32i{0x%x}", con->Ico.F32i); break; in ppIRConst()
84 case Ico_F64: u.f64 = con->Ico.F64; in ppIRConst()
87 case Ico_F64i: vex_printf( "F64i{0x%llx}", con->Ico.F64i); break; in ppIRConst()
88 case Ico_V128: vex_printf( "V128{0x%04x}", (UInt)(con->Ico.V128)); break; in ppIRConst()
89 case Ico_V256: vex_printf( "V256{0x%08x}", con->Ico.V256); break; in ppIRConst()
1381 c->Ico.U1 = bit; in IRConst_U1()
1390 c->Ico.U8 = u8; in IRConst_U8()
1397 c->Ico.U16 = u16; in IRConst_U16()
1404 c->Ico.U32 = u32; in IRConst_U32()
1411 c->Ico.U64 = u64; in IRConst_U64()
1418 c->Ico.F32 = f32; in IRConst_F32()
1425 c->Ico.F32i = f32i; in IRConst_F32i()
1432 c->Ico.F64 = f64; in IRConst_F64()
1439 c->Ico.F64i = f64i; in IRConst_F64i()
1446 c->Ico.V128 = con; in IRConst_V128()
1453 c->Ico.V256 = con; in IRConst_V256()
1896 case Ico_U1: return IRConst_U1(c->Ico.U1); in deepCopyIRConst()
1897 case Ico_U8: return IRConst_U8(c->Ico.U8); in deepCopyIRConst()
1898 case Ico_U16: return IRConst_U16(c->Ico.U16); in deepCopyIRConst()
1899 case Ico_U32: return IRConst_U32(c->Ico.U32); in deepCopyIRConst()
1900 case Ico_U64: return IRConst_U64(c->Ico.U64); in deepCopyIRConst()
1901 case Ico_F32: return IRConst_F32(c->Ico.F32); in deepCopyIRConst()
1902 case Ico_F32i: return IRConst_F32i(c->Ico.F32i); in deepCopyIRConst()
1903 case Ico_F64: return IRConst_F64(c->Ico.F64); in deepCopyIRConst()
1904 case Ico_F64i: return IRConst_F64i(c->Ico.F64i); in deepCopyIRConst()
1905 case Ico_V128: return IRConst_V128(c->Ico.V128); in deepCopyIRConst()
3171 return toBool( con->Ico.U1 == True || con->Ico.U1 == False ); in saneIRConst()
3689 || d->guard->Iex.Const.con->Ico.U1 == 0)) in tcStmt()
3869 case Ico_U1: return toBool( (1 & c1->Ico.U1) == (1 & c2->Ico.U1) ); in eqIRConst()
3870 case Ico_U8: return toBool( c1->Ico.U8 == c2->Ico.U8 ); in eqIRConst()
3871 case Ico_U16: return toBool( c1->Ico.U16 == c2->Ico.U16 ); in eqIRConst()
3872 case Ico_U32: return toBool( c1->Ico.U32 == c2->Ico.U32 ); in eqIRConst()
3873 case Ico_U64: return toBool( c1->Ico.U64 == c2->Ico.U64 ); in eqIRConst()
3874 case Ico_F32: return toBool( c1->Ico.F32 == c2->Ico.F32 ); in eqIRConst()
3875 case Ico_F32i: return toBool( c1->Ico.F32i == c2->Ico.F32i ); in eqIRConst()
3876 case Ico_F64: return toBool( c1->Ico.F64 == c2->Ico.F64 ); in eqIRConst()
3877 case Ico_F64i: return toBool( c1->Ico.F64i == c2->Ico.F64i ); in eqIRConst()
3878 case Ico_V128: return toBool( c1->Ico.V128 == c2->Ico.V128 ); in eqIRConst()
3879 case Ico_V256: return toBool( c1->Ico.V256 == c2->Ico.V256 ); in eqIRConst()