Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/GuestProfiling/
DBaseProfiler.cs18 public BaseProfiler(TranslationCPU cpu, bool flushInstantly, int? maximumNestedContexts) in BaseProfiler() argument
23 if(maximumNestedContexts <= 0) { in BaseProfiler()
26 this.maximumNestedContexts = maximumNestedContexts; in BaseProfiler()
66 if(maximumNestedContexts.HasValue && currentContext.Count >= maximumNestedContexts) in PushCurrentContextSafe()
86 private readonly int? maximumNestedContexts; field in Antmicro.Renode.Peripherals.CPU.GuestProfiling.BaseProfiler
DCollapsedStackProfiler.cs18 …tring filename, bool flushInstantly, long? fileSizeLimit = null, int? maximumNestedContexts = null) in CollapsedStackProfiler() argument
19 : base(cpu, flushInstantly, maximumNestedContexts) in CollapsedStackProfiler()
DPerfettoProfiler.cs23 …nstantly, bool enableMultipleTracks, long? fileSizeLimit = null, int? maximumNestedContexts = null) in PerfettoProfiler() argument
24 : base(cpu, flushInstantly, maximumNestedContexts) in PerfettoProfiler()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DTranslationCPU_Profiler.cs23 …e, bool enableMultipleTracks = true, long? fileSizeLimit = null, int? maximumNestedContexts = null) in EnableProfiler() argument
44 …= new CollapsedStackProfiler(this, filename, flushInstantly, fileSizeLimit, maximumNestedContexts); in EnableProfiler()
47 …ofiler(this, filename, flushInstantly, enableMultipleTracks, fileSizeLimit, maximumNestedContexts); in EnableProfiler()
57 …lename, bool flushInstantly = false, long? fileSizeLimit = null, int? maximumNestedContexts = null) in EnableProfilerCollapsedStack() argument
60 …rofilerType.CollapsedStack, filename, flushInstantly, false, fileSizeLimit, maximumNestedContexts); in EnableProfilerCollapsedStack()
63 …e, bool enableMultipleTracks = true, long? fileSizeLimit = null, int? maximumNestedContexts = null) in EnableProfilerPerfetto() argument
65 …pe.Perfetto, filename, flushInstantly, enableMultipleTracks, fileSizeLimit, maximumNestedContexts); in EnableProfilerPerfetto()