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

Method C_LD

external/biscuit/src/assembler_compressed.cpp:388–393  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

386}
387
388void Assembler::C_LD(GPR rd, uint32_t imm, GPR rs) noexcept {
389 BISCUIT_ASSERT(imm <= 248);
390 BISCUIT_ASSERT(imm % 8 == 0);
391
392 EmitCompressedLoad(m_buffer, 0b011, imm, rs, rd, 0b00);
393}
394
395void Assembler::C_LDSP(GPR rd, uint32_t imm) noexcept {
396 BISCUIT_ASSERT(rd != x0);

Callers 1

Calls 1

EmitCompressedLoadFunction · 0.85

Tested by

no test coverage detected