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

Side by Side Diff: test/cctest/interpreter/bytecode_expectations/DeadCodeRemoval.golden

Issue 1947403002: [interpreter] Introduce bytecode generation pipeline. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix return type of BytecodeSourceInfo::is_statement() Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 # 1 #
2 # Autogenerated by generate-bytecode-expectations. 2 # Autogenerated by generate-bytecode-expectations.
3 # 3 #
4 4
5 --- 5 ---
6 pool type: number 6 pool type: number
7 execute: yes 7 execute: yes
8 wrap: yes 8 wrap: yes
9 9
10 --- 10 ---
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 ] 59 ]
60 handlers: [ 60 handlers: [
61 ] 61 ]
62 62
63 --- 63 ---
64 snippet: " 64 snippet: "
65 var a = 1; if (a) { return 1; }; return 2; 65 var a = 1; if (a) { return 1; }; return 2;
66 " 66 "
67 frame size: 1 67 frame size: 1
68 parameter count: 1 68 parameter count: 1
69 bytecode array length: 13 69 bytecode array length: 14
70 bytecodes: [ 70 bytecodes: [
71 B(StackCheck), 71 B(StackCheck),
72 B(LdaSmi), U8(1), 72 B(LdaSmi), U8(1),
73 B(Star), R(0), 73 B(Star), R(0),
74 B(Nop),
74 B(JumpIfToBooleanFalse), U8(5), 75 B(JumpIfToBooleanFalse), U8(5),
75 B(LdaSmi), U8(1), 76 B(LdaSmi), U8(1),
76 B(Return), 77 B(Return),
77 B(LdaSmi), U8(2), 78 B(LdaSmi), U8(2),
78 B(Return), 79 B(Return),
79 ] 80 ]
80 constant pool: [ 81 constant pool: [
81 ] 82 ]
82 handlers: [ 83 handlers: [
83 ] 84 ]
84 85
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698