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

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

Issue 2655853010: [TypeFeedbackVector] Combine the literals array and the feedback vector. (Closed)
Patch Set: gyp file Created 3 years, 10 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 wrap: yes 6 wrap: yes
7 7
8 --- 8 ---
9 snippet: " 9 snippet: "
10 return /ab+d/; 10 return /ab+d/;
11 " 11 "
12 frame size: 0 12 frame size: 0
13 parameter count: 1 13 parameter count: 1
14 bytecode array length: 6 14 bytecode array length: 6
15 bytecodes: [ 15 bytecodes: [
16 /* 30 E> */ B(StackCheck), 16 /* 30 E> */ B(StackCheck),
17 /* 34 S> */ B(CreateRegExpLiteral), U8(0), U8(0), U8(0), 17 /* 34 S> */ B(CreateRegExpLiteral), U8(0), U8(2), U8(0),
18 /* 49 S> */ B(Return), 18 /* 49 S> */ B(Return),
19 ] 19 ]
20 constant pool: [ 20 constant pool: [
21 ONE_BYTE_INTERNALIZED_STRING_TYPE ["ab+d"], 21 ONE_BYTE_INTERNALIZED_STRING_TYPE ["ab+d"],
22 ] 22 ]
23 handlers: [ 23 handlers: [
24 ] 24 ]
25 25
26 --- 26 ---
27 snippet: " 27 snippet: "
28 return /(\\w+)\\s(\\w+)/i; 28 return /(\\w+)\\s(\\w+)/i;
29 " 29 "
30 frame size: 0 30 frame size: 0
31 parameter count: 1 31 parameter count: 1
32 bytecode array length: 6 32 bytecode array length: 6
33 bytecodes: [ 33 bytecodes: [
34 /* 30 E> */ B(StackCheck), 34 /* 30 E> */ B(StackCheck),
35 /* 34 S> */ B(CreateRegExpLiteral), U8(0), U8(0), U8(2), 35 /* 34 S> */ B(CreateRegExpLiteral), U8(0), U8(2), U8(2),
36 /* 58 S> */ B(Return), 36 /* 58 S> */ B(Return),
37 ] 37 ]
38 constant pool: [ 38 constant pool: [
39 ONE_BYTE_INTERNALIZED_STRING_TYPE ["(\u005cw+)\u005cs(\u005cw+)"], 39 ONE_BYTE_INTERNALIZED_STRING_TYPE ["(\u005cw+)\u005cs(\u005cw+)"],
40 ] 40 ]
41 handlers: [ 41 handlers: [
42 ] 42 ]
43 43
44 --- 44 ---
45 snippet: " 45 snippet: "
46 return /ab+d/.exec('abdd'); 46 return /ab+d/.exec('abdd');
47 " 47 "
48 frame size: 3 48 frame size: 3
49 parameter count: 1 49 parameter count: 1
50 bytecode array length: 23 50 bytecode array length: 23
51 bytecodes: [ 51 bytecodes: [
52 /* 30 E> */ B(StackCheck), 52 /* 30 E> */ B(StackCheck),
53 /* 34 S> */ B(CreateRegExpLiteral), U8(0), U8(0), U8(0), 53 /* 34 S> */ B(CreateRegExpLiteral), U8(0), U8(4), U8(0),
54 B(Star), R(1), 54 B(Star), R(1),
55 /* 47 E> */ B(LdaNamedProperty), R(1), U8(1), U8(4), 55 /* 47 E> */ B(LdaNamedProperty), R(1), U8(1), U8(5),
56 B(Star), R(0), 56 B(Star), R(0),
57 B(LdaConstant), U8(2), 57 B(LdaConstant), U8(2),
58 B(Star), R(2), 58 B(Star), R(2),
59 /* 48 E> */ B(CallProperty), R(0), R(1), U8(2), U8(2), 59 /* 48 E> */ B(CallProperty), R(0), R(1), U8(2), U8(2),
60 /* 62 S> */ B(Return), 60 /* 62 S> */ B(Return),
61 ] 61 ]
62 constant pool: [ 62 constant pool: [
63 ONE_BYTE_INTERNALIZED_STRING_TYPE ["ab+d"], 63 ONE_BYTE_INTERNALIZED_STRING_TYPE ["ab+d"],
64 ONE_BYTE_INTERNALIZED_STRING_TYPE ["exec"], 64 ONE_BYTE_INTERNALIZED_STRING_TYPE ["exec"],
65 ONE_BYTE_INTERNALIZED_STRING_TYPE ["abdd"], 65 ONE_BYTE_INTERNALIZED_STRING_TYPE ["abdd"],
66 ] 66 ]
67 handlers: [ 67 handlers: [
68 ] 68 ]
69 69
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698