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

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

Issue 1985753002: [interpreter] Introduce fused bytecodes for common sequences. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. 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: string 6 pool type: string
7 execute: yes 7 execute: yes
8 wrap: no 8 wrap: no
9 test function name: f 9 test function name: f
10 10
11 --- 11 ---
12 snippet: " 12 snippet: "
13 var global = 1; 13 var global = 1;
14 function f() { return global &= 1; } 14 function f() { return global &= 1; }
15 f(); 15 f();
16 " 16 "
17 frame size: 1 17 frame size: 1
18 parameter count: 1 18 parameter count: 1
19 bytecode array length: 14 19 bytecode array length: 13
20 bytecodes: [ 20 bytecodes: [
21 /* 26 E> */ B(StackCheck), 21 /* 26 E> */ B(StackCheck),
22 /* 31 S> */ B(LdaGlobal), U8(0), U8(1), 22 /* 31 S> */ B(LdrGlobal), U8(0), U8(1), R(0),
23 B(Star), R(0),
24 B(LdaSmi), U8(1), 23 B(LdaSmi), U8(1),
25 B(BitwiseAnd), R(0), 24 B(BitwiseAnd), R(0),
26 /* 45 E> */ B(StaGlobalSloppy), U8(0), U8(3), 25 /* 45 E> */ B(StaGlobalSloppy), U8(0), U8(3),
27 /* 51 S> */ B(Return), 26 /* 51 S> */ B(Return),
28 ] 27 ]
29 constant pool: [ 28 constant pool: [
30 "global", 29 "global",
31 ] 30 ]
32 handlers: [ 31 handlers: [
33 ] 32 ]
34 33
35 --- 34 ---
36 snippet: " 35 snippet: "
37 unallocated = 1; 36 unallocated = 1;
38 function f() { return unallocated += 1; } 37 function f() { return unallocated += 1; }
39 f(); 38 f();
40 " 39 "
41 frame size: 1 40 frame size: 1
42 parameter count: 1 41 parameter count: 1
43 bytecode array length: 14 42 bytecode array length: 13
44 bytecodes: [ 43 bytecodes: [
45 /* 27 E> */ B(StackCheck), 44 /* 27 E> */ B(StackCheck),
46 /* 32 S> */ B(LdaGlobal), U8(0), U8(1), 45 /* 32 S> */ B(LdrGlobal), U8(0), U8(1), R(0),
47 B(Star), R(0),
48 B(LdaSmi), U8(1), 46 B(LdaSmi), U8(1),
49 B(Add), R(0), 47 B(Add), R(0),
50 /* 51 E> */ B(StaGlobalSloppy), U8(0), U8(3), 48 /* 51 E> */ B(StaGlobalSloppy), U8(0), U8(3),
51 /* 57 S> */ B(Return), 49 /* 57 S> */ B(Return),
52 ] 50 ]
53 constant pool: [ 51 constant pool: [
54 "unallocated", 52 "unallocated",
55 ] 53 ]
56 handlers: [ 54 handlers: [
57 ] 55 ]
58 56
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698