summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-08 00:21:25 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-06-08 00:21:25 +0000
commit2a4658a010b6bbe1d60b7f1cdf79bc417e5b9689 (patch)
treef3f3abd005afd96c07379261e18a98cf40f3ee60
parentce3f6b21c5eeb3d0c89fc82107d18adb4b2d346d (diff)
parentd57169e64c4cadb5c16b296ed3506c70837b8514 (diff)
downloadextras-android13-gsi.tar.gz
Snap for 8693000 from df142880e86418dad6b40fddb001ebd897919595 to tm-release am: d57169e64candroid13-gsi
Original change: https://googleplex-android-review.googlesource.com/c/platform/system/extras/+/18780324 Change-Id: I6a13ba680eb84b967bba30718f326bbf9dc6305d Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--simpleperf/cmd_record.cpp21
1 files changed, 15 insertions, 6 deletions
diff --git a/simpleperf/cmd_record.cpp b/simpleperf/cmd_record.cpp
index 4b79eedc..e69355d4 100644
--- a/simpleperf/cmd_record.cpp
+++ b/simpleperf/cmd_record.cpp
@@ -352,7 +352,8 @@ RECORD_FILTER_OPTION_HELP_MSG_FOR_RECORDING
bool TraceOffCpu();
bool SetEventSelectionFlags();
bool CreateAndInitRecordFile();
- std::unique_ptr<RecordFileWriter> CreateRecordFile(const std::string& filename);
+ std::unique_ptr<RecordFileWriter> CreateRecordFile(
+ const std::string& filename, const std::vector<EventAttrWithId>& override_attrs);
bool DumpKernelSymbol();
bool DumpTracingData();
bool DumpMaps();
@@ -1280,7 +1281,8 @@ bool RecordCommand::SetEventSelectionFlags() {
}
bool RecordCommand::CreateAndInitRecordFile() {
- record_file_writer_ = CreateRecordFile(record_filename_);
+ record_file_writer_ =
+ CreateRecordFile(record_filename_, event_selection_set_.GetEventAttrWithId());
if (record_file_writer_ == nullptr) {
return false;
}
@@ -1294,13 +1296,14 @@ bool RecordCommand::CreateAndInitRecordFile() {
return DumpKernelSymbol() && DumpTracingData() && DumpMaps() && DumpAuxTraceInfo();
}
-std::unique_ptr<RecordFileWriter> RecordCommand::CreateRecordFile(const std::string& filename) {
+std::unique_ptr<RecordFileWriter> RecordCommand::CreateRecordFile(
+ const std::string& filename, const std::vector<EventAttrWithId>& attrs) {
std::unique_ptr<RecordFileWriter> writer = RecordFileWriter::CreateInstance(filename);
if (writer == nullptr) {
return nullptr;
}
- if (!writer->WriteAttrSection(event_selection_set_.GetEventAttrWithId())) {
+ if (!writer->WriteAttrSection(attrs)) {
return nullptr;
}
return writer;
@@ -1697,11 +1700,17 @@ std::unique_ptr<RecordFileReader> RecordCommand::MoveRecordFile(const std::strin
return nullptr;
}
}
- record_file_writer_ = CreateRecordFile(record_filename_);
+
+ auto reader = RecordFileReader::CreateInstance(old_filename);
+ if (!reader) {
+ return nullptr;
+ }
+
+ record_file_writer_ = CreateRecordFile(record_filename_, reader->AttrSection());
if (!record_file_writer_) {
return nullptr;
}
- return RecordFileReader::CreateInstance(old_filename);
+ return reader;
}
bool RecordCommand::MergeMapRecords() {