diff options
author | Mike Pall <mike> | 2010-12-05 17:12:34 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2010-12-05 17:12:34 +0100 |
commit | e7f8cc964e036147f0303c2653a77dfe24473dcc (patch) | |
tree | 04710210a3280557a0528208440ba4b45341bebb /src/Makefile.dep | |
parent | 559545eb6dc098594f957b09217ac3507b56eb3c (diff) | |
download | luajit-e7f8cc964e036147f0303c2653a77dfe24473dcc.tar.gz luajit-e7f8cc964e036147f0303c2653a77dfe24473dcc.tar.bz2 luajit-e7f8cc964e036147f0303c2653a77dfe24473dcc.zip |
Split off fast function recording to lj_ffrecord.c.
Diffstat (limited to 'src/Makefile.dep')
-rw-r--r-- | src/Makefile.dep | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/src/Makefile.dep b/src/Makefile.dep index 145438db..9cfbd587 100644 --- a/src/Makefile.dep +++ b/src/Makefile.dep | |||
@@ -71,6 +71,10 @@ lj_dispatch.o: lj_dispatch.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \ | |||
71 | lj_err.o: lj_err.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h lj_err.h \ | 71 | lj_err.o: lj_err.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h lj_err.h \ |
72 | lj_errmsg.h lj_str.h lj_tab.h lj_func.h lj_state.h lj_frame.h lj_bc.h \ | 72 | lj_errmsg.h lj_str.h lj_tab.h lj_func.h lj_state.h lj_frame.h lj_bc.h \ |
73 | lj_trace.h lj_jit.h lj_ir.h lj_dispatch.h lj_traceerr.h lj_vm.h | 73 | lj_trace.h lj_jit.h lj_ir.h lj_dispatch.h lj_traceerr.h lj_vm.h |
74 | lj_ffrecord.o: lj_ffrecord.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \ | ||
75 | lj_err.h lj_errmsg.h lj_str.h lj_tab.h lj_frame.h lj_bc.h lj_ff.h \ | ||
76 | lj_ffdef.h lj_ir.h lj_jit.h lj_iropt.h lj_trace.h lj_dispatch.h \ | ||
77 | lj_traceerr.h lj_record.h lj_vm.h lj_recdef.h | ||
74 | lj_func.o: lj_func.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h lj_gc.h \ | 78 | lj_func.o: lj_func.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h lj_gc.h \ |
75 | lj_func.h lj_trace.h lj_jit.h lj_ir.h lj_dispatch.h lj_bc.h \ | 79 | lj_func.h lj_trace.h lj_jit.h lj_ir.h lj_dispatch.h lj_bc.h \ |
76 | lj_traceerr.h lj_vm.h | 80 | lj_traceerr.h lj_vm.h |
@@ -112,10 +116,9 @@ lj_parse.o: lj_parse.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \ | |||
112 | lj_gc.h lj_err.h lj_errmsg.h lj_str.h lj_tab.h lj_func.h lj_state.h \ | 116 | lj_gc.h lj_err.h lj_errmsg.h lj_str.h lj_tab.h lj_func.h lj_state.h \ |
113 | lj_bc.h lj_lex.h lj_parse.h lj_vm.h lj_vmevent.h | 117 | lj_bc.h lj_lex.h lj_parse.h lj_vm.h lj_vmevent.h |
114 | lj_record.o: lj_record.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \ | 118 | lj_record.o: lj_record.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \ |
115 | lj_gc.h lj_err.h lj_errmsg.h lj_str.h lj_tab.h lj_state.h lj_frame.h \ | 119 | lj_err.h lj_errmsg.h lj_str.h lj_tab.h lj_frame.h lj_bc.h lj_ff.h \ |
116 | lj_bc.h lj_ff.h lj_ffdef.h lj_ir.h lj_jit.h lj_iropt.h lj_trace.h \ | 120 | lj_ffdef.h lj_ir.h lj_jit.h lj_iropt.h lj_trace.h lj_dispatch.h \ |
117 | lj_dispatch.h lj_traceerr.h lj_record.h lj_snap.h lj_asm.h lj_vm.h \ | 121 | lj_traceerr.h lj_record.h lj_ffrecord.h lj_snap.h lj_vm.h |
118 | lj_recdef.h | ||
119 | lj_snap.o: lj_snap.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h lj_gc.h \ | 122 | lj_snap.o: lj_snap.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h lj_gc.h \ |
120 | lj_state.h lj_frame.h lj_bc.h lj_ir.h lj_jit.h lj_iropt.h lj_trace.h \ | 123 | lj_state.h lj_frame.h lj_bc.h lj_ir.h lj_jit.h lj_iropt.h lj_trace.h \ |
121 | lj_dispatch.h lj_traceerr.h lj_snap.h lj_target.h lj_target_*.h | 124 | lj_dispatch.h lj_traceerr.h lj_snap.h lj_target.h lj_target_*.h |
@@ -148,9 +151,9 @@ ljamalg.o: ljamalg.c lua.h luaconf.h lauxlib.h lj_gc.c lj_obj.h lj_def.h \ | |||
148 | lj_cconv.c lj_cparse.c lj_cparse.h lj_lib.c lj_lib.h lj_ir.c lj_iropt.h \ | 151 | lj_cconv.c lj_cparse.c lj_cparse.h lj_lib.c lj_lib.h lj_ir.c lj_iropt.h \ |
149 | lj_opt_mem.c lj_opt_fold.c lj_folddef.h lj_opt_narrow.c lj_opt_dce.c \ | 152 | lj_opt_mem.c lj_opt_fold.c lj_folddef.h lj_opt_narrow.c lj_opt_dce.c \ |
150 | lj_opt_loop.c lj_snap.h lj_mcode.c lj_mcode.h lj_snap.c lj_target.h \ | 153 | lj_opt_loop.c lj_snap.h lj_mcode.c lj_mcode.h lj_snap.c lj_target.h \ |
151 | lj_target_*.h lj_record.c lj_record.h lj_asm.h lj_recdef.h lj_asm.c \ | 154 | lj_target_*.h lj_record.c lj_record.h lj_ffrecord.h lj_ffrecord.c \ |
152 | lj_trace.c lj_gdbjit.h lj_gdbjit.c lj_alloc.c lib_aux.c lib_base.c \ | 155 | lj_recdef.h lj_asm.c lj_asm.h lj_trace.c lj_gdbjit.h lj_gdbjit.c \ |
153 | lualib.h lj_libdef.h lib_math.c lib_string.c lib_table.c lib_io.c \ | 156 | lj_alloc.c lib_aux.c lib_base.c lualib.h lj_libdef.h lib_math.c \ |
154 | lib_os.c lib_package.c lib_debug.c lib_bit.c lib_jit.c lib_ffi.c \ | 157 | lib_string.c lib_table.c lib_io.c lib_os.c lib_package.c lib_debug.c \ |
155 | lib_init.c | 158 | lib_bit.c lib_jit.c lib_ffi.c lib_init.c |
156 | luajit.o: luajit.c lua.h luaconf.h lauxlib.h lualib.h luajit.h lj_arch.h | 159 | luajit.o: luajit.c lua.h luaconf.h lauxlib.h lualib.h luajit.h lj_arch.h |