| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/ |
| D | ThreadContextCommand.cs | 21 var cpuId = threadId.ProcessId ?? threadId.ThreadId; in Execute() 22 if(cpuId == PacketThreadId.All) in Execute() 28 manager.SelectCpuForDebugging(manager.ManagedCpus[cpuId]); in Execute()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm64/ |
| D | BaseARMv8.cs | 23 …public BaseARMv8(uint cpuId, string cpuType, IMachine machine, Endianess endianness = Endianess.Li… in BaseARMv8() argument 89 private void UnhaltCpu(uint cpuId) in UnhaltCpu() argument 91 var cpu = machine.SystemBus.GetCPUs().Where(x => x.MultiprocessingId == cpuId).Single(); in UnhaltCpu()
|
| D | ARMv8R.cs | 24 … machine, ARM_GenericInterruptController genericInterruptController, uint cpuId = 0, Endianess end… in ARMv8R() argument 25 : base(cpuId, cpuType, machine, endianness) in ARMv8R() 27 Affinity = new Affinity(cpuId); in ARMv8R()
|
| D | ARMv8A.cs | 26 … cpuType, ARM_GenericInterruptController genericInterruptController, uint cpuId = 0, Endianess end… in ARMv8A() argument 27 : base(cpuId, cpuType, machine, endianness) in ARMv8A() 29 Affinity = new Affinity(cpuId); in ARMv8A()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm/ |
| D | ARMv7R.cs | 18 …public ARMv7R(IMachine machine, string cpuType, uint cpuId = 0, ARM_GenericInterruptController gen… in ARMv7R() argument 20 : base(cpuType, machine, cpuId, endianness, numberOfMPURegions, signalsUnit) in ARMv7R() 22 Affinity = new Affinity(cpuId); in ARMv7R()
|
| D | ARMv7A.cs | 20 …public ARMv7A(IMachine machine, string cpuType, uint cpuId = 0, ARM_GenericInterruptController gen… in ARMv7A() argument 21 : base(cpuType, machine, cpuId, endianness) in ARMv7A() 23 Affinity = new Affinity(cpuId); in ARMv7A()
|
| D | Arm.cs | 28 …public Arm(string cpuType, IMachine machine, uint cpuId = 0, Endianess endianness = Endianess.Litt… in Arm() argument 29 : base(cpuId, cpuType, machine, endianness) in Arm()
|
| D | ARM_GenericInterruptController.cs | 1694 var cpuId = useCPUIdentifier ? requester?.ProcessorNumber ?? 0 : 0; 1695 return cpuId << 10 | irqId; 1710 var cpuId = BitHelper.GetValue((uint)val, 10, 3); 1711 if(useCPUIdentifier && !TryGetCPUEntry(cpuId, out cpu)) 1714 isDeactivateRegister ? "deactivate" : "end", irqId, cpuId);
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ |
| D | CPUCore.cs | 17 protected CPUCore(uint cpuId) in CPUCore() argument 19 MultiprocessingId = cpuId; in CPUCore()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/ |
| D | PacketData.cs | 50 public static PacketData StopReply(BreakpointType reason, uint cpuId, ulong? address) in StopReply() argument 53 … !address.HasValue ? string.Empty : string.Format("{0:X2}", address), cpuId)); in StopReply()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Xtensa/ |
| D | Xtensa.cs | 22 public Xtensa(string cpuType, IMachine machine, uint cpuId = 0, long frequency = 10000000) in Xtensa() argument 23 : base(cpuId, cpuType, machine, Endianess.LittleEndian) in Xtensa()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/ |
| D | SystemBus.cs | 438 private bool TryGetCurrentCPUId(out int cpuId) in TryGetCurrentCPUId() argument 442 cpuId = idByCpu[cpu]; in TryGetCurrentCPUId() 453 cpuId = cachedCpuId.Value; in TryGetCurrentCPUId() 457 return TryFindCurrentThreadCPUAndId(out var _, out cpuId); in TryGetCurrentCPUId() 460 private bool TryFindCurrentThreadCPUAndId(out ICPU cpu, out int cpuId) in TryFindCurrentThreadCPUAndId() argument 471 cpuId = entry.Key; in TryFindCurrentThreadCPUAndId() 472 cachedCpuId.Value = cpuId; in TryFindCurrentThreadCPUAndId() 476 cpuId = -1; in TryFindCurrentThreadCPUAndId()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm-M/ |
| D | CortexM.cs | 27 …public CortexM(string cpuType, IMachine machine, NVIC nvic, [NameAlias("id")] uint cpuId = 0, Endi… in CortexM() argument 29 : base(cpuType, machine, cpuId, endianness, numberOfMPURegions) in CortexM()
|
| D | NVIC.cs | 62 this.cpuId = cpu.ModelID; in AttachCPU() 178 return cpuId; in ReadDoubleWord() 2134 private uint cpuId; field in Antmicro.Renode.Peripherals.IRQControllers.NVIC
|