MCPcopy Create free account
hub / github.com/OFFTKP/felix86 / SRAW

Method SRAW

external/biscuit/src/assembler.cpp:856–859  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

854 EmitRType(m_buffer, 0b0000000, rhs, lhs, 0b001, rd, 0b0111011);
855}
856void Assembler::SRAW(GPR rd, GPR lhs, GPR rhs) noexcept {
857 BISCUIT_ASSERT(IsRV64(m_features));
858 EmitRType(m_buffer, 0b0100000, rhs, lhs, 0b101, rd, 0b0111011);
859}
860void Assembler::SRLW(GPR rd, GPR lhs, GPR rhs) noexcept {
861 BISCUIT_ASSERT(IsRV64(m_features));
862 EmitRType(m_buffer, 0b0000000, rhs, lhs, 0b101, rd, 0b0111011);

Callers 2

FAST_HANDLEFunction · 0.80

Calls 2

IsRV64Function · 0.85
EmitRTypeFunction · 0.85

Tested by

no test coverage detected