Home
last modified time | relevance | path

Searched refs:access (Results 1 – 15 of 15) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DReadMemoryCommand.cs33 foreach(var access in accesses) in Execute()
35 if(manager.Machine.SystemBus.WhatIsAt(access.Address, context: manager.Cpu) == null) in Execute()
44 switch(access.Length) in Execute()
47 … val = manager.Machine.SystemBus.ReadByte(access.Address, context: manager.Cpu); in Execute()
48 data = BytesFromValue(val, access.Length); in Execute()
51 … val = manager.Machine.SystemBus.ReadWord(access.Address, context: manager.Cpu); in Execute()
52 data = BytesFromValue(val, access.Length); in Execute()
55 … val = manager.Machine.SystemBus.ReadDoubleWord(access.Address, context: manager.Cpu); in Execute()
56 data = BytesFromValue(val, access.Length); in Execute()
59 … val = manager.Machine.SystemBus.ReadQuadWord(access.Address, context: manager.Cpu); in Execute()
[all …]
DWriteDataToMemoryCommand.cs58 foreach(var access in accesses) in WriteData()
60 …var val = BitHelper.ToUInt64(data, startingIndex, (int)access.Length, reverse: manager.Cpu.Endiann… in WriteData()
61 switch(access.Length) in WriteData()
64 … manager.Machine.SystemBus.WriteByte(access.Address, (byte)val, context: manager.Cpu); in WriteData()
67 … manager.Machine.SystemBus.WriteWord(access.Address, (ushort)val, context: manager.Cpu); in WriteData()
70 … manager.Machine.SystemBus.WriteDoubleWord(access.Address, (uint)val, context: manager.Cpu); in WriteData()
73 … manager.Machine.SystemBus.WriteQuadWord(access.Address, (ulong)val, context: manager.Cpu); in WriteData()
76 …manager.Machine.SystemBus.WriteBytes(data, access.Address, startingIndex, (long)access.Length, con… in WriteData()
79 startingIndex += (int)access.Length; in WriteData()
DCalculateCRCCommand.cs39 foreach(var access in accesses) in Execute()
41 if(manager.Machine.SystemBus.WhatIsAt(access.Address, context: manager.Cpu) == null) in Execute()
48 …manager.Machine.SystemBus.ReadBytes(access.Address, (int)access.Length, data, currentIndex, onlyMe… in Execute()
49 currentIndex += (int)access.Length; in Execute()
DBreakpointCommand.cs136 …private void AddWatchpointsCoveringMemoryArea(ulong address, uint kind, Access access, BusHookDele… in AddWatchpointsCoveringMemoryArea() argument
140 foreach(var descriptor in CalculateAllCoveringAddressess(address, kind, access, hook)) in AddWatchpointsCoveringMemoryArea()
151 … manager.Machine.SystemBus.AddWatchpointHook(descriptor.Address, descriptor.Width, access, hook); in AddWatchpointsCoveringMemoryArea()
157 …private void RemoveWatchpointsCoveringMemoryArea(ulong address, uint kind, Access access, BusHookD… in RemoveWatchpointsCoveringMemoryArea() argument
161 foreach(var descriptor in CalculateAllCoveringAddressess(address, kind, access, hook)) in RemoveWatchpointsCoveringMemoryArea()
178 …criptor> CalculateAllCoveringAddressess(ulong address, uint kind, Access access, BusHookDelegate h… in CalculateAllCoveringAddressess() argument
184 … yield return new WatchpointDescriptor(address - (ulong)(-offset), width, access, hook); in CalculateAllCoveringAddressess()
193 …public WatchpointDescriptor(ulong address, SysbusAccessWidth width, Access access, BusHookDelegate… in WatchpointDescriptor() argument
197 Access = access; in WatchpointDescriptor()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/
DCC1200.cs211 private AccessDescriptor access; field in Antmicro.Renode.Peripherals.Wireless.CC1200
268 access = new AccessDescriptor in Transmit()
274 …{1} (raw 0x{3:X})", command, (Registers)command, (access.IsBurst ? "(Burst) " : String.Empty) + (a… in Transmit()
278 access.Target = Target.Registers; in Transmit()
279 access.Address = command; in Transmit()
283 access.Target = Target.ExtendedRegisters; in Transmit()
287 access.Target = Target.CommandStrobe; in Transmit()
292 access.Target = Target.StandardFIFO; in Transmit()
296 access.Target = Target.DirectFIFO; in Transmit()
300 access.Target = Target.FECWorkspaceOrFreeArea; in Transmit()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/
DSystemBusHooksExtensions.cs36 …is IBusController sysbus, ulong address, SysbusAccessWidth width, Access access, string pythonScri… in AddWatchpointHook() argument
39 sysbus.AddWatchpointHook(address, width, access, engine.Hook); in AddWatchpointHook()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DBusHookHandler.cs12 … void BusHookDelegate(ICpuSupportingGdb cpu, ulong address, SysbusAccessWidth access, ulong value); in BusHookDelegate() argument
DBusControllerProxy.cs250 …public virtual void AddWatchpointHook(ulong address, SysbusAccessWidth width, Access access, BusHo… in AddWatchpointHook() argument
252 ParentController.AddWatchpointHook(address, width, access, hook); in AddWatchpointHook()
275 …public virtual bool TryGetWatchpointsAt(ulong address, Access access, out List<BusHookHandler> res… in TryGetWatchpointsAt() argument
277 return ParentController.TryGetWatchpointsAt(address, access, out result); in TryGetWatchpointsAt()
DIBusController.cs78 …void AddWatchpointHook(ulong address, SysbusAccessWidth width, Access access, BusHookDelegate hook… in AddWatchpointHook() argument
80 bool TryGetWatchpointsAt(ulong address, Access access, out List<BusHookHandler> result); in TryGetWatchpointsAt() argument
DSVDParser.cs848 … public RegisterSettings(int? size, ulong? resetValue, ulong? address, PermittedAccess? access) in RegisterSettings()
853 Access = access; in RegisterSettings()
856 … int? size = null, ulong? resetValue = null, ulong? address = null, PermittedAccess? access = null) in RegisterSettings()
861 Access = access ?? parentRegisterSettings.Access; in RegisterSettings()
DSystemBus.cs893 …public void AddWatchpointHook(ulong address, SysbusAccessWidth width, Access access, BusHookDelega… in AddWatchpointHook() argument
895 if(!Enum.IsDefined(typeof(Access), access)) in AddWatchpointHook()
908 if((access & Access.Read) != 0) in AddWatchpointHook()
912 if((access & Access.Write) != 0) in AddWatchpointHook()
957 … public bool TryGetWatchpointsAt(ulong address, Access access, out List<BusHookHandler> result) in TryGetWatchpointsAt() argument
959 if(access == Access.ReadAndWrite || access == Access.Read) in TryGetWatchpointsAt()
965 else if(access == Access.Read) in TryGetWatchpointsAt()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Network/
DWindowsTapInterface.cs258 … private static uint CalculateControlCode(uint deviceType, uint function, uint method, uint access) in CalculateControlCode() argument
260 return ((deviceType << 16) | (access << 14) | (function << 2) | method); in CalculateControlCode()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DSVDParserTests.cs344 …ons([Values("write-only", "read-only", "read-write", "read-writeOnce", "writeOnce")] string access) in ShouldHandleDifferentAccessPermissions() argument
363 if(access == "write-only" || access == "writeOnce") in ShouldHandleDifferentAccessPermissions()
/Renode-Infrastructure-v1.15.3-29f510e/licenses/
DLGPL.txt234 If distribution of object code is made by offering access to copy
235 from a designated place, then offering equivalent access to copy the
311 d) If distribution of the work is made by offering access to copy
312 from a designated place, offer equivalent access to copy the above
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm/
DARM_GenericInterruptController.cs807 private bool NonSecureAccessPermitsGroup(NonSecureAccess access, GroupType type) in NonSecureAccessPermitsGroup() argument
817 return access >= NonSecureAccess.BothGroupsPermitted; in NonSecureAccessPermitsGroup()
819 return access >= NonSecureAccess.SecureGroup0Permitted; in NonSecureAccessPermitsGroup()