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

feat: add option to print monomorphized program #4119

Merged
merged 5 commits into from
Jan 22, 2024
Merged
Changes from 3 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
8 changes: 8 additions & 0 deletions compiler/noirc_driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ pub struct CompileOptions {
/// Disables the builtin macros being used in the compiler
#[arg(long, hide = true)]
pub disable_macros: bool,

/// Disables the builtin macros being used in the compiler
michaeljklein marked this conversation as resolved.
Show resolved Hide resolved
#[arg(long, hide = true)]
pub show_monomorphized: bool,
}

/// Helper type used to signify where only warnings are expected in file diagnostics
Expand Down Expand Up @@ -391,6 +395,10 @@ pub fn compile_no_check(

let hash = fxhash::hash64(&program);
let hashes_match = cached_program.as_ref().map_or(false, |program| program.hash == hash);
if options.show_monomorphized {
println!("Monomorphized AST for program with hash: {}", hash);
michaeljklein marked this conversation as resolved.
Show resolved Hide resolved
println!("{program}");
}

// If user has specified that they want to see intermediate steps printed then we should
// force compilation even if the program hasn't changed.
Expand Down
Loading