blob: 2f5f4f57dedc4eb4bde274d6f9241d914037f962 (
plain) (
blame)
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
|
/*
* nanowasm, a tiny WebAssembly/Wasm interpreter
* Copyright (C) 2023-2025 Xavier Del Campo Romero
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <nanowasm/nw.h>
#include <nw/interp.h>
#include <nw/io.h>
#include <nw/ops.h>
#include <nw/routines.h>
#include <nw/stack.h>
#include <nw/types.h>
static enum nw_state pop(struct nw_interp *const i)
{
struct nw_i_sm_if *const pif = &i->sm.sm_if;
const enum nw_state n = nwp_stack_pop(i, &pif->io);
if (n)
return n;
else if (pif->condition)
nwp_interp_resume(i);
else
nwp_break(i, 0, 0);
return NW_AGAIN;
}
void nwp_op_if(struct nw_interp *const i)
{
static const struct nw_i_sm_if sm_if;
struct nw_i_sm_if *const pif = &i->sm.sm_if;
struct nw_sm_io *const io = &pif->io;
*pif = sm_if;
io->buf = &pif->condition;
io->n = sizeof pif->condition;
nwp_start_block(i, &pif->sb, pop);
}
|