Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.31.2 #179

Merged
merged 3 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.31.2] - 2024-12-02

### Fixed

- Fix jumptable labels sometimes missing their rom suffix.

## [1.31.1] - 2024-12-01

### Fixed
Expand Down Expand Up @@ -1707,6 +1713,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Version 1.0.0

[unreleased]: https://github.com/Decompollaborate/spimdisasm/compare/master...develop
[1.31.2]: https://github.com/Decompollaborate/spimdisasm/compare/1.31.1...1.31.2
[1.31.1]: https://github.com/Decompollaborate/spimdisasm/compare/1.31.0...1.31.1
[1.31.0]: https://github.com/Decompollaborate/spimdisasm/compare/1.30.2...1.31.0
[1.30.2]: https://github.com/Decompollaborate/spimdisasm/compare/1.30.1...1.30.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ If you use a `requirements.txt` file in your repository, then you can add
this library with the following line:

```txt
spimdisasm>=1.31.1,<2.0.0
spimdisasm>=1.31.2,<2.0.0
```

### Development version
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[project]
name = "spimdisasm"
# Version should be synced with spimdisasm/__init__.py
version = "1.31.1"
version = "1.31.2"
description = "MIPS disassembler"
readme = "README.md"
license = {file = "LICENSE"}
Expand Down
2 changes: 1 addition & 1 deletion spimdisasm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from __future__ import annotations

__version_info__: tuple[int, int, int] = (1, 31, 1)
__version_info__: tuple[int, int, int] = (1, 31, 2)
__version__ = ".".join(map(str, __version_info__))# + "-dev0"
__author__ = "Decompollaborate"

Expand Down
14 changes: 12 additions & 2 deletions spimdisasm/mips/FuncRodataEntry.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,16 @@ def iterRodataSyms(self) -> Generator[symbols.SymbolBase, None, None]:
yield sym

def writeToFile(self, f: TextIO, writeFunction: bool=True) -> None:
# Sadly, we have some logic that may affect disassembling other symbols
# on the "function"'s disassembly function, like setting the rom address
# of jumptable labels. Having this info may affect the name they get
# disassembled as.
# To avoid this issue, we disassemble the function first without writing
# it to the file.
disassembledFunction: str|None = None
if self.function is not None:
disassembledFunction = self.function.disassemble(migrate=self.hasRodataSyms(), isSplittedSymbol=True)

if len(self.rodataSyms) > 0:
# Write the rdata
f.write(f".section {self.sectionRodata}{common.GlobalConfig.LINE_ENDS}")
Expand All @@ -79,13 +89,13 @@ def writeToFile(self, f: TextIO, writeFunction: bool=True) -> None:
f.write(sym.disassemble(migrate=True, useGlobalLabel=True, isSplittedSymbol=True))
f.write(common.GlobalConfig.LINE_ENDS)

if self.function is not None:
if disassembledFunction is not None:
if len(self.rodataSyms) > 0 or len(self.lateRodataSyms) > 0:
f.write(f"{common.GlobalConfig.LINE_ENDS}.section {self.sectionText}{common.GlobalConfig.LINE_ENDS}")

if writeFunction:
# Write the function itself
f.write(self.function.disassemble(migrate=self.hasRodataSyms(), isSplittedSymbol=True))
f.write(disassembledFunction)

def getName(self) -> str:
assert self.function is not None or self.hasRodataSyms()
Expand Down
Loading