Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/Disassembler/
DLLVMDisassembler.cs37 …public bool TryDecodeInstruction(ulong pc, byte[] memory, uint flags, out byte[] opcode, int memor… in TryDecodeInstruction() method in Antmicro.Renode.Peripherals.CPU.Disassembler.LLVMDisassembler
39 … return GetDisassembler(flags).TryDecodeInstruction(pc, memory, flags, out opcode, memoryOffset); in TryDecodeInstruction()
185 …public bool TryDecodeInstruction(ulong pc, byte[] memory, uint flags, out byte[] opcode, int memor… in TryDecodeInstruction() method in Antmicro.Renode.Peripherals.CPU.Disassembler.LLVMDisassembler.LLVMDisasWrapper
352 …public bool TryDecodeInstruction(ulong pc, byte[] memory, uint flags, out byte[] opcode, int memor… in TryDecodeInstruction() method in Antmicro.Renode.Peripherals.CPU.Disassembler.LLVMDisassembler.CortexMDisassemblerWrapper
374 …public bool TryDecodeInstruction(ulong pc, byte[] memory, uint flags, out byte[] opcode, int memor… in TryDecodeInstruction() method in Antmicro.Renode.Peripherals.CPU.Disassembler.LLVMDisassembler.RiscVDisassemblerWrapper
DIDisassembler.cs15 …bool TryDecodeInstruction(ulong pc, byte[] memory, uint flags, out byte[] opcode, int memoryOffset… in TryDecodeInstruction() method
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/
DTraceBinaryWriter.cs150 … if(!AttachedCPU.Disassembler.TryDecodeInstruction(pc, mem, flags, out var decodedOpcode)) in TryReadAndDecodeInstruction()