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

Method LB

external/biscuit/src/assembler.cpp:395–398  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

393}
394
395void Assembler::LB(GPR rd, int32_t imm, GPR rs) noexcept {
396 BISCUIT_ASSERT(IsValidSigned12BitImm(imm));
397 EmitIType(m_buffer, static_cast<uint32_t>(imm), rs, 0b000, rd, 0b0000011);
398}
399
400void Assembler::LBU(GPR rd, int32_t imm, GPR rs) noexcept {
401 BISCUIT_ASSERT(IsValidSigned12BitImm(imm));

Callers 4

emitPrologueMethod · 0.80
FAST_HANDLEFunction · 0.80

Calls 3

EmitITypeFunction · 0.85
EmitAtomicFunction · 0.85
IsValidSigned12BitImmFunction · 0.70

Tested by

no test coverage detected