Home | History | Annotate | Download | only in priv

Lines Matching refs:uimm64

345 static void push_uimm64( ISelEnv* env, ULong uimm64 )
347 /* If uimm64 can be expressed as the sign extension of its
349 Long simm64 = (Long)uimm64;
350 if ( simm64 == ((Long)(uimm64 << 32) >> 32) ) {
351 addInstr( env, AMD64Instr_Push(AMD64RMI_Imm( (UInt)uimm64 )) );
354 addInstr( env, AMD64Instr_Imm64(uimm64, tmp) );