Skip to content

Commit c1dceee

Browse files
committedAug 31, 2018
[XRay] Fix FunctionRecord serialization
This change makes the writer implementation more consistent with the way fields are written down to avoid assumptions on bitfield order and padding. We also fix an inconsistency between the type returned by the `delta()` accessor to match the data member it's returning. This is a follow-up to D51289 and D51210. llvm-svn: 341230
1 parent 5abf7d9 commit c1dceee

File tree

2 files changed

+10
-31
lines changed

2 files changed

+10
-31
lines changed
 

‎llvm/include/llvm/XRay/FDRRecords.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ class FunctionRecord : public Record {
244244
// properties.
245245
RecordTypes recordType() const { return Kind; }
246246
int32_t functionId() const { return FuncId; }
247-
uint64_t delta() const { return Delta; }
247+
uint32_t delta() const { return Delta; }
248248

249249
Error apply(RecordVisitor &V) override;
250250
};

‎llvm/lib/XRay/FDRTraceWriter.cpp

+9-30
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,6 @@ namespace xray {
1818

1919
namespace {
2020

21-
struct alignas(32) FileHeader {
22-
uint16_t Version;
23-
uint16_t Type;
24-
uint32_t BitField;
25-
uint64_t CycleFrequency;
26-
char FreeForm[16];
27-
};
28-
29-
struct MetadataBlob {
30-
uint8_t Type : 1;
31-
uint8_t RecordKind : 7;
32-
char Data[15];
33-
};
34-
35-
struct FunctionDeltaBlob {
36-
uint8_t Type : 1;
37-
uint8_t RecordKind : 3;
38-
int FuncId : 28;
39-
uint32_t TSCDelta;
40-
};
41-
4221
template <size_t Index> struct IndexedWriter {
4322
template <
4423
class Tuple,
@@ -139,16 +118,16 @@ Error FDRTraceWriter::visit(EndBufferRecord &R) {
139118
}
140119

141120
Error FDRTraceWriter::visit(FunctionRecord &R) {
142-
FunctionDeltaBlob B;
143-
B.Type = 0;
144-
B.RecordKind = static_cast<uint8_t>(R.recordType());
145-
B.FuncId = R.functionId();
146-
B.TSCDelta = R.delta();
147-
ArrayRef<char> Bytes(reinterpret_cast<const char *>(&B),
148-
sizeof(FunctionDeltaBlob));
149-
OS.write(Bytes);
121+
// Write out the data in "field" order, to be endian-aware.
122+
uint32_t TypeRecordFuncId = uint32_t{R.functionId() & ~uint32_t{0x0Fu << 28}};
123+
TypeRecordFuncId <<= 3;
124+
TypeRecordFuncId |= static_cast<uint32_t>(R.recordType());
125+
TypeRecordFuncId <<= 1;
126+
TypeRecordFuncId &= ~uint32_t{0x01};
127+
OS.write(TypeRecordFuncId);
128+
OS.write(R.delta());
150129
return Error::success();
151-
}
130+
} // namespace xray
152131

153132
} // namespace xray
154133
} // namespace llvm

0 commit comments

Comments
 (0)
Please sign in to comment.