2021-10-29 13:25:12 -07:00
# This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
2021-11-05 08:47:21 -07:00
.SUFFIXES :
2021-10-29 13:25:12 -07:00
MAKEFLAGS += -r -j8
COMMA = ,
config = debug
2022-10-06 17:23:29 -07:00
protobuf = system
2021-10-29 13:25:12 -07:00
BUILD = build/$( config)
AST_SOURCES = $( wildcard Ast/src/*.cpp)
AST_OBJECTS = $( AST_SOURCES:%= $( BUILD) /%.o)
AST_TARGET = $( BUILD) /libluauast.a
COMPILER_SOURCES = $( wildcard Compiler/src/*.cpp)
COMPILER_OBJECTS = $( COMPILER_SOURCES:%= $( BUILD) /%.o)
COMPILER_TARGET = $( BUILD) /libluaucompiler.a
ANALYSIS_SOURCES = $( wildcard Analysis/src/*.cpp)
ANALYSIS_OBJECTS = $( ANALYSIS_SOURCES:%= $( BUILD) /%.o)
ANALYSIS_TARGET = $( BUILD) /libluauanalysis.a
2022-05-26 15:08:16 -07:00
CODEGEN_SOURCES = $( wildcard CodeGen/src/*.cpp)
CODEGEN_OBJECTS = $( CODEGEN_SOURCES:%= $( BUILD) /%.o)
CODEGEN_TARGET = $( BUILD) /libluaucodegen.a
2021-10-29 13:25:12 -07:00
VM_SOURCES = $( wildcard VM/src/*.cpp)
VM_OBJECTS = $( VM_SOURCES:%= $( BUILD) /%.o)
VM_TARGET = $( BUILD) /libluauvm.a
2022-02-04 08:45:57 -08:00
ISOCLINE_SOURCES = extern/isocline/src/isocline.c
ISOCLINE_OBJECTS = $( ISOCLINE_SOURCES:%= $( BUILD) /%.o)
ISOCLINE_TARGET = $( BUILD) /libisocline.a
2022-07-21 14:16:54 -07:00
TESTS_SOURCES = $( wildcard tests/*.cpp) CLI/FileUtils.cpp CLI/Flags.cpp CLI/Profiler.cpp CLI/Coverage.cpp CLI/Repl.cpp
2021-10-29 13:25:12 -07:00
TESTS_OBJECTS = $( TESTS_SOURCES:%= $( BUILD) /%.o)
TESTS_TARGET = $( BUILD) /luau-tests
2022-07-21 14:16:54 -07:00
REPL_CLI_SOURCES = CLI/FileUtils.cpp CLI/Flags.cpp CLI/Profiler.cpp CLI/Coverage.cpp CLI/Repl.cpp CLI/ReplEntry.cpp
2021-10-29 13:25:12 -07:00
REPL_CLI_OBJECTS = $( REPL_CLI_SOURCES:%= $( BUILD) /%.o)
REPL_CLI_TARGET = $( BUILD) /luau
2022-07-21 14:16:54 -07:00
ANALYZE_CLI_SOURCES = CLI/FileUtils.cpp CLI/Flags.cpp CLI/Analyze.cpp
2021-10-29 13:25:12 -07:00
ANALYZE_CLI_OBJECTS = $( ANALYZE_CLI_SOURCES:%= $( BUILD) /%.o)
ANALYZE_CLI_TARGET = $( BUILD) /luau-analyze
2023-06-09 10:08:00 -07:00
COMPILE_CLI_SOURCES = CLI/FileUtils.cpp CLI/Flags.cpp CLI/Compile.cpp
COMPILE_CLI_OBJECTS = $( COMPILE_CLI_SOURCES:%= $( BUILD) /%.o)
COMPILE_CLI_TARGET = $( BUILD) /luau-compile
2021-12-02 22:41:04 -08:00
FUZZ_SOURCES = $( wildcard fuzz/*.cpp) fuzz/luau.pb.cpp
2021-10-29 13:25:12 -07:00
FUZZ_OBJECTS = $( FUZZ_SOURCES:%= $( BUILD) /%.o)
TESTS_ARGS =
i f n e q ( $( flags ) , )
TESTS_ARGS += --fflags= $( flags)
e n d i f
2022-07-14 15:52:26 -07:00
i f n e q ( $( opt ) , )
TESTS_ARGS += -O$( opt)
e n d i f
2021-10-29 13:25:12 -07:00
2023-06-09 10:08:00 -07:00
OBJECTS = $( AST_OBJECTS) $( COMPILER_OBJECTS) $( ANALYSIS_OBJECTS) $( CODEGEN_OBJECTS) $( VM_OBJECTS) $( ISOCLINE_OBJECTS) $( TESTS_OBJECTS) $( REPL_CLI_OBJECTS) $( ANALYZE_CLI_OBJECTS) $( COMPILE_CLI_OBJECTS) $( FUZZ_OBJECTS)
EXECUTABLE_ALIASES = luau luau-analyze luau-compile luau-tests
2021-10-29 13:25:12 -07:00
# common flags
2021-11-12 06:56:25 -08:00
CXXFLAGS = -g -Wall
2021-10-29 13:25:12 -07:00
LDFLAGS =
2021-11-12 06:56:25 -08:00
# some gcc versions treat var in `if (type var = val)` as unused
# some gcc versions treat variables used in constexpr if blocks as unused
2021-11-05 12:39:27 -07:00
i f e q ( $( findstring g ++,$ ( shell $ ( CXX ) --version ) ) , g + + )
CXXFLAGS += -Wno-unused
e n d i f
2021-10-29 13:25:12 -07:00
2021-11-12 06:56:25 -08:00
# enabled in CI; we should be warning free on our main compiler versions but don't guarantee being warning free everywhere
i f n e q ( $( werror ) , )
CXXFLAGS += -Werror
e n d i f
2021-10-29 13:25:12 -07:00
# configuration-specific flags
i f e q ( $( config ) , r e l e a s e )
2022-10-28 03:37:29 -07:00
CXXFLAGS += -O2 -DNDEBUG -fno-math-errno
2021-10-29 13:25:12 -07:00
e n d i f
i f e q ( $( config ) , c o v e r a g e )
CXXFLAGS += -fprofile-instr-generate -fcoverage-mapping
LDFLAGS += -fprofile-instr-generate
e n d i f
i f e q ( $( config ) , s a n i t i z e )
CXXFLAGS += -fsanitize= address -O1
LDFLAGS += -fsanitize= address
e n d i f
i f e q ( $( config ) , a n a l y z e )
CXXFLAGS += --analyze
e n d i f
i f e q ( $( config ) , f u z z )
CXX = clang++ # our fuzzing infra relies on llvm fuzzer
2022-08-25 14:53:50 -07:00
CXXFLAGS += -fsanitize= address,fuzzer -Ibuild/libprotobuf-mutator -O2
2021-10-29 13:25:12 -07:00
LDFLAGS += -fsanitize= address,fuzzer
2022-10-06 17:23:29 -07:00
LPROTOBUF = -lprotobuf
DPROTOBUF = -D CMAKE_BUILD_TYPE = Release -D LIB_PROTO_MUTATOR_TESTING = OFF
EPROTOC = protoc
2021-10-29 13:25:12 -07:00
e n d i f
2022-08-11 14:01:33 -07:00
i f e q ( $( config ) , p r o f i l e )
2022-10-28 03:37:29 -07:00
CXXFLAGS += -O2 -DNDEBUG -fno-math-errno -gdwarf-4 -DCALLGRIND= 1
2022-07-04 11:13:07 -07:00
e n d i f
2022-10-06 17:23:29 -07:00
i f e q ( $( protobuf ) , d o w n l o a d )
CXXFLAGS += -Ibuild/libprotobuf-mutator/external.protobuf/include
LPROTOBUF = build/libprotobuf-mutator/external.protobuf/lib/libprotobuf.a
DPROTOBUF += -D LIB_PROTO_MUTATOR_DOWNLOAD_PROTOBUF = ON
EPROTOC = ../build/libprotobuf-mutator/external.protobuf/bin/protoc
e n d i f
2022-10-14 12:48:41 -07:00
i f n e q ( $( native ) , )
CXXFLAGS += -DLUA_CUSTOM_EXECUTION= 1
TESTS_ARGS += --codegen
e n d i f
2023-03-24 11:03:04 -07:00
i f n e q ( $( nativelj ) , )
CXXFLAGS += -DLUA_CUSTOM_EXECUTION= 1 -DLUA_USE_LONGJMP= 1
TESTS_ARGS += --codegen
e n d i f
2021-10-29 13:25:12 -07:00
# target-specific flags
2022-05-26 15:08:16 -07:00
$(AST_OBJECTS) : CXXFLAGS +=-std =c ++17 -ICommon /include -IAst /include
$(COMPILER_OBJECTS) : CXXFLAGS +=-std =c ++17 -ICompiler /include -ICommon /include -IAst /include
$(ANALYSIS_OBJECTS) : CXXFLAGS +=-std =c ++17 -ICommon /include -IAst /include -IAnalysis /include
2022-09-23 12:17:25 -07:00
$(CODEGEN_OBJECTS) : CXXFLAGS +=-std =c ++17 -ICommon /include -ICodeGen /include -IVM /include -IVM /src # Code generation needs VM internals
2022-05-26 15:08:16 -07:00
$(VM_OBJECTS) : CXXFLAGS +=-std =c ++11 -ICommon /include -IVM /include
2022-02-04 08:45:57 -08:00
$(ISOCLINE_OBJECTS) : CXXFLAGS +=-Wno -unused -function -Iextern /isocline /include
2022-07-14 15:52:26 -07:00
$(TESTS_OBJECTS) : CXXFLAGS +=-std =c ++17 -ICommon /include -IAst /include -ICompiler /include -IAnalysis /include -ICodeGen /include -IVM /include -ICLI -Iextern -DDOCTEST_CONFIG_DOUBLE_STRINGIFY
2022-10-14 12:48:41 -07:00
$(REPL_CLI_OBJECTS) : CXXFLAGS +=-std =c ++17 -ICommon /include -IAst /include -ICompiler /include -IVM /include -ICodeGen /include -Iextern -Iextern /isocline /include
2022-05-26 15:08:16 -07:00
$(ANALYZE_CLI_OBJECTS) : CXXFLAGS +=-std =c ++17 -ICommon /include -IAst /include -IAnalysis /include -Iextern
2023-06-09 10:08:00 -07:00
$(COMPILE_CLI_OBJECTS) : CXXFLAGS +=-std =c ++17 -ICommon /include -IAst /include -ICompiler /include -IVM /include -ICodeGen /include
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-03 21:26:13 +02:00
$(FUZZ_OBJECTS) : CXXFLAGS +=-std =c ++17 -ICommon /include -IAst /include -ICompiler /include -IAnalysis /include -IVM /include -ICodeGen /include
2021-10-29 13:25:12 -07:00
2022-01-27 15:46:05 -08:00
$(TESTS_TARGET) : LDFLAGS +=-lpthread
2021-10-29 13:25:12 -07:00
$(REPL_CLI_TARGET) : LDFLAGS +=-lpthread
2023-05-19 12:37:30 -07:00
$(ANALYZE_CLI_TARGET) : LDFLAGS +=-lpthread
2022-10-06 17:23:29 -07:00
fuzz-proto fuzz-prototest : LDFLAGS +=build /libprotobuf -mutator /src /libfuzzer /libprotobuf -mutator -libfuzzer .a build /libprotobuf -mutator /src /libprotobuf -mutator .a $( LPROTOBUF )
2021-10-29 13:25:12 -07:00
# pseudo targets
2022-07-21 14:16:54 -07:00
.PHONY : all test clean coverage format luau -size aliases
2021-10-29 13:25:12 -07:00
2022-07-21 14:16:54 -07:00
all : $( REPL_CLI_TARGET ) $( ANALYZE_CLI_TARGET ) $( TESTS_TARGET ) aliases
2022-08-04 15:35:33 -07:00
aliases : $( EXECUTABLE_ALIASES )
2021-10-29 13:25:12 -07:00
test : $( TESTS_TARGET )
$( TESTS_TARGET) $( TESTS_ARGS)
2023-03-17 21:20:37 +02:00
conformance : $( TESTS_TARGET )
$( TESTS_TARGET) $( TESTS_ARGS) -ts= Conformance
2021-10-29 13:25:12 -07:00
clean :
rm -rf $( BUILD)
2022-08-04 15:35:33 -07:00
rm -rf $( EXECUTABLE_ALIASES)
2021-10-29 13:25:12 -07:00
2023-06-23 23:19:39 -07:00
coverage : $( TESTS_TARGET ) $( COMPILE_CLI_TARGET )
2021-10-29 13:25:12 -07:00
$( TESTS_TARGET)
2022-10-17 10:02:21 -07:00
mv default.profraw tests.profraw
$( TESTS_TARGET) --fflags= true
mv default.profraw tests-flags.profraw
$( TESTS_TARGET) -ts= Conformance --codegen
mv default.profraw codegen.profraw
$( TESTS_TARGET) -ts= Conformance --codegen --fflags= true
mv default.profraw codegen-flags.profraw
2023-06-23 23:19:39 -07:00
$( COMPILE_CLI_TARGET) --codegennull --target= a64 tests/conformance
mv default.profraw codegen-a64.profraw
$( COMPILE_CLI_TARGET) --codegennull --target= x64 tests/conformance
mv default.profraw codegen-x64.profraw
llvm-profdata merge *.profraw -o default.profdata
2022-10-17 10:02:21 -07:00
rm *.profraw
2022-02-04 08:45:57 -08:00
llvm-cov show -format= html -show-instantiations= false -show-line-counts= true -show-region-summary= false -ignore-filename-regex= \( tests\| extern\| CLI\) /.* -output-dir= coverage --instr-profile default.profdata build/coverage/luau-tests
llvm-cov report -ignore-filename-regex= \( tests\| extern\| CLI\) /.* -show-region-summary= false --instr-profile default.profdata build/coverage/luau-tests
llvm-cov export -ignore-filename-regex= \( tests\| extern\| CLI\) /.* -format lcov --instr-profile default.profdata build/coverage/luau-tests >coverage.info
2021-10-29 13:25:12 -07:00
format :
2022-09-08 15:14:25 -07:00
git ls-files '*.h' '*.cpp' | xargs clang-format-11 -i
2021-10-29 13:25:12 -07:00
luau-size : luau
nm --print-size --demangle luau | grep ' t void luau_execute<false>' | awk -F ' ' '{sum += strtonum("0x" $$2)} END {print sum " interpreter" }'
nm --print-size --demangle luau | grep ' t luauF_' | awk -F ' ' '{sum += strtonum("0x" $$2)} END {print sum " builtins" }'
2022-09-08 15:14:25 -07:00
check-source :
git ls-files '*.h' '*.cpp' | xargs -I+ sh -c 'grep -L LICENSE +'
git ls-files '*.h' ':!:extern' | xargs -I+ sh -c 'grep -L "#pragma once" +'
2021-10-29 13:25:12 -07:00
# executable target aliases
luau : $( REPL_CLI_TARGET )
2021-12-10 14:05:05 -08:00
ln -fs $^ $@
2021-10-29 13:25:12 -07:00
luau-analyze : $( ANALYZE_CLI_TARGET )
2021-12-10 14:05:05 -08:00
ln -fs $^ $@
2021-10-29 13:25:12 -07:00
2023-06-09 10:08:00 -07:00
luau-compile : $( COMPILE_CLI_TARGET )
ln -fs $^ $@
2022-08-04 15:35:33 -07:00
luau-tests : $( TESTS_TARGET )
ln -fs $^ $@
2021-10-29 13:25:12 -07:00
# executable targets
2022-05-26 15:08:16 -07:00
$(TESTS_TARGET) : $( TESTS_OBJECTS ) $( ANALYSIS_TARGET ) $( COMPILER_TARGET ) $( AST_TARGET ) $( CODEGEN_TARGET ) $( VM_TARGET ) $( ISOCLINE_TARGET )
2022-10-14 12:48:41 -07:00
$(REPL_CLI_TARGET) : $( REPL_CLI_OBJECTS ) $( COMPILER_TARGET ) $( AST_TARGET ) $( CODEGEN_TARGET ) $( VM_TARGET ) $( ISOCLINE_TARGET )
2021-10-29 13:25:12 -07:00
$(ANALYZE_CLI_TARGET) : $( ANALYZE_CLI_OBJECTS ) $( ANALYSIS_TARGET ) $( AST_TARGET )
2023-06-09 10:08:00 -07:00
$(COMPILE_CLI_TARGET) : $( COMPILE_CLI_OBJECTS ) $( COMPILER_TARGET ) $( AST_TARGET ) $( CODEGEN_TARGET ) $( VM_TARGET )
2021-10-29 13:25:12 -07:00
2023-06-09 10:08:00 -07:00
$(TESTS_TARGET) $(REPL_CLI_TARGET) $(ANALYZE_CLI_TARGET) $(COMPILE_CLI_TARGET) :
2021-10-29 13:25:12 -07:00
$( CXX) $^ $( LDFLAGS) -o $@
# executable targets for fuzzing
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-03 21:26:13 +02:00
fuzz-% : $( BUILD ) /fuzz /%.cpp .o $( ANALYSIS_TARGET ) $( COMPILER_TARGET ) $( AST_TARGET ) $( CODEGEN_TARGET ) $( VM_TARGET )
2021-11-12 06:27:34 -08:00
$( CXX) $^ $( LDFLAGS) -o $@
2021-10-29 13:25:12 -07:00
fuzz-proto : $( BUILD ) /fuzz /proto .cpp .o $( BUILD ) /fuzz /protoprint .cpp .o $( BUILD ) /fuzz /luau .pb .cpp .o $( ANALYSIS_TARGET ) $( COMPILER_TARGET ) $( AST_TARGET ) $( VM_TARGET ) | build /libprotobuf -mutator
fuzz-prototest : $( BUILD ) /fuzz /prototest .cpp .o $( BUILD ) /fuzz /protoprint .cpp .o $( BUILD ) /fuzz /luau .pb .cpp .o $( ANALYSIS_TARGET ) $( COMPILER_TARGET ) $( AST_TARGET ) $( VM_TARGET ) | build /libprotobuf -mutator
# static library targets
$(AST_TARGET) : $( AST_OBJECTS )
$(COMPILER_TARGET) : $( COMPILER_OBJECTS )
$(ANALYSIS_TARGET) : $( ANALYSIS_OBJECTS )
2022-05-26 15:08:16 -07:00
$(CODEGEN_TARGET) : $( CODEGEN_OBJECTS )
2021-10-29 13:25:12 -07:00
$(VM_TARGET) : $( VM_OBJECTS )
2022-02-04 08:45:57 -08:00
$(ISOCLINE_TARGET) : $( ISOCLINE_OBJECTS )
2021-10-29 13:25:12 -07:00
2022-05-26 15:08:16 -07:00
$(AST_TARGET) $(COMPILER_TARGET) $(ANALYSIS_TARGET) $(CODEGEN_TARGET) $(VM_TARGET) $(ISOCLINE_TARGET) :
2021-10-29 13:25:12 -07:00
ar rcs $@ $^
# object file targets
$(BUILD)/%.cpp.o : %.cpp
@mkdir -p $( dir $@ )
$( CXX) $< $( CXXFLAGS) -c -MMD -MP -o $@
2022-02-04 08:45:57 -08:00
$(BUILD)/%.c.o : %.c
@mkdir -p $( dir $@ )
$( CXX) -x c $< $( CXXFLAGS) -c -MMD -MP -o $@
2021-10-29 13:25:12 -07:00
# protobuf fuzzer setup
fuzz/luau.pb.cpp : fuzz /luau .proto build /libprotobuf -mutator
2022-10-06 17:23:29 -07:00
cd fuzz && $( EPROTOC) luau.proto --cpp_out= .
2021-10-29 13:25:12 -07:00
mv fuzz/luau.pb.cc fuzz/luau.pb.cpp
2021-12-02 22:41:04 -08:00
$(BUILD)/fuzz/proto.cpp.o : fuzz /luau .pb .cpp
$(BUILD)/fuzz/protoprint.cpp.o : fuzz /luau .pb .cpp
2021-10-29 13:25:12 -07:00
build/libprotobuf-mutator :
git clone https://github.com/google/libprotobuf-mutator build/libprotobuf-mutator
2022-10-06 17:23:29 -07:00
CXX = cmake -S build/libprotobuf-mutator -B build/libprotobuf-mutator $( DPROTOBUF)
2021-10-29 13:25:12 -07:00
make -C build/libprotobuf-mutator -j8
# picks up include dependencies for all object files
-include $(OBJECTS : .o =.d )