]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
Bump copyright date to 2016.
authorMike Pall <mike>
Thu, 3 Mar 2016 11:02:22 +0000 (12:02 +0100)
committerMike Pall <mike>
Thu, 3 Mar 2016 11:02:22 +0000 (12:02 +0100)
177 files changed:
COPYRIGHT
Makefile
README
doc/bluequad-print.css
doc/bluequad.css
doc/changes.html
doc/contact.html
doc/ext_c_api.html
doc/ext_ffi.html
doc/ext_ffi_api.html
doc/ext_ffi_semantics.html
doc/ext_ffi_tutorial.html
doc/ext_jit.html
doc/extensions.html
doc/faq.html
doc/install.html
doc/luajit.html
doc/running.html
doc/status.html
dynasm/dasm_arm.h
dynasm/dasm_arm.lua
dynasm/dasm_mips.h
dynasm/dasm_mips.lua
dynasm/dasm_ppc.h
dynasm/dasm_ppc.lua
dynasm/dasm_proto.h
dynasm/dasm_x64.lua
dynasm/dasm_x86.h
dynasm/dasm_x86.lua
dynasm/dynasm.lua
etc/luajit.1
src/Makefile
src/host/buildvm.c
src/host/buildvm.h
src/host/buildvm_asm.c
src/host/buildvm_fold.c
src/host/buildvm_lib.c
src/host/buildvm_peobj.c
src/host/genminilua.lua
src/jit/bc.lua
src/jit/bcsave.lua
src/jit/dis_arm.lua
src/jit/dis_mips.lua
src/jit/dis_mipsel.lua
src/jit/dis_ppc.lua
src/jit/dis_x64.lua
src/jit/dis_x86.lua
src/jit/dump.lua
src/jit/v.lua
src/lib_aux.c
src/lib_base.c
src/lib_bit.c
src/lib_debug.c
src/lib_ffi.c
src/lib_init.c
src/lib_io.c
src/lib_jit.c
src/lib_math.c
src/lib_os.c
src/lib_package.c
src/lib_string.c
src/lib_table.c
src/lj_api.c
src/lj_arch.h
src/lj_asm.c
src/lj_asm.h
src/lj_asm_arm.h
src/lj_asm_mips.h
src/lj_asm_ppc.h
src/lj_asm_x86.h
src/lj_bc.c
src/lj_bc.h
src/lj_bcdump.h
src/lj_bcread.c
src/lj_bcwrite.c
src/lj_carith.c
src/lj_carith.h
src/lj_ccall.c
src/lj_ccall.h
src/lj_ccallback.c
src/lj_ccallback.h
src/lj_cconv.c
src/lj_cconv.h
src/lj_cdata.c
src/lj_cdata.h
src/lj_clib.c
src/lj_clib.h
src/lj_cparse.c
src/lj_cparse.h
src/lj_crecord.c
src/lj_crecord.h
src/lj_ctype.c
src/lj_ctype.h
src/lj_debug.c
src/lj_debug.h
src/lj_def.h
src/lj_dispatch.c
src/lj_dispatch.h
src/lj_emit_arm.h
src/lj_emit_mips.h
src/lj_emit_ppc.h
src/lj_emit_x86.h
src/lj_err.c
src/lj_err.h
src/lj_errmsg.h
src/lj_ff.h
src/lj_ffrecord.c
src/lj_ffrecord.h
src/lj_frame.h
src/lj_func.c
src/lj_func.h
src/lj_gc.c
src/lj_gc.h
src/lj_gdbjit.c
src/lj_gdbjit.h
src/lj_ir.c
src/lj_ir.h
src/lj_ircall.h
src/lj_iropt.h
src/lj_jit.h
src/lj_lex.c
src/lj_lex.h
src/lj_lib.c
src/lj_lib.h
src/lj_load.c
src/lj_mcode.c
src/lj_mcode.h
src/lj_meta.c
src/lj_meta.h
src/lj_obj.c
src/lj_obj.h
src/lj_opt_dce.c
src/lj_opt_fold.c
src/lj_opt_loop.c
src/lj_opt_mem.c
src/lj_opt_narrow.c
src/lj_opt_sink.c
src/lj_opt_split.c
src/lj_parse.c
src/lj_parse.h
src/lj_record.c
src/lj_record.h
src/lj_snap.c
src/lj_snap.h
src/lj_state.c
src/lj_state.h
src/lj_str.c
src/lj_str.h
src/lj_strscan.c
src/lj_strscan.h
src/lj_tab.c
src/lj_tab.h
src/lj_target.h
src/lj_target_arm.h
src/lj_target_mips.h
src/lj_target_ppc.h
src/lj_target_x86.h
src/lj_trace.c
src/lj_trace.h
src/lj_traceerr.h
src/lj_udata.c
src/lj_udata.h
src/lj_vm.h
src/lj_vmevent.c
src/lj_vmevent.h
src/lj_vmmath.c
src/ljamalg.c
src/luaconf.h
src/luajit.c
src/luajit.h
src/lualib.h
src/msvcbuild.bat
src/vm_arm.dasc
src/vm_mips.dasc
src/vm_ppc.dasc
src/vm_ppcspe.dasc
src/vm_x86.dasc

index 1ef7df62446976fa820f11737699d90ac9d8ee5e..b614d3eb4b7846098348d16683a19361d250b7e0 100644 (file)
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,7 +1,7 @@
 ===============================================================================
 LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/
 
-Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
index 0cbe741a424cb65797e7adf071ff96c862d81cdb..d5b7d7237a3df7c6cce4ead9b9a65fc529617999 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@
 # For MSVC, please follow the instructions given in src/msvcbuild.bat.
 # For MinGW and Cygwin, cd to src and run make with the Makefile there.
 #
-# Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+# Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 ##############################################################################
 
 MAJVER=  2
diff --git a/README b/README
index 44366af516c484b544e8ad840c823b063ba3597e..e5bb1c620b424bf767677c7ab59a37e07b8ffc50 100644 (file)
--- a/README
+++ b/README
@@ -5,7 +5,7 @@ LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.
 
 Project Homepage: http://luajit.org/
 
-LuaJIT is Copyright (C) 2005-2015 Mike Pall.
+LuaJIT is Copyright (C) 2005-2016 Mike Pall.
 LuaJIT is free software, released under the MIT license.
 See full Copyright Notice in the COPYRIGHT file or in luajit.h.
 
index 07f5c84a5f67ed75cd006ef848d4192e8b55f9eb..975a55bfa311410e34c69c07bc9ede8677601896 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004-2015 Mike Pall.
+/* Copyright (C) 2004-2016 Mike Pall.
  *
  * You are welcome to use the general ideas of this design for your own sites.
  * But please do not steal the stylesheet, the layout or the color scheme.
index ae531430d19f5838ea7852b7513295f32b9df623..5dca9064e82d1a3da9a06d8e1fe0d3cbc0993adb 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004-2015 Mike Pall.
+/* Copyright (C) 2004-2016 Mike Pall.
  *
  * You are welcome to use the general ideas of this design for your own sites.
  * But please do not steal the stylesheet, the layout or the color scheme.
index d7b83ce68a6e4ec4e383b4cd9efccabccd969590..96eef660496bc9da48c4d3388badfa509e7974fd 100644 (file)
@@ -4,7 +4,7 @@
 <title>LuaJIT Change History</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -968,7 +968,7 @@ This is the initial non-public release of LuaJIT.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 0ef01a7c1597bc25fc49809d4d023135bde8d0e0..9f3588059bafd3e5b537bdc33de73ed3564a9cb6 100644 (file)
@@ -4,7 +4,7 @@
 <title>Contact</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -84,7 +84,7 @@ xD("fyZKB8xv\"FJytmz8.KAB0u52D")
 <h2>Copyright</h2>
 <p>
 All documentation is
-Copyright &copy; 2005-2015 Mike Pall.
+Copyright &copy; 2005-2016 Mike Pall.
 </p>
 
 
@@ -92,7 +92,7 @@ Copyright &copy; 2005-2015 Mike Pall.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 65981806da04cd9b33185b8b43ec004da181b32f..95985583ab659a63fea65c19fed4ca2e65ee389a 100644 (file)
@@ -4,7 +4,7 @@
 <title>Lua/C API Extensions</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -177,7 +177,7 @@ Also note that this mechanism is not without overhead.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 77b8e26c567e6521b699c3fa12ca61f42a62feb5..1db5b6a71bbfa30568ca088aba110b10fc578d4c 100644 (file)
@@ -4,7 +4,7 @@
 <title>FFI Library</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -320,7 +320,7 @@ without undue conversion penalties.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 8f577e9fea67e347ada405fc199a925f5e8710a9..90bd65d0799d15f0fa92b1d31f29c470be24f526 100644 (file)
@@ -4,7 +4,7 @@
 <title>ffi.* API Functions</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -556,7 +556,7 @@ named <tt>i</tt>.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index c267b555668e8f9ca9736f019b37a8ebe5b48110..0a75456905bce8f00e4943d86842c0a850c1b6ea 100644 (file)
@@ -4,7 +4,7 @@
 <title>FFI Semantics</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -1235,7 +1235,7 @@ compiled.</li>
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 8f99bfb1bbd24f6108353b983753d48a941c25a3..d396714c27a96f17862abe2fdec1fc934df39c1a 100644 (file)
@@ -4,7 +4,7 @@
 <title>FFI Tutorial</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -591,7 +591,7 @@ it to a local variable in the function scope is unnecessary.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 27351dd64b8382d5dce9b1156abb789208ba82af..3bfc90524d0cc3ecea9766b76f81aa35e66939c8 100644 (file)
@@ -4,7 +4,7 @@
 <title>jit.* Library</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -189,7 +189,7 @@ if you want to know more.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index e9cd136cc4f653e197b46b598b41120dfe4461d3..1efaca9d8f73f0f42bb412c929d270e37bffb0bc 100644 (file)
@@ -4,7 +4,7 @@
 <title>Extensions</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -398,7 +398,7 @@ lead to the termination of the process.</li>
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 9902f0903c0850c95f76f7ac2675cec4b04786ab..516078d72c24b9d7daf5c16237ba316a6d4bc0ed 100644 (file)
@@ -4,7 +4,7 @@
 <title>Frequently Asked Questions (FAQ)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -174,7 +174,7 @@ the development of certain features, if they are important to you.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 5dc1289e2879c3516d4dfed702ea55255d102990..6c0689acc5ad434426737a1fcc5052b8ff2d583c 100644 (file)
@@ -4,7 +4,7 @@
 <title>Installation</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -633,7 +633,7 @@ to me (the upstream) and not you (the package maintainer), anyway.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 45507c122b494bbc1c31446e5258c6058b174f8d..0fc491f1c53c626a93721c248b085298c8ac3d61 100644 (file)
@@ -4,7 +4,7 @@
 <title>LuaJIT</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -150,7 +150,7 @@ Lua is a powerful, dynamic and light-weight programming language.
 It may be embedded or used as a general-purpose, stand-alone language.
 </p>
 <p>
-LuaJIT is Copyright &copy; 2005-2015 Mike Pall, released under the
+LuaJIT is Copyright &copy; 2005-2016 Mike Pall, released under the
 <a href="http://www.opensource.org/licenses/mit-license.php"><span class="ext">&raquo;</span>&nbsp;MIT open source license</a>.
 </p>
 <p>
@@ -224,7 +224,7 @@ Please select a sub-topic in the navigation bar to learn more about LuaJIT.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index c6e1c296ebad79fc8614f285187cc3e443b1733d..49e2d177fc4e9ab74b07466adb2afa230c76b31d 100644 (file)
@@ -4,7 +4,7 @@
 <title>Running LuaJIT</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -296,7 +296,7 @@ Here are the parameters and their default settings:
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index b4bbec793ed5223630f0aa6d87fa0a2c93bdc2e2..c305f47a1c89fab4d203b765e0ff0193c38be5d0 100644 (file)
@@ -4,7 +4,7 @@
 <title>Status</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="Author" content="Mike Pall">
-<meta name="Copyright" content="Copyright (C) 2005-2015, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2016, Mike Pall">
 <meta name="Language" content="en">
 <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
 <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
@@ -106,7 +106,7 @@ garbage collector.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2015 Mike Pall
+Copyright &copy; 2005-2016 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 57e0116f5acc3cb33c99e42f640df480415a2bc1..0fa69ac06f96be439e3173101de98b79df309700 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** DynASM ARM encoding engine.
-** Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+** Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 ** Released under the MIT license. See dynasm.lua for full copyright notice.
 */
 
index 90a259c5c338b3305158d472489861a6719b1319..a6f77ff4761c5828f73792383ddbd2b71b94e104 100644 (file)
@@ -1,7 +1,7 @@
 ------------------------------------------------------------------------------
 -- DynASM ARM module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- See dynasm.lua for full copyright notice.
 ------------------------------------------------------------------------------
 
index 2f4c2d2220aa886eb08ea12c0badb0597e82b0bb..c10528fab9820021ef6e3898ec5defe0edf00432 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** DynASM MIPS encoding engine.
-** Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+** Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 ** Released under the MIT license. See dynasm.lua for full copyright notice.
 */
 
index ae0dbd7a9bca00041c029b61b10a4a0c10ab768b..aed45d1b810a2519eec609092fe17ba412e05f47 100644 (file)
@@ -1,7 +1,7 @@
 ------------------------------------------------------------------------------
 -- DynASM MIPS module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- See dynasm.lua for full copyright notice.
 ------------------------------------------------------------------------------
 
index 7df493654351ecb4c26b3652d008154763f53b2c..7a2e2932025214b80625d30f4d8fc3c1ba28a1f6 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** DynASM PPC encoding engine.
-** Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+** Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 ** Released under the MIT license. See dynasm.lua for full copyright notice.
 */
 
index 91f4ff9a4c8b917b0b30119d1099fa6bfde22f03..a00169a013f752684c75bef84c10d0bbff34b93e 100644 (file)
@@ -1,7 +1,7 @@
 ------------------------------------------------------------------------------
 -- DynASM PPC module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- See dynasm.lua for full copyright notice.
 ------------------------------------------------------------------------------
 
index a8bc6fd285dfdd0a6c700365e5d4021fa84b305c..364ac1878820f52aa3360d10e696776c37ce4b45 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** DynASM encoding engine prototypes.
-** Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+** Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 ** Released under the MIT license. See dynasm.lua for full copyright notice.
 */
 
index b1b62022f3cedbcfdbc6312cd8e453dd4b6aca39..2133355644fcb67229d2ea9728161348740d3044 100644 (file)
@@ -1,7 +1,7 @@
 ------------------------------------------------------------------------------
 -- DynASM x64 module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- See dynasm.lua for full copyright notice.
 ------------------------------------------------------------------------------
 -- This module just sets 64 bit mode for the combined x86/x64 module.
index 652e8c99b0895f1069bd2bcf280c1ee0b1d26828..574d71509593ebc15addcdcad03c32cb1f2b1211 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** DynASM x86 encoding engine.
-** Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+** Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 ** Released under the MIT license. See dynasm.lua for full copyright notice.
 */
 
index 3a535f2f4d2dc4631345cf1a91912cdd2a53ac47..7beb834a4ccc5fbef1f8dd755b4731819a53fb0d 100644 (file)
@@ -1,7 +1,7 @@
 ------------------------------------------------------------------------------
 -- DynASM x86/x64 module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- See dynasm.lua for full copyright notice.
 ------------------------------------------------------------------------------
 
index fffda7513c8831c5b49a109e42c0c5f16e67e8ac..1ea0a8a6f4a12ccbf19df5cab1c5651d7f165393 100644 (file)
@@ -2,7 +2,7 @@
 -- DynASM. A dynamic assembler for code generation engines.
 -- Originally designed and implemented for LuaJIT.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- See below for full copyright notice.
 ------------------------------------------------------------------------------
 
@@ -17,7 +17,7 @@ local _info = {
   url =                "http://luajit.org/dynasm.html",
   license =    "MIT",
   copyright =  [[
-Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
index fd38b0a92c7b0c8235fe54a4d1afa2aa968edb30..11e88c0448172d37c78d938b0c714e3540c42a7a 100644 (file)
@@ -74,7 +74,7 @@ luajit \-jv \-e "for i=1,10 do for j=1,10 do for k=1,100 do end end end"
 Runs some nested loops and shows the resulting traces.
 .SH COPYRIGHT
 .PP
-\fBLuaJIT\fR is Copyright \(co 2005-2015 Mike Pall.
+\fBLuaJIT\fR is Copyright \(co 2005-2016 Mike Pall.
 .br
 \fBLuaJIT\fR is open source software, released under the MIT license.
 .SH SEE ALSO
index 9c95c4ce27c1134765417e738b9d8f0a3e8efae7..1cddf188cdcd4a81e30ecd4a92c45d0776afb036 100644 (file)
@@ -7,7 +7,7 @@
 # Also works with MinGW and Cygwin on Windows.
 # Please check msvcbuild.bat for building with MSVC on Windows.
 #
-# Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+# Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 ##############################################################################
 
 MAJVER=  2
index 07122a645f18ea0dca1ae1e50a5217764991fc2e..e8e6c87ea2379e0bcdc1e72270d31d730968aa3a 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** This is a tool to build the hand-tuned assembler code required for
 ** LuaJIT's bytecode interpreter. It supports a variety of output formats
index b26218502e38d11a863b0ead6ee8de2bfe671610..5e983024cb954121f3043fe4b57f3ead5a664174 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _BUILDVM_H
index 2c9a2d482e6d7d6b70935767c34e5b19c7247491..000aaa38125a9ddbfed5f2ba26b5e183cc043d77 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder: Assembler source code emitter.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "buildvm.h"
index daed7eccb22071e8a2f29dbff246d54dd58f2aa2..eec1af1cbac127bc2a96aa8f1670a11490100633 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder: IR folding hash table generator.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "buildvm.h"
index c37301d462c8d0ea9ca94855f185e243e27787d8..6ca45bf319df5f2edb711d939446185d812ab29e 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder: library definition compiler.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "buildvm.h"
index 4279f50050be33430ce785abb578f4975a54df14..e8c927d8bf9adb57c681163ca171f407f483fec7 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder: PE object emitter.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Only used for building on Windows, since we cannot assume the presence
 ** of a suitable assembler. The host and target byte order must match.
index cd0d946628c1e042c7587ed6c9d9f6c0d6cd833e..0a4690c1d2f826c825f9c8c8a2ec872b97b8ccfb 100644 (file)
@@ -2,7 +2,7 @@
 -- Lua script to generate a customized, minified version of Lua.
 -- The resulting 'minilua' is used for the build process of LuaJIT.
 ----------------------------------------------------------------------------
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 
index 46a40892e857c5f7b464eaea370416f292b3e4e7..393186a762714b34ac6b11cd1689eae67b72c8f7 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT bytecode listing module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
index 0319b3d25665cc6cccf5796d917888327be84eff..5c417c068880b0bc87970c897212dfe386683311 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT module to save/list bytecode.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
index 59be715a988d700af6be4fe4a4475d9162c7d9cf..661f661a948fe292ac2d856b8f987195734d8aa3 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT ARM disassembler module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 -- This is a helper module used by the LuaJIT machine code dumper module.
index acdd2be1663ea10154aae7dcdb83229d121501a4..5b68b06974155568a5a4b5f538db56f22917669a 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT MIPS disassembler module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT/X license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 -- This is a helper module used by the LuaJIT machine code dumper module.
index dd9d26ae60784825b5fed6e3febb8f0985201058..d242f8dd208b7d22ab8d3a4d505771ad3d59dcac 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT MIPSEL disassembler wrapper module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 -- This module just exports the little-endian functions from the
index d05c431116a74c5fbb68a12137cd8cfe2af96e18..8afecbe61800e69a1546f782888db9c3af2a9481 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT PPC disassembler module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT/X license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 -- This is a helper module used by the LuaJIT machine code dumper module.
index a80981bd5cb903b375fb20f176267759f5c829d6..a427e3473bb26b7a2453d73123c15e6093095e68 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT x64 disassembler wrapper module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 -- This module just exports the 64 bit functions from the combined
index 078d6094dcb0b049e63a45937bfd5b105ae16094..deb2f304449472b5c63a0c346b6f86e1472c3a3d 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT x86/x64 disassembler module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 -- This is a helper module used by the LuaJIT machine code dumper module.
index e6ea18a8609048ca535fc51d3352a81b68cdee2e..9374594753ef3d4a73229290f4cc0cfc1bc4c6a6 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT compiler dump module.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
index 32666fd1a2cc0f26f22d65be41d0ee6946578fd0..d615921cde510930f91b656c5ee567e428f772a9 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- Verbose mode of the LuaJIT compiler.
 --
--- Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 -- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
index 4a1b70ddc09b72bfa3afdb33d391d8d968c794c9..0e61d951a2446864fa0ef4beb845e767b7c3801d 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Auxiliary library for the Lua/C API.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major parts taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index 17b9525d667ef61ba88cd3fb732f24e0fbc8574a..1564725e3248281b6af83e4a3960d05392be0601 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Base and coroutine library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2011 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index 583e04b0c0171b257d3ecbecec75940ab365a6c4..3c27999088fd25bf11589d51b46516182074035c 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Bit manipulation library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lib_bit_c
index e87c35cfe945332c53f1ba5bed974a1c44c729a0..173a690b1985fa9060d787aa7b3cee76dcc071a2 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Debug library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index f6df39d67f9a7eecd9113c616a61bc00dbdeda15..aecc3395b7e3cd79f15bcada618fcb07a30e4317 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** FFI library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lib_ffi_c
index 85c194af43fb3adb38e4cfa311e7b2fcfc18eae7..63c2ace3648f2542b0ddc31d361d6e3093c4e789 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Library initialization.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major parts taken verbatim from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index a502dd522af841bd31f653edba0ce18c74a8a0f8..be317d4b950a1a100c971d2f90c9c912b544ce9b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** I/O library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2011 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index 96525faf271199af60fdc69752f18b712f308114..921b84c8923982aa7b4c89e2d99e3d8e9075fe64 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** JIT library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lib_jit_c
index 40f29142d7051d6bc750029973175396e4624d7f..fad1c284ee54893d0d2d47fdd0575ef4fc4fddc1 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Math library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include <math.h>
index 762bb591732ae0130be7da798857241ada499f96..e57e5ec88c0d7a9862e70b3176d98a96c5255aa8 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** OS library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index ac38c81583638df7ff90cda3f2b497c40cd314fe..1d9fef3d8458efaf2e4104b53b6b59b6e95bbc61 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Package library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2012 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index c6168edbb67ad9e0d27a59cb7bdc7c124267896c..d33124aceb8b1707f75f5592cb6ff71aecf8aa22 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** String library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index fbfe863873b3febdb199393f15451d792358cdc7..1d80b145316271b57af577caf66b5ba1c9882e9b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Table library.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index 3bedb39fd70a708d701d3d7e1e1105c5f68fb746..dacc0d6412ec6de8656dacf7cb0b3e262c0ade7f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Public Lua/C API.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index f1a1160fdfc221cee56d7710321828a16b253b43..906cc11f775b34a224af56763a41df16a8fd6e76 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Target architecture selection.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_ARCH_H
index 804b4dc80b24f321a78f9549de01f663267137c9..a5e0c01e2fb83c3d3244c6a2fb18f25c2d50b10a 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** IR assembler (SSA IR -> machine code).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_asm_c
index 85f29763220e8214835e59a925e74f55bfeb0234..9f4654ec0a8125119ac5f7c7fec4fae6dd86ddcd 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** IR assembler (SSA IR -> machine code).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_ASM_H
index ba65f45b1aed90bd16ab9d294866995e02aef568..ff6887462bd0972113ac88c354f261f30520e959 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** ARM IR assembler (SSA IR -> machine code).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* -- Register allocator extensions --------------------------------------- */
index 8cdd913b7047776a81ba25c8fa4cdc1a0fa84ed7..4045fe80859e22e1be92eabebbd62364cb442789 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** MIPS IR assembler (SSA IR -> machine code).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* -- Register allocator extensions --------------------------------------- */
index e6129032e64a4d4b2a1165b2c779ea8e2078f9ee..e8f3d08bdb1c86cdba29b1feb3b58d9f1bf26c83 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** PPC IR assembler (SSA IR -> machine code).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* -- Register allocator extensions --------------------------------------- */
index a79be4e66cba564cf1df610e6880d55c99e55cd8..ffd59d33b96d8101b3f40ebf92c0eac2f957d439 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** x86/x64 IR assembler (SSA IR -> machine code).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* -- Guard handling ------------------------------------------------------ */
index a8f444c26e147ad50c68f83716f4aa87b5785730..f038769c220ab17b5d6b90e5d67ea763d4bc2746 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Bytecode instruction modes.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_bc_c
index 7436fabfe173be867d4ef6b338966815d5576995..71059fedf761920aa2df6f2448e273474f1cbdd4 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Bytecode instruction format.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_BC_H
index 812d0e151694879e8269915f97e44dcce8b4216a..16e4c132e948e6420fbfa15d2981acdf60e2e56b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Bytecode dump definitions.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_BCDUMP_H
index 25859d2fa6206b449e4360cbd0fc6d6af03ea802..863ec8a4085c09261fdf20fde8b54dc9214871eb 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Bytecode reader.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_bcread_c
index ff97450b8fe55fe393a1550a2ee47101a6b24f27..7a3689fe116e6ca243eeaf5cb847291fb58422ff 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Bytecode writer.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_bcwrite_c
index 2a358a9bb0dc74255d606064a3b1e0b5194e769b..8d2b22ccad4ad06c77e03619841c14e9d8d9df45 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C data arithmetic.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index 8c4bdbbe2a612cc4de2808683487e739d7214ec0..ec245d79ba59e768388186649ed4dbf55d262e99 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C data arithmetic.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CARITH_H
index 998417c1cf886ccf5456d6b3bd934ddb9003078a..58aad9a53a134f6f3b32f46458bcdf2b67693310 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** FFI C call handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index f55301093139b186ee6b06333efeb06677edd95a..cacc7fc82b800fc9cca354de1f5a10ca37922b81 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** FFI C call handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CCALL_H
index b210641f9148cbebc04388edb58cdaba644db97e..b72194953c33d20f1f98980f901a5166de680d00 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** FFI C callback handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index 83dbe048b5bbffa3d1c012f8e25eaa23a9c23f94..99c778d1a50c02d035fd1fd7822996ef99fcbfcb 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** FFI C callback handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CCALLBACK_H
index 8a270766fb92948ae974933fa5e7e028c09110c4..81f3c871c57aee6e01d22d117bb03db6cbdf5628 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C type conversions.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index 2bd50ff46e9ce2189e0e920e1fa1b5c7e0a870ad..35e72cbb00a5980391d09fbc853fb0c97dc81e7e 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C type conversions.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CCONV_H
index 39fc13a9ff41b36c81fe904098a6bb738efa08ab..78c5085b8f76adc78c8c8679797082e9cf927156 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C data management.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index 3a1275e6c1687fb86387c69dcf1fa8e6b33b6167..9684bfbb806df064dbe540b2a3a262711e24856b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C data management.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CDATA_H
index d352609097525453ed069d336e2d2912dfd3ca8b..8389ee787d57f3c1f7b6f01e1fc4980420e5eec2 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** FFI C library loader.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index e5dc98e1cd7f05d981dd546d72d1801d066c9c5c..ce3ab85a8bb9dc69f78e6c9c87c2debb009bfe69 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** FFI C library loader.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CLIB_H
index 9e213610d03767af511c6596b653edfef130a564..5b359306664314df820949fc0d8f4b2e4d604d7e 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C declaration parser.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index 441580de6fe64663501faccfe5c05b9d0abeaafe..bfd1a9bb4d025034f397909ddcd678ead716165a 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C declaration parser.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CPARSE_H
index a46665e9af0cd07557109e325ff5fe3ccf1c08b2..a53a2ce9282cfb5e8bca8198bbc9f1742befa9a6 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace recorder for C data operations.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_ffrecord_c
index a4628cacad58cb1fa47aeff028ed0e50e761f7bb..51b4ec106277555c53c3bc31755a80aff7391215 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace recorder for C data operations.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CRECORD_H
index ac3017494254c0e4c058c397620c57617ec3f2e0..6ee574994c50f0c4b0fa02d93cd93ed4da1811b1 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C type management.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index 3df26f095c2c47751b33a128bd989cdb23bdb2d3..6866736ec8dd9f9ae8813fbedf368583e6ce8c0e 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C type management.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CTYPE_H
index bd2fa1f5646dfc67d92f4a5b81132167dbee62d7..429a76cd8779a9bd0018faa0d76164809094bffb 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Debugging and introspection.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_debug_c
index fa8988c3e79b70a669b2266ca6f762b3077c6a1e..f5db53e8d3dfe8317d879ae775402cebc4430930 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Debugging and introspection.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_DEBUG_H
index e666c9e300e5266cda0849fb70235526c1a7d688..5bbf352ee59aef39792ce5237317c84beb689082 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT common internal definitions.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_DEF_H
index 37256576ec2ee8a92e900dd4e01fee46c00e6d4c..eda1a18b13f0a7e7c5c6b60abb66b646e64f26fd 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Instruction dispatch handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_dispatch_c
index 778affc8cdc44ca86d4e1b3b39e86825e4c1cf11..7a7f1c0e35172d723d62853607b5cff1ebf852c3 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Instruction dispatch handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_DISPATCH_H
index 8c5e5379c75980c6c406a8094c86d3dd13365796..7f73698db8a4c620a22b9f6a60f448e83db5dcb8 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** ARM instruction emitter.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* -- Constant encoding --------------------------------------------------- */
index 0fc07d9101db37f963861affcb06b0b44803ed82..0dea78ceca75b73f857a0dd5207c5edd88020eae 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** MIPS instruction emitter.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* -- Emit basic instructions --------------------------------------------- */
index 14edf00fd648b71cd5b6eae07b8bf13744ee1686..14e459b593b682f8de121f2519343f6b0dc4d950 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** PPC instruction emitter.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* -- Emit basic instructions --------------------------------------------- */
index 3a2f6510b9f51b8b1957c66ef41d0908b6c289e3..f6f5922f09b92d832acc3bc9c4b1578c38a05f96 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** x86/x64 instruction emitter.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* -- Emit basic instructions --------------------------------------------- */
index 6d8519bb5699b9acb3273ca0552ab0912f8b778a..de30619cbb6fcee9f2f6593036a5e0ffc1f401ac 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Error handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_err_c
index 03a56f0362cdbe94ce1bfa9e620cedacec6614cf..6c7576137b5759a7a6e91b8a8e93248ec76b0733 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Error handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_ERR_H
index 1c9487607b63b81d8a16e504510c45697c27ef86..095041052d1405555b0817561b4ae834e6d28057 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** VM error messages.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* This file may be included multiple times with different ERRDEF macros. */
index 73dad9695a640b58afbe3ccadd12c70878bdf937..9af3b12d2651a41d82551c3d0b8eaa75d1478f36 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Fast function IDs.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_FF_H
index 308322517c5ced1ed4d553518e230f3835bd8741..c258aee11a6a09a1139edd6d1d7cee445057500f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Fast function call recorder.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_ffrecord_c
index f858ca29cfce057d4fcee1f5ea9a9bb55fd8a3be..7a188beb298ce9a48d05e1e3edc1f8674796590a 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Fast function call recorder.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_FFRECORD_H
index f981098496edbcf43a2fb95655ae7e7961cd8d0a..697a61d92b3eb4db3c95e247a7ac70b3fa2af9c4 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Stack frames.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_FRAME_H
index eb8a9dbbfd85ec5e712348e4417d11e079643fa1..431a56d76df4dac43b727e07916fd6088ad71afb 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Function handling (prototypes, functions and upvalues).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index a6e534e773930f69fd2551560b9850df42cd6253..e0c3c555ed3894881307ac621098818daee36257 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Function handling (prototypes, functions and upvalues).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_FUNC_H
index b498abaa84d94d8d572ff83eec961d1f888033f6..c5ff1f049fc9cc16eed8905c5da2e372c4c99d1b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Garbage collector.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index ba061bc5d9b8d27d2575bead277ebc8823582555..6b705961d85fb3863df55b6972eb1b59805579e2 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Garbage collector.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_GC_H
index d3f3e6119b3217917a57fe8906bdd9cc2ec05c45..7d4de9c165060a0368b032f78153118c84eea50f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Client for the GDB JIT API.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_gdbjit_c
index 49c586301a8ac5dda0d008e464a34fbc691904b1..1043bc698624a75958d900a70db826fe51f94d09 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Client for the GDB JIT API.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_GDBJIT_H
index 439f3fc3456ea504d1de815cf466a6386f919825..5e555fc3540cb3e654c446faabfeb9d99c886054 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** SSA IR (Intermediate Representation) emitter.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_ir_c
index 8126482e84904e57d18068c4e21c12ba800f596d..b245d1b87ab59e603bb775051dfa8ed4816cc76f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** SSA IR (Intermediate Representation) format.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_IR_H
index 893dac2f81c131d6532ac1a7eed8e40c2b94b56b..916df462d27e4cfc6a494500e9d615f35d682908 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** IR CALL* instruction definitions.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_IRCALL_H
index 4e424e70045413d04a61c056025ca56544d26e39..1836e1b0196de2892c8ce1ba169b2d913c5b099f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Common header for IR emitter and optimizations.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_IROPT_H
index eb7654770bc1e71e463661e8e79f88e44ace0b96..9b66c5655336e03a68fcef7f6b81368f5dde9702 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Common definitions for the JIT compiler.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_JIT_H
index e1dc3cdfde2654720ea1e957a40c2570f6a9c5c0..7ad40f16ca24a6fbe803b29eeeae38037664339f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Lexical analyzer.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index fe01768645622ccbc97840d3005ca4af36ed8b72..0c616308030c0218696bf49b6b4d902285d8ce28 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Lexical analyzer.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_LEX_H
index 856685ee3679b1054fc6a71e8846d75a3375b5e6..45ea5d05d8116141b9322a5b1aa9bd9dc3ff9920 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Library function support.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_lib_c
index 9320f34fdac309d6deb7594fca27d88afe429591..a2d5437abfd6fba71c67c17c541b23aee470220c 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Library function support.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_LIB_H
index ff7b85117ff74ea1e0b6804ed041366f83a1002f..5a55b71609e8ebdaf787bc73b22c597cb3dc6bf0 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Load and dump code.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include <errno.h>
index d95ebeb1fe7fc49ba0b25e93f3959210e0076321..3eaee0546e7182b4eba5066489aa2c258843546a 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Machine code management.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_mcode_c
index ee604523496d4322dfad51f4be50f46371ea48e5..503e001974f0125d21477720f7a0944419419679 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Machine code management.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_MCODE_H
index faaaf70264a595f6d8b98809628bd9ced503fae1..521b969f5c18835fbf85df351627251a10f096d1 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Metamethod handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index 2c1ad0dd9b868ffa1911c50efef4d6687075d596..32636984eb5224562fb726fb925a084f3f5d9d27 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Metamethod handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_META_H
index 7fab714e5c9e244d6ef8704219c783b25af45be0..8a3933168fdd9528d8eec6f29ddd3e0834edf2ea 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Miscellaneous object handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_obj_c
index 6e8381cbadfd699d38808f05d04e316a9d3fe5f3..5ab9789065a3c9c6cc726480d8ecc366745512b8 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM tags, values and objects.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index 7f1faafe647982e85e55d457e10c769eea0ed988..e5a096af56151446141ac90b470475f7b276e966 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** DCE: Dead Code Elimination. Pre-LOOP only -- ASM already performs DCE.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_dce_c
index d00fdd56f5a8f445147eabc926836d03c9bc2a1e..cee9776ad9d9b0a6a5cc3ec14adf0c788ce0c949 100644 (file)
@@ -2,7 +2,7 @@
 ** FOLD: Constant Folding, Algebraic Simplifications and Reassociation.
 ** ABCelim: Array Bounds Check Elimination.
 ** CSE: Common-Subexpression Elimination.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_fold_c
index b7d1923edb7351bc613c327223e28caf3feaceeb..51fc136378e6794ae5b3c742ce428dde09b90ebb 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LOOP: Loop Optimizations.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_loop_c
index a4d96fc0f9cb2fc6f4c6e9d996019550370fcc83..17c33dfd1215c8c5b68448746ad61ce9c240ddba 100644 (file)
@@ -3,7 +3,7 @@
 ** AA: Alias Analysis using high-level semantic disambiguation.
 ** FWD: Load Forwarding (L2L) + Store Forwarding (S2L).
 ** DSE: Dead-Store Elimination.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_mem_c
index fb647189b5008ad821ca3905d5874f751b89d37b..b1ab5ba8eeb4e2c715eab7ef94d00bd1bd24ced1 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ** NARROW: Narrowing of numbers to integers (double to int32_t).
 ** STRIPOV: Stripping of overflow checks.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_narrow_c
@@ -501,8 +501,7 @@ TRef LJ_FASTCALL lj_opt_narrow_cindex(jit_State *J, TRef tr)
 {
   lua_assert(tref_isnumber(tr));
   if (tref_isnum(tr))
-    return emitir(IRT(IR_CONV, IRT_INTP), tr,
-                 (IRT_INTP<<5)|IRT_NUM|IRCONV_TRUNC|IRCONV_ANY);
+    return emitir(IRT(IR_CONV, IRT_INTP), tr, (IRT_INTP<<5)|IRT_NUM|IRCONV_ANY);
   /* Undefined overflow semantics allow stripping of ADDOV, SUBOV and MULOV. */
   return narrow_stripov(J, tr, IR_MULOV,
                        LJ_64 ? ((IRT_INTP<<5)|IRT_INT|IRCONV_SEXT) :
index a98e9dfe3b48bfbff9386397e521f66e91fab9cb..975ee831d912fbcf80bd09168058f22db13aa926 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** SINK: Allocation Sinking and Store Sinking.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_sink_c
index 4a1b0a6e2cd360a7ad48677ec4fcb285e618edb9..a5093bad33228e79b75c497d4680139a23907596 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** SPLIT: Split 64 bit IR instructions into 32 bit IR instructions.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_split_c
index abfac3c0c813b52bd6557baaba34153c86c8b573..2a601f1dcb9e21fee456ce73318cc6aa0260ad7c 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Lua parser (source code -> bytecode).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index dc4fd405d18ea5e69dad84a9cb7036031a7fe843..b383c8971b134b06aef3c90d8cd367c0586c3301 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Lua parser (source code -> bytecode).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_PARSE_H
index 843108c85a79bb9652f08385d2497cd7b7c31bf4..1bb9461eb4c762ea1ff7072b4e8d51664457326f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace recorder (bytecode -> SSA IR).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_record_c
index c9f4882a9056afe22a879e30549525a92cb90ed6..3dfbda8f84ae2d6b4a8aed65f4c04455beaefa18 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace recorder (bytecode -> SSA IR).
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_RECORD_H
index 50412bc4818a5eccca06cc23807472b5565eb29a..788500afdff4ab668ec3bee694e4ec4d41e25286 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Snapshot handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_snap_c
index 9a125be7fb915d585bdafc05f3c57842c037cdd9..1d3379bc6f42c32479db8e0ce2182c93bedc18b3 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Snapshot handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_SNAP_H
index e654afaeb989fe1dd880e5cae988c9c66f1a1be0..95b6065474f9363aae94843bce0f724306d2abad 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** State and stack handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index 687889a2613950c0fd5e3595ac0b109ce2d54575..e128d3211b3265af53a92de3f1152eb8e4ebb471 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** State and stack handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_STATE_H
index ca60bccb7ff0bd543ee5b5db45ae9d2e7df4bc0c..7b5b40bd8d5c6b84ae2eecf535a7098384dfb435 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** String handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index 99697051d9b5fb0987275699875381ced1ac5ac3..86e32a79532f715709eb2beaf53ce0161c4b2bb5 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** String handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_STR_H
index 568f647d6a935bbac3d66b34a2a77b8cec153f5e..006fb71311cf5f530a10ab403a76772a898bd332 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** String scanning.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include <math.h>
index 77606893640c4069c192c92b3733b88a230e9632..b3ee9e528df9fe98021217a5d6ae5aea6fdbd388 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** String scanning.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_STRSCAN_H
index a8062db7cf711f65d58809921e894813f9204fd2..a38eabd8f26a04736dcd36f7689539ff560aae52 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Table handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index f0d228eb20a943c90c34c8c7ce4b9ed4994967cc..156ddabb29e1435d8121d44f8f90a3cc5fb120ed 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Table handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TAB_H
index 1a242325f5b1675a82ec223cead1aab68adbab8b..f97d119792b3ce7d4321cbc974a6744c82e3b68b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Definitions for target CPU.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TARGET_H
index 6d4d0aed00e69268a3ff67e2aa0e445b41fff7b8..7c4f49724564a1c53a54fdc52a7c9d6de8b48d86 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Definitions for ARM CPUs.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TARGET_ARM_H
index 0ab140bf32741b217606fff0dfe3f4c53d6cb838..67f3c003bea5f9c0e727c80e4c49a72d8a79ed69 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Definitions for MIPS CPUs.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TARGET_MIPS_H
index 2caeeb044c7c73f9f5c0404310b0268288465269..15217f6e312300bd3971bfec965fa23b33cf0655 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Definitions for PPC CPUs.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TARGET_PPC_H
index d12a1b87c0018aa5c14ef171d49bb350f5efb55a..05d9730e391be027cb959b59dbc54a12a3878911 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Definitions for x86 and x64 CPUs.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TARGET_X86_H
index 7d1b09366ba50a86cf0c0b16c2f88d995172760b..5df844149f3079a00494229e12f8b63ad46f265d 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace management.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_trace_c
index 4fbe5cf257a396f76e69b231222449c1c489a70d..36bae8960298b7183102601461c0f07a3e2d94e6 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace management.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TRACE_H
index 150ac2db240d244cd2a6a1d65ae17323400e5ffd..dc25675d515a3902eb713aa999c2ca2a36ca8e16 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace compiler error messages.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* This file may be included multiple times with different TREDEF macros. */
index d401a3d8e85f5d6cdd37aa02c22b3ab5acc4c266..71697a42fb94d25252f670a64fcdbf7218f9f2e4 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Userdata handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_udata_c
index 676e970f48896ebd3b877db1b8eaec9e9f2837df..81c15816da5eece29f69a5baec96bc928f60753e 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Userdata handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_UDATA_H
index 036cabc57fe27a4bac872313659603783df25068..92f65ee0a8097e9b34805e56392a703a12b2ce3c 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Assembler VM interface definitions.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_VM_H
index 81fe47d4dc9c37d018d4cb77454d7c296b99ec90..fae18af07dd485590246855d1daf7d55016204ba 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** VM event handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include <stdio.h>
index 231e00ecdf948f4f4866e84f1dbcd86960d2cf5e..b9495b4f9ecad1a463cb568b0816b81f3994fda4 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** VM event handling.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_VMEVENT_H
index 31c6029fce19b00d51faf4c2695502a22bd87891..f40be1e40a46a7cdcb0ca95c939b7ea4311fb063 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Math helper functions for assembler VM.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_vmmath_c
index 9b237b7e9d234bb71cd4d6bf3b870e672fddc633..7376c1501b43801f9c8bf50862c86dae7c8104e7 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT core and libraries amalgamation.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /*
index 84fa6418766a2e3639c2d39240e415ec38782640..6d9bbaa98b8467819f875ed30905a0ce7f3d590b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Configuration header.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef luaconf_h
index 85d713fb42142bc50c00b6178668c212618e134f..7c562b399c9b994e426045e767b41fcad13cb951 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT frontend. Runs commands, scripts, read-eval-print (REPL) etc.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 **
 ** Major portions taken verbatim or adapted from the Lua interpreter.
 ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
index 9ced18eb8262d6f85349deb6f29ed7729efe70c5..e7adbab617a9401cbc2a20aaff1c108b1ad9523b 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ** LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/
 **
-** Copyright (C) 2005-2015 Mike Pall. All rights reserved.
+** Copyright (C) 2005-2016 Mike Pall. All rights reserved.
 **
 ** Permission is hereby granted, free of charge, to any person obtaining
 ** a copy of this software and associated documentation files (the
@@ -33,7 +33,7 @@
 #define LUAJIT_VERSION         "LuaJIT 2.0.4"
 #define LUAJIT_VERSION_NUM     20004  /* Version 2.0.4 = 02.00.04. */
 #define LUAJIT_VERSION_SYM     luaJIT_version_2_0_4
-#define LUAJIT_COPYRIGHT       "Copyright (C) 2005-2015 Mike Pall"
+#define LUAJIT_COPYRIGHT       "Copyright (C) 2005-2016 Mike Pall"
 #define LUAJIT_URL             "http://luajit.org/"
 
 /* Modes for luaJIT_setmode. */
index 96530e79adcb5ca730a6b463953a6867352b837c..3a549555f232669cecde64d87b8ea67521bcc7ed 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Standard library header.
-** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LUALIB_H
index 4b501855ad252855d303d1edd814bc1d42255dc1..e67d422e08b024456548ef96b355f2b1c2ab2463 100644 (file)
@@ -1,5 +1,5 @@
 @rem Script to build LuaJIT with MSVC.\r
-@rem Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h\r
+@rem Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h\r
 @rem\r
 @rem Either open a "Visual Studio .NET Command Prompt"\r
 @rem (Note that the Express Edition does not contain an x64 compiler)\r
index 457efa63ce2725fc2b88052358c42971a3da665a..2f431caf7fd6bf2e3ef997a6e979df41a098e3af 100644 (file)
@@ -1,6 +1,6 @@
 |// Low-level VM code for ARM CPUs.
 |// Bytecode interpreter, fast functions and helper functions.
-|// Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+|// Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 |
 |.arch arm
 |.section code_op, code_sub
index ac8346bbddc56fcd46453cc774ccca2832ecf8e4..3a300d366303815bfc1ac21ee6fabf7adde3ef7d 100644 (file)
@@ -1,6 +1,6 @@
 |// Low-level VM code for MIPS CPUs.
 |// Bytecode interpreter, fast functions and helper functions.
-|// Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+|// Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 |
 |.arch mips
 |.section code_op, code_sub
index ad8a023e479bc935aca417529cfe49cc0746e608..ae95d86087dccc0fdfc442b7fc771ceca243ebd4 100644 (file)
@@ -1,6 +1,6 @@
 |// Low-level VM code for PowerPC CPUs.
 |// Bytecode interpreter, fast functions and helper functions.
-|// Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+|// Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 |
 |.arch ppc
 |.section code_op, code_sub
index 53ea2d96581c182d82666d14e27785dbcff6afd2..002837f8f7c560c321f60d8207bab8129633ce53 100644 (file)
@@ -1,6 +1,6 @@
 |// Low-level VM code for PowerPC/e500 CPUs.
 |// Bytecode interpreter, fast functions and helper functions.
-|// Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+|// Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 |
 |.arch ppc
 |.section code_op, code_sub
index 129ab0003e3f22e1298d89abdacc5bc972833f73..d2563285eb05716d6c9f52b83fd376d89de62293 100644 (file)
@@ -1,6 +1,6 @@
 |// Low-level VM code for x86 CPUs.
 |// Bytecode interpreter, fast functions and helper functions.
-|// Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
+|// Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
 |
 |.if P64
 |.arch x64