Skip to content

mkst/maspsx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

maspsx AKA "Modern ASPSX"

The goal of maspsx is to facilitate the replacement of the combination of ASPSX.EXE + psyq-obj-parser when attempting to generate byte-perfect ELF objects.

maspsx takes the assembly code output of gcc and massages it such that it can be assembled via GNU as to the equivalent object as what the original PSYQ SDK would create.

ASPSX does not appear to do very much in terms of code optimisation, therefore the belief is that this will be a straightforward process.

There are a number of reasons why using maspsx with GNU as is preferable to the original toolchain:

  • No need to run 16-bit DOS or 32-bit Windows applications
    • Native, vanilla, gcc versions make dosemu2 and wine unnecessary.
  • Decomp tooling expects ELF objects
  • Support for line numbers in diff!
    • Pass -gcoff to gcc to get line numbers in asm-differ

Usage

maspsx supports the following arguments:

--aspsx-version

EXPERIMENTAL There are slight nuances in behaviour across ASPSX versions. In order to emulate the correct behaviour, pass the ASPSX version to maspsx, e.g. --aspsx-version=2.78.

--run-assembler

The default behaviour of maspsx is to write the output to stdout, by passing --run-assembler, maspsx will run mips-linux-gnu-as directly.

--gnu-as-path

If mips-linux-gnu-as isn't on your path, or you want to use a different assembler (e.g. mipsel-linux-gnu-as), specify the full path here.

--dont-force-G0

Current understanding is that -G0 needs to be passed to GNU as in order to get correct behaviour. If you need to pass a non-zero value for -G to the GNU assembler, use this flag.

--expand-div

If you need maspsx to expand div/divu and rem/remu ops, pass --expand-div to maspsx. There is already handling for partial div expansion (i.e. where -0 was passed to ASPSX.EXE).

--macro-inc

Get maspsx to add an include "macro.inc" statement to the output.

--use-comm-section

Put any common symbols (in C, this means non-static global variables without an initializer) in the .comm section (which is the default ccpsx behaviour).

--use-comm-for-lcomm

Also put .lcomm-declared symbols (in C, this means static variables without an initializer) in the .comm section. This can be convenient with games using -G in situations where a variable needs to be marked static to get code generation to match, but you don't want to migrate .sdata/.sbss to that .c file yet. Do note that this also makes the symbols global (unlike what static normally does).

-G

EXPERIMENTAL If your project uses $gp, maspsx needs to be explicitly passed a non-zero value for -G.

Known Differences

Behavior / Version 1.07 2.08 2.21 2.34 2.56 2.67 2.77 2.79 2.81 2.86
div uses tge not break 🟢
add nop before $at expansion 🟢 🟢 🟢
use addiu in $at expansion 🟢 🟢 🟢
li 1 expands to ori 1 🟢 🟢 🟢 🟢
use $at for sltu < 0 🟢 🟢 🟢 🟢 🟢 🟢
supports -0 argument 🟢 🟢 🟢 🟢 🟢 🟢 🟢
mflo+mfhi / mult+div inst gap 🟢 🟢 🟢 🟢 🟢 🟢 🟢
support for %hi/%lo macros 🟢 🟢 🟢 🟢 🟢
use $gp for symbol+offset 🟢 🟢 🟢 🟢
use $gp for la 🟢 🟢

INCLUDE_ASM reordering workaround hack

Whenever compiling with non-zero -G value, some versions of gcc reorder all functions to appear after data definitions in the output assembly. Unfortunately, this also causes functions to be placed after __asm__ statements, thus breaking the usual implementation of the INCLUDE_ASM macro.

This can be worked around with maspsx by wrapping each __asm__ statement in a function whose name starts with __maspsx_include_asm_hack, and appending # maspsx-keep to each line of the __asm__ statement. Thus a working version of INCLUDE_ASM would look like:

#define INCLUDE_ASM(FOLDER, NAME) \
    void __maspsx_include_asm_hack_##NAME() { \
        __asm__( \
            ".text # maspsx-keep \n" \
            "\t.align\t2 # maspsx-keep\n" \
            "\t.set noreorder # maspsx-keep\n" \
            "\t.set noat # maspsx-keep\n" \
            ".include \""FOLDER"/"#NAME".s\" # maspsx-keep\n" \
            "\t.set reorder # maspsx-keep\n" \
            "\t.set at # maspsx-keep\n" \
        ); \
    }

Examples

Projects that use maspsx include:

Bugs

This project is a work-in-progress. If you encounter scenarios where maspsx output differs from the original PSYQ toolchain please create a GitHub Issue - ideally with a link to a decomp.me scratch that demonstrates the problem.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages