Searched refs:w64 (Results 1 - 16 of 16) sorted by relevance

/external/valgrind/main/none/tests/ppc64/
H A Dstd_reg_imm.c46 unsigned long long int w64; member in struct:__anon28748
/external/valgrind/main/VEX/priv/
H A Dhost_generic_simd128.c258 res->w64[0] = cmpEQ64(argL->w64[0], argR->w64[0]);
259 res->w64[1] = cmpEQ64(argL->w64[1], argR->w64[1]);
266 res->w64[0] = cmpGT64S(argL->w64[0], argR->w64[0]);
267 res->w64[
[all...]
H A Dhost_generic_simd64.c52 static inline UInt sel32x2_1 ( ULong w64 ) {
53 return 0xFFFFFFFF & toUInt(w64 >> 32);
55 static inline UInt sel32x2_0 ( ULong w64 ) {
56 return 0xFFFFFFFF & toUInt(w64);
70 static inline UShort sel16x4_3 ( ULong w64 ) {
71 UInt hi32 = toUInt(w64 >> 32);
74 static inline UShort sel16x4_2 ( ULong w64 ) {
75 UInt hi32 = toUInt(w64 >> 32);
78 static inline UShort sel16x4_1 ( ULong w64 ) {
79 UInt lo32 = (UInt)w64;
134 index8x8( ULong w64, UChar ix ) argument
[all...]
H A Dguest_x86_helpers.c1833 ULong w64 = x86g_check_ldmxcsr( w32 ); local
1835 warnXMM = (VexEmWarn)(w64 >> 32);
1837 gst->guest_SSEROUND = (UInt)w64;
2453 static inline UShort sel16x4_3 ( ULong w64 ) {
2454 UInt hi32 = toUInt(w64 >> 32);
2457 static inline UShort sel16x4_2 ( ULong w64 ) {
2458 UInt hi32 = toUInt(w64 >> 32);
2461 static inline UShort sel16x4_1 ( ULong w64 ) {
2462 UInt lo32 = toUInt(w64);
2465 static inline UShort sel16x4_0 ( ULong w64 ) {
[all...]
H A Dguest_amd64_helpers.c1820 ULong w64 = amd64g_check_ldmxcsr( (ULong)w32 ); local
1822 warnXMM = (VexEmWarn)(w64 >> 32);
1824 gst->guest_SSEROUND = w64 & 0xFFFFFFFFULL;
2937 static inline UShort sel16x4_3 ( ULong w64 ) {
2938 UInt hi32 = toUInt(w64 >> 32);
2941 static inline UShort sel16x4_2 ( ULong w64 ) {
2942 UInt hi32 = toUInt(w64 >> 32);
2945 static inline UShort sel16x4_1 ( ULong w64 ) {
2946 UInt lo32 = toUInt(w64);
2949 static inline UShort sel16x4_0 ( ULong w64 ) {
[all...]
H A Dir_opt.c1407 ULong w64 = e->Iex.Unop.arg->Iex.Const.con->Ico.U64; local
1408 w64 &= 0xFFULL;
1409 e2 = IRExpr_Const(IRConst_U8( (UChar)w64 ));
1413 ULong w64 = e->Iex.Unop.arg->Iex.Const.con->Ico.U64; local
1414 w64 &= 0xFFFFULL;
1415 e2 = IRExpr_Const(IRConst_U16( (UShort)w64 ));
1419 ULong w64 = e->Iex.Unop.arg->Iex.Const.con->Ico.U64; local
1420 w64 &= 0x00000000FFFFFFFFULL;
1421 e2 = IRExpr_Const(IRConst_U32( (UInt)w64 ));
1425 ULong w64 local
1491 ULong w64 = e->Iex.Unop.arg->Iex.Const.con->Ico.U64; local
[all...]
H A Dhost_x86_isel.c1957 ULong w64 = e->Iex.Const.con->Ico.U64; local
1958 UInt wHi = toUInt(w64 >> 32);
1959 UInt wLo = toUInt(w64);
2159 ULong w64 = e->Iex.Binop.arg2->Iex.Const.con->Ico.U64; local
2160 UInt wHi = toUInt(w64 >> 32);
2161 UInt wLo = toUInt(w64);
H A Dhost_mips_isel.c1893 ULong w64 = e->Iex.Const.con->Ico.U64; local
1894 UInt wHi = toUInt(w64 >> 32);
1895 UInt wLo = toUInt(w64);
H A Dhost_amd64_defs.c1983 static UChar* emit64 ( UChar* p, ULong w64 )
1985 p = emit32(p, toUInt(w64 & 0xFFFFFFFF));
1986 p = emit32(p, toUInt((w64 >> 32) & 0xFFFFFFFF));
H A Dhost_amd64_isel.c770 ULong w64 = 0; local
774 w64 |= (0xFFULL << (8 * i));
776 return w64;
H A Dhost_ppc_isel.c2862 ULong w64 = e->Iex.Const.con->Ico.U64; local
2863 UInt wHi = ((UInt)(w64 >> 32)) & 0xFFFFFFFF;
2864 UInt wLo = ((UInt)w64) & 0xFFFFFFFF;
H A Dhost_arm_isel.c1839 ULong w64 = e->Iex.Const.con->Ico.U64; local
1840 UInt wHi = toUInt(w64 >> 32);
1841 UInt wLo = toUInt(w64);
H A Dguest_amd64_toIR.c5205 IRTemp w64 = newTemp(Ity_I64); local
5213 d->tmp = w64;
5245 assign(ew, unop(Iop_64to32,mkexpr(w64)) );
6165 IRTemp w64 = newTemp(Ity_I64); local
6192 d->tmp = w64;
6228 assign(ew, unop(Iop_64to32,mkexpr(w64)) );
/external/valgrind/main/VEX/pub/
H A Dlibvex_basictypes.h74 ULong w64[2]; member in union:__anon27904
/external/valgrind/main/none/tests/amd64/
H A Dsse4-64.c193 ULong w64; local
199 : /*OUT*/"=r"(w64) : /*IN*/ : "memory","cc"
201 if (0) printf("get %08x\n", (UInt)w64);
202 return (UInt)w64;
209 ULong w64 = (ULong)w32; local
215 : /*OUT*/ : /*IN*/"r"(w64) : "memory",/*"mxcsr",*/"cc"
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreaddwarf3.c348 ULong w64; local
357 w64 = get_ULong( c );
360 w64 = (ULong)w32;
362 return w64;

Completed in 1659 milliseconds