43 lines
1 KiB
C
43 lines
1 KiB
C
/**
|
|
* This file is part of the Fun programming language.
|
|
* https://fun-lang.xyz/
|
|
*
|
|
* Copyright 2026 Johannes Findeisen <you@hanez.org>
|
|
* Licensed under the terms of the Apache-2.0 license.
|
|
* https://opensource.org/license/apache-2-0
|
|
*/
|
|
|
|
/**
|
|
* @file exp.c
|
|
* @brief Implements the OP_EXP opcode using C99 math.h exp().
|
|
*
|
|
* VM opcode snippet included by vm.c. Provides the natural exponential function.
|
|
*
|
|
* Behavior:
|
|
* - Pops one numeric operand (int or float).
|
|
* - Computes e^x in double precision.
|
|
* - Pushes a VAL_FLOAT result.
|
|
*
|
|
* Stack effect:
|
|
* - Pop: x
|
|
* - Push: exp(x)
|
|
*
|
|
* Types:
|
|
* - Accepts VAL_INT and VAL_FLOAT; others raise a runtime error.
|
|
*/
|
|
|
|
#include <math.h>
|
|
|
|
case OP_EXP: {
|
|
Value v = pop_value(vm);
|
|
if (v.type == VAL_INT || v.type == VAL_FLOAT) {
|
|
double x = (v.type == VAL_FLOAT) ? v.d : (double)v.i;
|
|
double r = exp(x);
|
|
push_value(vm, make_float(r));
|
|
free_value(v);
|
|
} else {
|
|
fprintf(stderr, "Runtime type error: EXP expects number, got %s\n", value_type_name(v.type));
|
|
exit(1);
|
|
}
|
|
break;
|
|
}
|