720d6bbcd8
c24f918e5 oaknut: 1.1.6 3a70cd40a oaknut: Run clang-format dc54784b8 oaknut: Add support for iOS memory protection. 14207278a oaknut: 1.1.5 841f9b693 oaknut: throw OaknutException instead of plain C string git-subtree-dir: externals/oaknut git-subtree-split: c24f918e52e629fc315c6e4bca4ea62def8b55e8
23 lines
797 B
C++
23 lines
797 B
C++
// SPDX-FileCopyrightText: Copyright (c) 2022 merryhime <https://mary.rs>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
void BFC(WReg wd, Imm<5> lsb, Imm<5> width)
|
|
{
|
|
if (width.value() == 0 || width.value() > (32 - lsb.value()))
|
|
throw OaknutException{ExceptionType::InvalidBitWidth};
|
|
emit<"0011001100rrrrrrssssss11111ddddd", "d", "r", "s">(wd, (-lsb.value()) & 31, width.value() - 1);
|
|
}
|
|
void BFC(XReg xd, Imm<6> lsb, Imm<6> width)
|
|
{
|
|
if (width.value() == 0 || width.value() > (64 - lsb.value()))
|
|
throw OaknutException{ExceptionType::InvalidBitWidth};
|
|
emit<"1011001101rrrrrrssssss11111ddddd", "d", "r", "s">(xd, (-lsb.value()) & 63, width.value() - 1);
|
|
}
|
|
void ESB()
|
|
{
|
|
emit<"11010101000000110010001000011111">();
|
|
}
|
|
void PSB()
|
|
{
|
|
emit<"11010101000000110010001000111111">();
|
|
}
|