diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-03-18 12:06:17 +1300 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-03-18 13:24:20 +1300 |
commit | 0925bd156ae2e34ad259d40aaf870eb5f7cfcfb9 (patch) | |
tree | abd0a35a995f53b10e81b66cdfd4571f93748343 | |
parent | f25bc47f5c6b7e52304b1e9c9adb4310f2e77ee7 (diff) | |
download | torque-asm-0925bd156ae2e34ad259d40aaf870eb5f7cfcfb9.zip |
Update assembler dependency
torque-asm now uses the Compiler type provided by the assembler library.
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/bin/tq.rs | 32 | ||||
-rw-r--r-- | src/lib.rs | 7 | ||||
-rw-r--r-- | src/stages/compiler.rs (renamed from src/compiler.rs) | 98 | ||||
-rw-r--r-- | src/stages/mod.rs | 2 |
6 files changed, 40 insertions, 105 deletions
@@ -9,8 +9,8 @@ source = "git+git://benbridle.com/ansi?tag=v1.0.0#81d47867c2c97a9ae1d1c8fdfcd42c [[package]] name = "assembler" -version = "2.1.0" -source = "git+git://benbridle.com/assembler?tag=v2.1.0#c5f60b7ff45ced7c8b8519bc8fcf681486ad09fa" +version = "2.2.0" +source = "git+git://benbridle.com/assembler?tag=v2.2.0#24080dd75092ea5ef8c10fd179aa28b8db534c7f" dependencies = [ "ansi", "log 1.1.2", @@ -4,7 +4,7 @@ version = "2.0.0" edition = "2021" [dependencies] -assembler = { git = "git://benbridle.com/assembler", tag = "v2.1.0" } +assembler = { git = "git://benbridle.com/assembler", tag = "v2.2.0" } log = { git = "git://benbridle.com/log", tag = "v1.1.2" } switchboard = { git = "git://benbridle.com/switchboard", tag = "v2.1.0" } diff --git a/src/bin/tq.rs b/src/bin/tq.rs index ca8fc69..14459d6 100644 --- a/src/bin/tq.rs +++ b/src/bin/tq.rs @@ -1,11 +1,9 @@ use torque_asm::*; -use assembler::FileError; -use log::{info, fatal}; +use log::*; use switchboard::*; use std::io::{Read, Write}; -use std::path::Path; fn main() { @@ -29,6 +27,7 @@ fn main() { |p| p.canonicalize().unwrap_or_else(|e| fatal!("{p:?}: {e:?}"))); let destination = args.get("destination").as_path_opt(); let extension = args.get("extension").as_string(); + let opt_extension = Some(extension.as_str()); let no_libs = args.get("no-libs").as_bool(); let no_project_libs = args.get("no-project-libs").as_bool(); let no_env_libs = args.get("no-env-libs").as_bool(); @@ -98,39 +97,28 @@ Created by Ben Bridle. // ----------------------------------------------------------------------- - let mut compiler = if let Some(path) = &source_path { + let mut compiler = new_compiler(); + + if let Some(path) = &source_path { info!("Reading program source from {path:?}"); - Compiler::from_path(path).unwrap_or_else(|err| match err { - FileError::InvalidExtension => fatal!( - "File {path:?} has invalid extension, must be '.{extension}'"), - FileError::NotFound => fatal!( - "File {path:?} was not found"), - FileError::InvalidUtf8 => fatal!( - "File {path:?} does not contain valid UTF-8 text"), - FileError::NotReadable => fatal!( - "File {path:?} is not readable"), - FileError::IsADirectory => fatal!( - "File {path:?} is a directory"), - FileError::Unknown => fatal!( - "Unknown error while attempting to read from {path:?}") - }) + compiler.root_from_path(path).unwrap_or_else(|err| fatal!("{err:?}: {path:?}")) } else { let mut source_code = String::new(); info!("Reading program source from standard input"); if let Err(err) = std::io::stdin().read_to_string(&mut source_code) { fatal!("Could not read from standard input\n{err:?}"); } - Compiler::from_string(source_code, "<standard input>") + compiler.root_from_string(source_code, "<standard input>") }; if compiler.error().is_some() && !no_libs && !no_project_libs { - compiler.include_libs_from_parent(&extension); + compiler.include_libs_from_parent(opt_extension); } if compiler.error().is_some() && !no_libs && !no_env_libs { - compiler.include_libs_from_path_variable("TORQUE_LIBS", &extension); + compiler.include_libs_from_path_variable("TORQUE_LIBS", opt_extension); } if print_tree { - compiler.resolver.hierarchy().report() + compiler.hierarchy().report() } if let Some(error) = compiler.error() { error.report(); @@ -1,14 +1,9 @@ mod stages; mod types; mod formats; -mod compiler; pub use stages::*; pub use types::*; pub use formats::*; -pub use compiler::*; -use assembler::{Context, Tracked, SourceSpan, report_source_issue}; -use log::LogLevel; - -use std::path::{PathBuf}; +pub use assembler::*; diff --git a/src/compiler.rs b/src/stages/compiler.rs index c0caae0..44b7660 100644 --- a/src/compiler.rs +++ b/src/stages/compiler.rs @@ -1,68 +1,19 @@ use crate::*; -use assembler::*; -use assembler::DefinitionType::*; -use assembler::SymbolRole::*; +use assembler::{Symbol, SymbolRole, DefinitionType}; +use SymbolRole::*; +use DefinitionType::*; +use std::path::Path; -/// Compiles multiple source code files into one. -pub struct Compiler { - pub source_path: PathBuf, - pub resolver: Resolver, -} - -impl Compiler { - pub fn from_string<P: AsRef<Path>>(source_code: String, path: P) -> Self { - let source_unit = SourceUnit::from_string(source_code, &path, parse_symbols); - Self { - source_path: path.as_ref().to_path_buf(), - resolver: Resolver::new(source_unit) - } - } - - pub fn from_path<P: AsRef<Path>>(path: P) -> Result<Self, FileError> { - let source_unit = SourceUnit::from_path(&path, None, parse_symbols)?; - Ok(Self { - source_path: path.as_ref().to_path_buf(), - resolver: Resolver::new(source_unit) - }) - } - /// Find library files descending from the parent directory. - pub fn include_libs_from_parent(&mut self, ext: &str) { - if let Some(parent_path) = self.source_path.parent() { - let parent_path = parent_path.to_owned(); - self.include_libs_from_path(&parent_path, ext); - } - } - - /// Find library files at or descending from a path. - pub fn include_libs_from_path(&mut self, path: &Path, ext: &str) { - let libraries = gather_from_path(path, Some(ext), parse_symbols); - self.resolver.add_library_source_units(libraries); - self.resolver.resolve(); - } - - /// Find library files from a PATH-style environment variable. - pub fn include_libs_from_path_variable(&mut self, name: &str, ext: &str) { - let libraries = gather_from_path_variable(name, Some(ext), parse_symbols); - self.resolver.add_library_source_units(libraries); - self.resolver.resolve(); - } - - pub fn error(&self) -> Option<ResolverError> { - self.resolver.error() - } - - pub fn get_compiled_source(&mut self) -> Result<String, MergeError> { - self.resolver.calculate_hierarchy(); - self.resolver.get_merged_source_code(push_source_code) - } +pub fn new_compiler() -> Compiler { + Compiler::new(parse_symbols, push_code) } /// Parse all symbols from a source code string. -fn parse_symbols(source_code: &str, path: Option<&Path>) -> Option<Vec<Symbol>> { +pub fn parse_symbols(source_code: &str, path: Option<&Path>) -> Option<Vec<Symbol>> { let syntactic = match parse_syntactic(source_code, path) { Ok(syntactic) => syntactic, Err(_errors) => return None, @@ -74,6 +25,23 @@ fn parse_symbols(source_code: &str, path: Option<&Path>) -> Option<Vec<Symbol>> Some(SymbolParser::new().parse(&semantic)) } +/// Push source code to a source compilation string. +pub fn push_code(compilation: &mut String, source_file: &SourceFile) { + // Skip blank files. + let source_code = &source_file.source_code; + if source_code.chars().all(|c| c.is_whitespace()) { return; } + // Ensure that the previous section is followed by two newline characters. + if !compilation.is_empty() { + if !compilation.ends_with('\n') { compilation.push('\n'); } + if !compilation.ends_with("\n\n") { compilation.push('\n'); } + } + // Push a path comment and the source code. + let path_str = source_file.path.as_os_str().to_string_lossy(); + let path_comment = format!("(: {path_str} )\n"); + compilation.push_str(&path_comment); + compilation.push_str(&source_code); +} + // Extract symbol definitions from a list of semantic tokens. pub struct SymbolParser { @@ -230,21 +198,3 @@ impl SymbolParser { } } } - - -/// Push source code to a source compilation string. -fn push_source_code(compilation: &mut String, source_file: &SourceFile) { - // Skip blank files. - let source_code = &source_file.source_code; - if source_code.chars().all(|c| c.is_whitespace()) { return; } - // Ensure that the previous section is followed by two newline characters. - if !compilation.is_empty() { - if !compilation.ends_with('\n') { compilation.push('\n'); } - if !compilation.ends_with("\n\n") { compilation.push('\n'); } - } - // Push a path comment and the source code. - let path_str = source_file.path.as_os_str().to_string_lossy(); - let path_comment = format!("(: {path_str} )\n"); - compilation.push_str(&path_comment); - compilation.push_str(&source_code); -} diff --git a/src/stages/mod.rs b/src/stages/mod.rs index e735f05..571fd65 100644 --- a/src/stages/mod.rs +++ b/src/stages/mod.rs @@ -1,3 +1,4 @@ +mod compiler; mod syntactic; mod syntactic_tokens; mod semantic; @@ -7,6 +8,7 @@ mod intermediate_tokens; mod bytecode; mod bytecode_tokens; +pub use compiler::*; pub use syntactic::*; pub use syntactic_tokens::*; pub use semantic::*; |