about summary refs log blame commit diff
path: root/tvix/eval/src/disassembler.rs
blob: 9894dea652e8a5654c6a5e20d4a2a994c7ea8baf (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                                      
                

                         
                        
                                     
                                  





                                                                     

                          
                                                 
     
 
 
             
                                                                      
                                                              

                          
                                                    

         
                                           
     

                                           
                                                  
     



                        
                               

     
 
                                                                                           
                                                               
 
                                               
 
                                                                  

                                      
                                            
     
 


                                                                                       


      


                                                              
                                                   
                     
                


                                                
      
 


                                                             

     
                       
 
//! Implements methods for disassembling and printing a representation
//! of compiled code, as well as tracing the runtime stack during
//! execution.
use std::io::{Stderr, Write};
use std::rc::Rc;
use tabwriter::TabWriter;

use crate::chunk::Chunk;
use crate::opcode::{CodeIdx, OpCode};
use crate::value::{Lambda, Value};

/// Helper struct to trace runtime values and automatically flush the
/// output after the value is dropped (i.e. in both success and
/// failure exits from the VM).
pub struct Tracer(TabWriter<Stderr>);

impl Default for Tracer {
    fn default() -> Self {
        Tracer(TabWriter::new(std::io::stderr()))
    }
}

impl Tracer {
    pub fn trace(&mut self, op: &OpCode, ip: usize, stack: &[Value]) {
        let _ = write!(&mut self.0, "{:04} {:?}\t[ ", ip, op);

        for val in stack {
            let _ = write!(&mut self.0, "{} ", val);
        }

        let _ = writeln!(&mut self.0, "]");
    }

    pub fn literal(&mut self, line: &str) {
        let _ = writeln!(&mut self.0, "{}", line);
    }
}

impl Drop for Tracer {
    fn drop(&mut self) {
        let _ = self.0.flush();
    }
}

fn disassemble_op(tw: &mut TabWriter<Stderr>, chunk: &Chunk, width: usize, offset: usize) {
    let _ = write!(tw, "{:0width$}\t ", offset, width = width);

    let line = chunk.get_line(CodeIdx(offset));

    if offset > 0 && chunk.get_line(CodeIdx(offset - 1)) == line {
        write!(tw, "   |\t").unwrap();
    } else {
        write!(tw, "{:4}\t", line).unwrap();
    }

    let _ = match chunk.code[offset] {
        OpCode::OpConstant(idx) => writeln!(tw, "OpConstant({})", chunk.constant(idx)),
        op => writeln!(tw, "{:?}", op),
    };
}

/// Disassemble an entire lambda, printing its address and its
/// operations in human-readable format.
pub fn disassemble_lambda(lambda: Rc<Lambda>) {
    let mut tw = TabWriter::new(std::io::stderr());
    let _ = writeln!(
        &mut tw,
        "=== compiled code (@{:p}, {} ops) ===",
        lambda,
        lambda.chunk.code.len()
    );

    let width = format!("{}", lambda.chunk.code.len()).len();
    for (idx, _) in lambda.chunk.code.iter().enumerate() {
        disassemble_op(&mut tw, &lambda.chunk, width, idx);
    }

    let _ = tw.flush();
}