Searched refs:opcodeLength (Results 1 – 3 of 3) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | SimpleInstructionDecoder.cs | 16 …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/ |
| D | LLVMDisassembler.cs | 376 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/ |
| D | RiscvOpcodesParser.cs | 154 private static Tuple<string, string> ParseLine(string lineContent, int opcodeLength = 32) in ParseLine() argument 156 var pattern = new StringBuilder(new String('_', opcodeLength)); in ParseLine()
|