forked from snabbco/snabb
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MIPS64, part 2: Add MIPS64 hard-float JIT compiler backend.
Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
- Loading branch information
Mike Pall
committed
Feb 20, 2017
1 parent
4416e88
commit a25c0b9
Showing
14 changed files
with
1,024 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
---------------------------------------------------------------------------- | ||
-- LuaJIT MIPS64 disassembler wrapper module. | ||
-- | ||
-- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | ||
-- Released under the MIT license. See Copyright Notice in luajit.h | ||
---------------------------------------------------------------------------- | ||
-- This module just exports the big-endian functions from the | ||
-- MIPS disassembler module. All the interesting stuff is there. | ||
------------------------------------------------------------------------------ | ||
|
||
local dis_mips = require((string.match(..., ".*%.") or "").."dis_mips") | ||
return { | ||
create = dis_mips.create, | ||
disass = dis_mips.disass, | ||
regname = dis_mips.regname | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
---------------------------------------------------------------------------- | ||
-- LuaJIT MIPS64EL disassembler wrapper module. | ||
-- | ||
-- Copyright (C) 2005-2017 Mike Pall. All rights reserved. | ||
-- Released under the MIT license. See Copyright Notice in luajit.h | ||
---------------------------------------------------------------------------- | ||
-- This module just exports the little-endian functions from the | ||
-- MIPS disassembler module. All the interesting stuff is there. | ||
------------------------------------------------------------------------------ | ||
|
||
local dis_mips = require((string.match(..., ".*%.") or "").."dis_mips") | ||
return { | ||
create = dis_mips.create_el, | ||
disass = dis_mips.disass_el, | ||
regname = dis_mips.regname | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.