nomsu/lib/core/operators.nom

249 lines
8.3 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env nomsu -V6.15.13.8
2018-05-15 18:55:55 -07:00
#
This file contains definitions of operators like "+" and "and".
use "core/metaprogramming"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-07-22 16:13:33 -07:00
test:
assume (all [1 < 2, 2 > 1, 1 <= 2, 2 >= 1, 1 == 1, 1 != 2])
# Comparison Operators
2018-12-14 20:21:03 -08:00
($x < $y) compiles to "(\($x as lua expr) < \($y as lua expr))"
($x > $y) compiles to "(\($x as lua expr) > \($y as lua expr))"
($x <= $y) compiles to "(\($x as lua expr) <= \($y as lua expr))"
($x >= $y) compiles to "(\($x as lua expr) >= \($y as lua expr))"
($a == $b) compiles to "(\($a as lua expr) == \($b as lua expr))"
2018-12-30 19:04:34 -08:00
[$a isn't $b, $a is not $b, $a not= $b, $a != $b] all compile to
2018-12-30 23:58:47 -08:00
"(\($a as lua expr) ~= \($b as lua expr))"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-07-22 16:13:33 -07:00
test:
2018-12-14 20:21:03 -08:00
$x = 10
assume ($x == 10)
[$x, $y] = [10, 20]
unless (($x == 10) and ($y == 20)):
fail "mutli-assignment failed."
2018-12-14 20:21:03 -08:00
[$x, $y] = [$y, $x]
unless (($y == 10) and ($x == 20)):
fail "swapping vars failed."
2018-12-14 20:21:03 -08:00
$vals = [4, 5]
[$x, $y] = (unpack $vals)
unless (($x == 4) and ($y == 5)):
fail "unpacking failed"
2018-07-22 16:13:33 -07:00
# Variable assignment operator
2018-12-14 20:21:03 -08:00
($var = $value) compiles to:
2018-12-30 19:04:34 -08:00
lua> ("
2018-12-14 20:21:03 -08:00
local lua = LuaCode()
if \$var.type == "List" then
for i, \$assignment in ipairs(\$var) do
if i > 1 then lua:add(", ") end
2018-12-14 20:21:03 -08:00
local assignment_lua = \($assignment as lua expr)
lua:add(assignment_lua)
2018-12-14 20:21:03 -08:00
if \$assignment.type == 'Var' then
lua:add_free_vars({assignment_lua:text()})
end
2018-06-18 15:44:29 -07:00
end
lua:add(' = ')
2018-12-14 20:21:03 -08:00
if \$value.type == "List" then
if #\$value ~= #\$var then
compile_error_at(\$value,
"This assignment has too "..(#\$value > #\$var and "many" or "few").." values.",
2018-12-30 19:04:34 -08:00
"Make sure it has the same number of values on the left and right hand side \
..of the '=' operator.")
end
2018-12-14 20:21:03 -08:00
for i, \$val in ipairs(\$value) do
if i > 1 then lua:add(", ") end
2018-12-14 20:21:03 -08:00
local val_lua = \($val as lua expr)
lua:add(val_lua)
end
lua:add(";")
else
2018-12-14 20:21:03 -08:00
lua:add(\($value as lua expr), ';')
2018-06-18 15:44:29 -07:00
end
else
2018-12-14 20:21:03 -08:00
local var_lua = \($var as lua expr)
lua:add(var_lua)
2018-12-14 20:21:03 -08:00
if \$var.type == 'Var' then
lua:add_free_vars({var_lua:text()})
end
2018-12-18 19:30:01 -08:00
lua:add(' = ', \($value as lua expr))
2018-06-18 15:44:29 -07:00
end
2018-12-30 19:04:34 -08:00
return lua
")
2018-06-18 15:44:29 -07:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-06-18 15:44:29 -07:00
2018-07-22 16:13:33 -07:00
test:
2018-12-14 20:21:03 -08:00
[$x, $y] = [1, 2]
2018-12-30 19:04:34 -08:00
with [$z, $x = 999]:
2018-12-14 20:21:03 -08:00
assume $z == (nil)
$z = 999
unless ($z == 999):
fail "'with' failed."
unless ($x == 999):
fail "'with' assignment failed."
unless ($x == 1):
fail "'with' scoping failed"
unless ($z == (nil)):
fail "'with' scoping failed"
2018-12-14 20:21:03 -08:00
(with $assignments $body) compiles to:
2018-12-30 19:04:34 -08:00
lua> ("
local \$defs = LuaCode()
for i, \$item in ipairs(\$assignments) do
if i > 1 then \$defs:add("\\n") end
local item_lua = \($item as lua)
if \$item.type == 'Action' and \$item.stub == '1 =' then
item_lua:remove_free_vars(item_lua.free_vars)
2018-11-19 17:21:08 -08:00
end
2018-12-30 19:04:34 -08:00
\$defs:add("local ", item_lua, ";")
2018-06-18 15:44:29 -07:00
end
2018-12-30 19:04:34 -08:00
")
2018-12-30 23:58:47 -08:00
2018-12-30 19:04:34 -08:00
return
Lua ("
do
\$defs
\($body as lua)
end -- 'with' block
")
2018-06-18 15:44:29 -07:00
# Math Operators
2018-07-22 16:13:33 -07:00
test:
unless ((5 wrapped around 2) == 1):
fail "mod not working"
2018-12-30 19:04:34 -08:00
[$x wrapped around $y, $x mod $y] all compile to
2018-12-30 23:58:47 -08:00
"((\($x as lua expr)) % (\($y as lua expr)))"
2018-06-18 15:44:29 -07:00
# 3-part chained comparisons
# (uses a lambda to avoid re-evaluating middle value, while still being an expression)
2018-07-22 16:13:33 -07:00
test:
2018-12-14 20:21:03 -08:00
$calls = 0
(one) means:
external:
$calls = ($calls + 1)
2018-07-22 16:13:33 -07:00
return 1
unless (0 <= (one) <= 2):
fail "Three-way chained comparison failed."
unless ($calls == 1):
fail "Three-way comparison evaluated middle value multiple times"
2018-12-14 20:21:03 -08:00
($x < $y < $z) parses as ((($a $b $c) -> (($a < $b) and ($b < $c))) $x $y $z)
($x <= $y < $z) parses as ((($a $b $c) -> (($a <= $b) and ($b < $c))) $x $y $z)
($x < $y <= $z) parses as ((($a $b $c) -> (($a < $b) and ($b <= $c))) $x $y $z)
($x <= $y <= $z) parses as ((($a $b $c) -> (($a <= $b) and ($b <= $c))) $x $y $z)
($x > $y > $z) parses as ((($a $b $c) -> (($a > $b) and ($b > $c))) $x $y $z)
($x >= $y > $z) parses as ((($a $b $c) -> (($a >= $b) and ($b > $c))) $x $y $z)
($x > $y >= $z) parses as ((($a $b $c) -> (($a > $b) and ($b >= $c))) $x $y $z)
($x >= $y >= $z) parses as ((($a $b $c) -> (($a >= $b) and ($b >= $c))) $x $y $z)
2018-06-18 15:44:29 -07:00
# TODO: optimize for common case where x,y,z are all either variables or number literals
2018-06-18 15:44:29 -07:00
# Boolean Operators
2018-07-22 16:13:33 -07:00
test:
(barfer) means (fail "short circuiting failed")
2018-07-22 16:13:33 -07:00
assume (((no) and (barfer)) == (no))
assume ((no) or (yes))
assume ((yes) or (barfer))
2018-12-14 20:21:03 -08:00
($x and $y) compiles to "(\($x as lua expr) and \($y as lua expr))"
($x or $y) compiles to "(\($x as lua expr) or \($y as lua expr))"
2018-06-18 15:44:29 -07:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-06-18 15:44:29 -07:00
# Bitwise Operators
# These can break if running the precompiled code from another Lua version:
lua> ("
if \(at compilation $(LUA VERSION)) ~= \$(LUA VERSION) then
\(
fail ("
This code was precompiled with \(at compilation $(LUA VERSION)), but it is being run with \$(LUA VERSION)\
... This will cause problems with bitwise operations.
")
)
end
")
# TODO: implement OR, XOR, AND for multiple operands?
test:
assume ((~ (~ 5)) == 5)
assume ((1 | 4) == 5)
assume ((1 ~ 3) == 2)
assume ((1 & 3) == 1)
assume ((1 << 2) == 4)
assume ((4 >> 2) == 1)
# Lua 5.3 introduced bit operators like | and &. Use them when possible, otherwise
fall back to bit.bor(), bit.band(), etc.
lua> "if \((is jit) or ($(LUA API) == "Lua 5.2")) then"
[NOT $, ~ $] all compile to "Bit.bnot(\($ as lua expr))"
2018-12-30 19:04:34 -08:00
[$x OR $y, $x | $y] all compile to
"Bit.bor(\($x as lua expr), \($y as lua expr))"
2018-12-30 19:04:34 -08:00
[$x XOR $y, $x ~ $y] all compile to
"Bit.bxor(\($x as lua expr), \($y as lua expr))"
2018-12-30 19:04:34 -08:00
[$x AND $y, $x & $y] all compile to
"Bit.band(\($x as lua expr), \($y as lua expr))"
2018-12-30 19:04:34 -08:00
[$x LSHIFT $shift, $x << $shift] all compile to
"Bit.lshift(\($x as lua expr), \($shift as lua expr))"
2018-12-30 19:04:34 -08:00
[$x RSHIFT $shift, $x >> $shift] all compile to
"Bit.rshift(\($x as lua expr), \($shift as lua expr))"
lua> "else"
2018-12-14 20:21:03 -08:00
[NOT $, ~ $] all compile to "~(\($ as lua expr))"
[$x OR $y, $x | $y] all compile to "(\($x as lua expr) | \($y as lua expr))"
[$x XOR $y, $x ~ $y] all compile to "(\($x as lua expr) ~ \($y as lua expr))"
[$x AND $y, $x & $y] all compile to "(\($x as lua expr) & \($y as lua expr))"
2018-12-30 19:04:34 -08:00
[$x LSHIFT $shift, $x << $shift] all compile to
2018-12-30 23:58:47 -08:00
"(\($x as lua expr) << \($shift as lua expr))"
2018-12-30 19:04:34 -08:00
[$x RSHIFT $shift, $x >> $shift] all compile to
2018-12-30 23:58:47 -08:00
"(\($x as lua expr) >> \($shift as lua expr))"
lua> "end"
2018-06-18 15:44:29 -07:00
# Unary operators
2018-07-22 16:13:33 -07:00
test:
assume ((- 5) == -5)
assume ((not (yes)) == (no))
2018-12-14 20:21:03 -08:00
(- $) compiles to "(- \($ as lua expr))"
(not $) compiles to "(not \($ as lua expr))"
test:
assume ((size of [1, 2, 3]) == 3)
2018-12-30 19:04:34 -08:00
assume ((#[1, 2, 3]) == 3)
[#$list, size of $list] all compile to "(#\($list as lua expr))"
2018-12-14 20:21:03 -08:00
($list is empty) compiles to "(#\($list as lua expr) == 0)"
2018-06-18 15:44:29 -07:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Update operators
2018-07-22 16:13:33 -07:00
test:
2018-12-14 20:21:03 -08:00
$x = 1
$x += 1
unless ($x == 2):
fail "+= failed"
2018-12-14 20:21:03 -08:00
$x *= 2
unless ($x == 4):
fail "*= failed"
2018-12-14 20:21:03 -08:00
wrap $x around 3
unless ($x == 1):
fail "wrap around failed"
2018-12-14 20:21:03 -08:00
($var += $) parses as ($var = (($var or 0) + $))
($var -= $) parses as ($var = (($var or 0) - $))
($var *= $) parses as ($var = (($var or 1) * $))
($var /= $) parses as ($var = ($var / $))
($var ^= $) parses as ($var = ($var ^ $))
($var and= $) parses as ($var = ($var and $))
($var or= $) parses as ($var = ($var or $))
(wrap $var around $) parses as ($var = ($var wrapped around $))