Merge pull request #493 from lioncash/ir
frontend/ir/ir_emitter: Remove unnecessary logical shift overloads
This commit is contained in:
commit
6a67da1225
2 changed files with 0 additions and 20 deletions
|
@ -153,22 +153,6 @@ ResultAndCarry<U32> IREmitter::RotateRightExtended(const U32& value_in, const U1
|
|||
return {result, carry_out};
|
||||
}
|
||||
|
||||
U32 IREmitter::LogicalShiftLeft(const U32& value_in, const U8& shift_amount) {
|
||||
return Inst<U32>(Opcode::LogicalShiftLeft32, value_in, shift_amount, Imm1(0));
|
||||
}
|
||||
|
||||
U64 IREmitter::LogicalShiftLeft(const U64& value_in, const U8& shift_amount) {
|
||||
return Inst<U64>(Opcode::LogicalShiftLeft64, value_in, shift_amount);
|
||||
}
|
||||
|
||||
U32 IREmitter::LogicalShiftRight(const U32& value_in, const U8& shift_amount) {
|
||||
return Inst<U32>(Opcode::LogicalShiftRight32, value_in, shift_amount, Imm1(0));
|
||||
}
|
||||
|
||||
U64 IREmitter::LogicalShiftRight(const U64& value_in, const U8& shift_amount) {
|
||||
return Inst<U64>(Opcode::LogicalShiftRight64, value_in, shift_amount);
|
||||
}
|
||||
|
||||
U32U64 IREmitter::LogicalShiftLeft(const U32U64& value_in, const U8& shift_amount) {
|
||||
if (value_in.GetType() == Type::U32) {
|
||||
return Inst<U32>(Opcode::LogicalShiftLeft32, value_in, shift_amount, Imm1(0));
|
||||
|
|
|
@ -100,11 +100,7 @@ public:
|
|||
ResultAndCarry<U32> LogicalShiftRight(const U32& value_in, const U8& shift_amount, const U1& carry_in);
|
||||
ResultAndCarry<U32> ArithmeticShiftRight(const U32& value_in, const U8& shift_amount, const U1& carry_in);
|
||||
ResultAndCarry<U32> RotateRight(const U32& value_in, const U8& shift_amount, const U1& carry_in);
|
||||
U32 LogicalShiftLeft(const U32& value_in, const U8& shift_amount);
|
||||
U64 LogicalShiftLeft(const U64& value_in, const U8& shift_amount);
|
||||
U32U64 LogicalShiftLeft(const U32U64& value_in, const U8& shift_amount);
|
||||
U32 LogicalShiftRight(const U32& value_in, const U8& shift_amount);
|
||||
U64 LogicalShiftRight(const U64& value_in, const U8& shift_amount);
|
||||
U32U64 LogicalShiftRight(const U32U64& value_in, const U8& shift_amount);
|
||||
U32U64 ArithmeticShiftRight(const U32U64& value_in, const U8& shift_amount);
|
||||
U32U64 RotateRight(const U32U64& value_in, const U8& shift_amount);
|
||||
|
|
Loading…
Reference in a new issue