aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Stack.php
blob: 3a407641812dc8b564a4b87f59ae4f55c7d502b3 (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution;

use Nsfisis\Waddiwasi\Structure\Types\RefType;

final class Stack
{
    /**
     * @var list<StackEntries\Frame>
     */
    private array $frames = [];

    /**
     * @param list<StackEntry> $entries
     */
    public function __construct(
        private array $entries,
    ) {
    }

    public function pushFrame(StackEntries\Frame $frame): void
    {
        $this->push($frame);
        $this->frames[] = $frame;
    }

    public function pushLabel(StackEntries\Label $label): void
    {
        $this->push($label);
    }

    public function pushValue(Val $val): void
    {
        $this->push(StackEntry::Value($val));
    }

    public function pushBool(bool $value): void
    {
        $this->pushValue(Val::NumI32((int)$value));
    }

    /**
     * @param S32 $value
     */
    public function pushI32(int $value): void
    {
        $this->pushValue(Val::NumI32($value));
    }

    /**
     * @param S64 $value
     */
    public function pushI64(int $value): void
    {
        $this->pushValue(Val::NumI64($value));
    }

    /**
     * @param F32 $value
     */
    public function pushF32(float $value): void
    {
        $this->pushValue(Val::NumF32($value));
    }

    /**
     * @param F64 $value
     */
    public function pushF64(float $value): void
    {
        $this->pushValue(Val::NumF64($value));
    }

    public function pushRefNull(RefType $type): void
    {
        $this->pushValue(Val::RefNull($type));
    }

    public function pushRefFunc(FuncAddr $addr): void
    {
        $this->pushValue(Val::RefFunc($addr));
    }

    public function pushRefExtern(ExternAddr $addr): void
    {
        $this->pushValue(Val::RefExtern($addr));
    }

    public function popFrame(): StackEntries\Frame
    {
        $result = $this->pop();
        assert($result instanceof StackEntries\Frame);
        array_pop($this->frames);
        return $result;
    }

    public function popValue(): Val
    {
        $result = $this->pop();
        assert($result instanceof StackEntries\Value, 'Expected a value on the stack, but got ' . print_r($result, true));
        return $result->inner;
    }

    /**
     * @return list<Val>
     */
    public function popNValues(int $n): array
    {
        $results = [];
        for ($i = 0; $i < $n; $i++) {
            $results[] = $this->popValue();
        }
        return $results;
    }

    /**
     * @return S32
     */
    public function popI32(): int
    {
        $v = $this->popValue();
        assert($v instanceof Vals\Num);
        assert($v->inner instanceof Nums\I32);
        return $v->inner->value;
    }

    /**
     * @return S64
     */
    public function popI64(): int
    {
        $v = $this->popValue();
        assert($v instanceof Vals\Num);
        assert($v->inner instanceof Nums\I64);
        return $v->inner->value;
    }

    /**
     * @return F32
     */
    public function popF32(): float
    {
        $v = $this->popValue();
        assert($v instanceof Vals\Num);
        assert($v->inner instanceof Nums\F32_);
        return $v->inner->value;
    }

    /**
     * @return F64
     */
    public function popF64(): float
    {
        $v = $this->popValue();
        assert($v instanceof Vals\Num);
        assert($v->inner instanceof Nums\F64_);
        return $v->inner->value;
    }

    public function popRef(): Ref
    {
        $v = $this->popValue();
        assert($v instanceof Vals\Ref);
        return $v->inner;
    }

    /**
     * @return list<Val>
     */
    public function popValuesToLabel(): array
    {
        $results = [];
        while (!$this->isEmpty()) {
            $top = $this->pop();
            if ($top instanceof StackEntries\Value) {
                $results[] = $top->inner;
            } else {
                assert($top instanceof StackEntries\Label);
                break;
            }
        }
        return $results;
    }

    public function popEntriesToCurrentFrame(): void
    {
        while (!$this->isEmpty()) {
            if ($this->pop() instanceof StackEntries\Frame) {
                break;
            }
        }
        array_pop($this->frames);
    }

    public function top(): ?StackEntry
    {
        $n = array_key_last($this->entries);
        return $n === null ? null : $this->entries[$n];
    }

    public function count(): int
    {
        return count($this->entries);
    }

    public function isEmpty(): bool
    {
        return $this->count() === 0;
    }

    public function currentFrame(): StackEntries\Frame
    {
        assert(count($this->frames) !== 0);
        return $this->frames[count($this->frames) - 1];
    }

    private function push(StackEntry $entry): void
    {
        $this->entries[] = $entry;
    }

    private function pop(): ?StackEntry
    {
        return array_pop($this->entries);
    }
}