]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
Bump copyright date to 2011.
authorMike Pall <mike>
Sun, 9 Jan 2011 16:12:53 +0000 (17:12 +0100)
committerMike Pall <mike>
Sun, 9 Jan 2011 16:12:53 +0000 (17:12 +0100)
133 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_jit.html
doc/extensions.html
doc/faq.html
doc/install.html
doc/luajit.html
doc/running.html
doc/status.html
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
lib/bc.lua
lib/dis_x64.lua
lib/dis_x86.lua
lib/dump.lua
lib/v.lua
src/Makefile
src/buildvm.c
src/buildvm.h
src/buildvm_asm.c
src/buildvm_fold.c
src/buildvm_lib.c
src/buildvm_peobj.c
src/buildvm_ppc.dasc
src/buildvm_ppcspe.h
src/buildvm_x64.h
src/buildvm_x64win.h
src/buildvm_x86.dasc
src/buildvm_x86.h
src/lib_aux.c
src/lib_base.c
src/lib_bit.c
src/lib_debug.c
src/lib_ffi.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_bc.c
src/lj_bc.h
src/lj_ccall.c
src/lj_ccall.h
src/lj_cconv.c
src/lj_cconv.h
src/lj_cdata.c
src/lj_cdata.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_def.h
src/lj_dispatch.c
src/lj_dispatch.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_iropt.h
src/lj_jit.h
src/lj_lex.c
src/lj_lib.c
src/lj_lib.h
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_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_tab.c
src/lj_tab.h
src/lj_target.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/ljamalg.c
src/luaconf.h
src/luajit.c
src/luajit.h
src/lualib.h
src/msvcbuild.bat

index a7bb2e134af46964b427f8b291c19d01061d3cb1..6f2a45b0cd081552263d3a51b2df1361ceccb11b 100644 (file)
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,7 +1,7 @@
 ===============================================================================
 LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/
 
-Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+Copyright (C) 2005-2011 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
@@ -26,7 +26,7 @@ THE SOFTWARE.
 ===============================================================================
 [ LuaJIT includes code from Lua 5.1/5.2, which has this license statement: ]
 
-Copyright (C) 1994-2010 Lua.org, PUC-Rio.
+Copyright (C) 1994-2011 Lua.org, PUC-Rio.
 
 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 7728865ddcd40cd6555ece24c6a71611d89ad98b..d2a375db5c040d284b4a2eec27e40fed6c8951d8 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-2010 Mike Pall. See Copyright Notice in luajit.h
+# Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 ##############################################################################
 
 MAJVER=  2
diff --git a/README b/README
index 46632fe6bd589c5b4e2d55d496531510693dea1a..89857f5113513d7333286907b35d74eeca9c0bdd 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-2010 Mike Pall.
+LuaJIT is Copyright (C) 2005-2011 Mike Pall.
 LuaJIT is free software, released under the MIT/X license.
 See full Copyright Notice in the COPYRIGHT file or in luajit.h.
 
index d5f4a3aafc2dc73b0e7fd822fcb563f46c38dd4e..69c07d6a40da983b41db9a20825a59d9f55e5b12 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004-2010 Mike Pall.
+/* Copyright (C) 2004-2011 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 6f5539ac116880378a7c72d2b643da99ef2da2f2..5ea9ad493894b43b4c006773217304a672eaf34f 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004-2010 Mike Pall.
+/* Copyright (C) 2004-2011 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 b7ac0734be01eb0d8b3b06f3cc0c40c871723620..332ba509de91bee167b9ea504771600aeb54f4f1 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-2010, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2011, 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">
@@ -414,7 +414,7 @@ This is the initial non-public release of LuaJIT.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2010 Mike Pall
+Copyright &copy; 2005-2011 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 13175844d281e7fabb5a76e10b9f814f3ad74abc..120de3a94b392a43c9ce1bfe5697ec88b5beb052 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-2010, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2011, 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">
@@ -71,7 +71,7 @@ xD("fyZKB8xv\"FJytmz8.KAB0u52D")
 <h2>Copyright</h2>
 <p>
 All documentation is
-Copyright &copy; 2005-2010 Mike Pall.
+Copyright &copy; 2005-2011 Mike Pall.
 </p>
 
 
@@ -79,7 +79,7 @@ Copyright &copy; 2005-2010 Mike Pall.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2010 Mike Pall
+Copyright &copy; 2005-2011 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 1418b2a9f444c768f162db7da2c267231d3146fa..94abe120a6146d0b872c51467818a54382a09d47 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-2010, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2011, 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">
@@ -164,7 +164,7 @@ Also note that this mechanism is not without overhead.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2010 Mike Pall
+Copyright &copy; 2005-2011 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 7b0dbe2043b763c2606453ed417fc730e2720c66..e01db3310e87b9f7095852cbb926c3a460d5857c 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-2010, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2011, 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 @@ if you want to know more.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2010 Mike Pall
+Copyright &copy; 2005-2011 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index e302952ddb319700df06b45a945212a5c227ac76..5eeecd6f9473ae5163b7229cbab2499567518dc6 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-2010, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2011, 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">
@@ -293,7 +293,7 @@ lead to the termination of the process.</li>
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2010 Mike Pall
+Copyright &copy; 2005-2011 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index c1d86db974ea953ec95fec8bc2e5d054596243ec..4f040c7e8822d21e6cff5be5d97488f9f061b222 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-2010, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2011, 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">
@@ -160,7 +160,7 @@ the development of certain features, if they are important to you.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2010 Mike Pall
+Copyright &copy; 2005-2011 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 9dac37a30d0d53eed1046cf6876ec88352f81bbc..31f2b476f93d1bb022e1e5ba10a69524539a8fd0 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-2010, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2011, 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">
@@ -454,7 +454,7 @@ to me (the upstream) and not you (the package maintainer), anyway.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2010 Mike Pall
+Copyright &copy; 2005-2011 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 990cd6304df07b9d43c4d6a705bb7905e2f99173..127538ffcdee942ba9614f6b06353be89436c8e2 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-2010, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2011, 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">
@@ -51,7 +51,7 @@ LuaJIT is a <b>Just-In-Time Compiler</b> for the Lua<sup>*</sup>
 programming language.
 </p>
 <p>
-LuaJIT is Copyright &copy; 2005-2010 Mike Pall.
+LuaJIT is Copyright &copy; 2005-2011 Mike Pall.
 LuaJIT is open source software, released under the
 <a href="http://www.opensource.org/licenses/mit-license.php"><span class="ext">&raquo;</span>&nbsp;MIT/X license</a>.
 </p>
@@ -125,7 +125,7 @@ resources are marked with a '<span class="ext">&raquo;</span>'.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2010 Mike Pall
+Copyright &copy; 2005-2011 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 6991ef7a82fa3e4adac17864f1f73969d98c9229..09bcfe7e28c5f0c0460e0ae8254ed4017fdeb998 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-2010, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2011, 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">
@@ -234,7 +234,7 @@ Here are the parameters and their default settings:
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2010 Mike Pall
+Copyright &copy; 2005-2011 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 15e114c252ffc70e8cca3236255a6810edae465e..c99371eb71140f7e5b37234a095a934f9475b0ef 100644 (file)
@@ -4,7 +4,7 @@
 <title>Status &amp; Roadmap</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-2010, Mike Pall">
+<meta name="Copyright" content="Copyright (C) 2005-2011, 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">
@@ -246,7 +246,7 @@ in the design phase, but there's no ETA, yet.
 </div>
 <div id="foot">
 <hr class="hide">
-Copyright &copy; 2005-2010 Mike Pall
+Copyright &copy; 2005-2011 Mike Pall
 <span class="noprint">
 &middot;
 <a href="contact.html">Contact</a>
index 85aeccd820ea5a40bab5d299a082736a7284a2ef..e928ffedd3882e33c61468913c07978c134ac543 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** DynASM PPC encoding engine.
-** Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
 ** Released under the MIT/X license. See dynasm.lua for full copyright notice.
 */
 
index d18fae48d039f1032bebd321c7c92d7e57a8fa47..01376f76604e0875a576628fd001e32c38acd725 100644 (file)
@@ -1,7 +1,7 @@
 ------------------------------------------------------------------------------
 -- DynASM PPC module.
 --
--- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
 -- See dynasm.lua for full copyright notice.
 ------------------------------------------------------------------------------
 
@@ -9,9 +9,9 @@
 local _info = {
   arch =       "ppc",
   description =        "DynASM PPC module",
-  version =    "1.2.1",
-  vernum =      10201,
-  release =    "2010-XX-XX",
+  version =    "1.2.2",
+  vernum =      10202,
+  release =    "2011-01-09",
   author =     "Mike Pall",
   license =    "MIT",
 }
index 114f0fb8a3a7504025ee70df96f76a7ba73fcd8e..7d3f77f6e1d8b3b39a0ecc64331db473532669fd 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** DynASM encoding engine prototypes.
-** Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
 ** Released under the MIT/X license. See dynasm.lua for full copyright notice.
 */
 
@@ -10,8 +10,8 @@
 #include <stddef.h>
 #include <stdarg.h>
 
-#define DASM_IDENT     "DynASM 1.2.1"
-#define DASM_VERSION   10201   /* 1.2.1 */
+#define DASM_IDENT     "DynASM 1.2.2"
+#define DASM_VERSION   10202   /* 1.2.2 */
 
 #ifndef Dst_DECL
 #define Dst_DECL       dasm_State *Dst
index 348543c4adf72e350c0505fab1f3d30cad0a2173..73e01e919ac6eaf9e349a236cf19e3c17d8ea634 100644 (file)
@@ -1,7 +1,7 @@
 ------------------------------------------------------------------------------
 -- DynASM x64 module.
 --
--- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2011 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 de542b6b912283d80d73bcfc09e4c466d8fc46e9..23e213cb6e66f7df7093a5b4590120fc70c86c40 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** DynASM x86 encoding engine.
-** Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
 ** Released under the MIT/X license. See dynasm.lua for full copyright notice.
 */
 
index 5e12d23c6d4dcfd13529059d15147f2ab97a3e66..0d4bd4c38603a29828e29871f8f107eda568fc97 100644 (file)
@@ -1,7 +1,7 @@
 ------------------------------------------------------------------------------
 -- DynASM x86/x64 module.
 --
--- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
 -- See dynasm.lua for full copyright notice.
 ------------------------------------------------------------------------------
 
@@ -11,9 +11,9 @@ local x64 = x64
 local _info = {
   arch =       x64 and "x64" or "x86",
   description =        "DynASM x86/x64 module",
-  version =    "1.2.1",
-  vernum =      10201,
-  release =    "2010-01-09",
+  version =    "1.2.2",
+  vernum =      10202,
+  release =    "2011-01-09",
   author =     "Mike Pall",
   license =    "MIT",
 }
index a437ffa28f2a0ecc19cd66931106fc3bccaed85a..d9dd1800be04723852a48da752c4b1cea429602c 100644 (file)
@@ -2,7 +2,7 @@
 -- DynASM. A dynamic assembler for code generation engines.
 -- Originally designed and implemented for LuaJIT.
 --
--- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
 -- See below for full copyright notice.
 ------------------------------------------------------------------------------
 
 local _info = {
   name =       "DynASM",
   description =        "A dynamic assembler for code generation engines",
-  version =    "1.2.1",
-  vernum =      10201,
-  release =    "2010-01-09",
+  version =    "1.2.2",
+  vernum =      10202,
+  release =    "2011-01-09",
   author =     "Mike Pall",
   url =                "http://luajit.org/dynasm.html",
   license =    "MIT",
   copyright =  [[
-Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+Copyright (C) 2005-2011 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 ddbe00285c34e079231289bcf0d8cbeb2216b029..cf7ea6653bec74febc71e0f5793c0556248830bd 100644 (file)
@@ -68,7 +68,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-2010 Mike Pall.
+\fBLuaJIT\fR is Copyright \(co 2005-2011 Mike Pall.
 .br
 \fBLuaJIT\fR is open source software, released under the MIT/X license.
 .SH SEE ALSO
index 78b342f26b56e9f906bf7614344ffd71ad325228..366617c8bd2ce92b464e151a052e5b55bc7e7d58 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT bytecode listing module.
 --
--- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
 -- Released under the MIT/X license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
index 1ca5cf0a2d22b9d4f945051beb9e4b4df33b3cc2..d69113b7fa6f2e8bab0bf07974daf388342de492 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT x64 disassembler wrapper module.
 --
--- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
 -- Released under the MIT/X license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 -- This module just exports the 64 bit functions from the combined
index ee63d907fb7085822b450e118686dc3f215e1433..eb447eb0b466aa59f94b04bc3ba016dc63e4ec2b 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT x86/x64 disassembler module.
 --
--- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2011 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 fdb28833bd81f467383622ad06dc9582ede769db..d79ae8b6a2d1d1b6cc9449b16e1d7e2f90afadfe 100644 (file)
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- LuaJIT compiler dump module.
 --
--- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
 -- Released under the MIT/X license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
index 649bbf8ded31175f800e928b9abfa1cc53ce03a9..bf61f1253e3daee858ba8cf4a9d1433d3be083f2 100644 (file)
--- a/lib/v.lua
+++ b/lib/v.lua
@@ -1,7 +1,7 @@
 ----------------------------------------------------------------------------
 -- Verbose mode of the LuaJIT compiler.
 --
--- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
 -- Released under the MIT/X license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
index b925b4e57c8c401f0cf0b953279cb444da5003ea..b1197f3b363c78b81bc4cf5ebf3d63f2ab8c4480 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-2010 Mike Pall. See Copyright Notice in luajit.h
+# Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 ##############################################################################
 
 MAJVER=  2
index ddf4e0f08efbde7a1dc24ac6e790f738efba15aa..98f7e95a6b80961b734535e72c04874bbbc4cee9 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 0d1d32ad464f691fad26cd04695825ed126ab7eb..011ada2ac6b250aa377e5223e337e9f8dcf34529 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _BUILDVM_H
index 31ecc2e234ed8d7e7afa2ecbfd3e0cfdc3be7c40..049d76ffb50e41873b484ef41ec4bfc64295dfe1 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder: Assembler source code emitter.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "buildvm.h"
index 5f463575f73e0531f3a028d050e08acea639cb62..33a117d74c2580635fd2364d2604febc66e99e06 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder: IR folding hash table generator.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "buildvm.h"
index 0a758ebdc561fb80221b30c2627ecefa1bdde8e3..8d9bcea3e2619077e4e273970db8e4fdc8a7f870 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder: library definition compiler.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "buildvm.h"
index d06392df52e22833cdc79c3febc59fad1655ef40..b97a5b03885b3bea3bb3ef3876c730cfe98df583 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM builder: PE object emitter.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 22f6da5561e69a54ec11c830918e34dd33559bd5..16cfd6ecfbf2b59c9d0f2d43d5ffa0329bb153f5 100644 (file)
@@ -1,6 +1,6 @@
 |// Low-level VM code for PowerPC CPUs.
 |// Bytecode interpreter, fast functions and helper functions.
-|// Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+|// Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 |
 |.arch ppc
 |.section code_op, code_sub
index 96f7e55ba05f0ed09eabf7cc350b3a2beb0f3d87..8209684835888327edc53c70899baa81140f39d5 100644 (file)
@@ -1,11 +1,11 @@
 /*
 ** This file has been pre-processed with DynASM.
 ** http://luajit.org/dynasm.html
-** DynASM version 1.2.1, DynASM ppc version 1.2.1
+** DynASM version 1.2.2, DynASM ppc version 1.2.2
 ** DO NOT EDIT! The original file is in "buildvm_ppc.dasc".
 */
 
-#if DASM_VERSION != 10201
+#if DASM_VERSION != 10202
 #error "Version mismatch between DynASM and included encoding engine"
 #endif
 
index b67568677ae4b79c0d4565a19e57e2a5d2b0c525..a80a39b8088bf7c7dbb4589abf970a0bf1ae29c3 100644 (file)
@@ -1,11 +1,11 @@
 /*
 ** This file has been pre-processed with DynASM.
 ** http://luajit.org/dynasm.html
-** DynASM version 1.2.1, DynASM x64 version 1.2.1
+** DynASM version 1.2.2, DynASM x64 version 1.2.2
 ** DO NOT EDIT! The original file is in "buildvm_x86.dasc".
 */
 
-#if DASM_VERSION != 10201
+#if DASM_VERSION != 10202
 #error "Version mismatch between DynASM and included encoding engine"
 #endif
 
index 84b94f1ad7dd3b93584d454457a629d5364c1725..19a703c818236f0336cf9927a86d9e310f409ce6 100644 (file)
@@ -1,11 +1,11 @@
 /*
 ** This file has been pre-processed with DynASM.
 ** http://luajit.org/dynasm.html
-** DynASM version 1.2.1, DynASM x64 version 1.2.1
+** DynASM version 1.2.2, DynASM x64 version 1.2.2
 ** DO NOT EDIT! The original file is in "buildvm_x86.dasc".
 */
 
-#if DASM_VERSION != 10201
+#if DASM_VERSION != 10202
 #error "Version mismatch between DynASM and included encoding engine"
 #endif
 
index d8e6a88c1f37f63ed69d1e739a4840af155539e8..e88039b919a8f03ee502e7a3e4ae642123dcc522 100644 (file)
@@ -1,6 +1,6 @@
 |// Low-level VM code for x86 CPUs.
 |// Bytecode interpreter, fast functions and helper functions.
-|// Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+|// Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 |
 |.if X64
 |.arch x64
index a2691d37a988779e100d006c9f488a685a742476..4d1aa660b3c7c240f0e20adeacadd47f7e780b61 100644 (file)
@@ -1,11 +1,11 @@
 /*
 ** This file has been pre-processed with DynASM.
 ** http://luajit.org/dynasm.html
-** DynASM version 1.2.1, DynASM x86 version 1.2.1
+** DynASM version 1.2.2, DynASM x86 version 1.2.2
 ** DO NOT EDIT! The original file is in "buildvm_x86.dasc".
 */
 
-#if DASM_VERSION != 10201
+#if DASM_VERSION != 10202
 #error "Version mismatch between DynASM and included encoding engine"
 #endif
 
index 25a3b5ce2090de42e7d0056dc1900fea3178f6a7..64d5c3c61301a95c6a92d868007a725dedbeada0 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Auxiliary library for the Lua/C API.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 52fbeb09cca5a6ee291ac8f3b70c8b8f79a14177..47530f93e49f8224524933985188471c4759de93 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Base and coroutine library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 0a24480fbc56a366b816162426715987ced094eb..77fd9f9a159ed68ed0fdd9053a42a05410d1cb91 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Bit manipulation library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lib_bit_c
index 5df638669732a98ac8b15dcce845059bcfcdc078..9542022200e4aeed17cb5da82e1f835b3bc7df26 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Debug library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 c80f3fb661766324b3c69ce51ede44299f78b63b..3c52f7f8602d4291aad023aaa7ea2cff0ff26997 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** FFI library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lib_ffi_c
index 878b98af03465f6962b7dde11929d4c8e6ff4337..19528bb14e5ec7aad52cdc5dd1bb222852d7019c 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** I/O library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 4fb66d261a1f1ab11da879adc20caab9dc6b6698..ed0a581a566ff3fbe2141fd40dc69c2cdef495d6 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** JIT library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lib_jit_c
index 51984ce4bff760f61183b55356c52782409ae457..3573fe47c112b10e6c3f72633f7f91585d4e5a61 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Math library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include <math.h>
index a62fd3b451169fb45d770276618a43ff17b7c65d..81c96e152f6cf9fbdf09d7b63ecdb9d815037da6 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** OS library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 b57e51c9dbea384e7d16cdd64f49d715ecfcd76d..45a8061829d0340058b341d0bd8a27bc1ab6c403 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Package library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 23ef70f9023883874aef0d86b9cec770428b06ab..27eae557bca69164d6c0c2de88cb2b95b79de69b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** String library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 cf39f08cdafcb7efad46dd959261c5b26df7ccbc..66947a455eaca341456339ec357602f35df659f0 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Table library.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 b93df3442d3253d4492cbb62c49c48198675a72c..92699078c55f963d019e2559f2958aecffcc6fb8 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Public Lua/C API.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 fe180e98698b7ade500da8389b9bad01c496ad66..199e3b19c17bb2986fe74dea8b6b0849c3fe596b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Target architecture selection.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_ARCH_H
index 627f58964aff05b414ebc173610555941e33eba6..af8ac51be8c9945a3a64a31b69b25118d0b3d480 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** IR assembler (SSA IR -> machine code).
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_asm_c
index 9df6dd5d78f9a27be0cda86b4f588b80fa187b65..64240efa636ae3048df74bd49d25cb7dc42e8e68 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** IR assembler (SSA IR -> machine code).
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_ASM_H
index 2519807c3a008457a90be789d8f3a2b7dfe8c1d6..feb8e44d5f03d82a7c795569545fe550809bad9e 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Bytecode instruction modes.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_bc_c
index 101e2c15e347c447288b910475097aa7f2af2fff..32c8f73cc3b35782f704c693c6977f2ecf84f13d 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Bytecode instruction format.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_BC_H
index 688dfc8997fd61dc21ebfc09d152d6476ce13ead..2f0a04dd9efa96e242a802de362a671de9dc5fbb 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** FFI C call handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index a0737d04ce78740c814d334d2615e68cc07c359f..17ed56c7fb3b2590c711a182f6a192c267bf33ef 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** FFI C call handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CCALL_H
index b123c081cf73dfde4540d31fe672fd7f70718ddf..be45b2561357fc09faf4637a4a063aff0af5683d 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C type conversions.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index ee16a845979b81181ed40e71f222754bcae95fbc..acc09af9365342d5f543742c5dffda4ffacd8cc6 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C type conversions.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CCONV_H
index 7c7eed434fe272b17d89209577c8ecad56ad5efb..fd16c86c36a24515295b4385343ededa66e26331 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C data management.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index 564d827f565039e66f77462eef883400bbc76d17..f1ab2153d07418588812e199a17591ce9a9d71c4 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C data management.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CDATA_H
index 5dc18a515bef17b6699b1e000a50a2f0fab5e9c4..333e7a07c6da2c819b6888031fcec61ac8c7c8f0 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C declaration parser.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index 2d2f46843b285d3b8db8ae208d175d33832ff8bd..535bc46198690f688576761aa8b73911c2eed043 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C declaration parser.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CPARSE_H
index b8b17a91eaccfd14b2daf53f67abcef0936c929a..eb26bd0f0c269d67afffc7b0412ffb7cf5571544 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace recorder for C data operations.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_ffrecord_c
index f0b7045b66ba354273430a6082759e3e8d46bd11..31e3c0919425bf5b521f2fe51472f41fc75bce9d 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace recorder for C data operations.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CRECORD_H
index 93f6314016634189e4a50c7f461f30fbf458741f..585039efc60a7a4877b60e79e6bed2b1282c0bb6 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C type management.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include "lj_obj.h"
index 437f9ae8c27765dddb46aa5ee7a8783bd0843e77..0c58137084dff6e3a2f93ad8101857603be81a9f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** C type management.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_CTYPE_H
index 5574524f813e25408bf545fe19d912238d1ac1a5..57946647dad0b9cf311facdea21fbdd1e965bce8 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT common internal definitions.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_DEF_H
index 4eb6033b0cb791529309d929a77bec195c8895a0..a8aa07319691cace89b25fddc8971c55a67ae9df 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Instruction dispatch handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_dispatch_c
index fda78d8e115acb204b7015eab0c9b9765ebecbef..3ba983a8e84326b0aa0b9c601d33fa250e18078a 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Instruction dispatch handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_DISPATCH_H
index 562697ade25078137abb033ae351c067e002419d..600433d4b3c5e00912212932bfb24a4fd74494dd 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Error handling and debugging API.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 cd5d4f4dff4d19c73e4c463b3a85fc8fd4369c5d..aabbf490d82301c99a673a35bfe931b040bca435 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Error handling and debugging support.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_ERR_H
index ae784bc9aa5d68fcdde2b7a5d45b3f42affe3c14..2d54d1e951c0fbec1d87c94d79cf34720719f22b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** VM error messages.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* This file may be included multiple times with different ERRDEF macros. */
index 693a9b54a1da45efe35f47f719e22ee2936df5f8..0b01e16ab6f100f73988f558a0a0007a25e9bf8f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Fast function IDs.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_FF_H
index c10e38fe977ae43a45e268bacd84f26ef04ffd18..bc11e297cd862b04e34d4cc691558dc6ed98fac1 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Fast function call recorder.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_ffrecord_c
index 2333b528f92809a42f25a54df2016d4b035efb39..7ff270a0390368cba6dcdb027146a71b9fffee7b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Fast function call recorder.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_FFRECORD_H
index 143a6812f1e1a5c177757b18f93e59eb49209499..aea3c55c09c2e03af48409f648c80a5e9152bd8f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Stack frames.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_FRAME_H
index 1f5c324094c321ba49096ddf401617fa4275ea65..83dab3b12e3de73d5004c2d43b0d44159dbbce33 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Function handling (prototypes, functions and upvalues).
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 6ed45065ae1cb4c3d4c8f264ab1ebd96addb3cc5..7a3a2e3f67a8aa55ccfbcbc48fad66b669c10c52 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Function handling (prototypes, functions and upvalues).
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_FUNC_H
index 6b664908fe1bcf2836ed40b9a94f59b33a50e10c..793d8dacf67c7e9a984ecb0746481b7b99141e0b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Garbage collector.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 dc2308486f9ede7507281de895c75548c5c469f3..75b38db8147ea76b7d24371b23c63b4221cac0d7 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Garbage collector.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_GC_H
index d106bb5dc356eb02c28802bef7cb49d64ee80796..260796ea67a6afa4ff085a7438f85a7e4695161f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Client for the GDB JIT API.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_gdbjit_c
index 7824885bcfa5187f5bd404563ab64a1d61d00c50..5e42d3cba78be52713b321855a071ecdacc532ae 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Client for the GDB JIT API.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_GDBJIT_H
index e2ec22b258e9a17092e1585d4f44f06c586253b1..e81beb810ef18b2119e6e9ce00e1106a155e21ad 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** SSA IR (Intermediate Representation) emitter.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_ir_c
index 7a0e016a47261dbd197e077f506d9e25f43b0561..11ecdf27848967632795b0d8c2a1550bc0990706 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** SSA IR (Intermediate Representation) format.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_IR_H
index 12943d25c2ca557158c260aa30f3598af3f49ee3..03029f80f885bce616a6e2e1f7af80492a8bd4ea 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Common header for IR emitter and optimizations.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_IROPT_H
index cb7ce9828d01ae65c72bfc9070f8fbbb2ef5d686..6c93003430ebca4e077b4a31a0eb27e688b6d5e7 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Common definitions for the JIT compiler.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_JIT_H
index 01e5ce572d8d0c3db0b11dd2f0ed5ba614146f24..c97d6e0ef95a50419344cbce5c173557b1196c45 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Lexical analyzer.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 9540772eb4ff73b77c4a9b5a6c025c059a27c2d4..a6681f2b915c9ee615e901a971def27a16b432ec 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Library function support.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_lib_c
index 6782e725dd06907b41e649efe0167bb1d85753f7..ef73218e1ca59598a0f35edecacc492a26bff620 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Library function support.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_LIB_H
index 720021757e85bede013f13b9b19a6a9bfdfce705..104e492543db48f85d1feb9907618b9eb67b507e 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Machine code management.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_mcode_c
index 27a8c9497450ae0f8cee7cc6f12d25d0fac5477d..be1bdb5aa37b30461e334e986c0f829448e09d02 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Machine code management.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_MCODE_H
index f443e372144f79ab0308344016563467bcf9a52f..5353e4d471e82d4827c4a6ac6895caebb7521d19 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Metamethod handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 0bb567ccece0a8d5d14c499f64819a88dd317e71..3854c8a070c2803ae5fda8bf7899d202e5ad7526 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Metamethod handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_META_H
index 5dbed7a88337db66d58aaa72ebec237e80725cc8..60f5dd3ad190c35215c54a8c9ed765d0dff8f25c 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Miscellaneous object handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_obj_c
index 342ebafbdf52495554ae7f1c5fed7c2672c23cd7..f40ef70603bcff0a9d63a01b758f022e00279606 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT VM tags, values and objects.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 49cc766ef2750ba9f6a43d7b79647f0e64cd591b..253fe3d21378312bf6741fe1faf7a142b08f9cb9 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** DCE: Dead Code Elimination. Pre-LOOP only -- ASM already performs DCE.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_dce_c
index 04dd713d9c72eaae625b93036ecc58ccc0ee1b60..6a00f38a09fb663106f238d8327e40a344abb701 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-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_fold_c
index 4f1d31a47ab9d0aefbad83f7a2d42226a2de492e..559e579e4fee241344568289c9387ab65db517ce 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LOOP: Loop Optimizations.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_loop_c
index 6633867ee3e1fd5223b47f7cc95549b6c21829f0..9c22362bb96a711dc5ffd17001fdc9c4cb075dc7 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-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_mem_c
index fb6601e9a0c71adcb363c0b642c45d9daeaec927..837ca01548d444e38fbcdb2d27534246d96641d5 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** NARROW: Narrowing of numbers to integers (double to int32_t).
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_opt_narrow_c
index 22241b240d1081e455a4d803bd1dd44ce43a00b5..cb16cb19c5bf3a731025c65841dfd304c4224a70 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Lua parser (source code -> bytecode).
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 a05cb4ce6b017d1875463ec88ed4c093792f4e95..091653592658d793de00b3703370189b4903b5fe 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Lua parser (source code -> bytecode).
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_PARSE_H
index 2aaded147d8c6090b2e3ef62b9048079db3ef211..3e5d3c8905faa0947847489351a4a55a6d727042 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace recorder (bytecode -> SSA IR).
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_record_c
index acd6de099dc1fc63bbe81889b009e27fc1d721e7..186a25f73f76d5fb5edc80573b6e2ee4402edef0 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace recorder (bytecode -> SSA IR).
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_RECORD_H
index 64db5288622354b7cee859ba82b01f776688678c..fa2a20e08c2c07b53fcec7de9174feddc4a54a12 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Snapshot handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_snap_c
index c5b8b2a15f17b8eb0efdee10e8f5cff3f61653b3..e4c11a8c3e5449b9d85a799ff39433a210ae8002 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Snapshot handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_SNAP_H
index 79ab34e33f7357eee3f1d4419d5d24f505fbde16..85348aa7c53fa6034b91b9fa52a3df6d045f2258 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** State and stack handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 d5b9d888581a0be1c9144975baa6ba3ae5488ec1..d8d6104e42fac99d83b015a2e4af32d501133e2e 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** State and stack handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_STATE_H
index 19f9d191c7f552c3b1b0c74aee59ab52f56b2e70..20049ab37e40e2a5576e0e8fccff1111cd803bd4 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** String handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 50d1ae5fdbe9ab4ea2561d0a104ac1059afa8fb5..26b932e06de53c674df5799d32dbafc4c7eda79d 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** String handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_STR_H
index d6175bbd746638a818c46f435149ffca5a760a3e..d64a042614e02e576227eef9457c64dcf69139bc 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Table handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 d18c604ee5777a101906c55cb8198110677bfbc5..0ccfb9b4fc2223e3c734958f1ab1fb9653f7d1fe 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Table handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TAB_H
index e1af8e2970c28dbd3ffb540020c558a3c9b9be34..8c91bf7e27015d3eec711699442b79bb9aa5b986 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Definitions for target CPU.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TARGET_H
index 7aab599a7b059bf9ebec6c6f21e4d22b6eb1eff8..94ab3c32f0f60b23bf45f934c50e1b026f911f52 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Definitions for x86 and x64 CPUs.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TARGET_X86_H
index d0a21bbf633879db779ec8cd0cdab1f0a2a9889e..c508c02a2c38e15ad5b9d2f0a079ebfbce319914 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace management.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_trace_c
index 9163abf2b7934d0b1c93f1ccf9386e2d241e9c2d..25a456d936f94654f14a9d0d345d98eb0b73ff09 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace management.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_TRACE_H
index f1a86fcf6d5c98ce5db6fd34ec922fac7a5e9bfc..e212dd4cdccacdfc6b2977bdb03b6d23d1bc5455 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Trace compiler error messages.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /* This file may be included multiple times with different TREDEF macros. */
index 312109e6594f295a0f441b847bbf368aad615fcd..869f31f8af4987039eb1f08bd4f5d7a5309cc647 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Userdata handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #define lj_udata_c
index fba4c2240995db082ac8869279533e720fd28e30..952c74827c92f12483f4310944181aa01879bf40 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Userdata handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_UDATA_H
index 2f9b10ec9fc81fcdf7807f874ec02609f1e7de2c..1f9cf9b1a4412524fd0d879835456585a96b770f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Assembler VM interface definitions.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_VM_H
index 4f5c440e83aef9cd73186b28684ebd09c8f56024..67cc6dc14e631bdf2f922cbfa5093250a376c42b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** VM event handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #include <stdio.h>
index 9d21cb1e99f1a297358b5c713d813bfa5556cf9c..857e5be52701c1245802d1783988df933dd226e8 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** VM event handling.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LJ_VMEVENT_H
index 56521752fbef1860ab363c62e727d71254a32cfe..5dafc1b56d0fda9ba851867b9048e4ae5a3ff807 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT core and libraries amalgamation.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 /*
index 7278b3ef5da36779e57a6b9018a9fdff0987c224..a1fefaa8f0c7f7b26c13e776826ccab728e26d22 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Configuration header.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef luaconf_h
index 2e85f01df195b0d489e5f0da827633dbff580810..697c07714af077a1c23389c498a598a96924dc02 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** LuaJIT frontend. Runs commands, scripts, read-eval-print (REPL) etc.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 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 30990d65429ac75062a35efb54ad19ea1cf4b88c..87046653a64e37c1858f8e5b0f23ee9b394a283f 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ** LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/
 **
-** Copyright (C) 2005-2010 Mike Pall. All rights reserved.
+** Copyright (C) 2005-2011 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.0-beta5"
 #define LUAJIT_VERSION_NUM     20000  /* Version 2.0.0 = 02.00.00. */
 #define LUAJIT_VERSION_SYM     luaJIT_version_2_0_0_beta5
-#define LUAJIT_COPYRIGHT       "Copyright (C) 2005-2010 Mike Pall"
+#define LUAJIT_COPYRIGHT       "Copyright (C) 2005-2011 Mike Pall"
 #define LUAJIT_URL             "http://luajit.org/"
 
 /* Modes for luaJIT_setmode. */
index fab30b11ce03a8b0a6d31bb57f221d6362f80e38..35fb698ac3acb8d3925ba2d6c2fac4ebec81d0bf 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Standard library header.
-** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
+** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
 */
 
 #ifndef _LUALIB_H
index 899b876cdab92f1908a0e04ac8effa36d7988ccb..cd182362aca047d68443677c9cb54beeed045e24 100644 (file)
@@ -1,5 +1,5 @@
 @rem Script to build LuaJIT with MSVC.\r
-@rem Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h\r
+@rem Copyright (C) 2005-2011 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