diff options
author | Mike Pall <mike> | 2012-07-04 21:16:06 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-07-04 21:16:06 +0200 |
commit | 7c056488d96434fc9996ba8b2b2a684f03472b62 (patch) | |
tree | acb4d00bc52c4b31023b3e47bc7765d8f1f29391 /src/jit | |
parent | bd782cedd5079a49e30310837c899e98ce11c95c (diff) | |
download | luajit-7c056488d96434fc9996ba8b2b2a684f03472b62.tar.gz luajit-7c056488d96434fc9996ba8b2b2a684f03472b62.tar.bz2 luajit-7c056488d96434fc9996ba8b2b2a684f03472b62.zip |
Drop range limit for sunk stores relative to sunk allocation.
Diffstat (limited to 'src/jit')
-rw-r--r-- | src/jit/dump.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/dump.lua b/src/jit/dump.lua index 98933971..e5871b8d 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
@@ -378,7 +378,7 @@ local function ridsp_name(ridsp, ins) | |||
378 | if not disass then disass = require("jit.dis_"..jit.arch) end | 378 | if not disass then disass = require("jit.dis_"..jit.arch) end |
379 | local rid, slot = band(ridsp, 0xff), shr(ridsp, 8) | 379 | local rid, slot = band(ridsp, 0xff), shr(ridsp, 8) |
380 | if rid == 253 or rid == 254 then | 380 | if rid == 253 or rid == 254 then |
381 | return slot == 0 and " {sink" or format(" {%04d", ins-slot) | 381 | return (slot == 0 or slot == 255) and " {sink" or format(" {%04d", ins-slot) |
382 | end | 382 | end |
383 | if ridsp > 255 then return format("[%x]", slot*4) end | 383 | if ridsp > 255 then return format("[%x]", slot*4) end |
384 | if rid < 128 then return disass.regname(rid) end | 384 | if rid < 128 then return disass.regname(rid) end |