backend/arm64: Implement MostSignificantWord
This commit is contained in:
parent
ec3c597591
commit
3821c4a16b
1 changed files with 7 additions and 4 deletions
|
@ -106,10 +106,13 @@ void EmitIR<IR::Opcode::LeastSignificantByte>(oaknut::CodeGenerator& code, EmitC
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
void EmitIR<IR::Opcode::MostSignificantWord>(oaknut::CodeGenerator& code, EmitContext& ctx, IR::Inst* inst) {
|
void EmitIR<IR::Opcode::MostSignificantWord>(oaknut::CodeGenerator& code, EmitContext& ctx, IR::Inst* inst) {
|
||||||
(void)code;
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
||||||
(void)ctx;
|
|
||||||
(void)inst;
|
auto Wresult = ctx.reg_alloc.WriteW(inst);
|
||||||
ASSERT_FALSE("Unimplemented");
|
auto Xoperand = ctx.reg_alloc.ReadX(args[0]);
|
||||||
|
RegAlloc::Realize(Wresult, Xoperand);
|
||||||
|
|
||||||
|
code.LSL(Wresult->toX(), Xoperand, 32);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
|
|
Loading…
Reference in a new issue