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

Method C_SD

external/biscuit/src/assembler_compressed.cpp:484–489  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

482}
483
484void Assembler::C_SD(GPR rs2, uint32_t imm, GPR rs1) noexcept {
485 BISCUIT_ASSERT(imm <= 248);
486 BISCUIT_ASSERT(imm % 8 == 0);
487
488 EmitCompressedLoad(m_buffer, 0b111, imm, rs1, rs2, 0b00);
489}
490
491void Assembler::C_SDSP(GPR rs, uint32_t imm) noexcept {
492 BISCUIT_ASSERT(imm <= 504);

Callers 1

Calls 1

EmitCompressedLoadFunction · 0.85

Tested by

no test coverage detected