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

Side by Side Diff: test/cctest/interpreter/CallGlobal.golden

Issue 1717293002: [Interpreter] Refactor bytecode generator test suite. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: std::vector instead of initializer_list, golden path as constant. Created 4 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
(Empty)
1 #
2 # Autogenerated by generate-bytecode-expectations
3 #
4
5 ---
6 pool type: string
7 execute: yes
8 wrap: no
9 test function name: f
10
11 ---
12 snippet: "
13 function t() { }
14 function f() { return t(); }
15 f()
16 "
17 frame size: 2 # in multiples of sizeof(void*)
18 parameter count: 1
19 bytecodes: [
20 B(StackCheck),
21 B(LdaUndefined),
22 B(Star), R(1),
23 B(LdaGlobal), U8(0), U8(3),
24 B(Star), R(0),
25 B(Call), R(0), R(1), U8(1), U8(1),
26 B(Return),
27 ]
28 constant pool: [
29 "t",
30 ]
31 handlers: [
32 ]
33
34 ---
35 snippet: "
36 function t(a, b, c) { }
37 function f() { return t(1, 2, 3); }
38 f()
39 "
40 frame size: 5 # in multiples of sizeof(void*)
41 parameter count: 1
42 bytecodes: [
43 B(StackCheck),
44 B(LdaUndefined),
45 B(Star), R(1),
46 B(LdaGlobal), U8(0), U8(3),
47 B(Star), R(0),
48 B(LdaSmi8), U8(1),
49 B(Star), R(2),
50 B(LdaSmi8), U8(2),
51 B(Star), R(3),
52 B(LdaSmi8), U8(3),
53 B(Star), R(4),
54 B(Call), R(0), R(1), U8(4), U8(1),
55 B(Return),
56 ]
57 constant pool: [
58 "t",
59 ]
60 handlers: [
61 ]
62
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698