-
- Downloads
py: Refactor how native emitter code is compiled with a file per arch.
Instead of emitnative.c having configuration code for each supported architecture, and then compiling this file multiple times with different macros defined, this patch adds a file per architecture with the necessary code to configure the native emitter. These files then #include the emitnative.c file. This simplifies emitnative.c (which is already very large), and simplifies the build system because emitnative.c no longer needs special handling for compilation and qstr extraction.
Showing
- py/asmthumb.h 1 addition, 0 deletionspy/asmthumb.h
- py/emitnarm.c 15 additions, 0 deletionspy/emitnarm.c
- py/emitnative.c 1 addition, 96 deletionspy/emitnative.c
- py/emitnthumb.c 15 additions, 0 deletionspy/emitnthumb.c
- py/emitnx64.c 15 additions, 0 deletionspy/emitnx64.c
- py/emitnx86.c 67 additions, 0 deletionspy/emitnx86.c
- py/emitnxtensa.c 15 additions, 0 deletionspy/emitnxtensa.c
- py/mkrules.mk 1 addition, 4 deletionspy/mkrules.mk
- py/py.mk 2 additions, 24 deletionspy/py.mk
Loading
Please register or sign in to comment