2022-07-09 20:54:42 +00:00
|
|
|
# Build options can be changed by modifying the makefile or by building with 'make SETTING=value'.
|
2024-04-13 19:04:04 +00:00
|
|
|
# It is also possible to override the settings in Defaults in a file called .make_options as 'SETTING=value'.
|
|
|
|
|
|
|
|
-include .make_options
|
|
|
|
|
2022-07-09 20:54:42 +00:00
|
|
|
DEBUG ?= 0
|
|
|
|
WERROR ?= 0
|
|
|
|
ASAN ?= 0
|
|
|
|
EXPERIMENTAL ?= 0
|
2022-10-09 20:51:47 +00:00
|
|
|
SANITY_CHECKS ?= 1
|
2022-07-09 20:54:42 +00:00
|
|
|
|
|
|
|
CC := clang
|
2022-10-09 20:51:47 +00:00
|
|
|
CXX := clang++
|
2022-09-26 14:00:45 +00:00
|
|
|
AR := ar
|
2023-05-02 23:01:54 +00:00
|
|
|
IINC := -I tables -I include
|
|
|
|
IINC_XX := -I tables -I include -I cplusplus/include
|
2022-07-09 20:54:42 +00:00
|
|
|
CSTD := -std=c11
|
2022-10-09 20:51:47 +00:00
|
|
|
CXXSTD := -std=c++17
|
2023-05-02 00:59:01 +00:00
|
|
|
CFLAGS := -fPIC -fno-common
|
|
|
|
CXXFLAGS := -fPIC -fno-common
|
2022-09-26 14:00:45 +00:00
|
|
|
LDFLAGS := -Lbuild -lrabbitizer
|
2022-10-09 20:51:47 +00:00
|
|
|
LDXXFLAGS := -Lbuild -lrabbitizerpp
|
2023-11-11 16:19:56 +00:00
|
|
|
WARNINGS := -Wall -Wextra -Wpedantic -Wunused-value
|
2023-05-02 00:59:01 +00:00
|
|
|
WARNINGS += -Wformat=2 -Wundef
|
|
|
|
# WARNINGS += -Wconversion
|
|
|
|
WARNINGS += -Werror=vla -Werror=switch -Werror=implicit-fallthrough -Werror=unused-function
|
|
|
|
WARNINGS += -Werror=unused-parameter -Werror=shadow -Werror=switch -Werror=double-promotion
|
2022-10-10 23:23:18 +00:00
|
|
|
WARNINGS_C := -Werror=implicit-function-declaration -Werror=incompatible-pointer-types
|
2023-12-25 18:02:15 +00:00
|
|
|
WARNINGS += -Werror=type-limits
|
2022-10-10 23:23:18 +00:00
|
|
|
WARNINGS_CXX :=
|
2024-04-11 14:50:31 +00:00
|
|
|
WARNINGS_ELFS := -Wno-override-init
|
2022-07-09 20:54:42 +00:00
|
|
|
|
2022-07-10 20:04:39 +00:00
|
|
|
ifeq ($(CC),gcc)
|
2024-04-03 15:43:12 +00:00
|
|
|
WARNINGS += -Wno-cast-function-type -Wformat-truncation -Wformat-overflow -Wno-nonnull-compare
|
2022-07-10 20:04:39 +00:00
|
|
|
endif
|
|
|
|
|
2022-07-09 20:54:42 +00:00
|
|
|
ifeq ($(DEBUG),0)
|
2022-10-09 20:51:47 +00:00
|
|
|
OPTFLAGS := -Os -g
|
2022-07-09 20:54:42 +00:00
|
|
|
else
|
|
|
|
OPTFLAGS := -O0 -g3
|
|
|
|
CFLAGS += -DDEVELOPMENT=1
|
2022-10-09 20:51:47 +00:00
|
|
|
CXXFLAGS += -DDEVELOPMENT=1
|
2022-07-09 20:54:42 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(WERROR),0)
|
|
|
|
WARNINGS += -Werror
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(ASAN),0)
|
|
|
|
CFLAGS += -fsanitize=address -fsanitize=pointer-compare -fsanitize=pointer-subtract -fsanitize=undefined
|
2022-10-09 20:51:47 +00:00
|
|
|
CXXFLAGS += -fsanitize=address -fsanitize=pointer-compare -fsanitize=pointer-subtract -fsanitize=undefined
|
2022-07-09 20:54:42 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(EXPERIMENTAL),0)
|
|
|
|
CFLAGS += -DEXPERIMENTAL
|
2022-10-09 20:51:47 +00:00
|
|
|
CXXFLAGS += -DEXPERIMENTAL
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(SANITY_CHECKS),0)
|
|
|
|
CFLAGS += -DRAB_SANITY_CHECKS=1
|
|
|
|
CXXFLAGS += -DRAB_SANITY_CHECKS=1
|
2022-07-09 20:54:42 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2022-07-09 21:13:37 +00:00
|
|
|
SRC_DIRS := $(shell find src -type d)
|
|
|
|
C_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.c))
|
|
|
|
H_FILES := $(foreach dir,$(IINC),$(wildcard $(dir)/**/*.h))
|
|
|
|
O_FILES := $(foreach f,$(C_FILES:.c=.o),build/$f)
|
2022-10-09 20:51:47 +00:00
|
|
|
|
|
|
|
SRCXX_DIRS := $(shell find cplusplus/src -type d)
|
|
|
|
CXX_FILES := $(foreach dir,$(SRCXX_DIRS),$(wildcard $(dir)/*.cpp))
|
|
|
|
HXX_FILES := $(foreach dir,$(IINC_XX),$(wildcard $(dir)/**/*.hpp))
|
|
|
|
OXX_FILES := $(foreach f,$(CXX_FILES:.cpp=.o),build/$f)
|
|
|
|
|
ALLEGREX support (#60)
* setup ALLEGREX
* more setup
* clo
* fix
* Implement SPECIAL_RS and SPECIAL_SA instructions
* more table placeholders
* Implement bshfl instructions
* Rename to R4000Allegrex
* Implement SPECIAL instructions
* Add tests
* Remove some duplicated tests
* Implement SPECIAL3 instructions
* fix bug in test
* update
* Implement COPz
* Implement SPECIAL2 instructions
* Implement COP1
* Yeet cop3
* som tests
* bvf, bvfl, bvt, bvtl
* fix bshfl prefix
* need to implement the vfpu registers
* implement vt_7?
* R4000AllegrexVF -> R4000AllegrexVScalar
* Add test suite to compare with the sn toolchain decoding
* more vfpu test cases
* forgor this
* I can't decide how to name these registers
* Prepare tables for all register types
* Fix typo
* Implement vector scalar register operands
* Implement quad registers
* Fix tests?
* svl.q, svr.q
* Implement a bunch of vfpu0 instructions
* implement registers for `.t` and `.p` instructions
* Implement VFPU1 instructions
* bleh
* VFPU1, VFPU3 and `vcmp.`
* Fix wrong register type on some instructions
* start vfpu3
* Implement VFPU3 instructions
* start categorizing VFPU4
* Categorize VFPU5
* VFPU6 identification
* Identify VFPU7
* COP2 is weird
* organize COP2 a bit
* Add test cases for VFPU4 FMT
* VFPU4 FMT2 stuff
* VFPU4 FMT3 stuff
* VFPU5 stuff
* VFPU6 stuff
* VFPU7 stuff
* Implement COP2 instructions
* Implement vmov, vabs and vneg
* VPFU4 FMT0 FMT0 FMT0 implemented
* VFPU FMT0 FMT0 FMT2
* vnrcp, vnsin, vrexp2
* vrnds, vrndi, vrndf1, vrndf2
* Change tests a bit
* vf2h, vh2f, vsbz, vlgb
* vuc2ifs, vc2i, vus2i, vs2i, vi2uc, vi2c, vi2us, vi2s
* vsrt1, vsrt2, vbfy1, vbfy2, vocp, vsocp, vfad, vavg
* vsrt3, vsrt4, vsgn
* vmfvc and vmtvc placeholders
* vt4444, vt5551, vt5650
* vcst placeholder
* vf2in
* vf2iz
* vf2iu, vf2id, vi2f
* vcmovt, vcmovf
* vwbn.s, viim.s, vfim.s
* vpfxs, vpfxt, vpfxd, vnop, vsync, vflush
* vmmov, vmidt, vmzero, vmone
* vrot
* vmmul, vhtfm2, vtfm2, vhtfm3, vtfm3, vhtfm4, vtfm4, vmscl, vcrsp, vqmul
* Implement matrix operands
* fix matrix operands
* Fix `illegal` tests
* hack out a way to check the test cases are assemblable
* test-fixing: branches
* fix more test cases
* fix vmfvc and vmtvc
* more test fixing
* vdiv and fix operand R323
* more test fixing
* Fix matrix operands
* implement vcmp comparisons
* fix vsync2
* vsqrt and vrndf1 fixes
* Implement "constant" operand for `vcst`
* Add missing operand of vf2in, vf2iz, vf2iu, vf2id, vi2f
* Add missing vcmovt and vcmovf operands
* Add missing vwbn operand
* Tests cases for vmmul
* Fix vtfm2
* Implement "transpose matrix register"
* Add placeholders for the remaining missing operands
* Implement viim operand
* Implement vrot code operand
* placeholders for rp and wp operands
* test cases for vpfxs, vpfxt and vpfxd
* Properly implement rpx, rpy, rpz and rpw
* Properly implement wpx, wpy, wpz and wpw operands
* Implement vfim
* changelog
* readme
* some cleanup
* Restructure some tables
* more table restructure
* fix tests
* more table yeeting
* more cleanup
* more cleanup
* reanming
* moar
* fmt
2024-04-22 17:15:58 +00:00
|
|
|
TESTS_DIRS := $(shell find tests -mindepth 1 -type d -not -path "tests/asm*")
|
2022-10-12 14:26:28 +00:00
|
|
|
TESTS_C := $(foreach dir,$(TESTS_DIRS),$(wildcard $(dir)/*.c))
|
|
|
|
TESTS_CXX := $(foreach dir,$(TESTS_DIRS),$(wildcard $(dir)/*.cpp))
|
|
|
|
TESTS_ELFS := $(foreach f,$(TESTS_C:.c=.elf) $(TESTS_CXX:.cpp=.elf),build/$f)
|
2022-07-09 20:54:42 +00:00
|
|
|
|
2024-04-11 14:27:57 +00:00
|
|
|
DEP_FILES := $(O_FILES:%.o=%.d) $(OXX_FILES:%.o=%.d) $(TESTS_ELFS:%.elf=%.d)
|
|
|
|
|
2022-09-26 14:00:45 +00:00
|
|
|
STATIC_LIB := build/librabbitizer.a
|
|
|
|
DYNAMIC_LIB := build/librabbitizer.so
|
2022-07-09 20:54:42 +00:00
|
|
|
|
2022-10-09 20:51:47 +00:00
|
|
|
STATIC_LIB_XX := build/librabbitizerpp.a
|
|
|
|
DYNAMIC_LIB_XX := build/librabbitizerpp.so
|
|
|
|
|
2022-07-09 21:40:53 +00:00
|
|
|
# create build directories
|
2022-10-09 20:51:47 +00:00
|
|
|
$(shell mkdir -p $(foreach dir,$(SRC_DIRS) $(SRCXX_DIRS) $(TESTS_DIRS),build/$(dir)))
|
|
|
|
|
|
|
|
|
|
|
|
# Dependencies of libraries
|
|
|
|
|
|
|
|
$(STATIC_LIB): $(O_FILES)
|
|
|
|
$(DYNAMIC_LIB): $(O_FILES)
|
|
|
|
|
|
|
|
$(STATIC_LIB_XX): $(O_FILES) $(OXX_FILES)
|
|
|
|
$(DYNAMIC_LIB_XX): $(O_FILES) $(OXX_FILES)
|
2022-07-09 21:40:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
#### Main Targets ###
|
|
|
|
|
2022-09-26 14:00:45 +00:00
|
|
|
all: static tests
|
|
|
|
|
2022-10-09 20:51:47 +00:00
|
|
|
static: $(STATIC_LIB) $(STATIC_LIB_XX)
|
|
|
|
dynamic: $(DYNAMIC_LIB) $(DYNAMIC_LIB_XX)
|
2022-07-09 20:54:42 +00:00
|
|
|
|
2023-05-02 23:01:54 +00:00
|
|
|
tables:
|
|
|
|
make -C tables
|
2023-04-30 12:48:47 +00:00
|
|
|
|
2024-03-11 12:17:29 +00:00
|
|
|
cleantables:
|
|
|
|
make -C tables distclean
|
|
|
|
|
2022-07-09 20:54:42 +00:00
|
|
|
clean:
|
|
|
|
$(RM) -rf build
|
|
|
|
|
|
|
|
distclean: clean
|
2022-12-16 14:04:16 +00:00
|
|
|
$(RM) -rf dist *.egg-info .mypy_cache
|
2023-05-02 23:01:54 +00:00
|
|
|
$(RM) -rf $(DEP_FILES)
|
2022-12-24 00:41:45 +00:00
|
|
|
$(RM) -rf target/
|
2023-05-02 23:01:54 +00:00
|
|
|
make -C tables distclean
|
2022-07-09 20:54:42 +00:00
|
|
|
|
|
|
|
format:
|
2022-07-09 21:40:53 +00:00
|
|
|
clang-format-11 -i -style=file $(C_FILES)
|
2022-10-09 20:51:47 +00:00
|
|
|
clang-format-11 -i -style=file $(CXX_FILES)
|
2022-07-09 20:54:42 +00:00
|
|
|
|
2022-07-09 21:13:37 +00:00
|
|
|
tidy:
|
2022-12-19 18:12:12 +00:00
|
|
|
clang-tidy-11 -p . --fix --fix-errors $(C_FILES) -- $(CSTD) $(OPTFLAGS) $(IINC) $(WARNINGS) $(WARNINGS_C) $(CFLAGS)
|
2022-07-09 21:13:37 +00:00
|
|
|
|
2022-10-12 14:26:28 +00:00
|
|
|
tests: $(TESTS_ELFS)
|
2022-07-09 20:54:42 +00:00
|
|
|
|
2024-03-17 14:19:32 +00:00
|
|
|
.PHONY: all static dynamic tables cleantables clean distclean format tidy tests
|
2022-07-09 21:40:53 +00:00
|
|
|
.DEFAULT_GOAL := all
|
2022-07-09 20:54:42 +00:00
|
|
|
.SECONDARY:
|
|
|
|
|
|
|
|
|
2022-07-09 21:40:53 +00:00
|
|
|
#### Various Recipes ####
|
2022-07-09 20:54:42 +00:00
|
|
|
|
2022-12-15 19:55:31 +00:00
|
|
|
build/%.elf: %.c $(STATIC_LIB)
|
2024-04-11 14:50:31 +00:00
|
|
|
$(CC) -MMD -MP $(CSTD) $(OPTFLAGS) $(IINC) $(WARNINGS) $(WARNINGS_C) $(WARNINGS_ELFS) $(CFLAGS) -o $@ $< $(LDFLAGS)
|
2022-09-26 14:00:45 +00:00
|
|
|
|
2022-12-15 19:55:31 +00:00
|
|
|
build/%.elf: %.cpp $(STATIC_LIB_XX)
|
2024-04-11 14:50:31 +00:00
|
|
|
$(CXX) -MMD -MP $(CXXSTD) $(OPTFLAGS) $(IINC_XX) $(WARNINGS) $(WARNINGS_CXX) $(WARNINGS_ELFS) $(CXXFLAGS) -o $@ $< $(LDXXFLAGS)
|
2022-10-09 20:51:47 +00:00
|
|
|
|
|
|
|
build/%.a:
|
2022-09-26 14:00:45 +00:00
|
|
|
$(AR) rcs $@ $^
|
|
|
|
|
2022-10-09 20:51:47 +00:00
|
|
|
build/%.so:
|
2022-09-26 14:00:45 +00:00
|
|
|
$(CC) -shared -o $@ $^
|
2022-07-09 20:54:42 +00:00
|
|
|
|
2023-05-02 23:01:54 +00:00
|
|
|
build/%.o: %.c
|
2022-07-09 21:13:37 +00:00
|
|
|
# The -MMD flags additionaly creates a .d file with the same name as the .o file.
|
2022-12-15 19:55:31 +00:00
|
|
|
$(CC) -MMD -MP -c $(CSTD) $(OPTFLAGS) $(IINC) $(WARNINGS) $(WARNINGS_C) $(CFLAGS) -o $@ $<
|
2022-07-09 21:13:37 +00:00
|
|
|
|
2023-05-02 23:01:54 +00:00
|
|
|
build/%.o: %.cpp
|
2022-10-09 20:51:47 +00:00
|
|
|
# The -MMD flags additionaly creates a .d file with the same name as the .o file.
|
2022-12-15 19:55:31 +00:00
|
|
|
$(CXX) -MMD -MP -c $(CXXSTD) $(OPTFLAGS) $(IINC_XX) $(WARNINGS) $(WARNINGS_CXX) $(CXXFLAGS) -o $@ $<
|
2022-10-09 20:51:47 +00:00
|
|
|
|
2022-07-09 21:13:37 +00:00
|
|
|
|
|
|
|
-include $(DEP_FILES)
|
2022-10-12 14:26:28 +00:00
|
|
|
|
|
|
|
# Print target for debugging
|
|
|
|
print-% : ; $(info $* is a $(flavor $*) variable set to [$($*)]) @true
|