aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Stack.php
blob: dfecfec842578cfb4d0d8592fa563381534671b5 (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
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution;

use Nsfisis\Waddiwasi\Structure\Types\RefType;
use function assert;
use function count;
use function is_float;
use function is_int;
use function is_null;

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

    private ?Frame $currentFrame = null;

    /**
     * @param list<int|float|Ref|Frame|Label> $entries
     */
    public function __construct(
        private array $entries,
    ) {
    }

    public function pushFrame(Frame $frame): void
    {
        if ($this->getCallStackLimit() <= count($this->frames)) {
            throw new StackOverflowException();
        }
        $this->push($frame);
        $this->frames[] = $frame;
        $this->currentFrame = $frame;
    }

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

    public function pushValue(int|float|Ref $val): void
    {
        $this->push($val);
    }

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

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

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

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

    public function clear(): void
    {
        $this->frames = [];
        $this->currentFrame = null;
        $this->entries = [];
    }

    public function popFrame(): Frame
    {
        $result = $this->pop();
        assert($result instanceof Frame);
        array_pop($this->frames);
        if (count($this->frames) === 0) {
            $this->currentFrame = null;
        } else {
            $this->currentFrame = end($this->frames);
        }
        return $result;
    }

    public function popValue(): int|float|Ref
    {
        $result = $this->pop();
        assert(
            is_int($result) || is_float($result) || $result instanceof Ref,
            'Expected a value on the stack, but got ' . print_r($result, true),
        );
        return $result;
    }

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

    public function popInt(): int
    {
        $v = $this->popValue();
        assert(is_int($v), "Expected an int on top of the stack, but got " . self::getValueTypeName($v));
        return $v;
    }

    /**
     * @return F32
     */
    public function popFloat(): float
    {
        $v = $this->popValue();
        assert(is_float($v), "Expected a float on top of the stack, but got " . self::getValueTypeName($v));
        return $v;
    }

    public function popRef(): Ref
    {
        $v = $this->popValue();
        assert($v instanceof Ref, "Expected a Ref on top of the stack, but got " . self::getValueTypeName($v));
        return $v;
    }

    /**
     * @return list<int|float|Ref>
     */
    public function popValuesToLabel(): array
    {
        $results = [];
        while (!$this->isEmpty()) {
            $top = $this->pop();
            if ($top instanceof Label) {
                break;
            } else {
                assert(is_int($top) || is_float($top) || $top instanceof Ref);
                $results[] = $top;
            }
        }
        return $results;
    }

    public function popEntriesToCurrentFrame(): void
    {
        while (!$this->isEmpty()) {
            if ($this->pop() instanceof Frame) {
                break;
            }
        }
        array_pop($this->frames);
        if (count($this->frames) === 0) {
            $this->currentFrame = null;
        } else {
            $this->currentFrame = end($this->frames);
        }
    }

    public function top(): int|float|Ref|Frame|Label|null
    {
        $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(): Frame
    {
        assert($this->currentFrame !== null);
        return $this->currentFrame;
    }

    public function getCallStackLimit(): int
    {
        return 1024;
    }

    private function push(int|float|Ref|Frame|Label $entry): void
    {
        $this->entries[] = $entry;
    }

    private function pop(): int|float|Ref|Frame|Label|null
    {
        return array_pop($this->entries);
    }

    private static function getValueTypeName(int|float|Ref|Frame|Label|null $value): string
    {
        return match (true) {
            is_null($value) => 'null',
            is_int($value) => 'int',
            is_float($value) => 'float',
            $value instanceof Ref => 'Ref',
            $value instanceof Frame => 'Frame',
            $value instanceof Label => 'Label',
        };
    }
}