ARM: Add VFP and hard-float ABI variants to JIT compiler.

This commit is contained in:
Mike Pall
2012-08-09 13:11:43 +02:00
parent e6fac91d01
commit 4dc9e22def
8 changed files with 760 additions and 113 deletions

View File

@@ -676,7 +676,8 @@ end
-- Return register name for RID.
local function regname_(r)
return map_gpr[r]
if r < 16 then return map_gpr[r] end
return "d"..(r-16)
end
-- Public module functions.