Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(298)

Unified Diff: test/cctest/interpreter/bytecode_expectations/GlobalCompoundExpressions.golden

Issue 2707873002: Collect type profile for DevTools. (Closed)
Patch Set: Use constructor name if available. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/cctest/interpreter/bytecode_expectations/GlobalCompoundExpressions.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/GlobalCompoundExpressions.golden b/test/cctest/interpreter/bytecode_expectations/GlobalCompoundExpressions.golden
index 4d04f6a3fae31dfd61b5bd2877cf860cc553688c..c7dd653bebfc458b82a1d5086237947986ea726c 100644
--- a/test/cctest/interpreter/bytecode_expectations/GlobalCompoundExpressions.golden
+++ b/test/cctest/interpreter/bytecode_expectations/GlobalCompoundExpressions.golden
@@ -12,14 +12,14 @@ snippet: "
function f() { return global &= 1; }
f();
"
-frame size: 1
+frame size: 2
parameter count: 1
bytecode array length: 14
bytecodes: [
/* 26 E> */ B(StackCheck),
/* 31 S> */ B(LdaGlobal), U8(0), U8(2),
- B(Star), R(0),
- B(BitwiseAndSmi), I8(1), R(0), U8(4),
+ B(Star), R(1),
+ B(BitwiseAndSmi), I8(1), R(1), U8(4),
/* 45 E> */ B(StaGlobalSloppy), U8(0), U8(5),
/* 51 S> */ B(Return),
]
@@ -35,14 +35,14 @@ snippet: "
function f() { return unallocated += 1; }
f();
"
-frame size: 1
+frame size: 2
parameter count: 1
bytecode array length: 14
bytecodes: [
/* 27 E> */ B(StackCheck),
/* 32 S> */ B(LdaGlobal), U8(0), U8(2),
- B(Star), R(0),
- B(AddSmi), I8(1), R(0), U8(4),
+ B(Star), R(1),
+ B(AddSmi), I8(1), R(1), U8(4),
/* 51 E> */ B(StaGlobalSloppy), U8(0), U8(5),
/* 57 S> */ B(Return),
]

Powered by Google App Engine
This is Rietveld 408576698