| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/ |
| D | SystemBusGenerated.cs | 23 public byte ReadByte(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadByte() argument 33 using(SetLocalContext(context, cpuState)) in ReadByte() 35 …ndPeripheralAccessMethods(address, context, out var accessMethods, out var startAddress, cpuState)) in ReadByte() 79 …ublic void WriteByte(ulong address, byte value, IPeripheral context = null, ulong? cpuState = null) in WriteByte() argument 89 using(SetLocalContext(context, cpuState)) in WriteByte() 91 …ndPeripheralAccessMethods(address, context, out var accessMethods, out var startAddress, cpuState)) in WriteByte() 137 public ushort ReadWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadWord() argument 147 using(SetLocalContext(context, cpuState)) in ReadWord() 149 …ndPeripheralAccessMethods(address, context, out var accessMethods, out var startAddress, cpuState)) in ReadWord() 193 …lic void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuState = null) in WriteWord() argument [all …]
|
| D | BusControllerProxy.cs | 33 … public virtual byte ReadByte(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadByte() argument 37 return ParentController.ReadByte(address, context, cpuState); in ReadByte() 51 …rtual void WriteByte(ulong address, byte value, IPeripheral context = null, ulong? cpuState = null) in WriteByte() argument 55 ParentController.WriteByte(address, value, context, cpuState); in WriteByte() 67 … public virtual ushort ReadWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadWord() argument 71 return ParentController.ReadWord(address, context, cpuState); in ReadWord() 85 …ual void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuState = null) in WriteWord() argument 89 ParentController.WriteWord(address, value, context, cpuState); in WriteWord() 101 …blic virtual uint ReadDoubleWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadDoubleWord() argument 105 return ParentController.ReadDoubleWord(address, context, cpuState); in ReadDoubleWord() [all …]
|
| D | IBusController.cs | 27 byte ReadByte(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadByte() argument 29 … void WriteByte(ulong address, byte value, IPeripheral context = null, ulong? cpuState = null); in WriteByte() argument 32 ushort ReadWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadWord() argument 34 … void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuState = null); in WriteWord() argument 37 uint ReadDoubleWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadDoubleWord() argument 39 …void WriteDoubleWord(ulong address, uint value, IPeripheral context = null, ulong? cpuState = null… in WriteDoubleWord() argument 42 ulong ReadQuadWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadQuadWord() argument 44 …void WriteQuadWord(ulong address, ulong value, IPeripheral context = null, ulong? cpuState = null); in WriteQuadWord() argument
|
| D | SystemBusGenerated.tt | 47 …blic <#= type #> Read<#= name #>(ulong address, IPeripheral context = null, ulong? cpuState = null) 57 using(SetLocalContext(context, cpuState)) 59 …ndPeripheralAccessMethods(address, context, out var accessMethods, out var startAddress, cpuState)) 103 … Write<#=name#>(ulong address, <#=type#> value, IPeripheral context = null, ulong? cpuState = null) 113 using(SetLocalContext(context, cpuState)) 115 …ndPeripheralAccessMethods(address, context, out var accessMethods, out var startAddress, cpuState)) 214 …context, out PeripheralAccessMethods accessMethods, out ulong startAddress, ulong? cpuState = null) 223 … if(peripheralsCollectionByContext.TryGetValue(context, cpuState, out var collection))
|
| D | SystemBus.cs | 390 … public bool TryGetCurrentContextState<T>(out IPeripheralWithTransactionState cpu, out T cpuState) in TryGetCurrentContextState() argument 393 cpuState = default; in TryGetCurrentContextState() 405 cpuState = requestedTypeSTate; in TryGetCurrentContextState()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ |
| D | TranslationCPU.cs | 227 cpuState = new byte[TlibGetStateSize()]; in PrepareState() 228 Marshal.Copy(statePtr, cpuState, 0, cpuState.Length); in PrepareState() 234 cpuState = null; in FreeState() 604 protected ulong ReadByteFromBus(ulong offset, ulong cpuState) in ReadByteFromBus() argument 616 : (ulong)machine.SystemBus.ReadByte(offset, this, cpuState); in ReadByteFromBus() 621 protected ulong ReadWordFromBus(ulong offset, ulong cpuState) in ReadWordFromBus() argument 633 : (ulong)machine.SystemBus.ReadWord(offset, this, cpuState); in ReadWordFromBus() 638 protected ulong ReadDoubleWordFromBus(ulong offset, ulong cpuState) in ReadDoubleWordFromBus() argument 650 : machine.SystemBus.ReadDoubleWord(offset, this, cpuState); in ReadDoubleWordFromBus() 655 protected ulong ReadQuadWordFromBus(ulong offset, ulong cpuState) in ReadQuadWordFromBus() argument [all …]
|