mirror of
https://github.com/frida/tinycc
synced 2024-12-19 03:42:33 +03:00
0b8ee7364a
Checked on: - i386/x86_64 (linux/windows) - arm/arm64 (rapberry pi) - riscv64 (simulator) Not tested for arm softfloat because raspberry pi does not support it. Modifications: Makefile: add arm-asm.c to arm64_FILES add riscv64-asm.c (new file) to riscv64_FILES lib/Makefile: add fetch_and_add_arm.o(new file) to ARM_O add fetch_and_add_arm64.o(new file) to ARM64_O add fetch_and_add_riscv64.o(new file) to RISCV64_O add $(BCHECK_O) to OBJ-arm/OBJ-arm64/OBJ-riscv64 tcc.h: Enable CONFIG_TCC_BCHECK for arm32/arm64/riscv64 Add arm-asm.c, riscv64-asm.c tcctok.h: for arm use memmove4 instead of memcpy4 for arm use memmove8 instead of memcpy8 tccgen.c: put_extern_sym2: for arm check memcpy/memmove/memset/memmove4/memmove8 only use alloca for i386/x86_64 for arm use memmove4 instead of memcpy4 for arm use memmove8 instead of memcpy8 fix builtin_frame_address/builtin_return_address for arm/riscv64 tccrun.c: Add riscv64 support fix rt_getcontext/rt_get_caller_pc for arm tccelf.c: tcc_load_dll: Print filename for bad architecture libtcc.c: add arm-asm.c/riscv64-asm.c tcc-doc.texi: Add arm, arm64, riscv64 support for bound checking lib/bcheck.c: add __bound___aeabi_memcpy/__bound___aeabi_memmove __bound___aeabi_memmove4/__bound___aeabi_memmove8 __bound___aeabi_memset for arm call fetch_and_add_arm/fetch_and_add_arm64/fetch_and_add_riscv64 __bound_init: Fix type for start/end/ad __bound_malloc/__bound_memalign/__bound_realloc/__bound_calloc: Use size + 1 arm-gen.c: add bound checking code like i386/x86_64 assign_regs: only malloc if nb_args != 0 gen_opi/gen_opf: Fix reload problems arm-link.c: relocate_plt: Fix address calculating arm64-gen.c: add bound checking code like i386/x86_64 load/store: remove VT_BOUNDED from sv->r arm64_hfa_aux/arm64_hfa_aux: Fix array code gfunc_prolog: only malloc if n != 0 arm64-link.c: code_reloc/gotplt_entry_type/relocate: add R_AARCH64_LDST64_ABS_LO12_NC relocate: Use addXXle instead of writeXXle riscv64-gen.c: add bound checking code like i386/x86_64 add NB_ASM_REGS/CONFIG_TCC_ASM riscv64-link.c: relocate: Use addXXle instead of writeXXle i386-gen.c/x86_64-gen.c gen_bounds_epilog: Fix code (unrelated) tests/Makefile: add $(BTESTS) for arm/arm64/riscv64 tests/tests2/Makefile: Use 85 only on i386/x86_64 because of asm code Use 113 only on i386/x86_64 because of DLL code Add 112/114/115/116 for arm/arm64/riscv64 Fix FILTER (failed on riscv64) tests/boundtest.c: Only use alloca for i386/x86_64
93 lines
2.5 KiB
Makefile
93 lines
2.5 KiB
Makefile
#
|
|
# Tiny C Compiler Makefile for libtcc1.a
|
|
#
|
|
|
|
TOP = ..
|
|
include $(TOP)/Makefile
|
|
VPATH = $(TOPSRC)/lib $(TOPSRC)/win32/lib
|
|
T = $(or $(CROSS_TARGET),$(NATIVE_TARGET),unknown)
|
|
X = $(if $(CROSS_TARGET),$(CROSS_TARGET)-)
|
|
|
|
XTCC ?= $(TOP)/$(X)tcc$(EXESUF)
|
|
XCC = $(XTCC)
|
|
XAR = $(XTCC) -ar
|
|
XFLAGS-unx = -B$(TOPSRC)
|
|
XFLAGS-win = -B$(TOPSRC)/win32 -I$(TOPSRC)/include
|
|
XFLAGS = $(XFLAGS$(XCFG)) -I$(TOP)
|
|
XCFG = $(or $(findstring -win,$T),-unx)
|
|
S = $(if $(findstring yes,$(SILENT)),@$(info * $@))
|
|
|
|
# in order to use gcc, type: make <target>-libtcc1-usegcc=yes
|
|
arm-libtcc1-usegcc ?= no
|
|
|
|
# This makes bounds checking 40%..60% faster.
|
|
#x86_64-libtcc1-usegcc=yes
|
|
#i386-libtcc1-usegcc=yes
|
|
|
|
ifeq "$($(T)-libtcc1-usegcc)" "yes"
|
|
XCC = $(CC)
|
|
XAR = $(AR)
|
|
XFLAGS = $(CFLAGS) -fPIC -gstabs -fno-omit-frame-pointer -Wno-unused-function -Wno-unused-variable
|
|
endif
|
|
|
|
# only for native compiler
|
|
$(X)BCHECK_O = bcheck.o
|
|
$(X)BT_O = bt-exe.o bt-log.o
|
|
$(X)B_O = bcheck.o bt-exe.o bt-log.o bt-dll.o
|
|
|
|
ifeq ($(CONFIG_musl)$(CONFIG_uClibc),yes)
|
|
BCHECK_O =
|
|
else
|
|
DSO_O = dsohandle.o
|
|
endif
|
|
|
|
I386_O = libtcc1.o alloca86.o alloca86-bt.o $(BT_O)
|
|
X86_64_O = libtcc1.o alloca86_64.o alloca86_64-bt.o $(BT_O)
|
|
ARM_O = libtcc1.o armeabi.o alloca-arm.o armflush.o fetch_and_add_arm.o $(BT_O)
|
|
ARM64_O = lib-arm64.o fetch_and_add_arm64.o $(BT_O)
|
|
RISCV64_O = lib-arm64.o fetch_and_add_riscv64.o $(BT_O)
|
|
WIN_O = crt1.o crt1w.o wincrt1.o wincrt1w.o dllcrt1.o dllmain.o
|
|
|
|
OBJ-i386 = $(I386_O) $(BCHECK_O) $(DSO_O)
|
|
OBJ-x86_64 = $(X86_64_O) va_list.o $(BCHECK_O) $(DSO_O)
|
|
OBJ-x86_64-osx = $(X86_64_O) va_list.o
|
|
OBJ-i386-win32 = $(I386_O) chkstk.o $(B_O) $(WIN_O)
|
|
OBJ-x86_64-win32 = $(X86_64_O) chkstk.o $(B_O) $(WIN_O)
|
|
OBJ-arm64 = $(ARM64_O) $(BCHECK_O) $(DSO_O)
|
|
OBJ-arm = $(ARM_O) $(BCHECK_O) $(DSO_O)
|
|
OBJ-arm-fpa = $(ARM_O) $(DSO_O)
|
|
OBJ-arm-fpa-ld = $(ARM_O) $(DSO_O)
|
|
OBJ-arm-vfp = $(ARM_O) $(DSO_O)
|
|
OBJ-arm-eabi = $(ARM_O) $(DSO_O)
|
|
OBJ-arm-eabihf = $(ARM_O) $(DSO_O)
|
|
OBJ-arm-wince = $(ARM_O) $(WIN_O)
|
|
OBJ-riscv64 = $(RISCV64_O) $(BCHECK_O) $(DSO_O)
|
|
|
|
OBJ-extra = $(filter $(B_O),$(OBJ-$T))
|
|
OBJ-libtcc1 = $(addprefix $(X),$(filter-out $(OBJ-extra),$(OBJ-$T)))
|
|
|
|
ALL = $(addprefix $(TOP)/,$(X)libtcc1.a $(OBJ-extra))
|
|
|
|
all: $(ALL)
|
|
|
|
$(TOP)/$(X)libtcc1.a : $(OBJ-libtcc1)
|
|
$S$(XAR) rcs $@ $^
|
|
|
|
$(X)%.o : %.c
|
|
$S$(XCC) -c $< -o $@ $(XFLAGS)
|
|
|
|
$(X)%.o : %.S
|
|
$S$(XCC) -c $< -o $@ $(XFLAGS)
|
|
|
|
$(TOP)/%.o : %.c
|
|
$S$(XCC) -c $< -o $@ $(XFLAGS)
|
|
|
|
$(TOP)/bcheck.o : XFLAGS += -g
|
|
$(TOP)/bt-exe.o : $(TOP)/tccrun.c
|
|
|
|
$(X)crt1w.o : crt1.c
|
|
$(X)wincrt1w.o : wincrt1.c
|
|
|
|
clean :
|
|
rm -f *.a *.o $(ALL)
|