mirror of
https://github.com/jlfwong/speedscope.git
synced 2024-11-22 12:53:23 +03:00
Clarify magic numbers in getRawSampleList
This commit is contained in:
parent
e318f63fd2
commit
0235594002
@ -278,13 +278,21 @@ async function getRawSampleList(core: TraceDirectoryTree): Promise<Sample[]> {
|
||||
while (true) {
|
||||
// Schema as of Instruments 8.3.3 is a 6 byte timestamp, followed by a bunch
|
||||
// of stuff we don't care about, followed by a 4 byte backtrace ID
|
||||
const timestampBytes = 48 / 8
|
||||
const timestamp = bulkstore.readUint48()
|
||||
if (timestamp === 0) break
|
||||
|
||||
const threadIDBytes = 32 / 8
|
||||
const threadID = bulkstore.readUint32()
|
||||
|
||||
bulkstore.skip(bytesPerEntry - 6 - 4 - 4)
|
||||
// Skip the stuff we don't care about. We can do this because we know how
|
||||
// many bytes there shuold be per entry from the header of the file, and
|
||||
// we know how many bytes we're reading for each of the fields we do care
|
||||
// about.
|
||||
const backtraceIDBytes = 32 / 8
|
||||
bulkstore.skip(bytesPerEntry - timestampBytes - threadIDBytes - backtraceIDBytes)
|
||||
const backtraceID = bulkstore.readUint32()
|
||||
|
||||
samples.push({timestamp, threadID, backtraceID})
|
||||
}
|
||||
return samples
|
||||
|
Loading…
Reference in New Issue
Block a user