summaryrefslogtreecommitdiff
path: root/chromium/third_party/catapult/tracing/tracing/extras/importer/linux_perf/fence_parser.html
blob: 5745ff5e4a21c3088679e104f9a383a9ffeac84d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<!--
Copyright (c) 2018 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<link rel="import" href="/tracing/extras/importer/linux_perf/parser.html">

<script>
'use strict';

/**
 * @fileoverview Parses fence events in the Linux event trace format.
 */
tr.exportTo('tr.e.importer.linux_perf', function() {
  const ColorScheme = tr.b.ColorScheme;
  const Parser = tr.e.importer.linux_perf.Parser;

  /**
   * Parses linux fence trace events.
   * @constructor
   */
  function FenceParser(importer) {
    Parser.call(this, importer);

    this.model_ = importer.model_;
    importer.registerEventHandler(
        'fence_init',
        FenceParser.prototype.initEvent.bind(this));
    importer.registerEventHandler(
        'fence_destroy',
        FenceParser.prototype.fenceDestroyEvent.bind(this));
    importer.registerEventHandler(
        'fence_enable_signal',
        FenceParser.prototype.fenceEnableSignalEvent.bind(this));
    importer.registerEventHandler(
        'fence_signaled',
        FenceParser.prototype.fenceSignaledEvent.bind(this));
    this.model_ = importer.model_;
  }

  const fenceRE = /driver=(\S+) timeline=(\S+) context=(\d+) seqno=(\d+)/;

  FenceParser.prototype = {
    __proto__: Parser.prototype,

    /**
     * Parses fence events and sets up state in the importer.
     */
    initEvent(eventName, cpuNumber, pid,
        ts, eventBase) {
      const event = fenceRE.exec(eventBase.details);
      if (!event) return false;

      if (eventBase.tgid === undefined) {
        return false;
      }

      const thread = this.importer.getOrCreatePseudoThread(event[2]);
      thread.lastActiveTs = ts;

      return true;
    },

    fenceDestroyEvent(eventName, cpuNumber, pid, ts, eventBase) {
      const event = fenceRE.exec(eventBase.details);
      if (!event) return false;

      if (eventBase.tgid === undefined) {
        return false;
      }
      const thread = this.importer.getOrCreatePseudoThread(event[2]);
      const name = 'fence_destroy(' + event[4] + ')';
      const colorName = 'fence(' + event[4] + ')';

      if (thread.lastActiveTs !== undefined) {
        const duration = ts - thread.lastActiveTs;
        const slice = new tr.model.ThreadSlice(
            '', name,
            ColorScheme.getColorIdForGeneralPurposeString(colorName),
            thread.lastActiveTs, {
              'driver': event[1],
              'context': event[3]
            },
            duration);
        thread.thread.sliceGroup.pushSlice(slice);
      }
      if (thread.thread.sliceGroup.openSliceCount > 0) {
        thread.thread.sliceGroup.endSlice(ts);
      }
      thread.lastActiveTs = ts;
    },

    fenceEnableSignalEvent(eventName, cpuNumber, pid, ts, eventBase) {
      const event = fenceRE.exec(eventBase.details);
      if (!event) return false;

      if (eventBase.tgid === undefined) {
        return false;
      }
      const thread = this.importer.getOrCreatePseudoThread(event[2]);
      const name = 'fence_enable(' + event[4] + ')';
      const colorName = 'fence(' + event[4] + ')';

      if (thread.lastActiveTs !== undefined) {
        const duration = ts - thread.lastActiveTs;
        const slice = new tr.model.ThreadSlice(
            '', name,
            ColorScheme.getColorIdForGeneralPurposeString(colorName),
            thread.lastActiveTs, {
              'driver': event[1],
              'context': event[3]
            },
            duration);
        thread.thread.sliceGroup.pushSlice(slice);
      }
      if (thread.thread.sliceGroup.openSliceCount > 0) {
        thread.thread.sliceGroup.endSlice(ts);
      }
      thread.lastActiveTs = ts;
    },

    fenceSignaledEvent(eventName, cpuNumber, pid, ts, eventBase) {
      const event = fenceRE.exec(eventBase.details);
      if (!event) return false;

      if (eventBase.tgid === undefined) {
        return false;
      }
      const thread = this.importer.getOrCreatePseudoThread(event[2]);
      const name = 'fence_signal(' + event[4] + ')';
      const colorName = 'fence(' + event[4] + ')';

      if (thread.lastActiveTs !== undefined) {
        const duration = ts - thread.lastActiveTs;
        const slice = new tr.model.ThreadSlice(
            '', name,
            ColorScheme.getColorIdForGeneralPurposeString(colorName),
            thread.lastActiveTs, {
              'driver': event[1],
              'context': event[3]
            },
            duration);
        thread.thread.sliceGroup.pushSlice(slice);
      }
      if (thread.thread.sliceGroup.openSliceCount > 0) {
        thread.thread.sliceGroup.endSlice(ts);
      }
      thread.lastActiveTs = ts;

      return true;
    },

  };

  Parser.register(FenceParser);

  return {
    FenceParser,
  };
});
</script>