Fixed some codegen stuff, optimized "say" for the common case of string

literals.
This commit is contained in:
Bruce Hill 2017-11-01 16:49:11 -07:00
parent cbd876673a
commit f1a2c936de
6 changed files with 35 additions and 15 deletions

View File

@ -3,4 +3,5 @@ require "lib/utils.nom"
require "lib/operators.nom" require "lib/operators.nom"
require "lib/control_flow.nom" require "lib/control_flow.nom"
require "lib/collections.nom" require "lib/collections.nom"
require "lib/utils2.nom"
require "lib/permissions.nom" require "lib/permissions.nom"

View File

@ -6,14 +6,14 @@ require "lib/collections.nom"
# Permission functions # Permission functions
rule [standardize rules %rules] =: rule [standardize rules %rules] =:
if ((type of %rules) == "string"): %rules = [%rules] if ((type of %rules) == "string"): %rules = [%rules]
(nomsu "get_stub" [%]) for all %rules %stubs = (nomsu "get_stubs" [%rules])
%result = [] %result = []
for %rule in %rules: for %stub in %stubs:
%stub = (nomsu "get_stub" [%rule])
%def = ((nomsu's "defs")->%stub) %def = ((nomsu's "defs")->%stub)
assert %def "Undefined rule: \(%stub)" if %def:
%aliases = (%def's "aliases") %aliases = (%def's "aliases")
for all %aliases: add % to %result for all %aliases: add % to %result
..else: add %def to %result
unique %result unique %result
rule [restrict %rules to within %elite_rules] =: rule [restrict %rules to within %elite_rules] =:
@ -52,3 +52,7 @@ rule [forbid %pleb_rules to use %rules] =:
|Cannot individually restrict permissions for \(%) because it is currently |Cannot individually restrict permissions for \(%) because it is currently
|available to everyone. Perhaps you meant to use "restrict % to within %" instead? |available to everyone. Perhaps you meant to use "restrict % to within %" instead?
for all %pleb_rules: %whiteset's % = (nil) for all %pleb_rules: %whiteset's % = (nil)
parse [rule %spec = %body restricted to %elite_rules] as:
rule %spec = %body
restrict (nomsu "get_stubs" [\%spec]) to within %elite_rules

View File

@ -27,9 +27,6 @@ compile [%str with %patt replaced with %sub, %str s/%patt/%sub] to:
compile [%str with %patt replaced with %sub %n times, %str s/%patt/%sub/%n] to: compile [%str with %patt replaced with %sub %n times, %str s/%patt/%sub/%n] to:
"((\(%str as lua)):gsub(\(%patt as lua), \(%sub as lua), \(%n as lua)))" "((\(%str as lua)):gsub(\(%patt as lua), \(%sub as lua), \(%n as lua)))"
compile [say %str] to: ".."
|nomsu:writeln(nomsu:stringify(\(%str as lua)))
# Number ranges # Number ranges
compile [%start to %stop by %step, %start to %stop via %step] to: ".." compile [%start to %stop by %step, %start to %stop via %step] to: ".."
|nomsu.utils.range(\(%start as lua), \(%stop as lua), \(%step as lua)) |nomsu.utils.range(\(%start as lua), \(%stop as lua), \(%step as lua))

10
lib/utils2.nom Normal file
View File

@ -0,0 +1,10 @@
require "lib/metaprogramming.nom"
require "lib/utils.nom"
require "lib/control_flow.nom"
require "lib/operators.nom"
compile [say %str] to:
if ((%str's "type") == "String"):
"nomsu:writeln(\(%str as lua))"
..else:
"nomsu:writeln(nomsu:stringify(\(%str as lua)))"

View File

@ -479,7 +479,12 @@ end);]]):format(statements or "", expr or "ret")
self:errorln(debug.traceback()) self:errorln(debug.traceback())
self:error(ret) self:error(ret)
end end
insert(buffer, tostring(statements or '') .. "\n" .. tostring(expr and "ret = " .. tostring(expr) .. ";" or '')) if statements then
insert(buffer, statements)
end
if expr then
insert(buffer, "ret = " .. tostring(expr) .. ";")
end
end end
if max_operations then if max_operations then
debug.sethook() debug.sethook()
@ -488,7 +493,7 @@ end);]]):format(statements or "", expr or "ret")
local ret; local ret;
%s %s
return ret; return ret;
end);]]):format(concat(buffer, "")) end);]]):format(concat(buffer, "\n"))
return return_value, lua_code, vars return return_value, lua_code, vars
end, end,
tree_to_value = function(self, tree, vars) tree_to_value = function(self, tree, vars)
@ -911,7 +916,7 @@ end)]]):format(concat(lua_bits, "\n"))
end end
return concat(stub, " "), arg_names return concat(stub, " "), arg_names
else else
return self:error("Unsupported get stub type: " .. tostring(x.type)) return self:error("Unsupported get stub type: " .. tostring(x.type) .. " for " .. tostring(repr(x)))
end end
end, end,
get_stubs = function(self, x) get_stubs = function(self, x)

View File

@ -365,7 +365,10 @@ end);]])\format(statements or "", expr or "ret")
@errorln "#{colored.red "Error occurred in statement:"}\n#{colored.yellow statement.src}" @errorln "#{colored.red "Error occurred in statement:"}\n#{colored.yellow statement.src}"
@errorln debug.traceback! @errorln debug.traceback!
@error(ret) @error(ret)
insert buffer, "#{statements or ''}\n#{expr and "ret = #{expr};" or ''}" if statements
insert buffer, statements
if expr
insert buffer, "ret = #{expr};"
if max_operations if max_operations
debug.sethook! debug.sethook!
@ -374,7 +377,7 @@ return (function(nomsu, vars)
local ret; local ret;
%s %s
return ret; return ret;
end);]])\format(concat(buffer, "")) end);]])\format(concat(buffer, "\n"))
return return_value, lua_code, vars return return_value, lua_code, vars
tree_to_value: (tree, vars)=> tree_to_value: (tree, vars)=>
@ -675,7 +678,7 @@ end)]])\format(concat(lua_bits, "\n"))
insert stub, "%" insert stub, "%"
arg_names = nil arg_names = nil
return concat(stub," "), arg_names return concat(stub," "), arg_names
else @error "Unsupported get stub type: #{x.type}" else @error "Unsupported get stub type: #{x.type} for #{repr x}"
get_stubs: (x)=> get_stubs: (x)=>
if type(x) != 'table' then return {{@get_stub(x)}} if type(x) != 'table' then return {{@get_stub(x)}}