Home
last modified time | relevance | path

Searched refs:opcodeLength (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DSimpleInstructionDecoder.cs16 …public void AddOpcode(byte value, int opcodeLength, Func<TInstruction> newInstruction, int bitNumb… in AddOpcode() argument
18 if(opcodeLength > 8) in AddOpcode()
22 if(bitNumber < 8 - opcodeLength) in AddOpcode()
55 children[nextBit ? 1 : 0].AddOpcode(value, opcodeLength, newInstruction, bitNumber); in AddOpcode()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/Disassembler/
DLLVMDisassembler.cs376 var opcodeLength = DecodeRiscVOpcodeLength(memory, memoryOffset); in TryDecodeInstruction()
377 if(opcodeLength == 0) in TryDecodeInstruction()
383 opcode = new byte[opcodeLength]; in TryDecodeInstruction()
384 Array.Copy(memory, memoryOffset, opcode, 0, opcodeLength); in TryDecodeInstruction()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DRiscvOpcodesParser.cs154 private static Tuple<string, string> ParseLine(string lineContent, int opcodeLength = 32) in ParseLine() argument
156 var pattern = new StringBuilder(new String('_', opcodeLength)); in ParseLine()