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

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

Issue 1901083002: [Interpreter] Introduce IncStub and DecStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 8 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 ] 46 ]
47 handlers: [ 47 handlers: [
48 ] 48 ]
49 49
50 --- 50 ---
51 snippet: " 51 snippet: "
52 while(true) { var a = 10; a = do { ++a; break; }; a = 20; } 52 while(true) { var a = 10; a = do { ++a; break; }; a = 20; }
53 " 53 "
54 frame size: 2 54 frame size: 2
55 parameter count: 1 55 parameter count: 1
56 bytecode array length: 26 56 bytecode array length: 25
57 bytecodes: [ 57 bytecodes: [
58 B(StackCheck), 58 B(StackCheck),
59 B(StackCheck), 59 B(StackCheck),
60 B(LdaSmi), U8(10), 60 B(LdaSmi), U8(10),
61 B(Star), R(1), 61 B(Star), R(1),
62 B(ToNumber),
63 B(Inc), 62 B(Inc),
64 B(Star), R(1), 63 B(Star), R(1),
65 B(Star), R(0), 64 B(Star), R(0),
66 B(Jump), U8(12), 65 B(Jump), U8(12),
67 B(Ldar), R(0), 66 B(Ldar), R(0),
68 B(Star), R(1), 67 B(Star), R(1),
69 B(LdaSmi), U8(20), 68 B(LdaSmi), U8(20),
70 B(Star), R(1), 69 B(Star), R(1),
71 B(Jump), U8(-21), 70 B(Jump), U8(-20),
72 B(LdaUndefined), 71 B(LdaUndefined),
73 B(Return), 72 B(Return),
74 ] 73 ]
75 constant pool: [ 74 constant pool: [
76 ] 75 ]
77 handlers: [ 76 handlers: [
78 ] 77 ]
79 78
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698