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

Method C_FSD

external/biscuit/src/assembler_compressed.cpp:315–321  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

313}
314
315void Assembler::C_FSD(FPR rs2, uint32_t imm, GPR rs1) noexcept {
316 BISCUIT_ASSERT(IsRV32OrRV64(m_features));
317 BISCUIT_ASSERT(imm <= 248);
318 BISCUIT_ASSERT(imm % 8 == 0);
319
320 EmitCompressedStore(m_buffer, 0b101, imm, rs1, rs2, 0b00);
321}
322
323void Assembler::C_FSDSP(FPR rs, uint32_t imm) noexcept {
324 BISCUIT_ASSERT(IsRV32OrRV64(m_features));

Callers 1

Calls 2

IsRV32OrRV64Function · 0.85
EmitCompressedStoreFunction · 0.85

Tested by

no test coverage detected