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

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

Issue 2272083003: Merge DeclarationScope::temps_ and Scope::ordered_variables_ into Scope::locals_ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixes + add cornercase test + still failing cornercase test Created 4 years, 3 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: string 6 pool type: string
7 execute: yes 7 execute: yes
8 wrap: yes 8 wrap: yes
9 do expressions: yes 9 do expressions: yes
10 10
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 snippet: " 52 snippet: "
53 while(true) { var a = 10; a = do { ++a; break; }; a = 20; } 53 while(true) { var a = 10; a = do { ++a; break; }; a = 20; }
54 " 54 "
55 frame size: 2 55 frame size: 2
56 parameter count: 1 56 parameter count: 1
57 bytecode array length: 16 57 bytecode array length: 16
58 bytecodes: [ 58 bytecodes: [
59 /* 30 E> */ B(StackCheck), 59 /* 30 E> */ B(StackCheck),
60 /* 34 E> */ B(StackCheck), 60 /* 34 E> */ B(StackCheck),
61 /* 56 S> */ B(LdaSmi), U8(10), 61 /* 56 S> */ B(LdaSmi), U8(10),
62 B(Star), R(0),
63 /* 69 S> */ B(Inc), U8(1),
64 B(Star), R(0),
62 B(Star), R(1), 65 B(Star), R(1),
63 /* 69 S> */ B(Inc), U8(1),
64 B(Star), R(1),
65 B(Star), R(0),
66 /* 74 S> */ B(Jump), U8(2), 66 /* 74 S> */ B(Jump), U8(2),
67 B(LdaUndefined), 67 B(LdaUndefined),
68 /* 94 S> */ B(Return), 68 /* 94 S> */ B(Return),
69 ] 69 ]
70 constant pool: [ 70 constant pool: [
71 ] 71 ]
72 handlers: [ 72 handlers: [
73 ] 73 ]
74 74
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698