Mercurial
comparison third_party/luajit/src/ljamalg.c @ 178:94705b5986b3
[ThirdParty] Added WRK and luajit for load testing.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Thu, 22 Jan 2026 20:10:30 -0800 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 177:24fe8ff94056 | 178:94705b5986b3 |
|---|---|
| 1 /* | |
| 2 ** LuaJIT core and libraries amalgamation. | |
| 3 ** Copyright (C) 2005-2023 Mike Pall. See Copyright Notice in luajit.h | |
| 4 */ | |
| 5 | |
| 6 #define ljamalg_c | |
| 7 #define LUA_CORE | |
| 8 | |
| 9 /* To get the mremap prototype. Must be defined before any system includes. */ | |
| 10 #if defined(__linux__) && !defined(_GNU_SOURCE) | |
| 11 #define _GNU_SOURCE | |
| 12 #endif | |
| 13 | |
| 14 #ifndef WINVER | |
| 15 #define WINVER 0x0501 | |
| 16 #endif | |
| 17 | |
| 18 #include "lua.h" | |
| 19 #include "lauxlib.h" | |
| 20 | |
| 21 #include "lj_assert.c" | |
| 22 #include "lj_gc.c" | |
| 23 #include "lj_err.c" | |
| 24 #include "lj_char.c" | |
| 25 #include "lj_bc.c" | |
| 26 #include "lj_obj.c" | |
| 27 #include "lj_buf.c" | |
| 28 #include "lj_str.c" | |
| 29 #include "lj_tab.c" | |
| 30 #include "lj_func.c" | |
| 31 #include "lj_udata.c" | |
| 32 #include "lj_meta.c" | |
| 33 #include "lj_debug.c" | |
| 34 #include "lj_prng.c" | |
| 35 #include "lj_state.c" | |
| 36 #include "lj_dispatch.c" | |
| 37 #include "lj_vmevent.c" | |
| 38 #include "lj_vmmath.c" | |
| 39 #include "lj_strscan.c" | |
| 40 #include "lj_strfmt.c" | |
| 41 #include "lj_strfmt_num.c" | |
| 42 #include "lj_serialize.c" | |
| 43 #include "lj_api.c" | |
| 44 #include "lj_profile.c" | |
| 45 #include "lj_lex.c" | |
| 46 #include "lj_parse.c" | |
| 47 #include "lj_bcread.c" | |
| 48 #include "lj_bcwrite.c" | |
| 49 #include "lj_load.c" | |
| 50 #include "lj_ctype.c" | |
| 51 #include "lj_cdata.c" | |
| 52 #include "lj_cconv.c" | |
| 53 #include "lj_ccall.c" | |
| 54 #include "lj_ccallback.c" | |
| 55 #include "lj_carith.c" | |
| 56 #include "lj_clib.c" | |
| 57 #include "lj_cparse.c" | |
| 58 #include "lj_lib.c" | |
| 59 #include "lj_ir.c" | |
| 60 #include "lj_opt_mem.c" | |
| 61 #include "lj_opt_fold.c" | |
| 62 #include "lj_opt_narrow.c" | |
| 63 #include "lj_opt_dce.c" | |
| 64 #include "lj_opt_loop.c" | |
| 65 #include "lj_opt_split.c" | |
| 66 #include "lj_opt_sink.c" | |
| 67 #include "lj_mcode.c" | |
| 68 #include "lj_snap.c" | |
| 69 #include "lj_record.c" | |
| 70 #include "lj_crecord.c" | |
| 71 #include "lj_ffrecord.c" | |
| 72 #include "lj_asm.c" | |
| 73 #include "lj_trace.c" | |
| 74 #include "lj_gdbjit.c" | |
| 75 #include "lj_alloc.c" | |
| 76 | |
| 77 #include "lib_aux.c" | |
| 78 #include "lib_base.c" | |
| 79 #include "lib_math.c" | |
| 80 #include "lib_string.c" | |
| 81 #include "lib_table.c" | |
| 82 #include "lib_io.c" | |
| 83 #include "lib_os.c" | |
| 84 #include "lib_package.c" | |
| 85 #include "lib_debug.c" | |
| 86 #include "lib_bit.c" | |
| 87 #include "lib_jit.c" | |
| 88 #include "lib_ffi.c" | |
| 89 #include "lib_buffer.c" | |
| 90 #include "lib_init.c" | |
| 91 |