Switched to optimization level 1 by default (i.e. use precompiled nomsu
files).
This commit is contained in:
parent
b6c99c56a1
commit
efdfdcd695
4
Makefile
4
Makefile
@ -25,9 +25,9 @@ all: build optimize
|
|||||||
.PHONY: test
|
.PHONY: test
|
||||||
test: build optimize
|
test: build optimize
|
||||||
@echo "\033[1;4mRunning unoptimized tests...\033[0m"
|
@echo "\033[1;4mRunning unoptimized tests...\033[0m"
|
||||||
@$(LUA_BIN) nomsu.lua tools/test.nom $(CORE_NOM_FILES) $(LIB_NOM_FILES)
|
@$(LUA_BIN) nomsu.lua -O0 tools/test.nom $(CORE_NOM_FILES) $(LIB_NOM_FILES)
|
||||||
@echo "\n\033[1;4mRunning optimized tests...\033[0m"
|
@echo "\n\033[1;4mRunning optimized tests...\033[0m"
|
||||||
@$(LUA_BIN) nomsu.lua -O tools/test.nom $(CORE_NOM_FILES) $(LIB_NOM_FILES)
|
@$(LUA_BIN) nomsu.lua -O1 tools/test.nom $(CORE_NOM_FILES) $(LIB_NOM_FILES)
|
||||||
|
|
||||||
%.lua: %.moon
|
%.lua: %.moon
|
||||||
@moonc $<
|
@moonc $<
|
||||||
|
@ -33,8 +33,8 @@ Specify the desired Nomsu version (defaults to the latest installed version). E.
|
|||||||
.BI \-L
|
.BI \-L
|
||||||
List the installed versions of Nomsu (if \fB-V\fR is supplied, only print versions that match the requested pattern).
|
List the installed versions of Nomsu (if \fB-V\fR is supplied, only print versions that match the requested pattern).
|
||||||
.TP
|
.TP
|
||||||
.B \-O
|
.B \-O " level"
|
||||||
Run the compiler in optimized mode (use precompiled .lua versions of .nom files, when available)
|
Run the compiler with the given optimization level (default: 1). If \fBlevel\fR is >0, use precompiled .lua versions of .nom files, when available.
|
||||||
.TP
|
.TP
|
||||||
.B \-v
|
.B \-v
|
||||||
Verbose: print compiled lua code as it's generated for the input files.
|
Verbose: print compiled lua code as it's generated for the input files.
|
||||||
|
15
nomsu.lua
15
nomsu.lua
@ -55,10 +55,10 @@ end
|
|||||||
local EXIT_SUCCESS, EXIT_FAILURE = 0, 1
|
local EXIT_SUCCESS, EXIT_FAILURE = 0, 1
|
||||||
local usage = [=[Nomsu Compiler
|
local usage = [=[Nomsu Compiler
|
||||||
|
|
||||||
Usage: (nomsu | lua nomsu.lua | moon nomsu.moon) [-V version] [-O] [-v] [-c] [-s] [-t] [-I file] [--help | -h] [--version] [--no-core] [file [nomsu args...]]
|
Usage: (nomsu | lua nomsu.lua | moon nomsu.moon) [-V version] [-O optimization level] [-v] [-c] [-s] [-t] [-I file] [--help | -h] [--version] [--no-core] [file [nomsu args...]]
|
||||||
|
|
||||||
OPTIONS
|
OPTIONS
|
||||||
-O Run the compiler in optimized mode (use precompiled .lua versions of Nomsu files, when available).
|
-O <level> Run the compiler with the given optimization level (>0: use precompiled .lua versions of Nomsu files, when available).
|
||||||
-v Verbose: print compiled lua code.
|
-v Verbose: print compiled lua code.
|
||||||
-c Compile the input files into a .lua files.
|
-c Compile the input files into a .lua files.
|
||||||
-e Execute the specified string.
|
-e Execute the specified string.
|
||||||
@ -96,7 +96,7 @@ local file_queue = { }
|
|||||||
local sep = "\0"
|
local sep = "\0"
|
||||||
local parser = re.compile([[ args <- {| (flag %sep)* (({~ file ~} -> add_file) %sep)? {:nomsu_args: {| ({(!%sep .)*} %sep)* |} :} %sep? |} !.
|
local parser = re.compile([[ args <- {| (flag %sep)* (({~ file ~} -> add_file) %sep)? {:nomsu_args: {| ({(!%sep .)*} %sep)* |} :} %sep? |} !.
|
||||||
flag <-
|
flag <-
|
||||||
{:optimized: ("-O" -> true) :}
|
{:optimization: "-O" (%sep? (([0-9]+) -> tonumber))? :}
|
||||||
/ ("-I" %sep? ({~ file ~} -> add_file))
|
/ ("-I" %sep? ({~ file ~} -> add_file))
|
||||||
/ ("-e" %sep? (({} {~ file ~}) -> add_exec_string))
|
/ ("-e" %sep? (({} {~ file ~}) -> add_exec_string))
|
||||||
/ ({:check_syntax: ("-s" -> true):})
|
/ ({:check_syntax: ("-s" -> true):})
|
||||||
@ -110,9 +110,12 @@ local parser = re.compile([[ args <- {| (flag %sep)* (({~ file ~} -> add_file
|
|||||||
/ {:requested_version: "-V" (%sep? {([0-9.])+})? :}
|
/ {:requested_version: "-V" (%sep? {([0-9.])+})? :}
|
||||||
file <- ("-" -> "stdin") / {(!%sep .)+}
|
file <- ("-" -> "stdin") / {(!%sep .)+}
|
||||||
]], {
|
]], {
|
||||||
["true"] = function()
|
["true"] = (function()
|
||||||
return true
|
return true
|
||||||
end,
|
end),
|
||||||
|
tonumber = (function(self)
|
||||||
|
return tonumber(self)
|
||||||
|
end),
|
||||||
sep = lpeg.P(sep),
|
sep = lpeg.P(sep),
|
||||||
add_file = function(f)
|
add_file = function(f)
|
||||||
return table.insert(file_queue, f)
|
return table.insert(file_queue, f)
|
||||||
@ -161,7 +164,7 @@ run = function()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
nomsu.can_optimize = function(f)
|
nomsu.can_optimize = function(f)
|
||||||
if not (args.optimized) then
|
if args.optimization == 0 then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
if args.compile and input_files[f] then
|
if args.compile and input_files[f] then
|
||||||
|
11
nomsu.moon
11
nomsu.moon
@ -13,10 +13,10 @@ EXIT_SUCCESS, EXIT_FAILURE = 0, 1
|
|||||||
usage = [=[
|
usage = [=[
|
||||||
Nomsu Compiler
|
Nomsu Compiler
|
||||||
|
|
||||||
Usage: (nomsu | lua nomsu.lua | moon nomsu.moon) [-V version] [-O] [-v] [-c] [-s] [-t] [-I file] [--help | -h] [--version] [--no-core] [file [nomsu args...]]
|
Usage: (nomsu | lua nomsu.lua | moon nomsu.moon) [-V version] [-O optimization level] [-v] [-c] [-s] [-t] [-I file] [--help | -h] [--version] [--no-core] [file [nomsu args...]]
|
||||||
|
|
||||||
OPTIONS
|
OPTIONS
|
||||||
-O Run the compiler in optimized mode (use precompiled .lua versions of Nomsu files, when available).
|
-O <level> Run the compiler with the given optimization level (>0: use precompiled .lua versions of Nomsu files, when available).
|
||||||
-v Verbose: print compiled lua code.
|
-v Verbose: print compiled lua code.
|
||||||
-c Compile the input files into a .lua files.
|
-c Compile the input files into a .lua files.
|
||||||
-e Execute the specified string.
|
-e Execute the specified string.
|
||||||
@ -52,7 +52,7 @@ sep = "\0"
|
|||||||
parser = re.compile([[
|
parser = re.compile([[
|
||||||
args <- {| (flag %sep)* (({~ file ~} -> add_file) %sep)? {:nomsu_args: {| ({(!%sep .)*} %sep)* |} :} %sep? |} !.
|
args <- {| (flag %sep)* (({~ file ~} -> add_file) %sep)? {:nomsu_args: {| ({(!%sep .)*} %sep)* |} :} %sep? |} !.
|
||||||
flag <-
|
flag <-
|
||||||
{:optimized: ("-O" -> true) :}
|
{:optimization: "-O" (%sep? (([0-9]+) -> tonumber))? :}
|
||||||
/ ("-I" %sep? ({~ file ~} -> add_file))
|
/ ("-I" %sep? ({~ file ~} -> add_file))
|
||||||
/ ("-e" %sep? (({} {~ file ~}) -> add_exec_string))
|
/ ("-e" %sep? (({} {~ file ~}) -> add_exec_string))
|
||||||
/ ({:check_syntax: ("-s" -> true):})
|
/ ({:check_syntax: ("-s" -> true):})
|
||||||
@ -66,8 +66,7 @@ parser = re.compile([[
|
|||||||
/ {:requested_version: "-V" (%sep? {([0-9.])+})? :}
|
/ {:requested_version: "-V" (%sep? {([0-9.])+})? :}
|
||||||
file <- ("-" -> "stdin") / {(!%sep .)+}
|
file <- ("-" -> "stdin") / {(!%sep .)+}
|
||||||
]], {
|
]], {
|
||||||
true: -> true
|
true:(-> true), tonumber:(=>tonumber(@)), sep:lpeg.P(sep)
|
||||||
sep: lpeg.P(sep)
|
|
||||||
add_file: (f)-> table.insert(file_queue, f)
|
add_file: (f)-> table.insert(file_queue, f)
|
||||||
add_exec_string: (pos, s)->
|
add_exec_string: (pos, s)->
|
||||||
name = "command line arg @#{pos}.nom"
|
name = "command line arg @#{pos}.nom"
|
||||||
@ -110,7 +109,7 @@ run = ->
|
|||||||
input_files[filename] = true
|
input_files[filename] = true
|
||||||
|
|
||||||
nomsu.can_optimize = (f)->
|
nomsu.can_optimize = (f)->
|
||||||
return false unless args.optimized
|
return false if args.optimization == 0
|
||||||
return false if args.compile and input_files[f]
|
return false if args.compile and input_files[f]
|
||||||
return true
|
return true
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user