-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mips64(eb) support, and mips r6 support
mips64 is same with mips64el, and we have 4 mips r6 arch: mipsisa32r6 is the same with mips; mipsisa32r6el is the same with mipsel; mipsisa64r6 is the same with mips64; mipsisa64r6el is the same with mips64el.
- Loading branch information
Showing
5 changed files
with
108 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
rbx.platform.typedef.__u_char = uchar | ||
rbx.platform.typedef.__u_short = ushort | ||
rbx.platform.typedef.__u_int = uint | ||
rbx.platform.typedef.__u_long = ulong | ||
rbx.platform.typedef.__int8_t = char | ||
rbx.platform.typedef.__uint8_t = uchar | ||
rbx.platform.typedef.__int16_t = short | ||
rbx.platform.typedef.__uint16_t = ushort | ||
rbx.platform.typedef.__int32_t = int | ||
rbx.platform.typedef.__uint32_t = uint | ||
rbx.platform.typedef.__int64_t = long | ||
rbx.platform.typedef.__uint64_t = ulong | ||
rbx.platform.typedef.__quad_t = long | ||
rbx.platform.typedef.__u_quad_t = ulong | ||
rbx.platform.typedef.__dev_t = ulong | ||
rbx.platform.typedef.__uid_t = uint | ||
rbx.platform.typedef.__gid_t = uint | ||
rbx.platform.typedef.__ino_t = ulong | ||
rbx.platform.typedef.__ino64_t = ulong | ||
rbx.platform.typedef.__mode_t = uint | ||
rbx.platform.typedef.__nlink_t = ulong | ||
rbx.platform.typedef.__off_t = long | ||
rbx.platform.typedef.__off64_t = long | ||
rbx.platform.typedef.__pid_t = int | ||
rbx.platform.typedef.__clock_t = long | ||
rbx.platform.typedef.__rlim_t = ulong | ||
rbx.platform.typedef.__rlim64_t = ulong | ||
rbx.platform.typedef.__id_t = uint | ||
rbx.platform.typedef.__time_t = long | ||
rbx.platform.typedef.__useconds_t = uint | ||
rbx.platform.typedef.__suseconds_t = long | ||
rbx.platform.typedef.__daddr_t = int | ||
rbx.platform.typedef.__key_t = int | ||
rbx.platform.typedef.__clockid_t = int | ||
rbx.platform.typedef.__timer_t = pointer | ||
rbx.platform.typedef.__blksize_t = long | ||
rbx.platform.typedef.__blkcnt_t = long | ||
rbx.platform.typedef.__blkcnt64_t = long | ||
rbx.platform.typedef.__fsblkcnt_t = ulong | ||
rbx.platform.typedef.__fsblkcnt64_t = ulong | ||
rbx.platform.typedef.__fsfilcnt_t = ulong | ||
rbx.platform.typedef.__fsfilcnt64_t = ulong | ||
rbx.platform.typedef.__fsword_t = long | ||
rbx.platform.typedef.__ssize_t = long | ||
rbx.platform.typedef.__syscall_slong_t = long | ||
rbx.platform.typedef.__syscall_ulong_t = ulong | ||
rbx.platform.typedef.__loff_t = long | ||
rbx.platform.typedef.*__qaddr_t = long | ||
rbx.platform.typedef.*__caddr_t = char | ||
rbx.platform.typedef.__intptr_t = long | ||
rbx.platform.typedef.__socklen_t = uint | ||
rbx.platform.typedef.u_char = uchar | ||
rbx.platform.typedef.u_short = ushort | ||
rbx.platform.typedef.u_int = uint | ||
rbx.platform.typedef.u_long = ulong | ||
rbx.platform.typedef.quad_t = long | ||
rbx.platform.typedef.u_quad_t = ulong | ||
rbx.platform.typedef.loff_t = long | ||
rbx.platform.typedef.ino_t = ulong | ||
rbx.platform.typedef.dev_t = ulong | ||
rbx.platform.typedef.gid_t = uint | ||
rbx.platform.typedef.mode_t = uint | ||
rbx.platform.typedef.nlink_t = ulong | ||
rbx.platform.typedef.uid_t = uint | ||
rbx.platform.typedef.off_t = long | ||
rbx.platform.typedef.pid_t = int | ||
rbx.platform.typedef.id_t = uint | ||
rbx.platform.typedef.ssize_t = long | ||
rbx.platform.typedef.daddr_t = int | ||
rbx.platform.typedef.key_t = int | ||
rbx.platform.typedef.clock_t = long | ||
rbx.platform.typedef.time_t = long | ||
rbx.platform.typedef.clockid_t = int | ||
rbx.platform.typedef.timer_t = pointer | ||
rbx.platform.typedef.size_t = ulong | ||
rbx.platform.typedef.ulong = ulong | ||
rbx.platform.typedef.ushort = ushort | ||
rbx.platform.typedef.uint = uint | ||
rbx.platform.typedef.int8_t = char | ||
rbx.platform.typedef.int16_t = short | ||
rbx.platform.typedef.int32_t = int | ||
rbx.platform.typedef.int64_t = long_long | ||
rbx.platform.typedef.u_int8_t = uchar | ||
rbx.platform.typedef.u_int16_t = ushort | ||
rbx.platform.typedef.u_int32_t = uint | ||
rbx.platform.typedef.u_int64_t = ulong_long | ||
rbx.platform.typedef.register_t = long | ||
rbx.platform.typedef.__sig_atomic_t = int | ||
rbx.platform.typedef.suseconds_t = long | ||
rbx.platform.typedef.__fd_mask = long | ||
rbx.platform.typedef.fd_mask = long | ||
rbx.platform.typedef.blksize_t = long | ||
rbx.platform.typedef.blkcnt_t = long | ||
rbx.platform.typedef.fsblkcnt_t = ulong | ||
rbx.platform.typedef.fsfilcnt_t = ulong | ||
rbx.platform.typedef.pthread_t = ulong | ||
rbx.platform.typedef.pthread_key_t = uint | ||
rbx.platform.typedef.pthread_once_t = int | ||
rbx.platform.typedef.socklen_t = uint | ||
rbx.platform.typedef.sa_family_t = ushort | ||
rbx.platform.typedef.rlim_t = ulong | ||
rbx.platform.typedef.__rlimit_resource_t = int | ||
rbx.platform.typedef.__rusage_who_t = int | ||
rbx.platform.typedef.__priority_which_t = int |
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 @@ | ||
mips-linux |
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 @@ | ||
mipsel-linux |
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 @@ | ||
mips64-linux |
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 @@ | ||
mips64el-linux |