Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DTrace32Commands.cs26 [Argument(Encoding = ArgumentAttribute.ArgumentEncoding.HexNumber)]int sizeInBytes) in Execute()
35 if(sizeInBytes != 4 && (sizeInBytes % 8) != 0) in Execute()
37 manager.Cpu.Log(LogLevel.Error, "GDBStub: Invalid size: 0x{0:X}", sizeInBytes); in Execute()
40 var registersToRead = sizeInBytes <= 8 ? 1 : sizeInBytes / 8; in Execute()
41 var valueSize = sizeInBytes <= 8 ? sizeInBytes : 8; in Execute()
59 …ment(Separator = ':', Encoding = ArgumentAttribute.ArgumentEncoding.DecimalNumber)]int sizeInBytes, in Execute()
68 if(sizeInBytes != 4 && sizeInBytes != 8) in Execute()
70 manager.Cpu.Log(LogLevel.Error, "GDBStub: Invalid size: 0x{0:X}", sizeInBytes); in Execute()
74 …var value = BitHelper.ToUInt64(valueBytes, index: 0, length: sizeInBytes, reverse: cpu.Endianness … in Execute()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/FBInstruction/
DInstruction.cs107 …lder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Strin… in CreateOperandsVectorBlock()
113 …lder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Strin… in CreateInputsVectorBlock()
119 …lder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Strin… in CreateOutputsVectorBlock()
130 …builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<ul… in CreateLoadsVectorBlock()
136 …builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<ul… in CreateStoresVectorBlock()
DInstructions.cs37 …r dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<FBInstruc… in CreateInstructionsVectorBlock()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSVDParser.cs140 var sizeInBytes = (int)width; in LogWriteRequests()
141 for(var i = 0; i < sizeInBytes; i++) in LogWriteRequests()
146 … var howManyTimes = HowManyRequestsToTheRegister(register, sizeInBytes, offset, tmpOffset); in LogWriteRequests()
165 var sizeInBytes = (int)width; in AssembleValueFromRegisters()
167 for(var i = 0; i < sizeInBytes; i++) in AssembleValueFromRegisters()
172 … var howManyTimes = HowManyRequestsToTheRegister(register, sizeInBytes, offset, tmpOffset); in AssembleValueFromRegisters()
191 …private int HowManyRequestsToTheRegister(SVDRegister register, int sizeInBytes, ulong offset, ulon… in HowManyRequestsToTheRegister() argument
194 var lastReadingAddress = offset + checked((ulong)sizeInBytes) - 1; in HowManyRequestsToTheRegister()