|
|
@ -306,9 +306,9 @@ void EmitISub32(EmitContext& ctx, IR::Inst& inst, ScalarS32 a, ScalarS32 b); |
|
|
void EmitISub64(EmitContext& ctx, Register a, Register b); |
|
|
void EmitISub64(EmitContext& ctx, Register a, Register b); |
|
|
void EmitIMul32(EmitContext& ctx, IR::Inst& inst, ScalarS32 a, ScalarS32 b); |
|
|
void EmitIMul32(EmitContext& ctx, IR::Inst& inst, ScalarS32 a, ScalarS32 b); |
|
|
void EmitINeg32(EmitContext& ctx, IR::Inst& inst, ScalarS32 value); |
|
|
void EmitINeg32(EmitContext& ctx, IR::Inst& inst, ScalarS32 value); |
|
|
void EmitINeg64(EmitContext& ctx, Register value); |
|
|
|
|
|
|
|
|
void EmitINeg64(EmitContext& ctx, IR::Inst& inst, Register value); |
|
|
void EmitIAbs32(EmitContext& ctx, IR::Inst& inst, ScalarS32 value); |
|
|
void EmitIAbs32(EmitContext& ctx, IR::Inst& inst, ScalarS32 value); |
|
|
void EmitIAbs64(EmitContext& ctx, Register value); |
|
|
|
|
|
|
|
|
void EmitIAbs64(EmitContext& ctx, IR::Inst& inst, Register value); |
|
|
void EmitShiftLeftLogical32(EmitContext& ctx, IR::Inst& inst, ScalarU32 base, ScalarU32 shift); |
|
|
void EmitShiftLeftLogical32(EmitContext& ctx, IR::Inst& inst, ScalarU32 base, ScalarU32 shift); |
|
|
void EmitShiftLeftLogical64(EmitContext& ctx, Register base, Register shift); |
|
|
void EmitShiftLeftLogical64(EmitContext& ctx, Register base, Register shift); |
|
|
void EmitShiftRightLogical32(EmitContext& ctx, IR::Inst& inst, ScalarU32 base, ScalarU32 shift); |
|
|
void EmitShiftRightLogical32(EmitContext& ctx, IR::Inst& inst, ScalarU32 base, ScalarU32 shift); |
|
|
|