Fun 0.41.5
The programming language that makes you have fun!
Loading...
Searching...
No Matches
shr.c
Go to the documentation of this file.
1/*
2 * This file is part of the Fun programming language.
3 * https://fun-lang.xyz/
4 *
5 * Copyright 2025 Johannes Findeisen <you@hanez.org>
6 * Licensed under the terms of the Apache-2.0 license.
7 * https://opensource.org/license/apache-2-0
8 */
9
10/**
11 * @file shr.c
12 * @brief Implements the OP_SHR opcode logical right shift (uint32).
13 *
14 * Opcode snippet included by vm.c. Performs a 32-bit unsigned logical right
15 * shift of an integer operand by a masked shift count.
16 *
17 * Stack effects:
18 * - pops: s, a
19 * - pushes: (uint32_t)(a >> (s & 31))
20 *
21 * Notes:
22 * - Both a (value) and s (shift) are taken from VAL_INT; non-integers are 0.
23 * - The shift count is masked to 0..31. A zero shift returns a unchanged.
24 * - Logical (zero-filling) right shift is used (no sign extend).
25 * - Result is pushed as VAL_INT with the 32-bit value preserved in the low bits.
26 */
27
28case OP_SHR: {
29 Value vs = pop_value(vm);
31 uint32_t a = (va.type == VAL_INT) ? (uint32_t)va.i : 0u;
32 uint32_t s = (vs.type == VAL_INT) ? (uint32_t)vs.i : 0u;
33 s &= 31u;
34 uint32_t r = (s == 0u) ? a : (a >> s);
37 push_value(vm, make_int((int64_t)(uint64_t)r));
38 break;
39}
Value a
Definition add.c:37
Value va
Definition band.c:30
uint32_t r
Definition band.c:33
@ OP_SHR
Definition bytecode.h:162
uint32_t s
Definition rol.c:31
push_value(vm, make_int((int64_t)(uint64_t) r))
free_value(vs)
Tagged union representing a Fun value.
Definition value.h:68
int64_t i
Definition value.h:71
ValueType type
Definition value.h:69
Value make_int(int64_t v)
Construct a Value representing a 64-bit integer.
Definition value.c:51
@ VAL_INT
Definition value.h:51
static Value pop_value(VM *vm)
Pop a Value from the VM operand stack.
Definition vm.c:580