| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ |
| D | Cluster.cs | 19 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/ |
| D | BusRangeRegistration.cs | 19 … 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
|
| D | BusMultiRegistration.cs | 20 …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
|
| D | BusPointRegistration.cs | 17 …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
|
| D | BusRegistration.cs | 17 … 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()
|
| D | BusParametrizedRegistration.cs | 15 …lic BusParametrizedRegistration(ulong address, ulong size, ICPU cpu, ICluster<ICPU> cluster = null) in BusParametrizedRegistration() argument 16 : base(address, size, 0, cpu, cluster) in BusParametrizedRegistration()
|
| D | SVDParser.cs | 516 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/ |
| D | Machine.cs | 1022 var cluster = cpu; in StartGdbServer() 1023 foreach(var cpuSupportingGdb in cluster.Clustered) in StartGdbServer()
|