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

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

Issue 2209633002: [Interpreter] Assign feedback slots for binary operations and use them in ignition. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased the patch. Created 4 years, 4 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/BreakableBlocks.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/BreakableBlocks.golden b/test/cctest/interpreter/bytecode_expectations/BreakableBlocks.golden
index 30126619390a35188e0db74851f3c21c97a522ab..f13fa9b16122143d6022fde7f69aa32f1851b86d 100644
--- a/test/cctest/interpreter/bytecode_expectations/BreakableBlocks.golden
+++ b/test/cctest/interpreter/bytecode_expectations/BreakableBlocks.golden
@@ -50,7 +50,7 @@ snippet: "
"
frame size: 5
parameter count: 1
-bytecode array length: 60
+bytecode array length: 64
bytecodes: [
/* 30 E> */ B(StackCheck),
/* 44 S> */ B(LdaZero),
@@ -59,32 +59,32 @@ bytecodes: [
B(Star), R(1),
/* 76 S> */ B(LdaSmi), U8(10),
/* 76 E> */ B(TestLessThan), R(1),
- B(JumpIfFalse), U8(46),
+ B(JumpIfFalse), U8(50),
/* 58 E> */ B(StackCheck),
/* 106 S> */ B(LdaZero),
B(Star), R(2),
/* 111 S> */ B(LdaSmi), U8(3),
/* 111 E> */ B(TestLessThan), R(2),
- B(JumpIfFalse), U8(29),
+ B(JumpIfFalse), U8(32),
/* 93 E> */ B(StackCheck),
/* 129 S> */ B(Ldar), R(0),
- B(Inc),
+ B(Inc), U8(3),
B(Star), R(0),
/* 142 S> */ B(Ldar), R(2),
- /* 150 E> */ B(Add), R(1),
+ /* 150 E> */ B(Add), R(1), U8(4),
B(Star), R(4),
B(LdaSmi), U8(12),
/* 152 E> */ B(TestEqual), R(4),
B(JumpIfFalse), U8(4),
- /* 161 S> */ B(Jump), U8(16),
+ /* 161 S> */ B(Jump), U8(18),
/* 118 S> */ B(Ldar), R(2),
- B(Inc),
+ B(Inc), U8(2),
B(Star), R(2),
- B(Jump), U8(-31),
+ B(Jump), U8(-34),
/* 84 S> */ B(Ldar), R(1),
- B(Inc),
+ B(Inc), U8(1),
B(Star), R(1),
- B(Jump), U8(-48),
+ B(Jump), U8(-52),
/* 188 S> */ B(Ldar), R(0),
/* 200 S> */ B(Return),
]

Powered by Google App Engine
This is Rietveld 408576698