aboutsummaryrefslogtreecommitdiff
path: root/src/jit
diff options
context:
space:
mode:
authorMike Pall <mike>2016-07-17 14:38:26 +0200
committerMike Pall <mike>2016-07-17 14:38:26 +0200
commit37b377dedf000cb78730feff1035d439d04ce09e (patch)
tree65f110c3396e0e7bc607287a54ff9b3f90d308a6 /src/jit
parent01e4754962130dc85802a9738707d7fdb76c879c (diff)
parent1914de71c7dc10c502ecf033c63665eb6d3e6433 (diff)
downloadluajit-37b377dedf000cb78730feff1035d439d04ce09e.tar.gz
luajit-37b377dedf000cb78730feff1035d439d04ce09e.tar.bz2
luajit-37b377dedf000cb78730feff1035d439d04ce09e.zip
Merge branch 'master' into v2.1
Diffstat (limited to 'src/jit')
-rw-r--r--src/jit/dis_arm.lua2
-rw-r--r--src/jit/dis_mips.lua4
-rw-r--r--src/jit/dis_ppc.lua2
-rw-r--r--src/jit/dis_x86.lua2
-rw-r--r--src/jit/dump.lua6
-rw-r--r--src/jit/p.lua2
6 files changed, 9 insertions, 9 deletions
diff --git a/src/jit/dis_arm.lua b/src/jit/dis_arm.lua
index 1296d816..5d2cdbda 100644
--- a/src/jit/dis_arm.lua
+++ b/src/jit/dis_arm.lua
@@ -12,7 +12,7 @@
12 12
13local type = type 13local type = type
14local sub, byte, format = string.sub, string.byte, string.format 14local sub, byte, format = string.sub, string.byte, string.format
15local match, gmatch, gsub = string.match, string.gmatch, string.gsub 15local match, gmatch = string.match, string.gmatch
16local concat = table.concat 16local concat = table.concat
17local bit = require("bit") 17local bit = require("bit")
18local band, bor, ror, tohex = bit.band, bit.bor, bit.ror, bit.tohex 18local band, bor, ror, tohex = bit.band, bit.bor, bit.ror, bit.tohex
diff --git a/src/jit/dis_mips.lua b/src/jit/dis_mips.lua
index 6776f0cb..c8fb0ea8 100644
--- a/src/jit/dis_mips.lua
+++ b/src/jit/dis_mips.lua
@@ -11,8 +11,8 @@
11------------------------------------------------------------------------------ 11------------------------------------------------------------------------------
12 12
13local type = type 13local type = type
14local sub, byte, format = string.sub, string.byte, string.format 14local byte, format = string.byte, string.format
15local match, gmatch, gsub = string.match, string.gmatch, string.gsub 15local match, gmatch = string.match, string.gmatch
16local concat = table.concat 16local concat = table.concat
17local bit = require("bit") 17local bit = require("bit")
18local band, bor, tohex = bit.band, bit.bor, bit.tohex 18local band, bor, tohex = bit.band, bit.bor, bit.tohex
diff --git a/src/jit/dis_ppc.lua b/src/jit/dis_ppc.lua
index 30f51ecd..30eb3978 100644
--- a/src/jit/dis_ppc.lua
+++ b/src/jit/dis_ppc.lua
@@ -13,7 +13,7 @@
13------------------------------------------------------------------------------ 13------------------------------------------------------------------------------
14 14
15local type = type 15local type = type
16local sub, byte, format = string.sub, string.byte, string.format 16local byte, format = string.byte, string.format
17local match, gmatch, gsub = string.match, string.gmatch, string.gsub 17local match, gmatch, gsub = string.match, string.gmatch, string.gsub
18local concat = table.concat 18local concat = table.concat
19local bit = require("bit") 19local bit = require("bit")
diff --git a/src/jit/dis_x86.lua b/src/jit/dis_x86.lua
index 0bbd198f..8cac9ae9 100644
--- a/src/jit/dis_x86.lua
+++ b/src/jit/dis_x86.lua
@@ -818,7 +818,7 @@ map_act = {
818 m = b%32; b = (b-m)/32 818 m = b%32; b = (b-m)/32
819 local nb = b%2; b = (b-nb)/2 819 local nb = b%2; b = (b-nb)/2
820 if nb == 0 then ctx.rexb = true end 820 if nb == 0 then ctx.rexb = true end
821 local nx = b%2; b = (b-nx)/2 821 local nx = b%2
822 if nx == 0 then ctx.rexx = true end 822 if nx == 0 then ctx.rexx = true end
823 b = byte(ctx.code, pos, pos) 823 b = byte(ctx.code, pos, pos)
824 if not b then return incomplete(ctx) end 824 if not b then return incomplete(ctx) end
diff --git a/src/jit/dump.lua b/src/jit/dump.lua
index a635af10..1eca12a8 100644
--- a/src/jit/dump.lua
+++ b/src/jit/dump.lua
@@ -63,9 +63,9 @@ local traceinfo, traceir, tracek = jutil.traceinfo, jutil.traceir, jutil.tracek
63local tracemc, tracesnap = jutil.tracemc, jutil.tracesnap 63local tracemc, tracesnap = jutil.tracemc, jutil.tracesnap
64local traceexitstub, ircalladdr = jutil.traceexitstub, jutil.ircalladdr 64local traceexitstub, ircalladdr = jutil.traceexitstub, jutil.ircalladdr
65local bit = require("bit") 65local bit = require("bit")
66local band, shl, shr, tohex = bit.band, bit.lshift, bit.rshift, bit.tohex 66local band, shr, tohex = bit.band, bit.rshift, bit.tohex
67local sub, gsub, format = string.sub, string.gsub, string.format 67local sub, gsub, format = string.sub, string.gsub, string.format
68local byte, char, rep = string.byte, string.char, string.rep 68local byte, rep = string.byte, string.rep
69local type, tostring = type, tostring 69local type, tostring = type, tostring
70local stdout, stderr = io.stdout, io.stderr 70local stdout, stderr = io.stdout, io.stderr
71 71
@@ -213,7 +213,7 @@ local colortype_ansi = {
213 "\027[35m%s\027[m", 213 "\027[35m%s\027[m",
214} 214}
215 215
216local function colorize_text(s, t) 216local function colorize_text(s)
217 return s 217 return s
218end 218end
219 219
diff --git a/src/jit/p.lua b/src/jit/p.lua
index 5323728b..09b3b9fe 100644
--- a/src/jit/p.lua
+++ b/src/jit/p.lua
@@ -120,7 +120,7 @@ end
120-- Show top N list. 120-- Show top N list.
121local function prof_top(count1, count2, samples, indent) 121local function prof_top(count1, count2, samples, indent)
122 local t, n = {}, 0 122 local t, n = {}, 0
123 for k, v in pairs(count1) do 123 for k in pairs(count1) do
124 n = n + 1 124 n = n + 1
125 t[n] = k 125 t[n] = k
126 end 126 end