Home
last modified time | relevance | path

Searched refs:physicalAddress (Results 1 – 4 of 4) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/
DICPUWithMMU.cs15 … bool TryTranslateAddress(ulong logicalAddress, MpuAccess accessType, out ulong physicalAddress); in TryTranslateAddress() argument
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/
DExecutionTracer.cs170 … AttachedCPU.SetHookAtMemoryAccess((pc, operation, virtualAddress, physicalAddress, value) => in TrackMemoryAccesses()
174 …ata.Enqueue(new MemoryAccessAdditionalData(pc, operation, virtualAddress, physicalAddress, value)); in TrackMemoryAccesses()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/
DSTM32L0_FlashController.cs252 …Hook(ulong pc, MemoryOperation operation, ulong virtualAddress, ulong physicalAddress, ulong value) in EraseMemoryAccessHook() argument
261 var registered = machine.SystemBus.WhatIsAt(physicalAddress); in EraseMemoryAccessHook()
267 var offset = physicalAddress - registered.RegistrationPoint.Range.StartAddress; in EraseMemoryAccessHook()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DTranslationCPU.cs1113 …tualAddress, Misc.MemoryOperationToMpuAccess((MemoryOperation)operation), out var physicalAddress); in OnMemoryAccess()
1114 … memoryAccessHook?.Invoke(pc, (MemoryOperation)operation, virtualAddress, physicalAddress, value); in OnMemoryAccess()
1800 …lic bool TryTranslateAddress(ulong logicalAddress, MpuAccess accessType, out ulong physicalAddress) in TryTranslateAddress() argument
1805 physicalAddress = logicalAddress; in TryTranslateAddress()
1808 physicalAddress = result; in TryTranslateAddress()
2292 SetHookAtMemoryAccess((_, operation, __, physicalAddress, value) => in EnableProfiling()
2298 … machine.Profiler?.Log(new PeripheralEntry((byte)operation, physicalAddress)); in EnableProfiling()