Home | History | Annotate | Download | only in priv

Lines Matching refs:ULong

419 static ULong MASK64( UInt begin, UInt end )
421 ULong m1, m2, mask;
424 m1 = ((ULong)(-1)) << begin;
425 m2 = ((ULong)(-1)) << end << 1;
472 static ULong extend_s_16to64 ( UInt x )
474 return (ULong)((((Long)x) << 48) >> 48);
477 static ULong extend_s_26to64 ( UInt x )
479 return (ULong)((((Long)x) << 38) >> 38);
482 static ULong extend_s_32to64 ( UInt x )
484 return (ULong)((((Long)x) << 32) >> 32);
558 static IRExpr* mkU64 ( ULong i )
915 /* sz, ULong -> IRExpr */
916 static IRExpr* mkSzImm ( IRType ty, ULong imm64 )
922 /* sz, ULong -> IRConst */
923 static IRConst* mkSzConst ( IRType ty, ULong imm64 )
2810 ULong signbit_mask = 0x8000000000000000ULL;
4158 ULong mask64;
5196 && vbi->guest_ppc_zap_RZ_at_bl( (ULong)tgt) ) {
5543 ULong simm16 = extend_s_16to64(uimm16);
5564 uncond = do_trap( TO, getIReg(rA_addr), mkU64( (ULong)simm16 ), cia );
6609 mkU64( ~((ULong)clearszB-1) )) );
6641 mkSzImm(ty, ~(((ULong)lineszB)-1) )) );
10869 ULong ea_off = 8;
13356 delta = (Long)mkSzAddr(ty, (ULong)delta64);
13370 DIP("\t0x%llx: ", (ULong)guest_CIA_curr_instr);