summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-09 03:46:03 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-09 03:46:03 +0000
commit3df80c52c2d139de5cedd4aebf0cdc181b543287 (patch)
treef3f3abd005afd96c07379261e18a98cf40f3ee60
parentd61e9c220cb75d937c79dce4dea7573f774e0b15 (diff)
parenta066ffe0299a26d19561fbaab2e654087fcac3ae (diff)
downloadextras-aml_med_331410000.tar.gz
Snap for 8700776 from a066ffe0299a26d19561fbaab2e654087fcac3ae to mainline-media-releaseaml_med_331511000aml_med_331410000aml_med_331318000aml_med_331115000aml_med_331012020
Change-Id: I8402bbd616053e9bf0da17c03e55544d10026df1
-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() {