Extract the assembler into a reusable xasm library - #15
Open
epi wants to merge 10 commits into
Open
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Refactors xasm so the assembler core can be used as a library (
libxasm) from any D program, not just through thexasmcommand-line tool.xebinis going to be its first user.All the assembly logic previously living in
source/app.dnow sits behind anAssemblerclass in a newsource/xasm/package.dmodule.app.dbecomes a thin CLI frontend that drives that class.What changed
xasmmodule (source/xasm/package.d): the assembler implementation, moved out ofapp.dverbatim and wrapped in anAssemblerclass with a private implementation and a small public surface.SourceReader/BinaryReader— read source and binary-include filesDiagnosticSink— receive warnings and errors as structuredDiagnosticvalues (Severity, filename, line, source line, message)ListingSink— receive the assembly listing and label table line by lineassembler.object, instead of being written straight to a file.make libxasm.htmlgenerates the library reference.Labelis now astruct, and the module carries a documented usage example (runnable as a unittest).Notes