Home
last modified time | relevance | path

Searched refs:cluster (Results 1 – 8 of 8) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DCluster.cs19 public static void SetPC(this Cluster cluster, ulong value) in SetPC() argument
21 foreach (var cpu in cluster.Clustered) in SetPC()
47 … public void Register(ICluster<TranslationCPU> cluster, NullRegistrationPoint registrationPoint) in Register() argument
51 machine.RegisterAsAChildOf(this, cluster, NullRegistrationPoint.Instance); in Register()
52 clusters.Add(cluster); in Register()
55 public void Unregister(ICluster<TranslationCPU> cluster) in Unregister() argument
57 machine.UnregisterAsAChildOf(this, cluster); in Unregister()
58 clusters.Remove(cluster); in Unregister()
91 …erable<TranslationCPU> Clustered => cpus.Concat(clusters.SelectMany(cluster => cluster.Clustered));
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DBusRangeRegistration.cs19 … 0, IPeripheral cpu = null, ICluster<ICPU> cluster = null) : this(range, stateMask: null, offset, … in BusRangeRegistration() argument
27 …heral cpu = null, ICluster<ICPU> cluster = null) : this(new Range(address, size), stateMask: null,… in BusRangeRegistration() argument
87 …eral cpu = null, ICluster<ICPU> cluster = null, string condition = null) : base(range.StartAddress… in BusRangeRegistration() argument
DBusMultiRegistration.cs20 …IPeripheral cpu = null, ICluster<ICPU> cluster = null) : this(address, size, region, stateMask: nu… in BusMultiRegistration() argument
68 …pu = null, ICluster<ICPU> cluster = null, string condition = null) : base(new Range(address, size)… in BusMultiRegistration() argument
DBusPointRegistration.cs17 …0, IPeripheral cpu = null, ICluster<ICPU> cluster = null) : this(address, stateMask: null, offset,… in BusPointRegistration() argument
80 …Peripheral cpu = null, ICluster<ICPU> cluster = null, string condition = null) : base(address, off… in BusPointRegistration() argument
DBusRegistration.cs17 … startingPoint, ulong offset = 0, IPeripheral cpu = null, ICluster<ICPU> cluster = null, StateMask… in BusRegistration() argument
19 if(cpu != null && cluster != null) in BusRegistration()
30 Cluster = cluster; in BusRegistration()
DBusParametrizedRegistration.cs15 …lic BusParametrizedRegistration(ulong address, ulong size, ICPU cpu, ICluster<ICPU> cluster = null) in BusParametrizedRegistration() argument
16 : base(address, size, 0, cpu, cluster) in BusParametrizedRegistration()
DSVDParser.cs516 foreach(var cluster in clusterItems) in ScanClusters()
518 var derivedAttribute = cluster.Attribute("derivedFrom"); in ScanClusters()
521 ScanCluster(cluster, defaultRegisterSettings, peripheral); in ScanClusters()
526 …var derivedCluster = FindDerivedElement(NestingType.Cluster, cluster, derivedAttribute.Value, defa… in ScanClusters()
528 if(!cluster.Elements("register").Any()) in ScanClusters()
530 cluster.Add(derivedCluster.Elements("register")); in ScanClusters()
532 if(!cluster.Elements("cluster").Any()) in ScanClusters()
534 cluster.Add(derivedCluster.Elements("cluster")); in ScanClusters()
537 ScanCluster(cluster, outRegisterSettings, peripheral); in ScanClusters()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs1022 var cluster = cpu; in StartGdbServer()
1023 foreach(var cpuSupportingGdb in cluster.Clustered) in StartGdbServer()