summaryrefslogtreecommitdiff
path: root/deps/v8/tools/ic-processor.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/ic-processor.js')
-rw-r--r--deps/v8/tools/ic-processor.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/deps/v8/tools/ic-processor.js b/deps/v8/tools/ic-processor.js
index 9a78d16943..14f875bfdc 100644
--- a/deps/v8/tools/ic-processor.js
+++ b/deps/v8/tools/ic-processor.js
@@ -32,11 +32,12 @@ function parseState(s) {
function IcProcessor() {
- var propertyICParser = [parseInt, parseInt, parseInt, null, null, parseInt,
- null, null, null];
+ var propertyICParser = [parseInt, parseInt, parseInt, parseString,
+ parseString, parseInt, parseString, parseString, parseString];
LogReader.call(this, {
'code-creation': {
- parsers: [null, parseInt, parseInt, parseInt, parseInt, null, 'var-args'],
+ parsers: [parseString, parseInt, parseInt, parseInt, parseInt,
+ parseString, parseVarArgs],
processor: this.processCodeCreation },
'code-move': { parsers: [parseInt, parseInt],
processor: this.processCodeMove },