Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update perfview #3917

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Bump CLI from v2.40.0 to v2.41.1 ([#3910](https://github.com/getsentry/sentry-dotnet/pull/3910))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2411)
- [diff](https://github.com/getsentry/sentry-cli/compare/2.40.0...2.41.1)
- Update Perfview/TraceEvent to 930041c ([#3917](https://github.com/getsentry/sentry-dotnet/pull/3917))

## 5.0.1

Expand Down
2 changes: 1 addition & 1 deletion modules/perfview
Submodule perfview updated 79 files
+4 −0 .github/CODEOWNERS
+2 −2 README.md
+0 −7 src/CSVReader/CsvReader.cs
+0 −53 src/CSVReader/ETLStackBrowse/Trace.cs
+7 −9 src/Directory.Build.props
+0 −892 src/FastSerialization/CompressedStream.cs
+101 −182 src/FastSerialization/FastSerialization.cs
+0 −1 src/FastSerialization/FastSerialization.csproj
+13 −5 src/FastSerialization/MemoryMappedFileStreamReader.cs
+0 −356 src/FastSerialization/MemoryMappedFileStreamWriter.cs
+8 −8 src/FastSerialization/SegmentedMemoryStreamReader.cs
+7 −7 src/FastSerialization/SegmentedMemoryStreamWriter.cs
+35 −25 src/FastSerialization/StreamReaderWriter.cs
+3 −3 src/HeapDump/GCHeapDump.cs
+2 −29 src/HeapDump/GCHeapDumper.cs
+1 −1 src/HeapDump/HeapDump.csproj
+1 −47 src/MemoryGraph/MemoryGraph.cs
+8 −266 src/MemoryGraph/graph.cs
+15 −0 src/PerfView/App.cs
+0 −46 src/PerfView/CommandProcessor.cs
+5 −4 src/PerfView/Dialogs/FileInputAndOutput.xaml
+14 −10 src/PerfView/Dialogs/MemoryDataDialog.xaml
+47 −47 src/PerfView/Dialogs/RunCommandDialog.xaml
+2 −0 src/PerfView/Dialogs/RunCommandDialog.xaml.cs
+3 −3 src/PerfView/Dialogs/SymbolPathDialog.xaml
+6 −5 src/PerfView/Dialogs/UserCommandDialog.xaml
+0 −240 src/PerfView/EtwEventSource.cs
+16 −12 src/PerfView/EventViewer/EventWindow.xaml
+8 −8 src/PerfView/EventViewer/EventWindow.xaml.cs
+5 −83 src/PerfView/Extensibility.cs
+0 −10 src/PerfView/GcStats.cs
+1 −1 src/PerfView/GuiUtilities/StatusBar/StatusBar.xaml
+4 −3 src/PerfView/GuiUtilities/TextEditor/TextEditorControl.xaml
+1 −1 src/PerfView/GuiUtilities/TextEditor/TextEditorWindow.xaml
+2 −1 src/PerfView/GuiUtilities/WebBrowser/WebBrowser.xaml
+45 −30 src/PerfView/GuiUtilities/WebBrowser/WebBrowser.xaml.cs
+5 −2 src/PerfView/HeapView/GcInfoView.cs
+0 −95 src/PerfView/IProcess.cs
+2 −86 src/PerfView/InteropReport.cs
+10 −5 src/PerfView/MainWindow.xaml
+6 −1,034 src/PerfView/MainWindow.xaml.cs
+0 −19 src/PerfView/ObjectViewer/ObjectViewer.xaml.cs
+0 −88 src/PerfView/ObjectViewer/TreeViewGrid.xaml.cs
+46 −0 src/PerfView/PerfView.csproj
+6 −68 src/PerfView/PerfViewData.cs
+0 −13 src/PerfView/StackViewer/CallTreeView.cs
+2 −1 src/PerfView/StackViewer/PerfDataGrid.xaml
+15 −14 src/PerfView/StackViewer/StackWindow.xaml
+4 −28 src/PerfView/StackViewer/StackWindow.xaml.cs
+0 −18 src/PerfView/StateMachineFramework/ServerRequestComputer.cs
+5 −12 src/PerfView/SupportFiles/UsersGuide.htm
+1 −2 src/PerfView/Themes/DarkTheme.xaml
+0 −134 src/PerfView/UserCommands.cs
+15 −0 src/PerfView/Utilities/ProcessTree.cs
+0 −62 src/PerfView/memory/ClrProfilerMemoryGraph.cs
+0 −20 src/PerfView/memory/MemoryGraphStackSource.cs
+1 −1 src/PerfViewExtensions/GlobalSrc/Commands.cs
+0 −4 src/SymbolsAuth/SymbolsAuth.csproj
+1 −47 src/TraceEvent/Computers/ActivityComputer.cs
+0 −7 src/TraceEvent/Computers/GCReferenceComputer.cs
+22 −1 src/TraceEvent/Computers/StartStopActivityComputer.cs
+1 −9 src/TraceEvent/Computers/ThreadTimeComputer.cs
+0 −117 src/TraceEvent/DynamicTraceEventParser.cs
+10 −3 src/TraceEvent/ETWReloggerTraceEventSource.cs
+0 −46 src/TraceEvent/EventCounterSource.cs
+2 −2 src/TraceEvent/EventPipe/EventPipeEventSource.cs
+0 −194 src/TraceEvent/Parsers/JScriptTraceEventParser.cs
+95 −843 src/TraceEvent/Parsers/KernelTraceEventParser.cs
+0 −11 src/TraceEvent/Stacks/Stacks.cs
+0 −20 src/TraceEvent/Symbols/NativeSymbolModule.cs
+1 −1 src/TraceEvent/TraceEvent.Tests/Parsing/EventPipeParsing.cs
+49 −6 src/TraceEvent/TraceEvent.Tests/Serialization/FastSerializerTests.cs
+5 −53 src/TraceEvent/TraceEventNativeMethods.cs
+306 −269 src/TraceEvent/TraceEventSession.cs
+8 −111 src/TraceEvent/TraceLog.cs
+0 −35 src/TraceEvent/Utilities/Cache.cs
+0 −8 src/TraceEvent/Utilities/command.cs
+0 −8 src/TraceParserGen/Library/Util/Command.cs
+1 −1 src/perfcollect/perfcollect
Loading