summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/fast-jit/fe/jit_emit_const.c
blob: 1bbc83c2f35b442a911f61450a55139c5aa63f84 (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
/*
 * Copyright (C) 2019 Intel Corporation. All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

#include "jit_emit_const.h"
#include "../jit_frontend.h"

bool
jit_compile_op_i32_const(JitCompContext *cc, int32 i32_const)
{
    JitReg value = NEW_CONST(I32, i32_const);
    PUSH_I32(value);
    return true;
fail:
    return false;
}

bool
jit_compile_op_i64_const(JitCompContext *cc, int64 i64_const)
{
    JitReg value = NEW_CONST(I64, i64_const);
    PUSH_I64(value);
    return true;
fail:
    return false;
}

bool
jit_compile_op_f32_const(JitCompContext *cc, float32 f32_const)
{
    JitReg value = NEW_CONST(F32, f32_const);
    PUSH_F32(value);
    return true;
fail:
    return false;
}

bool
jit_compile_op_f64_const(JitCompContext *cc, float64 f64_const)
{
    JitReg value = NEW_CONST(F64, f64_const);
    PUSH_F64(value);
    return true;
fail:
    return false;
}