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

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

Issue 1783483002: [interpreter] Add support for scalable operands. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Re-generate golden files. Created 4 years, 9 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: 14
20 bytecodes: [ 20 bytecodes: [
21 B(StackCheck), 21 B(StackCheck),
22 B(LdaGlobal), U8(0), U8(1), 22 B(LdaGlobal), U8(0), U8(1),
23 B(Star), R(0), 23 B(Star), R(0),
24 B(LdaSmi8), U8(1), 24 B(LdaSmi), U8(1),
25 B(BitwiseAnd), R(0), 25 B(BitwiseAnd), R(0),
26 B(StaGlobalSloppy), U8(0), U8(3), 26 B(StaGlobalSloppy), U8(0), U8(3),
27 B(Return), 27 B(Return),
28 ] 28 ]
29 constant pool: [ 29 constant pool: [
30 "global", 30 "global",
31 ] 31 ]
32 handlers: [ 32 handlers: [
33 ] 33 ]
34 34
35 --- 35 ---
36 snippet: " 36 snippet: "
37 unallocated = 1; 37 unallocated = 1;
38 function f() { return unallocated += 1; } 38 function f() { return unallocated += 1; }
39 f(); 39 f();
40 " 40 "
41 frame size: 1 41 frame size: 1
42 parameter count: 1 42 parameter count: 1
43 bytecode array length: 14 43 bytecode array length: 14
44 bytecodes: [ 44 bytecodes: [
45 B(StackCheck), 45 B(StackCheck),
46 B(LdaGlobal), U8(0), U8(1), 46 B(LdaGlobal), U8(0), U8(1),
47 B(Star), R(0), 47 B(Star), R(0),
48 B(LdaSmi8), U8(1), 48 B(LdaSmi), U8(1),
49 B(Add), R(0), 49 B(Add), R(0),
50 B(StaGlobalSloppy), U8(0), U8(3), 50 B(StaGlobalSloppy), U8(0), U8(3),
51 B(Return), 51 B(Return),
52 ] 52 ]
53 constant pool: [ 53 constant pool: [
54 "unallocated", 54 "unallocated",
55 ] 55 ]
56 handlers: [ 56 handlers: [
57 ] 57 ]
58 58
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698