summaryrefslogtreecommitdiff
path: root/src/mongo/db/test_output/exec/sbe/s_b_e_prim_binary_test/fill_empty_with_constant.txt
blob: 9d23c3d7d40e7f5b10d2a8d5c1bcd778c19049f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Golden test output of SBEPrimBinaryTest/FillEmptyWithConstant
== VARIATION rhs constant: Nothing
-- INPUT EXPRESSION:
(s1 ?: Nothing) 

-- COMPILED EXPRESSION:
[0x0000-0x0019]
0x0000: pushAccessVal(accessor: <accessor>);
0x0009: jmpNotNothing(target: 0x0019);
0x000e: pop();
0x000f: pushConstVal(value: Nothing);


-- EXECUTE VARIATION:
SLOTS: [1: Nothing]
RESULT: Nothing

-- EXECUTE VARIATION:
SLOTS: [1: null]
RESULT: null

-- EXECUTE VARIATION:
SLOTS: [1: true]
RESULT: true

-- EXECUTE VARIATION:
SLOTS: [1: true]
RESULT: true

== VARIATION rhs constant: null
-- INPUT EXPRESSION:
(s2 ?: null) 

-- COMPILED EXPRESSION:
[0x0000-0x000b]
0x0000: pushAccessVal(accessor: <accessor>);
0x0009: fillEmptyImm(k: Null);


-- EXECUTE VARIATION:
SLOTS: [1: Nothing, 2: Nothing]
RESULT: null

-- EXECUTE VARIATION:
SLOTS: [1: null, 2: null]
RESULT: null

-- EXECUTE VARIATION:
SLOTS: [1: true, 2: true]
RESULT: true

-- EXECUTE VARIATION:
SLOTS: [1: true, 2: true]
RESULT: true

== VARIATION rhs constant: true
-- INPUT EXPRESSION:
(s3 ?: true) 

-- COMPILED EXPRESSION:
[0x0000-0x000b]
0x0000: pushAccessVal(accessor: <accessor>);
0x0009: fillEmptyImm(k: True);


-- EXECUTE VARIATION:
SLOTS: [1: Nothing, 2: Nothing, 3: Nothing]
RESULT: true

-- EXECUTE VARIATION:
SLOTS: [1: null, 2: null, 3: null]
RESULT: null

-- EXECUTE VARIATION:
SLOTS: [1: true, 2: true, 3: true]
RESULT: true

-- EXECUTE VARIATION:
SLOTS: [1: true, 2: true, 3: true]
RESULT: true

== VARIATION rhs constant: true
-- INPUT EXPRESSION:
(s4 ?: true) 

-- COMPILED EXPRESSION:
[0x0000-0x000b]
0x0000: pushAccessVal(accessor: <accessor>);
0x0009: fillEmptyImm(k: True);


-- EXECUTE VARIATION:
SLOTS: [1: Nothing, 2: Nothing, 3: Nothing, 4: Nothing]
RESULT: true

-- EXECUTE VARIATION:
SLOTS: [1: null, 2: null, 3: null, 4: null]
RESULT: null

-- EXECUTE VARIATION:
SLOTS: [1: true, 2: true, 3: true, 4: true]
RESULT: true

-- EXECUTE VARIATION:
SLOTS: [1: true, 2: true, 3: true, 4: true]
RESULT: true