diff options
author | Mike Pall <mike> | 2022-01-15 19:42:30 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2022-01-15 19:42:30 +0100 |
commit | 7306ba78d62b55a64f25231df1d5697345a5572e (patch) | |
tree | b20514c4469babd1cbd80a52a8251387153e278c /src/jit | |
parent | c21c6cb4170159250aa778ec888db7f919dfb0e9 (diff) | |
parent | c4dfb625bad8937d72074852a977738ec3eb1ab7 (diff) | |
download | luajit-7306ba78d62b55a64f25231df1d5697345a5572e.tar.gz luajit-7306ba78d62b55a64f25231df1d5697345a5572e.tar.bz2 luajit-7306ba78d62b55a64f25231df1d5697345a5572e.zip |
Merge branch 'master' into v2.1
Diffstat (limited to 'src/jit')
-rw-r--r-- | src/jit/bc.lua | 2 | ||||
-rw-r--r-- | src/jit/bcsave.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_arm.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_arm64.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_arm64be.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_mips.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_mips64.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_mips64el.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_mips64r6.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_mips64r6el.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_mipsel.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_ppc.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_x64.lua | 2 | ||||
-rw-r--r-- | src/jit/dis_x86.lua | 2 | ||||
-rw-r--r-- | src/jit/dump.lua | 2 | ||||
-rw-r--r-- | src/jit/p.lua | 2 | ||||
-rw-r--r-- | src/jit/v.lua | 2 | ||||
-rw-r--r-- | src/jit/zone.lua | 2 |
18 files changed, 18 insertions, 18 deletions
diff --git a/src/jit/bc.lua b/src/jit/bc.lua index e58a3fef..8d0844c0 100644 --- a/src/jit/bc.lua +++ b/src/jit/bc.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT bytecode listing module. | 2 | -- LuaJIT bytecode listing module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- | 7 | -- |
diff --git a/src/jit/bcsave.lua b/src/jit/bcsave.lua index bc959327..6227d136 100644 --- a/src/jit/bcsave.lua +++ b/src/jit/bcsave.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT module to save/list bytecode. | 2 | -- LuaJIT module to save/list bytecode. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- | 7 | -- |
diff --git a/src/jit/dis_arm.lua b/src/jit/dis_arm.lua index ba79c47e..18ab68df 100644 --- a/src/jit/dis_arm.lua +++ b/src/jit/dis_arm.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT ARM disassembler module. | 2 | -- LuaJIT ARM disassembler module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/src/jit/dis_arm64.lua b/src/jit/dis_arm64.lua index ad909fbd..531584a1 100644 --- a/src/jit/dis_arm64.lua +++ b/src/jit/dis_arm64.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT ARM64 disassembler module. | 2 | -- LuaJIT ARM64 disassembler module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | -- | 6 | -- |
7 | -- Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. | 7 | -- Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. |
diff --git a/src/jit/dis_arm64be.lua b/src/jit/dis_arm64be.lua index edcbffa8..7337f5b7 100644 --- a/src/jit/dis_arm64be.lua +++ b/src/jit/dis_arm64be.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT ARM64BE disassembler wrapper module. | 2 | -- LuaJIT ARM64BE disassembler wrapper module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- ARM64 instructions are always little-endian. So just forward to the | 7 | -- ARM64 instructions are always little-endian. So just forward to the |
diff --git a/src/jit/dis_mips.lua b/src/jit/dis_mips.lua index 6ad17f54..05dc30fd 100644 --- a/src/jit/dis_mips.lua +++ b/src/jit/dis_mips.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT MIPS disassembler module. | 2 | -- LuaJIT MIPS disassembler module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT/X license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT/X license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/src/jit/dis_mips64.lua b/src/jit/dis_mips64.lua index 5ad48f8f..1236e524 100644 --- a/src/jit/dis_mips64.lua +++ b/src/jit/dis_mips64.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT MIPS64 disassembler wrapper module. | 2 | -- LuaJIT MIPS64 disassembler wrapper module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This module just exports the big-endian functions from the | 7 | -- This module just exports the big-endian functions from the |
diff --git a/src/jit/dis_mips64el.lua b/src/jit/dis_mips64el.lua index d50e3a18..7c478d2d 100644 --- a/src/jit/dis_mips64el.lua +++ b/src/jit/dis_mips64el.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT MIPS64EL disassembler wrapper module. | 2 | -- LuaJIT MIPS64EL disassembler wrapper module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This module just exports the little-endian functions from the | 7 | -- This module just exports the little-endian functions from the |
diff --git a/src/jit/dis_mips64r6.lua b/src/jit/dis_mips64r6.lua index 921b3cbe..c5789ce4 100644 --- a/src/jit/dis_mips64r6.lua +++ b/src/jit/dis_mips64r6.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT MIPS64R6 disassembler wrapper module. | 2 | -- LuaJIT MIPS64R6 disassembler wrapper module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This module just exports the r6 big-endian functions from the | 7 | -- This module just exports the r6 big-endian functions from the |
diff --git a/src/jit/dis_mips64r6el.lua b/src/jit/dis_mips64r6el.lua index aadef9f3..f67f6240 100644 --- a/src/jit/dis_mips64r6el.lua +++ b/src/jit/dis_mips64r6el.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT MIPS64R6EL disassembler wrapper module. | 2 | -- LuaJIT MIPS64R6EL disassembler wrapper module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This module just exports the r6 little-endian functions from the | 7 | -- This module just exports the r6 little-endian functions from the |
diff --git a/src/jit/dis_mipsel.lua b/src/jit/dis_mipsel.lua index 52cebefb..a4fa6c60 100644 --- a/src/jit/dis_mipsel.lua +++ b/src/jit/dis_mipsel.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT MIPSEL disassembler wrapper module. | 2 | -- LuaJIT MIPSEL disassembler wrapper module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This module just exports the little-endian functions from the | 7 | -- This module just exports the little-endian functions from the |
diff --git a/src/jit/dis_ppc.lua b/src/jit/dis_ppc.lua index 08d742f1..8f65f25a 100644 --- a/src/jit/dis_ppc.lua +++ b/src/jit/dis_ppc.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT PPC disassembler module. | 2 | -- LuaJIT PPC disassembler module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT/X license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT/X license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/src/jit/dis_x64.lua b/src/jit/dis_x64.lua index 2d37423e..d076c6ae 100644 --- a/src/jit/dis_x64.lua +++ b/src/jit/dis_x64.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT x64 disassembler wrapper module. | 2 | -- LuaJIT x64 disassembler wrapper module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This module just exports the 64 bit functions from the combined | 7 | -- This module just exports the 64 bit functions from the combined |
diff --git a/src/jit/dis_x86.lua b/src/jit/dis_x86.lua index 5480854c..84492fff 100644 --- a/src/jit/dis_x86.lua +++ b/src/jit/dis_x86.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT x86/x64 disassembler module. | 2 | -- LuaJIT x86/x64 disassembler module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/src/jit/dump.lua b/src/jit/dump.lua index 9eda08c4..18e7a4b7 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT compiler dump module. | 2 | -- LuaJIT compiler dump module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- | 7 | -- |
diff --git a/src/jit/p.lua b/src/jit/p.lua index c9ec1d8b..f225c312 100644 --- a/src/jit/p.lua +++ b/src/jit/p.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT profiler. | 2 | -- LuaJIT profiler. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- | 7 | -- |
diff --git a/src/jit/v.lua b/src/jit/v.lua index 83589143..ac8b19db 100644 --- a/src/jit/v.lua +++ b/src/jit/v.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- Verbose mode of the LuaJIT compiler. | 2 | -- Verbose mode of the LuaJIT compiler. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- | 7 | -- |
diff --git a/src/jit/zone.lua b/src/jit/zone.lua index 94357854..1308cb74 100644 --- a/src/jit/zone.lua +++ b/src/jit/zone.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT profiler zones. | 2 | -- LuaJIT profiler zones. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2021 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2022 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- | 7 | -- |