Home
last modified time | relevance | path

Searched refs:cpuId (Results 1 – 14 of 14) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DThreadContextCommand.cs21 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/
DBaseARMv8.cs23 …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()
DARMv8R.cs24 … 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()
DARMv8A.cs26 … 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/
DARMv7R.cs18 …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()
DARMv7A.cs20 …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()
DArm.cs28 …public Arm(string cpuType, IMachine machine, uint cpuId = 0, Endianess endianness = Endianess.Litt… in Arm() argument
29 : base(cpuId, cpuType, machine, endianness) in Arm()
DARM_GenericInterruptController.cs1694 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/
DCPUCore.cs17 protected CPUCore(uint cpuId) in CPUCore() argument
19 MultiprocessingId = cpuId; in CPUCore()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/
DPacketData.cs50 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/
DXtensa.cs22 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/
DSystemBus.cs438 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/
DCortexM.cs27 …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()
DNVIC.cs62 this.cpuId = cpu.ModelID; in AttachCPU()
178 return cpuId; in ReadDoubleWord()
2134 private uint cpuId; field in Antmicro.Renode.Peripherals.IRQControllers.NVIC