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

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

Issue 1998203002: [Interpreter] Preserve source positions in peephole optimizer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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: mixed 6 pool type: mixed
7 execute: yes 7 execute: yes
8 wrap: yes 8 wrap: yes
9 9
10 --- 10 ---
11 snippet: " 11 snippet: "
12 var x = 0; 12 var x = 0;
13 while (false) { x = 99; break; continue; } 13 while (false) { x = 99; break; continue; }
14 return x; 14 return x;
15 " 15 "
16 frame size: 1 16 frame size: 1
17 parameter count: 1 17 parameter count: 1
18 bytecode array length: 5 18 bytecode array length: 6
19 bytecodes: [ 19 bytecodes: [
20 /* 30 E> */ B(StackCheck), 20 /* 30 E> */ B(StackCheck),
21 /* 42 S> */ B(LdaZero), 21 /* 42 S> */ B(LdaZero),
22 /* 42 E> */ B(Star), R(0), 22 /* 42 E> */ B(Star), R(0),
23 /* 88 S> */ B(Nop),
23 /* 98 S> */ B(Return), 24 /* 98 S> */ B(Return),
24 ] 25 ]
25 constant pool: [ 26 constant pool: [
26 ] 27 ]
27 handlers: [ 28 handlers: [
28 ] 29 ]
29 30
30 --- 31 ---
31 snippet: " 32 snippet: "
32 var x = 0; 33 var x = 0;
33 while (false) { 34 while (false) {
34 x = x + 1; 35 x = x + 1;
35 }; 36 };
36 return x; 37 return x;
37 " 38 "
38 frame size: 1 39 frame size: 1
39 parameter count: 1 40 parameter count: 1
40 bytecode array length: 5 41 bytecode array length: 6
41 bytecodes: [ 42 bytecodes: [
42 /* 30 E> */ B(StackCheck), 43 /* 30 E> */ B(StackCheck),
43 /* 42 S> */ B(LdaZero), 44 /* 42 S> */ B(LdaZero),
44 /* 42 E> */ B(Star), R(0), 45 /* 42 E> */ B(Star), R(0),
46 /* 77 S> */ B(Nop),
45 /* 87 S> */ B(Return), 47 /* 87 S> */ B(Return),
46 ] 48 ]
47 constant pool: [ 49 constant pool: [
48 ] 50 ]
49 handlers: [ 51 handlers: [
50 ] 52 ]
51 53
52 --- 54 ---
53 snippet: " 55 snippet: "
54 var x = 0; 56 var x = 0;
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 ] 851 ]
850 constant pool: [ 852 constant pool: [
851 InstanceType::FIXED_ARRAY_TYPE, 853 InstanceType::FIXED_ARRAY_TYPE,
852 InstanceType::SHARED_FUNCTION_INFO_TYPE, 854 InstanceType::SHARED_FUNCTION_INFO_TYPE,
853 InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE, 855 InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
854 InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE, 856 InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
855 ] 857 ]
856 handlers: [ 858 handlers: [
857 ] 859 ]
858 860
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698