blob: 5f0ec7f6c7a687829aefd08649d043ea16c2d0a7 [file] [log] [blame]
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001// Copyright 2011 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28/**
29 * @fileoverview Log Reader is used to process log file produced by V8.
30 */
31
Steve Blocka7e24c12009-10-30 11:49:00 +000032
33/**
34 * Base class for processing log files.
35 *
36 * @param {Array.<Object>} dispatchTable A table used for parsing and processing
37 * log records.
38 * @constructor
39 */
Steve Block1e0659c2011-05-24 12:43:12 +010040function LogReader(dispatchTable) {
Steve Blocka7e24c12009-10-30 11:49:00 +000041 /**
42 * @type {Array.<Object>}
43 */
44 this.dispatchTable_ = dispatchTable;
Andrei Popescu31002712010-02-23 13:46:05 +000045
46 /**
47 * Current line.
48 * @type {number}
49 */
50 this.lineNum_ = 0;
51
52 /**
53 * CSV lines parser.
Steve Block1e0659c2011-05-24 12:43:12 +010054 * @type {CsvParser}
Andrei Popescu31002712010-02-23 13:46:05 +000055 */
Steve Block1e0659c2011-05-24 12:43:12 +010056 this.csvParser_ = new CsvParser();
Steve Blocka7e24c12009-10-30 11:49:00 +000057};
58
59
60/**
Steve Blocka7e24c12009-10-30 11:49:00 +000061 * Used for printing error messages.
62 *
63 * @param {string} str Error message.
64 */
Steve Block1e0659c2011-05-24 12:43:12 +010065LogReader.prototype.printError = function(str) {
Steve Blocka7e24c12009-10-30 11:49:00 +000066 // Do nothing.
67};
68
69
70/**
71 * Processes a portion of V8 profiler event log.
72 *
73 * @param {string} chunk A portion of log.
74 */
Steve Block1e0659c2011-05-24 12:43:12 +010075LogReader.prototype.processLogChunk = function(chunk) {
Steve Blocka7e24c12009-10-30 11:49:00 +000076 this.processLog_(chunk.split('\n'));
77};
78
79
80/**
Andrei Popescu31002712010-02-23 13:46:05 +000081 * Processes a line of V8 profiler event log.
82 *
83 * @param {string} line A line of log.
84 */
Steve Block1e0659c2011-05-24 12:43:12 +010085LogReader.prototype.processLogLine = function(line) {
Andrei Popescu31002712010-02-23 13:46:05 +000086 this.processLog_([line]);
87};
88
89
90/**
Steve Blocka7e24c12009-10-30 11:49:00 +000091 * Processes stack record.
92 *
93 * @param {number} pc Program counter.
Leon Clarked91b9f72010-01-27 17:25:45 +000094 * @param {number} func JS Function.
Steve Blocka7e24c12009-10-30 11:49:00 +000095 * @param {Array.<string>} stack String representation of a stack.
96 * @return {Array.<number>} Processed stack.
97 */
Steve Block1e0659c2011-05-24 12:43:12 +010098LogReader.prototype.processStack = function(pc, func, stack) {
Leon Clarked91b9f72010-01-27 17:25:45 +000099 var fullStack = func ? [pc, func] : [pc];
Steve Blocka7e24c12009-10-30 11:49:00 +0000100 var prevFrame = pc;
101 for (var i = 0, n = stack.length; i < n; ++i) {
102 var frame = stack[i];
103 var firstChar = frame.charAt(0);
104 if (firstChar == '+' || firstChar == '-') {
105 // An offset from the previous frame.
106 prevFrame += parseInt(frame, 16);
107 fullStack.push(prevFrame);
108 // Filter out possible 'overflow' string.
109 } else if (firstChar != 'o') {
110 fullStack.push(parseInt(frame, 16));
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400111 } else {
112 print("dropping: " + frame);
Steve Blocka7e24c12009-10-30 11:49:00 +0000113 }
114 }
115 return fullStack;
116};
117
118
119/**
120 * Returns whether a particular dispatch must be skipped.
121 *
122 * @param {!Object} dispatch Dispatch record.
123 * @return {boolean} True if dispatch must be skipped.
124 */
Steve Block1e0659c2011-05-24 12:43:12 +0100125LogReader.prototype.skipDispatch = function(dispatch) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000126 return false;
127};
128
129
130/**
131 * Does a dispatch of a log record.
132 *
133 * @param {Array.<string>} fields Log record.
134 * @private
135 */
Steve Block1e0659c2011-05-24 12:43:12 +0100136LogReader.prototype.dispatchLogRow_ = function(fields) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000137 // Obtain the dispatch.
138 var command = fields[0];
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100139 if (!(command in this.dispatchTable_)) return;
140
Steve Blocka7e24c12009-10-30 11:49:00 +0000141 var dispatch = this.dispatchTable_[command];
142
143 if (dispatch === null || this.skipDispatch(dispatch)) {
144 return;
145 }
146
147 // Parse fields.
148 var parsedFields = [];
149 for (var i = 0; i < dispatch.parsers.length; ++i) {
150 var parser = dispatch.parsers[i];
151 if (parser === null) {
152 parsedFields.push(fields[1 + i]);
153 } else if (typeof parser == 'function') {
154 parsedFields.push(parser(fields[1 + i]));
155 } else {
156 // var-args
157 parsedFields.push(fields.slice(1 + i));
158 break;
159 }
160 }
161
162 // Run the processor.
163 dispatch.processor.apply(this, parsedFields);
164};
165
166
167/**
Steve Blocka7e24c12009-10-30 11:49:00 +0000168 * Processes log lines.
169 *
170 * @param {Array.<string>} lines Log lines.
171 * @private
172 */
Steve Block1e0659c2011-05-24 12:43:12 +0100173LogReader.prototype.processLog_ = function(lines) {
Andrei Popescu31002712010-02-23 13:46:05 +0000174 for (var i = 0, n = lines.length; i < n; ++i, ++this.lineNum_) {
175 var line = lines[i];
176 if (!line) {
177 continue;
178 }
179 try {
Andrei Popescu31002712010-02-23 13:46:05 +0000180 var fields = this.csvParser_.parseLine(line);
Steve Blocka7e24c12009-10-30 11:49:00 +0000181 this.dispatchLogRow_(fields);
Andrei Popescu31002712010-02-23 13:46:05 +0000182 } catch (e) {
183 this.printError('line ' + (this.lineNum_ + 1) + ': ' + (e.message || e));
Steve Blocka7e24c12009-10-30 11:49:00 +0000184 }
185 }
186};