diff options
| author | Mike Pall <mike> | 2020-01-20 23:26:51 +0100 |
|---|---|---|
| committer | Mike Pall <mike> | 2020-01-20 23:26:51 +0100 |
| commit | 38a5ed4b434618662372c0c1665ed08782f5faa5 (patch) | |
| tree | 1fe5cbed5b8bf4309b953bf29eb6196044d62582 /src | |
| parent | 820339960123dc78a7ce03edf53fcf4fdae0e55d (diff) | |
| download | luajit-38a5ed4b434618662372c0c1665ed08782f5faa5.tar.gz luajit-38a5ed4b434618662372c0c1665ed08782f5faa5.tar.bz2 luajit-38a5ed4b434618662372c0c1665ed08782f5faa5.zip | |
Bump copyright date.
Diffstat (limited to 'src')
146 files changed, 147 insertions, 147 deletions
diff --git a/src/Makefile b/src/Makefile index cde4b9f7c..a588dc3dc 100644 --- a/src/Makefile +++ b/src/Makefile | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | # Also works with MinGW and Cygwin on Windows. | 7 | # Also works with MinGW and Cygwin on Windows. |
| 8 | # Please check msvcbuild.bat for building with MSVC on Windows. | 8 | # Please check msvcbuild.bat for building with MSVC on Windows. |
| 9 | # | 9 | # |
| 10 | # Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 10 | # Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 11 | ############################################################################## | 11 | ############################################################################## |
| 12 | 12 | ||
| 13 | MAJVER= 2 | 13 | MAJVER= 2 |
diff --git a/src/host/buildvm.c b/src/host/buildvm.c index b9560f313..05e0dbdb6 100644 --- a/src/host/buildvm.c +++ b/src/host/buildvm.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder. | 2 | ** LuaJIT VM builder. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** This is a tool to build the hand-tuned assembler code required for | 5 | ** This is a tool to build the hand-tuned assembler code required for |
| 6 | ** LuaJIT's bytecode interpreter. It supports a variety of output formats | 6 | ** LuaJIT's bytecode interpreter. It supports a variety of output formats |
diff --git a/src/host/buildvm.h b/src/host/buildvm.h index e6dd3dcbe..a440cfc3e 100644 --- a/src/host/buildvm.h +++ b/src/host/buildvm.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder. | 2 | ** LuaJIT VM builder. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _BUILDVM_H | 6 | #ifndef _BUILDVM_H |
diff --git a/src/host/buildvm_asm.c b/src/host/buildvm_asm.c index 81a3969a1..2cb7d4516 100644 --- a/src/host/buildvm_asm.c +++ b/src/host/buildvm_asm.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder: Assembler source code emitter. | 2 | ** LuaJIT VM builder: Assembler source code emitter. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "buildvm.h" | 6 | #include "buildvm.h" |
diff --git a/src/host/buildvm_fold.c b/src/host/buildvm_fold.c index d579f4d41..65e19e264 100644 --- a/src/host/buildvm_fold.c +++ b/src/host/buildvm_fold.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder: IR folding hash table generator. | 2 | ** LuaJIT VM builder: IR folding hash table generator. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "buildvm.h" | 6 | #include "buildvm.h" |
diff --git a/src/host/buildvm_lib.c b/src/host/buildvm_lib.c index 569e2cafd..3c64626ca 100644 --- a/src/host/buildvm_lib.c +++ b/src/host/buildvm_lib.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder: library definition compiler. | 2 | ** LuaJIT VM builder: library definition compiler. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "buildvm.h" | 6 | #include "buildvm.h" |
diff --git a/src/host/buildvm_peobj.c b/src/host/buildvm_peobj.c index aab00d68f..876b0addf 100644 --- a/src/host/buildvm_peobj.c +++ b/src/host/buildvm_peobj.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder: PE object emitter. | 2 | ** LuaJIT VM builder: PE object emitter. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Only used for building on Windows, since we cannot assume the presence | 5 | ** Only used for building on Windows, since we cannot assume the presence |
| 6 | ** of a suitable assembler. The host and target byte order must match. | 6 | ** of a suitable assembler. The host and target byte order must match. |
diff --git a/src/host/genminilua.lua b/src/host/genminilua.lua index 50feff014..c23e23657 100644 --- a/src/host/genminilua.lua +++ b/src/host/genminilua.lua | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | -- Lua script to generate a customized, minified version of Lua. | 2 | -- Lua script to generate a customized, minified version of Lua. |
| 3 | -- The resulting 'minilua' is used for the build process of LuaJIT. | 3 | -- The resulting 'minilua' is used for the build process of LuaJIT. |
| 4 | ---------------------------------------------------------------------------- | 4 | ---------------------------------------------------------------------------- |
| 5 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 5 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 6 | -- Released under the MIT license. See Copyright Notice in luajit.h | 6 | -- Released under the MIT license. See Copyright Notice in luajit.h |
| 7 | ---------------------------------------------------------------------------- | 7 | ---------------------------------------------------------------------------- |
| 8 | 8 | ||
diff --git a/src/jit/bc.lua b/src/jit/bc.lua index a2f84aaf3..7ca4c61cd 100644 --- a/src/jit/bc.lua +++ b/src/jit/bc.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT bytecode listing module. | 2 | -- LuaJIT bytecode listing module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
| 6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
| 7 | -- | 7 | -- |
diff --git a/src/jit/bcsave.lua b/src/jit/bcsave.lua index c94064e48..6c6ba86e3 100644 --- a/src/jit/bcsave.lua +++ b/src/jit/bcsave.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT module to save/list bytecode. | 2 | -- LuaJIT module to save/list bytecode. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
| 6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
| 7 | -- | 7 | -- |
diff --git a/src/jit/dis_arm.lua b/src/jit/dis_arm.lua index 91ebb7d5f..152d91bb6 100644 --- a/src/jit/dis_arm.lua +++ b/src/jit/dis_arm.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT ARM disassembler module. | 2 | -- LuaJIT ARM disassembler module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
| 6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
| 7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/src/jit/dis_mips.lua b/src/jit/dis_mips.lua index 02dfc1722..c720b5374 100644 --- a/src/jit/dis_mips.lua +++ b/src/jit/dis_mips.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT MIPS disassembler module. | 2 | -- LuaJIT MIPS disassembler module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | -- Released under the MIT/X license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT/X license. See Copyright Notice in luajit.h |
| 6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
| 7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/src/jit/dis_mipsel.lua b/src/jit/dis_mipsel.lua index c9c2e2456..a2d056900 100644 --- a/src/jit/dis_mipsel.lua +++ b/src/jit/dis_mipsel.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT MIPSEL disassembler wrapper module. | 2 | -- LuaJIT MIPSEL disassembler wrapper module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
| 6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
| 7 | -- This module just exports the little-endian functions from the | 7 | -- This module just exports the little-endian functions from the |
diff --git a/src/jit/dis_ppc.lua b/src/jit/dis_ppc.lua index 4043aeb8d..dfc6cbcec 100644 --- a/src/jit/dis_ppc.lua +++ b/src/jit/dis_ppc.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT PPC disassembler module. | 2 | -- LuaJIT PPC disassembler module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | -- Released under the MIT/X license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT/X license. See Copyright Notice in luajit.h |
| 6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
| 7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/src/jit/dis_x64.lua b/src/jit/dis_x64.lua index 08918035e..1027b5a17 100644 --- a/src/jit/dis_x64.lua +++ b/src/jit/dis_x64.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT x64 disassembler wrapper module. | 2 | -- LuaJIT x64 disassembler wrapper module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
| 6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
| 7 | -- This module just exports the 64 bit functions from the combined | 7 | -- This module just exports the 64 bit functions from the combined |
diff --git a/src/jit/dis_x86.lua b/src/jit/dis_x86.lua index 74d0f5292..9246820d7 100644 --- a/src/jit/dis_x86.lua +++ b/src/jit/dis_x86.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT x86/x64 disassembler module. | 2 | -- LuaJIT x86/x64 disassembler module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
| 6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
| 7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/src/jit/dump.lua b/src/jit/dump.lua index 666ba438f..6a2632c38 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT compiler dump module. | 2 | -- LuaJIT compiler dump module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
| 6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
| 7 | -- | 7 | -- |
diff --git a/src/jit/v.lua b/src/jit/v.lua index 47ee39410..9696f67f8 100644 --- a/src/jit/v.lua +++ b/src/jit/v.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- Verbose mode of the LuaJIT compiler. | 2 | -- Verbose mode of the LuaJIT compiler. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
| 6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
| 7 | -- | 7 | -- |
diff --git a/src/lib_aux.c b/src/lib_aux.c index 7af1cd43b..f29ca8482 100644 --- a/src/lib_aux.c +++ b/src/lib_aux.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Auxiliary library for the Lua/C API. | 2 | ** Auxiliary library for the Lua/C API. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major parts taken verbatim or adapted from the Lua interpreter. | 5 | ** Major parts taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lib_base.c b/src/lib_base.c index 98ed3d607..dae61fe13 100644 --- a/src/lib_base.c +++ b/src/lib_base.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Base and coroutine library. | 2 | ** Base and coroutine library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2011 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2011 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lib_bit.c b/src/lib_bit.c index 6dffdfac0..c374d7a05 100644 --- a/src/lib_bit.c +++ b/src/lib_bit.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Bit manipulation library. | 2 | ** Bit manipulation library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lib_bit_c | 6 | #define lib_bit_c |
diff --git a/src/lib_debug.c b/src/lib_debug.c index 54c3b7e26..a485ff8e9 100644 --- a/src/lib_debug.c +++ b/src/lib_debug.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Debug library. | 2 | ** Debug library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lib_ffi.c b/src/lib_ffi.c index 83483d952..5851eea5c 100644 --- a/src/lib_ffi.c +++ b/src/lib_ffi.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** FFI library. | 2 | ** FFI library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lib_ffi_c | 6 | #define lib_ffi_c |
diff --git a/src/lib_init.c b/src/lib_init.c index 2ed370e96..15ac35622 100644 --- a/src/lib_init.c +++ b/src/lib_init.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Library initialization. | 2 | ** Library initialization. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major parts taken verbatim from the Lua interpreter. | 5 | ** Major parts taken verbatim from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lib_io.c b/src/lib_io.c index 9cdcfcfcb..f13cf0484 100644 --- a/src/lib_io.c +++ b/src/lib_io.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** I/O library. | 2 | ** I/O library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2011 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2011 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lib_jit.c b/src/lib_jit.c index d2fcf21be..6e98229e6 100644 --- a/src/lib_jit.c +++ b/src/lib_jit.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** JIT library. | 2 | ** JIT library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lib_jit_c | 6 | #define lib_jit_c |
diff --git a/src/lib_math.c b/src/lib_math.c index 4c708a47e..9d324d7e7 100644 --- a/src/lib_math.c +++ b/src/lib_math.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Math library. | 2 | ** Math library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include <math.h> | 6 | #include <math.h> |
diff --git a/src/lib_os.c b/src/lib_os.c index 8c96b86c7..a8e1708f1 100644 --- a/src/lib_os.c +++ b/src/lib_os.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** OS library. | 2 | ** OS library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lib_package.c b/src/lib_package.c index 01b63d638..a8bdcf17a 100644 --- a/src/lib_package.c +++ b/src/lib_package.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Package library. | 2 | ** Package library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2012 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2012 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lib_string.c b/src/lib_string.c index c1e595c97..d0b791600 100644 --- a/src/lib_string.c +++ b/src/lib_string.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** String library. | 2 | ** String library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lib_table.c b/src/lib_table.c index b2856ee2f..9842513bd 100644 --- a/src/lib_table.c +++ b/src/lib_table.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Table library. | 2 | ** Table library. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_api.c b/src/lj_api.c index 7b0b3f9d0..e2d7e5337 100644 --- a/src/lj_api.c +++ b/src/lj_api.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Public Lua/C API. | 2 | ** Public Lua/C API. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_arch.h b/src/lj_arch.h index 5f7e4456e..320ccf971 100644 --- a/src/lj_arch.h +++ b/src/lj_arch.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Target architecture selection. | 2 | ** Target architecture selection. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_ARCH_H | 6 | #ifndef _LJ_ARCH_H |
diff --git a/src/lj_asm.c b/src/lj_asm.c index e486b03cd..9b17421e9 100644 --- a/src/lj_asm.c +++ b/src/lj_asm.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** IR assembler (SSA IR -> machine code). | 2 | ** IR assembler (SSA IR -> machine code). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_asm_c | 6 | #define lj_asm_c |
diff --git a/src/lj_asm.h b/src/lj_asm.h index 2819481b6..c7524da59 100644 --- a/src/lj_asm.h +++ b/src/lj_asm.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** IR assembler (SSA IR -> machine code). | 2 | ** IR assembler (SSA IR -> machine code). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_ASM_H | 6 | #ifndef _LJ_ASM_H |
diff --git a/src/lj_asm_arm.h b/src/lj_asm_arm.h index ccd205455..087530b24 100644 --- a/src/lj_asm_arm.h +++ b/src/lj_asm_arm.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** ARM IR assembler (SSA IR -> machine code). | 2 | ** ARM IR assembler (SSA IR -> machine code). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* -- Register allocator extensions --------------------------------------- */ | 6 | /* -- Register allocator extensions --------------------------------------- */ |
diff --git a/src/lj_asm_mips.h b/src/lj_asm_mips.h index 763119030..190a55eb3 100644 --- a/src/lj_asm_mips.h +++ b/src/lj_asm_mips.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** MIPS IR assembler (SSA IR -> machine code). | 2 | ** MIPS IR assembler (SSA IR -> machine code). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* -- Register allocator extensions --------------------------------------- */ | 6 | /* -- Register allocator extensions --------------------------------------- */ |
diff --git a/src/lj_asm_ppc.h b/src/lj_asm_ppc.h index d8a14c839..dc092db21 100644 --- a/src/lj_asm_ppc.h +++ b/src/lj_asm_ppc.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** PPC IR assembler (SSA IR -> machine code). | 2 | ** PPC IR assembler (SSA IR -> machine code). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* -- Register allocator extensions --------------------------------------- */ | 6 | /* -- Register allocator extensions --------------------------------------- */ |
diff --git a/src/lj_asm_x86.h b/src/lj_asm_x86.h index 10468bb71..2c38d1ec8 100644 --- a/src/lj_asm_x86.h +++ b/src/lj_asm_x86.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** x86/x64 IR assembler (SSA IR -> machine code). | 2 | ** x86/x64 IR assembler (SSA IR -> machine code). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* -- Guard handling ------------------------------------------------------ */ | 6 | /* -- Guard handling ------------------------------------------------------ */ |
diff --git a/src/lj_bc.c b/src/lj_bc.c index a597692ca..48ba041eb 100644 --- a/src/lj_bc.c +++ b/src/lj_bc.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Bytecode instruction modes. | 2 | ** Bytecode instruction modes. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_bc_c | 6 | #define lj_bc_c |
diff --git a/src/lj_bc.h b/src/lj_bc.h index 108c10f28..8fd7a2edc 100644 --- a/src/lj_bc.h +++ b/src/lj_bc.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Bytecode instruction format. | 2 | ** Bytecode instruction format. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_BC_H | 6 | #ifndef _LJ_BC_H |
diff --git a/src/lj_bcdump.h b/src/lj_bcdump.h index ba53c0a11..ad5646198 100644 --- a/src/lj_bcdump.h +++ b/src/lj_bcdump.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Bytecode dump definitions. | 2 | ** Bytecode dump definitions. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_BCDUMP_H | 6 | #ifndef _LJ_BCDUMP_H |
diff --git a/src/lj_bcread.c b/src/lj_bcread.c index 62695ef40..b88794eb1 100644 --- a/src/lj_bcread.c +++ b/src/lj_bcread.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Bytecode reader. | 2 | ** Bytecode reader. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_bcread_c | 6 | #define lj_bcread_c |
diff --git a/src/lj_bcwrite.c b/src/lj_bcwrite.c index 171a8d6d4..f57fcfd60 100644 --- a/src/lj_bcwrite.c +++ b/src/lj_bcwrite.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Bytecode writer. | 2 | ** Bytecode writer. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_bcwrite_c | 6 | #define lj_bcwrite_c |
diff --git a/src/lj_carith.c b/src/lj_carith.c index c34596cac..b33b1f361 100644 --- a/src/lj_carith.c +++ b/src/lj_carith.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** C data arithmetic. | 2 | ** C data arithmetic. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "lj_obj.h" | 6 | #include "lj_obj.h" |
diff --git a/src/lj_carith.h b/src/lj_carith.h index 82fc8245d..bac3e1a48 100644 --- a/src/lj_carith.h +++ b/src/lj_carith.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** C data arithmetic. | 2 | ** C data arithmetic. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_CARITH_H | 6 | #ifndef _LJ_CARITH_H |
diff --git a/src/lj_ccall.c b/src/lj_ccall.c index 65076e776..fe1e0a3a2 100644 --- a/src/lj_ccall.c +++ b/src/lj_ccall.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** FFI C call handling. | 2 | ** FFI C call handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "lj_obj.h" | 6 | #include "lj_obj.h" |
diff --git a/src/lj_ccall.h b/src/lj_ccall.h index 9089e6c7e..5f6d51018 100644 --- a/src/lj_ccall.h +++ b/src/lj_ccall.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** FFI C call handling. | 2 | ** FFI C call handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_CCALL_H | 6 | #ifndef _LJ_CCALL_H |
diff --git a/src/lj_ccallback.c b/src/lj_ccallback.c index 06a740190..26377f823 100644 --- a/src/lj_ccallback.c +++ b/src/lj_ccallback.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** FFI C callback handling. | 2 | ** FFI C callback handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "lj_obj.h" | 6 | #include "lj_obj.h" |
diff --git a/src/lj_ccallback.h b/src/lj_ccallback.h index a8cdad386..29eb462b4 100644 --- a/src/lj_ccallback.h +++ b/src/lj_ccallback.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** FFI C callback handling. | 2 | ** FFI C callback handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_CCALLBACK_H | 6 | #ifndef _LJ_CCALLBACK_H |
diff --git a/src/lj_cconv.c b/src/lj_cconv.c index ab398adcd..99776b0eb 100644 --- a/src/lj_cconv.c +++ b/src/lj_cconv.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** C type conversions. | 2 | ** C type conversions. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "lj_obj.h" | 6 | #include "lj_obj.h" |
diff --git a/src/lj_cconv.h b/src/lj_cconv.h index 0a0b66c90..2fd5a71c6 100644 --- a/src/lj_cconv.h +++ b/src/lj_cconv.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** C type conversions. | 2 | ** C type conversions. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_CCONV_H | 6 | #ifndef _LJ_CCONV_H |
diff --git a/src/lj_cdata.c b/src/lj_cdata.c index 49b1aa502..4aeb0ce34 100644 --- a/src/lj_cdata.c +++ b/src/lj_cdata.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** C data management. | 2 | ** C data management. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "lj_obj.h" | 6 | #include "lj_obj.h" |
diff --git a/src/lj_cdata.h b/src/lj_cdata.h index 4bb65db2a..2ce90bdfc 100644 --- a/src/lj_cdata.h +++ b/src/lj_cdata.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** C data management. | 2 | ** C data management. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_CDATA_H | 6 | #ifndef _LJ_CDATA_H |
diff --git a/src/lj_clib.c b/src/lj_clib.c index 41a8738e8..df20aca33 100644 --- a/src/lj_clib.c +++ b/src/lj_clib.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** FFI C library loader. | 2 | ** FFI C library loader. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "lj_obj.h" | 6 | #include "lj_obj.h" |
diff --git a/src/lj_clib.h b/src/lj_clib.h index fcc9dac59..afaaa458d 100644 --- a/src/lj_clib.h +++ b/src/lj_clib.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** FFI C library loader. | 2 | ** FFI C library loader. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_CLIB_H | 6 | #ifndef _LJ_CLIB_H |
diff --git a/src/lj_cparse.c b/src/lj_cparse.c index f111537dc..50bb76ad9 100644 --- a/src/lj_cparse.c +++ b/src/lj_cparse.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** C declaration parser. | 2 | ** C declaration parser. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "lj_obj.h" | 6 | #include "lj_obj.h" |
diff --git a/src/lj_cparse.h b/src/lj_cparse.h index bad1060bb..87eb3ff4d 100644 --- a/src/lj_cparse.h +++ b/src/lj_cparse.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** C declaration parser. | 2 | ** C declaration parser. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_CPARSE_H | 6 | #ifndef _LJ_CPARSE_H |
diff --git a/src/lj_crecord.c b/src/lj_crecord.c index bc88d635c..99344b79e 100644 --- a/src/lj_crecord.c +++ b/src/lj_crecord.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Trace recorder for C data operations. | 2 | ** Trace recorder for C data operations. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_ffrecord_c | 6 | #define lj_ffrecord_c |
diff --git a/src/lj_crecord.h b/src/lj_crecord.h index 8e0afd18c..941c8adbb 100644 --- a/src/lj_crecord.h +++ b/src/lj_crecord.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Trace recorder for C data operations. | 2 | ** Trace recorder for C data operations. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_CRECORD_H | 6 | #ifndef _LJ_CRECORD_H |
diff --git a/src/lj_ctype.c b/src/lj_ctype.c index 9417500cb..a338e8e6f 100644 --- a/src/lj_ctype.c +++ b/src/lj_ctype.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** C type management. | 2 | ** C type management. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "lj_obj.h" | 6 | #include "lj_obj.h" |
diff --git a/src/lj_ctype.h b/src/lj_ctype.h index 2aefd3b6e..8066214fc 100644 --- a/src/lj_ctype.h +++ b/src/lj_ctype.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** C type management. | 2 | ** C type management. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_CTYPE_H | 6 | #ifndef _LJ_CTYPE_H |
diff --git a/src/lj_debug.c b/src/lj_debug.c index 7222e2ac1..04fecfafb 100644 --- a/src/lj_debug.c +++ b/src/lj_debug.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Debugging and introspection. | 2 | ** Debugging and introspection. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_debug_c | 6 | #define lj_debug_c |
diff --git a/src/lj_debug.h b/src/lj_debug.h index d10d0da2c..75ea927c5 100644 --- a/src/lj_debug.h +++ b/src/lj_debug.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Debugging and introspection. | 2 | ** Debugging and introspection. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_DEBUG_H | 6 | #ifndef _LJ_DEBUG_H |
diff --git a/src/lj_def.h b/src/lj_def.h index e9249e0d6..b5e26d69a 100644 --- a/src/lj_def.h +++ b/src/lj_def.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT common internal definitions. | 2 | ** LuaJIT common internal definitions. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_DEF_H | 6 | #ifndef _LJ_DEF_H |
diff --git a/src/lj_dispatch.c b/src/lj_dispatch.c index 627379a2a..644e9028d 100644 --- a/src/lj_dispatch.c +++ b/src/lj_dispatch.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Instruction dispatch handling. | 2 | ** Instruction dispatch handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_dispatch_c | 6 | #define lj_dispatch_c |
diff --git a/src/lj_dispatch.h b/src/lj_dispatch.h index e46a0eee7..17bf93dad 100644 --- a/src/lj_dispatch.h +++ b/src/lj_dispatch.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Instruction dispatch handling. | 2 | ** Instruction dispatch handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_DISPATCH_H | 6 | #ifndef _LJ_DISPATCH_H |
diff --git a/src/lj_emit_arm.h b/src/lj_emit_arm.h index 285c98de0..6a136e51b 100644 --- a/src/lj_emit_arm.h +++ b/src/lj_emit_arm.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** ARM instruction emitter. | 2 | ** ARM instruction emitter. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* -- Constant encoding --------------------------------------------------- */ | 6 | /* -- Constant encoding --------------------------------------------------- */ |
diff --git a/src/lj_emit_mips.h b/src/lj_emit_mips.h index ed62608a4..f3dcd1dda 100644 --- a/src/lj_emit_mips.h +++ b/src/lj_emit_mips.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** MIPS instruction emitter. | 2 | ** MIPS instruction emitter. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* -- Emit basic instructions --------------------------------------------- */ | 6 | /* -- Emit basic instructions --------------------------------------------- */ |
diff --git a/src/lj_emit_ppc.h b/src/lj_emit_ppc.h index 14099302c..e993d2949 100644 --- a/src/lj_emit_ppc.h +++ b/src/lj_emit_ppc.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** PPC instruction emitter. | 2 | ** PPC instruction emitter. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* -- Emit basic instructions --------------------------------------------- */ | 6 | /* -- Emit basic instructions --------------------------------------------- */ |
diff --git a/src/lj_emit_x86.h b/src/lj_emit_x86.h index 9c371a955..7bbc695b6 100644 --- a/src/lj_emit_x86.h +++ b/src/lj_emit_x86.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** x86/x64 instruction emitter. | 2 | ** x86/x64 instruction emitter. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* -- Emit basic instructions --------------------------------------------- */ | 6 | /* -- Emit basic instructions --------------------------------------------- */ |
diff --git a/src/lj_err.c b/src/lj_err.c index 6619ad799..caa7487f2 100644 --- a/src/lj_err.c +++ b/src/lj_err.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Error handling. | 2 | ** Error handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_err_c | 6 | #define lj_err_c |
diff --git a/src/lj_err.h b/src/lj_err.h index cba5fb714..ed148d797 100644 --- a/src/lj_err.h +++ b/src/lj_err.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Error handling. | 2 | ** Error handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_ERR_H | 6 | #ifndef _LJ_ERR_H |
diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h index ac552f40c..35b5edd52 100644 --- a/src/lj_errmsg.h +++ b/src/lj_errmsg.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** VM error messages. | 2 | ** VM error messages. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* This file may be included multiple times with different ERRDEF macros. */ | 6 | /* This file may be included multiple times with different ERRDEF macros. */ |
diff --git a/src/lj_ff.h b/src/lj_ff.h index 31d65a00d..7d9a5851a 100644 --- a/src/lj_ff.h +++ b/src/lj_ff.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Fast function IDs. | 2 | ** Fast function IDs. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_FF_H | 6 | #ifndef _LJ_FF_H |
diff --git a/src/lj_ffrecord.c b/src/lj_ffrecord.c index da09dca5f..1d4285905 100644 --- a/src/lj_ffrecord.c +++ b/src/lj_ffrecord.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Fast function call recorder. | 2 | ** Fast function call recorder. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_ffrecord_c | 6 | #define lj_ffrecord_c |
diff --git a/src/lj_ffrecord.h b/src/lj_ffrecord.h index 3b407450d..9216519a6 100644 --- a/src/lj_ffrecord.h +++ b/src/lj_ffrecord.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Fast function call recorder. | 2 | ** Fast function call recorder. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_FFRECORD_H | 6 | #ifndef _LJ_FFRECORD_H |
diff --git a/src/lj_frame.h b/src/lj_frame.h index eb5df3079..e78a28a57 100644 --- a/src/lj_frame.h +++ b/src/lj_frame.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Stack frames. | 2 | ** Stack frames. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_FRAME_H | 6 | #ifndef _LJ_FRAME_H |
diff --git a/src/lj_func.c b/src/lj_func.c index 639dad876..9afdb638e 100644 --- a/src/lj_func.c +++ b/src/lj_func.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Function handling (prototypes, functions and upvalues). | 2 | ** Function handling (prototypes, functions and upvalues). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_func.h b/src/lj_func.h index 901751b98..24d8ef31f 100644 --- a/src/lj_func.h +++ b/src/lj_func.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Function handling (prototypes, functions and upvalues). | 2 | ** Function handling (prototypes, functions and upvalues). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_FUNC_H | 6 | #ifndef _LJ_FUNC_H |
diff --git a/src/lj_gc.c b/src/lj_gc.c index a5d32ea35..86fcd6eb9 100644 --- a/src/lj_gc.c +++ b/src/lj_gc.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Garbage collector. | 2 | ** Garbage collector. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_gc.h b/src/lj_gc.h index 57ac7147b..e42dbcf09 100644 --- a/src/lj_gc.h +++ b/src/lj_gc.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Garbage collector. | 2 | ** Garbage collector. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_GC_H | 6 | #ifndef _LJ_GC_H |
diff --git a/src/lj_gdbjit.c b/src/lj_gdbjit.c index eeb017bb8..c2a9e9010 100644 --- a/src/lj_gdbjit.c +++ b/src/lj_gdbjit.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Client for the GDB JIT API. | 2 | ** Client for the GDB JIT API. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_gdbjit_c | 6 | #define lj_gdbjit_c |
diff --git a/src/lj_gdbjit.h b/src/lj_gdbjit.h index bbaa1568c..c39eef684 100644 --- a/src/lj_gdbjit.h +++ b/src/lj_gdbjit.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Client for the GDB JIT API. | 2 | ** Client for the GDB JIT API. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_GDBJIT_H | 6 | #ifndef _LJ_GDBJIT_H |
diff --git a/src/lj_ir.c b/src/lj_ir.c index 1e4860df6..38f289cb1 100644 --- a/src/lj_ir.c +++ b/src/lj_ir.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** SSA IR (Intermediate Representation) emitter. | 2 | ** SSA IR (Intermediate Representation) emitter. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_ir_c | 6 | #define lj_ir_c |
diff --git a/src/lj_ir.h b/src/lj_ir.h index ded3e0eb6..f91d6d0eb 100644 --- a/src/lj_ir.h +++ b/src/lj_ir.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** SSA IR (Intermediate Representation) format. | 2 | ** SSA IR (Intermediate Representation) format. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_IR_H | 6 | #ifndef _LJ_IR_H |
diff --git a/src/lj_ircall.h b/src/lj_ircall.h index 44afde3ae..aae9adbb5 100644 --- a/src/lj_ircall.h +++ b/src/lj_ircall.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** IR CALL* instruction definitions. | 2 | ** IR CALL* instruction definitions. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_IRCALL_H | 6 | #ifndef _LJ_IRCALL_H |
diff --git a/src/lj_iropt.h b/src/lj_iropt.h index b5081e069..cf5b4d1fe 100644 --- a/src/lj_iropt.h +++ b/src/lj_iropt.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Common header for IR emitter and optimizations. | 2 | ** Common header for IR emitter and optimizations. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_IROPT_H | 6 | #ifndef _LJ_IROPT_H |
diff --git a/src/lj_jit.h b/src/lj_jit.h index 0bc625830..0e1c48275 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Common definitions for the JIT compiler. | 2 | ** Common definitions for the JIT compiler. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_JIT_H | 6 | #ifndef _LJ_JIT_H |
diff --git a/src/lj_lex.c b/src/lj_lex.c index ecfcc0155..ca9425834 100644 --- a/src/lj_lex.c +++ b/src/lj_lex.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Lexical analyzer. | 2 | ** Lexical analyzer. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_lex.h b/src/lj_lex.h index f2346593f..b1bc48766 100644 --- a/src/lj_lex.h +++ b/src/lj_lex.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Lexical analyzer. | 2 | ** Lexical analyzer. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_LEX_H | 6 | #ifndef _LJ_LEX_H |
diff --git a/src/lj_lib.c b/src/lj_lib.c index a1bb6a2a9..0c91a1c84 100644 --- a/src/lj_lib.c +++ b/src/lj_lib.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Library function support. | 2 | ** Library function support. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_lib_c | 6 | #define lj_lib_c |
diff --git a/src/lj_lib.h b/src/lj_lib.h index aa8740766..754e74448 100644 --- a/src/lj_lib.h +++ b/src/lj_lib.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Library function support. | 2 | ** Library function support. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_LIB_H | 6 | #ifndef _LJ_LIB_H |
diff --git a/src/lj_load.c b/src/lj_load.c index 20be8ebe3..ec6f0abaa 100644 --- a/src/lj_load.c +++ b/src/lj_load.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Load and dump code. | 2 | ** Load and dump code. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include <errno.h> | 6 | #include <errno.h> |
diff --git a/src/lj_mcode.c b/src/lj_mcode.c index 5ea89f667..02ade1d46 100644 --- a/src/lj_mcode.c +++ b/src/lj_mcode.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Machine code management. | 2 | ** Machine code management. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_mcode_c | 6 | #define lj_mcode_c |
diff --git a/src/lj_mcode.h b/src/lj_mcode.h index f0847e931..2f31bf599 100644 --- a/src/lj_mcode.h +++ b/src/lj_mcode.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Machine code management. | 2 | ** Machine code management. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_MCODE_H | 6 | #ifndef _LJ_MCODE_H |
diff --git a/src/lj_meta.c b/src/lj_meta.c index 10e349842..6affc18bb 100644 --- a/src/lj_meta.c +++ b/src/lj_meta.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Metamethod handling. | 2 | ** Metamethod handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_meta.h b/src/lj_meta.h index e061d99eb..bd911e941 100644 --- a/src/lj_meta.h +++ b/src/lj_meta.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Metamethod handling. | 2 | ** Metamethod handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_META_H | 6 | #ifndef _LJ_META_H |
diff --git a/src/lj_obj.c b/src/lj_obj.c index 4779d26df..9cdce625a 100644 --- a/src/lj_obj.c +++ b/src/lj_obj.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Miscellaneous object handling. | 2 | ** Miscellaneous object handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_obj_c | 6 | #define lj_obj_c |
diff --git a/src/lj_obj.h b/src/lj_obj.h index 2ee526cf8..5c3c88fca 100644 --- a/src/lj_obj.h +++ b/src/lj_obj.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM tags, values and objects. | 2 | ** LuaJIT VM tags, values and objects. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_opt_dce.c b/src/lj_opt_dce.c index 2417f3242..a1df91ddc 100644 --- a/src/lj_opt_dce.c +++ b/src/lj_opt_dce.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** DCE: Dead Code Elimination. Pre-LOOP only -- ASM already performs DCE. | 2 | ** DCE: Dead Code Elimination. Pre-LOOP only -- ASM already performs DCE. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_opt_dce_c | 6 | #define lj_opt_dce_c |
diff --git a/src/lj_opt_fold.c b/src/lj_opt_fold.c index 5eeb491ae..928d3852a 100644 --- a/src/lj_opt_fold.c +++ b/src/lj_opt_fold.c | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | ** FOLD: Constant Folding, Algebraic Simplifications and Reassociation. | 2 | ** FOLD: Constant Folding, Algebraic Simplifications and Reassociation. |
| 3 | ** ABCelim: Array Bounds Check Elimination. | 3 | ** ABCelim: Array Bounds Check Elimination. |
| 4 | ** CSE: Common-Subexpression Elimination. | 4 | ** CSE: Common-Subexpression Elimination. |
| 5 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 5 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 6 | */ | 6 | */ |
| 7 | 7 | ||
| 8 | #define lj_opt_fold_c | 8 | #define lj_opt_fold_c |
diff --git a/src/lj_opt_loop.c b/src/lj_opt_loop.c index cc8811101..d5e1eb13d 100644 --- a/src/lj_opt_loop.c +++ b/src/lj_opt_loop.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LOOP: Loop Optimizations. | 2 | ** LOOP: Loop Optimizations. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_opt_loop_c | 6 | #define lj_opt_loop_c |
diff --git a/src/lj_opt_mem.c b/src/lj_opt_mem.c index f7833654e..281f29ad6 100644 --- a/src/lj_opt_mem.c +++ b/src/lj_opt_mem.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | ** AA: Alias Analysis using high-level semantic disambiguation. | 3 | ** AA: Alias Analysis using high-level semantic disambiguation. |
| 4 | ** FWD: Load Forwarding (L2L) + Store Forwarding (S2L). | 4 | ** FWD: Load Forwarding (L2L) + Store Forwarding (S2L). |
| 5 | ** DSE: Dead-Store Elimination. | 5 | ** DSE: Dead-Store Elimination. |
| 6 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 6 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 7 | */ | 7 | */ |
| 8 | 8 | ||
| 9 | #define lj_opt_mem_c | 9 | #define lj_opt_mem_c |
diff --git a/src/lj_opt_narrow.c b/src/lj_opt_narrow.c index 73365953b..28d3c255b 100644 --- a/src/lj_opt_narrow.c +++ b/src/lj_opt_narrow.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** NARROW: Narrowing of numbers to integers (double to int32_t). | 2 | ** NARROW: Narrowing of numbers to integers (double to int32_t). |
| 3 | ** STRIPOV: Stripping of overflow checks. | 3 | ** STRIPOV: Stripping of overflow checks. |
| 4 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 4 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 5 | */ | 5 | */ |
| 6 | 6 | ||
| 7 | #define lj_opt_narrow_c | 7 | #define lj_opt_narrow_c |
diff --git a/src/lj_opt_sink.c b/src/lj_opt_sink.c index 4efe395ed..df7f58af6 100644 --- a/src/lj_opt_sink.c +++ b/src/lj_opt_sink.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** SINK: Allocation Sinking and Store Sinking. | 2 | ** SINK: Allocation Sinking and Store Sinking. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_opt_sink_c | 6 | #define lj_opt_sink_c |
diff --git a/src/lj_opt_split.c b/src/lj_opt_split.c index 8d7cd4c25..a517fa8a7 100644 --- a/src/lj_opt_split.c +++ b/src/lj_opt_split.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** SPLIT: Split 64 bit IR instructions into 32 bit IR instructions. | 2 | ** SPLIT: Split 64 bit IR instructions into 32 bit IR instructions. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_opt_split_c | 6 | #define lj_opt_split_c |
diff --git a/src/lj_parse.c b/src/lj_parse.c index 67854951f..74dd5706c 100644 --- a/src/lj_parse.c +++ b/src/lj_parse.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Lua parser (source code -> bytecode). | 2 | ** Lua parser (source code -> bytecode). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_parse.h b/src/lj_parse.h index ceeab6994..fab66da35 100644 --- a/src/lj_parse.h +++ b/src/lj_parse.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Lua parser (source code -> bytecode). | 2 | ** Lua parser (source code -> bytecode). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_PARSE_H | 6 | #ifndef _LJ_PARSE_H |
diff --git a/src/lj_record.c b/src/lj_record.c index 651bbf552..69822f544 100644 --- a/src/lj_record.c +++ b/src/lj_record.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Trace recorder (bytecode -> SSA IR). | 2 | ** Trace recorder (bytecode -> SSA IR). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_record_c | 6 | #define lj_record_c |
diff --git a/src/lj_record.h b/src/lj_record.h index 2bbbde5be..8ef8b2a7c 100644 --- a/src/lj_record.h +++ b/src/lj_record.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Trace recorder (bytecode -> SSA IR). | 2 | ** Trace recorder (bytecode -> SSA IR). |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_RECORD_H | 6 | #ifndef _LJ_RECORD_H |
diff --git a/src/lj_snap.c b/src/lj_snap.c index 73f25004b..de8068ac6 100644 --- a/src/lj_snap.c +++ b/src/lj_snap.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Snapshot handling. | 2 | ** Snapshot handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_snap_c | 6 | #define lj_snap_c |
diff --git a/src/lj_snap.h b/src/lj_snap.h index 2c9ae3d64..816a9b79c 100644 --- a/src/lj_snap.h +++ b/src/lj_snap.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Snapshot handling. | 2 | ** Snapshot handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_SNAP_H | 6 | #ifndef _LJ_SNAP_H |
diff --git a/src/lj_state.c b/src/lj_state.c index f89135198..ab0642665 100644 --- a/src/lj_state.c +++ b/src/lj_state.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** State and stack handling. | 2 | ** State and stack handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_state.h b/src/lj_state.h index d5b476b2f..18afe55c4 100644 --- a/src/lj_state.h +++ b/src/lj_state.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** State and stack handling. | 2 | ** State and stack handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_STATE_H | 6 | #ifndef _LJ_STATE_H |
diff --git a/src/lj_str.c b/src/lj_str.c index aae6ec5b5..279c5cc3a 100644 --- a/src/lj_str.c +++ b/src/lj_str.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** String handling. | 2 | ** String handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_str.h b/src/lj_str.h index be04a975d..e7687cb1d 100644 --- a/src/lj_str.h +++ b/src/lj_str.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** String handling. | 2 | ** String handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_STR_H | 6 | #ifndef _LJ_STR_H |
diff --git a/src/lj_strscan.c b/src/lj_strscan.c index 1ae68c3f8..8614facdd 100644 --- a/src/lj_strscan.c +++ b/src/lj_strscan.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** String scanning. | 2 | ** String scanning. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include <math.h> | 6 | #include <math.h> |
diff --git a/src/lj_strscan.h b/src/lj_strscan.h index 6fb0dda08..42aa14553 100644 --- a/src/lj_strscan.h +++ b/src/lj_strscan.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** String scanning. | 2 | ** String scanning. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_STRSCAN_H | 6 | #ifndef _LJ_STRSCAN_H |
diff --git a/src/lj_tab.c b/src/lj_tab.c index 2ff5eb0de..a45ddaca7 100644 --- a/src/lj_tab.c +++ b/src/lj_tab.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Table handling. | 2 | ** Table handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/lj_tab.h b/src/lj_tab.h index 36ce7cdd5..dc3c8dc1e 100644 --- a/src/lj_tab.h +++ b/src/lj_tab.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Table handling. | 2 | ** Table handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_TAB_H | 6 | #ifndef _LJ_TAB_H |
diff --git a/src/lj_target.h b/src/lj_target.h index 53bfa6bf9..a81825966 100644 --- a/src/lj_target.h +++ b/src/lj_target.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Definitions for target CPU. | 2 | ** Definitions for target CPU. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_TARGET_H | 6 | #ifndef _LJ_TARGET_H |
diff --git a/src/lj_target_arm.h b/src/lj_target_arm.h index d02cbf861..4d292dc9b 100644 --- a/src/lj_target_arm.h +++ b/src/lj_target_arm.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Definitions for ARM CPUs. | 2 | ** Definitions for ARM CPUs. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_TARGET_ARM_H | 6 | #ifndef _LJ_TARGET_ARM_H |
diff --git a/src/lj_target_mips.h b/src/lj_target_mips.h index bed174b8e..4bbdc743b 100644 --- a/src/lj_target_mips.h +++ b/src/lj_target_mips.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Definitions for MIPS CPUs. | 2 | ** Definitions for MIPS CPUs. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_TARGET_MIPS_H | 6 | #ifndef _LJ_TARGET_MIPS_H |
diff --git a/src/lj_target_ppc.h b/src/lj_target_ppc.h index e57e27dfd..580995d5d 100644 --- a/src/lj_target_ppc.h +++ b/src/lj_target_ppc.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Definitions for PPC CPUs. | 2 | ** Definitions for PPC CPUs. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_TARGET_PPC_H | 6 | #ifndef _LJ_TARGET_PPC_H |
diff --git a/src/lj_target_x86.h b/src/lj_target_x86.h index 4426cc8ce..8a96cbf28 100644 --- a/src/lj_target_x86.h +++ b/src/lj_target_x86.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Definitions for x86 and x64 CPUs. | 2 | ** Definitions for x86 and x64 CPUs. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_TARGET_X86_H | 6 | #ifndef _LJ_TARGET_X86_H |
diff --git a/src/lj_trace.c b/src/lj_trace.c index 6f8dc1a48..311baa73c 100644 --- a/src/lj_trace.c +++ b/src/lj_trace.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Trace management. | 2 | ** Trace management. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_trace_c | 6 | #define lj_trace_c |
diff --git a/src/lj_trace.h b/src/lj_trace.h index edc7af0d2..460f10a15 100644 --- a/src/lj_trace.h +++ b/src/lj_trace.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Trace management. | 2 | ** Trace management. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_TRACE_H | 6 | #ifndef _LJ_TRACE_H |
diff --git a/src/lj_traceerr.h b/src/lj_traceerr.h index f920e5edb..ecba11a66 100644 --- a/src/lj_traceerr.h +++ b/src/lj_traceerr.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Trace compiler error messages. | 2 | ** Trace compiler error messages. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* This file may be included multiple times with different TREDEF macros. */ | 6 | /* This file may be included multiple times with different TREDEF macros. */ |
diff --git a/src/lj_udata.c b/src/lj_udata.c index bd0321b83..9eb55e0a4 100644 --- a/src/lj_udata.c +++ b/src/lj_udata.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Userdata handling. | 2 | ** Userdata handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_udata_c | 6 | #define lj_udata_c |
diff --git a/src/lj_udata.h b/src/lj_udata.h index f271a42d3..d3fb1e133 100644 --- a/src/lj_udata.h +++ b/src/lj_udata.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Userdata handling. | 2 | ** Userdata handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_UDATA_H | 6 | #ifndef _LJ_UDATA_H |
diff --git a/src/lj_vm.h b/src/lj_vm.h index 3ffa76bf7..5b10adf35 100644 --- a/src/lj_vm.h +++ b/src/lj_vm.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Assembler VM interface definitions. | 2 | ** Assembler VM interface definitions. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_VM_H | 6 | #ifndef _LJ_VM_H |
diff --git a/src/lj_vmevent.c b/src/lj_vmevent.c index 7b6d7bf34..1d4967487 100644 --- a/src/lj_vmevent.c +++ b/src/lj_vmevent.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** VM event handling. | 2 | ** VM event handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include <stdio.h> | 6 | #include <stdio.h> |
diff --git a/src/lj_vmevent.h b/src/lj_vmevent.h index 050fb4dd2..4df35f966 100644 --- a/src/lj_vmevent.h +++ b/src/lj_vmevent.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** VM event handling. | 2 | ** VM event handling. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LJ_VMEVENT_H | 6 | #ifndef _LJ_VMEVENT_H |
diff --git a/src/lj_vmmath.c b/src/lj_vmmath.c index 73fc667f6..50a2cbba9 100644 --- a/src/lj_vmmath.c +++ b/src/lj_vmmath.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Math helper functions for assembler VM. | 2 | ** Math helper functions for assembler VM. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #define lj_vmmath_c | 6 | #define lj_vmmath_c |
diff --git a/src/ljamalg.c b/src/ljamalg.c index 654fe82f2..21b463146 100644 --- a/src/ljamalg.c +++ b/src/ljamalg.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT core and libraries amalgamation. | 2 | ** LuaJIT core and libraries amalgamation. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | /* | 6 | /* |
diff --git a/src/luaconf.h b/src/luaconf.h index b33e91b77..20feaca80 100644 --- a/src/luaconf.h +++ b/src/luaconf.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Configuration header. | 2 | ** Configuration header. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef luaconf_h | 6 | #ifndef luaconf_h |
diff --git a/src/luajit.c b/src/luajit.c index 9ede59c14..3901762d7 100644 --- a/src/luajit.c +++ b/src/luajit.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT frontend. Runs commands, scripts, read-eval-print (REPL) etc. | 2 | ** LuaJIT frontend. Runs commands, scripts, read-eval-print (REPL) etc. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. | 5 | ** Major portions taken verbatim or adapted from the Lua interpreter. |
| 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h | 6 | ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h |
diff --git a/src/luajit.h b/src/luajit.h index c5ff3acb4..5f5b38874 100644 --- a/src/luajit.h +++ b/src/luajit.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/ | 2 | ** LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/ |
| 3 | ** | 3 | ** |
| 4 | ** Copyright (C) 2005-2017 Mike Pall. All rights reserved. | 4 | ** Copyright (C) 2005-2020 Mike Pall. All rights reserved. |
| 5 | ** | 5 | ** |
| 6 | ** Permission is hereby granted, free of charge, to any person obtaining | 6 | ** Permission is hereby granted, free of charge, to any person obtaining |
| 7 | ** a copy of this software and associated documentation files (the | 7 | ** a copy of this software and associated documentation files (the |
| @@ -33,7 +33,7 @@ | |||
| 33 | #define LUAJIT_VERSION "LuaJIT 2.0.5" | 33 | #define LUAJIT_VERSION "LuaJIT 2.0.5" |
| 34 | #define LUAJIT_VERSION_NUM 20005 /* Version 2.0.5 = 02.00.05. */ | 34 | #define LUAJIT_VERSION_NUM 20005 /* Version 2.0.5 = 02.00.05. */ |
| 35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_0_5 | 35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_0_5 |
| 36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2017 Mike Pall" | 36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2020 Mike Pall" |
| 37 | #define LUAJIT_URL "http://luajit.org/" | 37 | #define LUAJIT_URL "http://luajit.org/" |
| 38 | 38 | ||
| 39 | /* Modes for luaJIT_setmode. */ | 39 | /* Modes for luaJIT_setmode. */ |
diff --git a/src/lualib.h b/src/lualib.h index bfc130a1a..1de0fe627 100644 --- a/src/lualib.h +++ b/src/lualib.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** Standard library header. | 2 | ** Standard library header. |
| 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _LUALIB_H | 6 | #ifndef _LUALIB_H |
diff --git a/src/msvcbuild.bat b/src/msvcbuild.bat index 9db762751..499b5f12a 100644 --- a/src/msvcbuild.bat +++ b/src/msvcbuild.bat | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | @rem Script to build LuaJIT with MSVC. | 1 | @rem Script to build LuaJIT with MSVC. |
| 2 | @rem Copyright (C) 2005-2019 Mike Pall. See Copyright Notice in luajit.h | 2 | @rem Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 3 | @rem | 3 | @rem |
| 4 | @rem Open a "Visual Studio Command Prompt" (either x86 or x64). | 4 | @rem Open a "Visual Studio Command Prompt" (either x86 or x64). |
| 5 | @rem Then cd to this directory and run this script. Use the following | 5 | @rem Then cd to this directory and run this script. Use the following |
diff --git a/src/vm_arm.dasc b/src/vm_arm.dasc index be5540ce4..c5e0498e4 100644 --- a/src/vm_arm.dasc +++ b/src/vm_arm.dasc | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | |// Low-level VM code for ARM CPUs. | 1 | |// Low-level VM code for ARM CPUs. |
| 2 | |// Bytecode interpreter, fast functions and helper functions. | 2 | |// Bytecode interpreter, fast functions and helper functions. |
| 3 | |// Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | |// Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | | | 4 | | |
| 5 | |.arch arm | 5 | |.arch arm |
| 6 | |.section code_op, code_sub | 6 | |.section code_op, code_sub |
diff --git a/src/vm_mips.dasc b/src/vm_mips.dasc index 5a8d3d48a..e6b53e0df 100644 --- a/src/vm_mips.dasc +++ b/src/vm_mips.dasc | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | |// Low-level VM code for MIPS CPUs. | 1 | |// Low-level VM code for MIPS CPUs. |
| 2 | |// Bytecode interpreter, fast functions and helper functions. | 2 | |// Bytecode interpreter, fast functions and helper functions. |
| 3 | |// Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | |// Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | | | 4 | | |
| 5 | |.arch mips | 5 | |.arch mips |
| 6 | |.section code_op, code_sub | 6 | |.section code_op, code_sub |
diff --git a/src/vm_ppc.dasc b/src/vm_ppc.dasc index 91f50037d..6b973d4ec 100644 --- a/src/vm_ppc.dasc +++ b/src/vm_ppc.dasc | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | |// Low-level VM code for PowerPC CPUs. | 1 | |// Low-level VM code for PowerPC CPUs. |
| 2 | |// Bytecode interpreter, fast functions and helper functions. | 2 | |// Bytecode interpreter, fast functions and helper functions. |
| 3 | |// Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | |// Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | | | 4 | | |
| 5 | |.arch ppc | 5 | |.arch ppc |
| 6 | |.section code_op, code_sub | 6 | |.section code_op, code_sub |
diff --git a/src/vm_ppcspe.dasc b/src/vm_ppcspe.dasc index 2a57a41f3..5542f8a2d 100644 --- a/src/vm_ppcspe.dasc +++ b/src/vm_ppcspe.dasc | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | |// Low-level VM code for PowerPC/e500 CPUs. | 1 | |// Low-level VM code for PowerPC/e500 CPUs. |
| 2 | |// Bytecode interpreter, fast functions and helper functions. | 2 | |// Bytecode interpreter, fast functions and helper functions. |
| 3 | |// Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | |// Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | | | 4 | | |
| 5 | |.arch ppc | 5 | |.arch ppc |
| 6 | |.section code_op, code_sub | 6 | |.section code_op, code_sub |
diff --git a/src/vm_x86.dasc b/src/vm_x86.dasc index 359ad4f4f..2ccc671fd 100644 --- a/src/vm_x86.dasc +++ b/src/vm_x86.dasc | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | |// Low-level VM code for x86 CPUs. | 1 | |// Low-level VM code for x86 CPUs. |
| 2 | |// Bytecode interpreter, fast functions and helper functions. | 2 | |// Bytecode interpreter, fast functions and helper functions. |
| 3 | |// Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h | 3 | |// Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h |
| 4 | | | 4 | | |
| 5 | |.if P64 | 5 | |.if P64 |
| 6 | |.arch x64 | 6 | |.arch x64 |
