From 4d9be5b8f8b4176a95c122b2a4c7cfcaf6bf676a Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Sat, 9 Jan 2010 14:28:11 +0100 Subject: Bump all copyright dates to 2010. --- src/Makefile | 2 +- src/buildvm.c | 2 +- src/buildvm.h | 2 +- src/buildvm_asm.c | 2 +- src/buildvm_fold.c | 2 +- src/buildvm_lib.c | 2 +- src/buildvm_peobj.c | 2 +- src/buildvm_x86.dasc | 2 +- src/lib_aux.c | 2 +- src/lib_base.c | 2 +- src/lib_bit.c | 2 +- src/lib_debug.c | 2 +- src/lib_io.c | 2 +- src/lib_jit.c | 2 +- src/lib_math.c | 2 +- src/lib_os.c | 2 +- src/lib_package.c | 2 +- src/lib_string.c | 2 +- src/lib_table.c | 2 +- src/lj_api.c | 2 +- src/lj_arch.h | 2 +- src/lj_asm.c | 2 +- src/lj_asm.h | 2 +- src/lj_bc.c | 2 +- src/lj_bc.h | 2 +- src/lj_def.h | 2 +- src/lj_dispatch.c | 2 +- src/lj_dispatch.h | 2 +- src/lj_err.c | 2 +- src/lj_err.h | 2 +- src/lj_errmsg.h | 2 +- src/lj_ff.h | 2 +- src/lj_frame.h | 2 +- src/lj_func.c | 2 +- src/lj_func.h | 2 +- src/lj_gc.c | 2 +- src/lj_gc.h | 2 +- src/lj_gdbjit.c | 2 +- src/lj_gdbjit.h | 2 +- src/lj_ir.c | 2 +- src/lj_ir.h | 2 +- src/lj_iropt.h | 2 +- src/lj_jit.h | 2 +- src/lj_lex.c | 2 +- src/lj_lib.c | 2 +- src/lj_lib.h | 2 +- src/lj_mcode.c | 2 +- src/lj_mcode.h | 2 +- src/lj_meta.c | 2 +- src/lj_meta.h | 2 +- src/lj_obj.c | 2 +- src/lj_obj.h | 2 +- src/lj_opt_dce.c | 2 +- src/lj_opt_fold.c | 2 +- src/lj_opt_loop.c | 2 +- src/lj_opt_mem.c | 2 +- src/lj_opt_narrow.c | 2 +- src/lj_parse.c | 2 +- src/lj_parse.h | 2 +- src/lj_record.c | 2 +- src/lj_record.h | 2 +- src/lj_snap.c | 2 +- src/lj_snap.h | 2 +- src/lj_state.c | 2 +- src/lj_state.h | 2 +- src/lj_str.c | 2 +- src/lj_str.h | 2 +- src/lj_tab.c | 2 +- src/lj_tab.h | 2 +- src/lj_target.h | 2 +- src/lj_target_x86.h | 2 +- src/lj_trace.c | 2 +- src/lj_trace.h | 2 +- src/lj_traceerr.h | 2 +- src/lj_udata.c | 2 +- src/lj_udata.h | 2 +- src/lj_vm.h | 2 +- src/lj_vmevent.c | 2 +- src/lj_vmevent.h | 2 +- src/ljamalg.c | 2 +- src/luaconf.h | 2 +- src/luajit.c | 2 +- src/luajit.h | 4 ++-- src/lualib.h | 2 +- src/msvcbuild.bat | 2 +- 85 files changed, 86 insertions(+), 86 deletions(-) (limited to 'src') diff --git a/src/Makefile b/src/Makefile index f0496248..666a07ad 100644 --- a/src/Makefile +++ b/src/Makefile @@ -5,7 +5,7 @@ # Also works with MinGW and Cygwin on Windows. # Please check msvcbuild.bat for building with MSVC on Windows. # -# Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +# Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h ############################################################################## MAJVER= 2 diff --git a/src/buildvm.c b/src/buildvm.c index 94e2d9a2..9a3548c3 100644 --- a/src/buildvm.c +++ b/src/buildvm.c @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/buildvm.h b/src/buildvm.h index 4bf4e56d..2581b548 100644 --- a/src/buildvm.h +++ b/src/buildvm.h @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _BUILDVM_H diff --git a/src/buildvm_asm.c b/src/buildvm_asm.c index 295b07ef..cc821365 100644 --- a/src/buildvm_asm.c +++ b/src/buildvm_asm.c @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder: Assembler source code emitter. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #include "buildvm.h" diff --git a/src/buildvm_fold.c b/src/buildvm_fold.c index 77af3dc5..bd872534 100644 --- a/src/buildvm_fold.c +++ b/src/buildvm_fold.c @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder: IR folding hash table generator. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #include "lj_obj.h" diff --git a/src/buildvm_lib.c b/src/buildvm_lib.c index cc572200..3cf8f522 100644 --- a/src/buildvm_lib.c +++ b/src/buildvm_lib.c @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder: library definition compiler. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #include "lj_obj.h" diff --git a/src/buildvm_peobj.c b/src/buildvm_peobj.c index 68af79c7..f8340f3d 100644 --- a/src/buildvm_peobj.c +++ b/src/buildvm_peobj.c @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder: PE object emitter. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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. diff --git a/src/buildvm_x86.dasc b/src/buildvm_x86.dasc index e40ca6d7..1878613e 100644 --- a/src/buildvm_x86.dasc +++ b/src/buildvm_x86.dasc @@ -1,6 +1,6 @@ |// Low-level VM code for x86 CPUs. |// Bytecode interpreter, fast functions and helper functions. -|// Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +|// Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h | |.if X64 |.arch x64 diff --git a/src/lib_aux.c b/src/lib_aux.c index 2bd06fbb..5f4e3e8c 100644 --- a/src/lib_aux.c +++ b/src/lib_aux.c @@ -1,6 +1,6 @@ /* ** Auxiliary library for the Lua/C API. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lib_base.c b/src/lib_base.c index d9b953ee..032d5bcc 100644 --- a/src/lib_base.c +++ b/src/lib_base.c @@ -1,6 +1,6 @@ /* ** Base and coroutine library. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lib_bit.c b/src/lib_bit.c index 2f727e68..0a24480f 100644 --- a/src/lib_bit.c +++ b/src/lib_bit.c @@ -1,6 +1,6 @@ /* ** Bit manipulation library. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lib_bit_c diff --git a/src/lib_debug.c b/src/lib_debug.c index 0e6c35e5..5df63866 100644 --- a/src/lib_debug.c +++ b/src/lib_debug.c @@ -1,6 +1,6 @@ /* ** Debug library. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lib_io.c b/src/lib_io.c index 6fb91609..42200201 100644 --- a/src/lib_io.c +++ b/src/lib_io.c @@ -1,6 +1,6 @@ /* ** I/O library. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lib_jit.c b/src/lib_jit.c index dceb9e5c..d849ded4 100644 --- a/src/lib_jit.c +++ b/src/lib_jit.c @@ -1,6 +1,6 @@ /* ** JIT library. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lib_jit_c diff --git a/src/lib_math.c b/src/lib_math.c index f3803e8f..51984ce4 100644 --- a/src/lib_math.c +++ b/src/lib_math.c @@ -1,6 +1,6 @@ /* ** Math library. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #include diff --git a/src/lib_os.c b/src/lib_os.c index bee7216a..8f08616f 100644 --- a/src/lib_os.c +++ b/src/lib_os.c @@ -1,6 +1,6 @@ /* ** OS library. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lib_package.c b/src/lib_package.c index 4ede0659..7d0362a5 100644 --- a/src/lib_package.c +++ b/src/lib_package.c @@ -1,6 +1,6 @@ /* ** Package library. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lib_string.c b/src/lib_string.c index e7ad12df..b6a4864b 100644 --- a/src/lib_string.c +++ b/src/lib_string.c @@ -1,6 +1,6 @@ /* ** String library. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lib_table.c b/src/lib_table.c index df9007c8..5a1e0f78 100644 --- a/src/lib_table.c +++ b/src/lib_table.c @@ -1,6 +1,6 @@ /* ** Table library. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_api.c b/src/lj_api.c index 961e5150..dbeb6af0 100644 --- a/src/lj_api.c +++ b/src/lj_api.c @@ -1,6 +1,6 @@ /* ** Public Lua/C API. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_arch.h b/src/lj_arch.h index 0b69e574..111ea8c1 100644 --- a/src/lj_arch.h +++ b/src/lj_arch.h @@ -1,6 +1,6 @@ /* ** Target architecture selection. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_ARCH_H diff --git a/src/lj_asm.c b/src/lj_asm.c index eb14b0e5..21bfa6db 100644 --- a/src/lj_asm.c +++ b/src/lj_asm.c @@ -1,6 +1,6 @@ /* ** IR assembler (SSA IR -> machine code). -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_asm_c diff --git a/src/lj_asm.h b/src/lj_asm.h index 84122b43..7502c49c 100644 --- a/src/lj_asm.h +++ b/src/lj_asm.h @@ -1,6 +1,6 @@ /* ** IR assembler (SSA IR -> machine code). -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_ASM_H diff --git a/src/lj_bc.c b/src/lj_bc.c index 79846325..ec3cf735 100644 --- a/src/lj_bc.c +++ b/src/lj_bc.c @@ -1,6 +1,6 @@ /* ** Bytecode instruction modes. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_bc_c diff --git a/src/lj_bc.h b/src/lj_bc.h index d906011c..ca70d210 100644 --- a/src/lj_bc.h +++ b/src/lj_bc.h @@ -1,6 +1,6 @@ /* ** Bytecode instruction format. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_BC_H diff --git a/src/lj_def.h b/src/lj_def.h index 3d6ba417..8128aa21 100644 --- a/src/lj_def.h +++ b/src/lj_def.h @@ -1,6 +1,6 @@ /* ** LuaJIT common internal definitions. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_DEF_H diff --git a/src/lj_dispatch.c b/src/lj_dispatch.c index 2ffe363c..1e5b574c 100644 --- a/src/lj_dispatch.c +++ b/src/lj_dispatch.c @@ -1,6 +1,6 @@ /* ** Instruction dispatch handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_dispatch_c diff --git a/src/lj_dispatch.h b/src/lj_dispatch.h index 26c14fb9..ce9d9e11 100644 --- a/src/lj_dispatch.h +++ b/src/lj_dispatch.h @@ -1,6 +1,6 @@ /* ** Instruction dispatch handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_DISPATCH_H diff --git a/src/lj_err.c b/src/lj_err.c index b8070250..5ec81302 100644 --- a/src/lj_err.c +++ b/src/lj_err.c @@ -1,6 +1,6 @@ /* ** Error handling and debugging API. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_err.h b/src/lj_err.h index 26375489..aadb7c59 100644 --- a/src/lj_err.h +++ b/src/lj_err.h @@ -1,6 +1,6 @@ /* ** Error handling and debugging support. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_ERR_H diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h index 3c79eaa4..826366a6 100644 --- a/src/lj_errmsg.h +++ b/src/lj_errmsg.h @@ -1,6 +1,6 @@ /* ** VM error messages. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ /* This file may be included multiple times with different ERRDEF macros. */ diff --git a/src/lj_ff.h b/src/lj_ff.h index 6dfd73a7..693a9b54 100644 --- a/src/lj_ff.h +++ b/src/lj_ff.h @@ -1,6 +1,6 @@ /* ** Fast function IDs. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_FF_H diff --git a/src/lj_frame.h b/src/lj_frame.h index c86818e0..d9db581b 100644 --- a/src/lj_frame.h +++ b/src/lj_frame.h @@ -1,6 +1,6 @@ /* ** Stack frames. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_FRAME_H diff --git a/src/lj_func.c b/src/lj_func.c index 45685207..b679ec81 100644 --- a/src/lj_func.c +++ b/src/lj_func.c @@ -1,6 +1,6 @@ /* ** Function handling (prototypes, functions and upvalues). -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_func.h b/src/lj_func.h index 85a14e7b..c4bf750f 100644 --- a/src/lj_func.h +++ b/src/lj_func.h @@ -1,6 +1,6 @@ /* ** Function handling (prototypes, functions and upvalues). -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_FUNC_H diff --git a/src/lj_gc.c b/src/lj_gc.c index 3e4c1787..e3d02cd4 100644 --- a/src/lj_gc.c +++ b/src/lj_gc.c @@ -1,6 +1,6 @@ /* ** Garbage collector. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_gc.h b/src/lj_gc.h index 63d6ec6c..d1774141 100644 --- a/src/lj_gc.h +++ b/src/lj_gc.h @@ -1,6 +1,6 @@ /* ** Garbage collector. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_GC_H diff --git a/src/lj_gdbjit.c b/src/lj_gdbjit.c index dfec188a..4fce5eb9 100644 --- a/src/lj_gdbjit.c +++ b/src/lj_gdbjit.c @@ -1,6 +1,6 @@ /* ** Client for the GDB JIT API. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_gdbjit_c diff --git a/src/lj_gdbjit.h b/src/lj_gdbjit.h index 2221948f..b007260b 100644 --- a/src/lj_gdbjit.h +++ b/src/lj_gdbjit.h @@ -1,6 +1,6 @@ /* ** Client for the GDB JIT API. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_GDBJIT_H diff --git a/src/lj_ir.c b/src/lj_ir.c index cf0b6b55..30ac026b 100644 --- a/src/lj_ir.c +++ b/src/lj_ir.c @@ -1,6 +1,6 @@ /* ** SSA IR (Intermediate Representation) emitter. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_ir_c diff --git a/src/lj_ir.h b/src/lj_ir.h index 9a7e711d..f73dcc40 100644 --- a/src/lj_ir.h +++ b/src/lj_ir.h @@ -1,6 +1,6 @@ /* ** SSA IR (Intermediate Representation) format. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_IR_H diff --git a/src/lj_iropt.h b/src/lj_iropt.h index 52077ad5..947fa820 100644 --- a/src/lj_iropt.h +++ b/src/lj_iropt.h @@ -1,6 +1,6 @@ /* ** Common header for IR emitter and optimizations. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_IROPT_H diff --git a/src/lj_jit.h b/src/lj_jit.h index 280eff41..c783922c 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h @@ -1,6 +1,6 @@ /* ** Common definitions for the JIT compiler. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_JIT_H diff --git a/src/lj_lex.c b/src/lj_lex.c index 38b0a7d4..d1df138e 100644 --- a/src/lj_lex.c +++ b/src/lj_lex.c @@ -1,6 +1,6 @@ /* ** Lexical analyzer. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_lib.c b/src/lj_lib.c index d8254093..de1c8646 100644 --- a/src/lj_lib.c +++ b/src/lj_lib.c @@ -1,6 +1,6 @@ /* ** Library function support. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_lib_c diff --git a/src/lj_lib.h b/src/lj_lib.h index a7a6317e..44be96b9 100644 --- a/src/lj_lib.h +++ b/src/lj_lib.h @@ -1,6 +1,6 @@ /* ** Library function support. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_LIB_H diff --git a/src/lj_mcode.c b/src/lj_mcode.c index e5791e9f..2ae0c2a9 100644 --- a/src/lj_mcode.c +++ b/src/lj_mcode.c @@ -1,6 +1,6 @@ /* ** Machine code management. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_mcode_c diff --git a/src/lj_mcode.h b/src/lj_mcode.h index d4573bf4..27a8c949 100644 --- a/src/lj_mcode.h +++ b/src/lj_mcode.h @@ -1,6 +1,6 @@ /* ** Machine code management. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_MCODE_H diff --git a/src/lj_meta.c b/src/lj_meta.c index dd965cde..c8ac18d6 100644 --- a/src/lj_meta.c +++ b/src/lj_meta.c @@ -1,6 +1,6 @@ /* ** Metamethod handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_meta.h b/src/lj_meta.h index ddd49bff..9b2c3f73 100644 --- a/src/lj_meta.h +++ b/src/lj_meta.h @@ -1,6 +1,6 @@ /* ** Metamethod handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_META_H diff --git a/src/lj_obj.c b/src/lj_obj.c index d26a6b38..4363e790 100644 --- a/src/lj_obj.c +++ b/src/lj_obj.c @@ -1,6 +1,6 @@ /* ** Miscellaneous object handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_obj_c diff --git a/src/lj_obj.h b/src/lj_obj.h index 11b953e0..12c02352 100644 --- a/src/lj_obj.h +++ b/src/lj_obj.h @@ -1,6 +1,6 @@ /* ** LuaJIT VM tags, values and objects. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_opt_dce.c b/src/lj_opt_dce.c index 0cd60830..e304d9fc 100644 --- a/src/lj_opt_dce.c +++ b/src/lj_opt_dce.c @@ -1,6 +1,6 @@ /* ** DCE: Dead Code Elimination. Pre-LOOP only -- ASM already performs DCE. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_opt_dce_c diff --git a/src/lj_opt_fold.c b/src/lj_opt_fold.c index 98266d21..41c87e2f 100644 --- a/src/lj_opt_fold.c +++ b/src/lj_opt_fold.c @@ -1,7 +1,7 @@ /* ** FOLD: Constant Folding, Algebraic Simplifications and Reassociation. ** CSE: Common-Subexpression Elimination. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_opt_fold_c diff --git a/src/lj_opt_loop.c b/src/lj_opt_loop.c index a743932d..1fbc8091 100644 --- a/src/lj_opt_loop.c +++ b/src/lj_opt_loop.c @@ -1,6 +1,6 @@ /* ** LOOP: Loop Optimizations. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_opt_loop_c diff --git a/src/lj_opt_mem.c b/src/lj_opt_mem.c index 882ba6c5..521c8590 100644 --- a/src/lj_opt_mem.c +++ b/src/lj_opt_mem.c @@ -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-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_opt_mem_c diff --git a/src/lj_opt_narrow.c b/src/lj_opt_narrow.c index b9107c5e..50dd97e6 100644 --- a/src/lj_opt_narrow.c +++ b/src/lj_opt_narrow.c @@ -1,6 +1,6 @@ /* ** NARROW: Narrowing of numbers to integers (double to int32_t). -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_opt_narrow_c diff --git a/src/lj_parse.c b/src/lj_parse.c index 4aa23a1b..81416f0f 100644 --- a/src/lj_parse.c +++ b/src/lj_parse.c @@ -1,6 +1,6 @@ /* ** Lua parser (source code -> bytecode). -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_parse.h b/src/lj_parse.h index 72aac2c6..2031eeed 100644 --- a/src/lj_parse.h +++ b/src/lj_parse.h @@ -1,6 +1,6 @@ /* ** Lua parser (source code -> bytecode). -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_PARSE_H diff --git a/src/lj_record.c b/src/lj_record.c index 6206bfcd..02016b12 100644 --- a/src/lj_record.c +++ b/src/lj_record.c @@ -1,6 +1,6 @@ /* ** Trace recorder (bytecode -> SSA IR). -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_record_c diff --git a/src/lj_record.h b/src/lj_record.h index 7bb7952c..53c2f4c4 100644 --- a/src/lj_record.h +++ b/src/lj_record.h @@ -1,6 +1,6 @@ /* ** Trace recorder (bytecode -> SSA IR). -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_RECORD_H diff --git a/src/lj_snap.c b/src/lj_snap.c index d27404f2..e2a49ae3 100644 --- a/src/lj_snap.c +++ b/src/lj_snap.c @@ -1,6 +1,6 @@ /* ** Snapshot handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_snap_c diff --git a/src/lj_snap.h b/src/lj_snap.h index 806047b1..776a0bcf 100644 --- a/src/lj_snap.h +++ b/src/lj_snap.h @@ -1,6 +1,6 @@ /* ** Snapshot handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_SNAP_H diff --git a/src/lj_state.c b/src/lj_state.c index ef8f65ea..34da3690 100644 --- a/src/lj_state.c +++ b/src/lj_state.c @@ -1,6 +1,6 @@ /* ** State and stack handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_state.h b/src/lj_state.h index 5a34e067..2238be64 100644 --- a/src/lj_state.h +++ b/src/lj_state.h @@ -1,6 +1,6 @@ /* ** State and stack handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_STATE_H diff --git a/src/lj_str.c b/src/lj_str.c index fec2d9b2..c49ecd2a 100644 --- a/src/lj_str.c +++ b/src/lj_str.c @@ -1,6 +1,6 @@ /* ** String handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_str.h b/src/lj_str.h index e8b242c0..5a4fcb9a 100644 --- a/src/lj_str.h +++ b/src/lj_str.h @@ -1,6 +1,6 @@ /* ** String handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_STR_H diff --git a/src/lj_tab.c b/src/lj_tab.c index 2f18d18f..afbdc8aa 100644 --- a/src/lj_tab.c +++ b/src/lj_tab.c @@ -1,6 +1,6 @@ /* ** Table handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/lj_tab.h b/src/lj_tab.h index 6f9e941b..8e4e9316 100644 --- a/src/lj_tab.h +++ b/src/lj_tab.h @@ -1,6 +1,6 @@ /* ** Table handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_TAB_H diff --git a/src/lj_target.h b/src/lj_target.h index 0b464d3f..e1af8e29 100644 --- a/src/lj_target.h +++ b/src/lj_target.h @@ -1,6 +1,6 @@ /* ** Definitions for target CPU. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_TARGET_H diff --git a/src/lj_target_x86.h b/src/lj_target_x86.h index 198245cd..2ccea549 100644 --- a/src/lj_target_x86.h +++ b/src/lj_target_x86.h @@ -1,6 +1,6 @@ /* ** Definitions for x86 and x64 CPUs. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_TARGET_X86_H diff --git a/src/lj_trace.c b/src/lj_trace.c index 8849b65c..683b8a58 100644 --- a/src/lj_trace.c +++ b/src/lj_trace.c @@ -1,6 +1,6 @@ /* ** Trace management. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_trace_c diff --git a/src/lj_trace.h b/src/lj_trace.h index 6a417e15..0d4e30e0 100644 --- a/src/lj_trace.h +++ b/src/lj_trace.h @@ -1,6 +1,6 @@ /* ** Trace management. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_TRACE_H diff --git a/src/lj_traceerr.h b/src/lj_traceerr.h index 2c8347b0..6e02a053 100644 --- a/src/lj_traceerr.h +++ b/src/lj_traceerr.h @@ -1,6 +1,6 @@ /* ** Trace compiler error messages. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ /* This file may be included multiple times with different TREDEF macros. */ diff --git a/src/lj_udata.c b/src/lj_udata.c index 717d483b..312109e6 100644 --- a/src/lj_udata.c +++ b/src/lj_udata.c @@ -1,6 +1,6 @@ /* ** Userdata handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #define lj_udata_c diff --git a/src/lj_udata.h b/src/lj_udata.h index 981304f8..fba4c224 100644 --- a/src/lj_udata.h +++ b/src/lj_udata.h @@ -1,6 +1,6 @@ /* ** Userdata handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_UDATA_H diff --git a/src/lj_vm.h b/src/lj_vm.h index 05c590e6..cf6a985f 100644 --- a/src/lj_vm.h +++ b/src/lj_vm.h @@ -1,6 +1,6 @@ /* ** Assembler VM interface definitions. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_VM_H diff --git a/src/lj_vmevent.c b/src/lj_vmevent.c index 657eb8d7..4f5c440e 100644 --- a/src/lj_vmevent.c +++ b/src/lj_vmevent.c @@ -1,6 +1,6 @@ /* ** VM event handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #include diff --git a/src/lj_vmevent.h b/src/lj_vmevent.h index 9eaa52e1..ceb70f82 100644 --- a/src/lj_vmevent.h +++ b/src/lj_vmevent.h @@ -1,6 +1,6 @@ /* ** VM event handling. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_VMEVENT_H diff --git a/src/ljamalg.c b/src/ljamalg.c index 46d0e21f..d2053624 100644 --- a/src/ljamalg.c +++ b/src/ljamalg.c @@ -1,6 +1,6 @@ /* ** LuaJIT core and libraries amalgamation. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ /* diff --git a/src/luaconf.h b/src/luaconf.h index 02930a2f..53cb8fb1 100644 --- a/src/luaconf.h +++ b/src/luaconf.h @@ -1,6 +1,6 @@ /* ** Configuration header. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef luaconf_h diff --git a/src/luajit.c b/src/luajit.c index eec2c0ca..a6cc7ce3 100644 --- a/src/luajit.c +++ b/src/luajit.c @@ -1,6 +1,6 @@ /* ** LuaJIT frontend. Runs commands, scripts, read-eval-print (REPL) etc. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 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 diff --git a/src/luajit.h b/src/luajit.h index b3617f49..91b59404 100644 --- a/src/luajit.h +++ b/src/luajit.h @@ -1,7 +1,7 @@ /* ** LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/ ** -** Copyright (C) 2005-2009 Mike Pall. All rights reserved. +** Copyright (C) 2005-2010 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-beta2" #define LUAJIT_VERSION_NUM 20000 /* Version 2.0.0 = 02.00.00. */ #define LUAJIT_VERSION_SYM luaJIT_version_2_0_0_beta2 -#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2009 Mike Pall" +#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2010 Mike Pall" #define LUAJIT_URL "http://luajit.org/" /* Modes for luaJIT_setmode. */ diff --git a/src/lualib.h b/src/lualib.h index c1ceb613..9c473c88 100644 --- a/src/lualib.h +++ b/src/lualib.h @@ -1,6 +1,6 @@ /* ** Standard library header. -** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LUALIB_H diff --git a/src/msvcbuild.bat b/src/msvcbuild.bat index 8bdc4d8a..6ea80219 100644 --- a/src/msvcbuild.bat +++ b/src/msvcbuild.bat @@ -1,5 +1,5 @@ @rem Script to build LuaJIT with MSVC. -@rem Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +@rem Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h @rem @rem Open a "Visual Studio .NET Command Prompt", cd to this directory @rem and run this script. -- cgit v1.2.3-55-g6feb