2018-09-11 08:45:59 +02:00
|
|
|
//===- FDRTraceExpander.cpp -----------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/XRay/FDRTraceExpander.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace xray {
|
|
|
|
|
|
|
|
void TraceExpander::resetCurrentRecord() {
|
2018-11-06 09:51:37 +01:00
|
|
|
if (BuildingRecord)
|
2018-09-11 08:45:59 +02:00
|
|
|
C(CurrentRecord);
|
2018-11-06 09:51:37 +01:00
|
|
|
BuildingRecord = false;
|
2018-09-11 08:45:59 +02:00
|
|
|
CurrentRecord.CallArgs.clear();
|
2018-11-06 09:51:37 +01:00
|
|
|
CurrentRecord.Data.clear();
|
2018-09-11 08:45:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Error TraceExpander::visit(BufferExtents &) {
|
|
|
|
resetCurrentRecord();
|
|
|
|
return Error::success();
|
|
|
|
}
|
|
|
|
|
|
|
|
Error TraceExpander::visit(WallclockRecord &) { return Error::success(); }
|
|
|
|
|
|
|
|
Error TraceExpander::visit(NewCPUIDRecord &R) {
|
|
|
|
CPUId = R.cpuid();
|
|
|
|
BaseTSC = R.tsc();
|
|
|
|
return Error::success();
|
|
|
|
}
|
|
|
|
|
|
|
|
Error TraceExpander::visit(TSCWrapRecord &R) {
|
|
|
|
BaseTSC = R.tsc();
|
|
|
|
return Error::success();
|
|
|
|
}
|
|
|
|
|
2018-11-06 09:51:37 +01:00
|
|
|
Error TraceExpander::visit(CustomEventRecord &R) {
|
2018-09-11 08:45:59 +02:00
|
|
|
resetCurrentRecord();
|
2018-11-06 09:51:37 +01:00
|
|
|
if (!IgnoringRecords) {
|
|
|
|
CurrentRecord.TSC = R.tsc();
|
|
|
|
CurrentRecord.CPU = R.cpu();
|
|
|
|
CurrentRecord.PId = PID;
|
|
|
|
CurrentRecord.TId = TID;
|
|
|
|
CurrentRecord.Type = RecordTypes::CUSTOM_EVENT;
|
|
|
|
std::copy(R.data().begin(), R.data().end(),
|
|
|
|
std::back_inserter(CurrentRecord.Data));
|
|
|
|
BuildingRecord = true;
|
|
|
|
}
|
2018-09-11 08:45:59 +02:00
|
|
|
return Error::success();
|
|
|
|
}
|
|
|
|
|
|
|
|
Error TraceExpander::visit(CallArgRecord &R) {
|
|
|
|
CurrentRecord.CallArgs.push_back(R.arg());
|
|
|
|
CurrentRecord.Type = RecordTypes::ENTER_ARG;
|
|
|
|
return Error::success();
|
|
|
|
}
|
|
|
|
|
|
|
|
Error TraceExpander::visit(PIDRecord &R) {
|
|
|
|
PID = R.pid();
|
|
|
|
return Error::success();
|
|
|
|
}
|
|
|
|
|
|
|
|
Error TraceExpander::visit(NewBufferRecord &R) {
|
|
|
|
if (IgnoringRecords)
|
|
|
|
IgnoringRecords = false;
|
|
|
|
TID = R.tid();
|
|
|
|
if (LogVersion == 2)
|
|
|
|
PID = R.tid();
|
|
|
|
return Error::success();
|
|
|
|
}
|
|
|
|
|
|
|
|
Error TraceExpander::visit(EndBufferRecord &) {
|
|
|
|
IgnoringRecords = true;
|
|
|
|
resetCurrentRecord();
|
|
|
|
return Error::success();
|
|
|
|
}
|
|
|
|
|
|
|
|
Error TraceExpander::visit(FunctionRecord &R) {
|
|
|
|
resetCurrentRecord();
|
|
|
|
if (!IgnoringRecords) {
|
|
|
|
BaseTSC += R.delta();
|
|
|
|
CurrentRecord.Type = R.recordType();
|
|
|
|
CurrentRecord.FuncId = R.functionId();
|
|
|
|
CurrentRecord.TSC = BaseTSC;
|
|
|
|
CurrentRecord.PId = PID;
|
|
|
|
CurrentRecord.TId = TID;
|
|
|
|
CurrentRecord.CPU = CPUId;
|
2018-11-06 09:51:37 +01:00
|
|
|
BuildingRecord = true;
|
2018-09-11 08:45:59 +02:00
|
|
|
}
|
|
|
|
return Error::success();
|
|
|
|
}
|
|
|
|
|
|
|
|
Error TraceExpander::flush() {
|
|
|
|
resetCurrentRecord();
|
|
|
|
return Error::success();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace xray
|
|
|
|
} // namespace llvm
|