Home
last modified time | relevance | path

Searched refs:currentAddress (Results 1 – 9 of 9) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/
DGenericI2cEeprom.cs50currentAddress = (int)BitHelper.ReplaceBits((uint)currentAddress, addressValue, width: bytesWritte… in Write()
56 this.NoisyLog("Set address: 0x{0:X4}", currentAddress); in Write()
72 var pageOffset = currentAddress % pageSize; in Write()
73 var pageStart = currentAddress - pageOffset; in Write()
81 …this.DebugLog("Write {0} bytes to address 0x{1:X4}: {2}", bytesToWrite, currentAddress, data.Skip(… in Write()
82 Memory.WriteBytes(currentAddress, data, index, bytesToWrite); in Write()
85 currentAddress = pageStart; in Write()
90 …this.DebugLog("Write {0} bytes to address 0x{1:X4}: {2}", count, currentAddress, data.Skip(index).… in Write()
92 currentAddress += count; in Write()
98 var startingAddress = currentAddress; in Read()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/GuestProfiling/
DCollapsedStackProfiler.cs32 …public override void StackFrameAdd(ulong currentAddress, ulong returnAddress, ulong instructionsCo… in StackFrameAdd() argument
34 var currentSymbol = GetSymbolName(currentAddress); in StackFrameAdd()
35 …}; returnAddress: 0x{1:X}; currentAddress: 0x{2:X}", currentSymbol, returnAddress, currentAddress); in StackFrameAdd()
54 …public override void StackFramePop(ulong currentAddress, ulong returnAddress, ulong instructionsCo… in StackFramePop() argument
56 …0:X} ({1}); currentAddress: 0x{2:X}", returnAddress, GetSymbolName(returnAddress), currentAddress); in StackFramePop()
DPerfettoProfiler.cs41 …public override void StackFrameAdd(ulong currentAddress, ulong returnAddress, ulong instructionsCo… in StackFrameAdd() argument
43 var currentSymbol = GetSymbolName(currentAddress); in StackFrameAdd()
44 …}; returnAddress: 0x{1:X}; currentAddress: 0x{2:X}", currentSymbol, returnAddress, currentAddress); in StackFrameAdd()
62 …public override void StackFramePop(ulong currentAddress, ulong returnAddress, ulong instructionsCo… in StackFramePop() argument
64 …0:X} ({1}); currentAddress: 0x{2:X}", returnAddress, GetSymbolName(returnAddress), currentAddress); in StackFramePop()
DBaseProfiler.cs42 …public abstract void StackFrameAdd(ulong currentAddress, ulong returnAddress, ulong instructionsCo… in StackFrameAdd() argument
43 …public abstract void StackFramePop(ulong currentAddress, ulong returnAddress, ulong instructionsCo… in StackFramePop() argument
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/
DEFR32_GenericI2CController.cs31 currentAddress = 0; in Reset()
292 currentAddress = txBuffer.Dequeue(); in HandleAddressByte()
293 isWrite = (currentAddress & 0x1) == 0; in HandleAddressByte()
294 currentAddress >>= 1; in HandleAddressByte()
298 if(!TryGetByAddress(currentAddress, out targetPeripheral)) in HandleAddressByte()
301 …vel.Warning, "Trying to address non-existent I2C peripheral with address 0x{0:x}", currentAddress); in HandleAddressByte()
359 …og(LogLevel.Warning, "Trying to read from nonexisting slave with address \"{0}\"", currentAddress); in ReadFromSlave()
373 …Log(LogLevel.Warning, "Trying to write to nonexisting slave with address \"{0}\"", currentAddress); in WriteToSlave()
380 private int currentAddress; field in Antmicro.Renode.Peripherals.I2C.EFR32_GenericI2CController
DEFM32GGI2CController.cs434 currentAddress = (int)slaveAddressForPacket << 1; in HandleTransfer()
435 WriteToSlave(currentAddress, txpacket); in HandleTransfer()
446 currentAddress = (int)slaveAddressForPacket << 1; in HandleTransfer()
447 WriteToSlave(currentAddress, txpacket); in HandleTransfer()
457 currentAddress = (int)slaveAddressForPacket << 1; in HandleTransfer()
458 WriteToSlave(currentAddress, txpacket); in HandleTransfer()
522 if(!TryGetByAddress(currentAddress, out slave)) in ReadData()
524 …og(LogLevel.Warning, "Trying to read from nonexisting slave with address \"{0}\"", currentAddress); in ReadData()
640 private int currentAddress; field in Antmicro.Renode.Peripherals.I2C.EFM32GGI2CController
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DBusHookHandler.cs23 …public void Invoke(ICpuSupportingGdb cpu, ulong currentAddress, SysbusAccessWidth currentWidth, ul… in Invoke() argument
27 action(cpu, currentAddress, currentWidth, value); in Invoke()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DTranslationCPU_Profiler.cs110 …protected void OnStackChange(ulong currentAddress, ulong returnAddress, ulong instructionsCount, i… in OnStackChange() argument
120 profiler.StackFrameAdd(currentAddress, returnAddress, instructionsCount); in OnStackChange()
124 profiler.StackFramePop(currentAddress, returnAddress, instructionsCount); in OnStackChange()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DCC2538_Cryptoprocessor.cs731 currentAddress = startAddress; in SysbusReaderWriterBase()
737 protected ulong currentAddress; field in Antmicro.Renode.Peripherals.Miscellaneous.CC2538_Cryptoprocessor.SysbusReaderWriterBase
751 bus.ReadBytes(currentAddress, bytesToRead, destination.Buffer, destination.Index); in Read()
753 currentAddress += (ulong)bytesToRead; in Read()
768 bus.WriteBytes(bytes, currentAddress, length); in Write()
769 currentAddress += (ulong)length; in Write()