• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

henrythasler / rust-tiny-wasm / 22876220351

09 Mar 2026 09:44PM UTC coverage: 66.791% (-11.7%) from 78.491%
22876220351

push

github

henrythasler
assemble prologue and epilogue
clean up

0 of 32 new or added lines in 6 files covered. (0.0%)

12 existing lines in 3 files now uncovered.

179 of 268 relevant lines covered (66.79%)

1.59 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/compiler/function.rs
1
use crate::assembler::*;
2
use crate::loader::Code;
3

NEW
4
pub fn compile_function(entry: &Code, machinecode: &mut Vec<u32>) {
×
NEW
5
    emit_prologue(machinecode);
×
6

NEW
7
    let mut iter = entry.code.iter();
×
NEW
8
    while let Some(&opcode) = iter.next() {
×
NEW
9
        print!("{:02X?} ", opcode);
×
NEW
10
    }
×
NEW
11
    println!();
×
12

NEW
13
    emit_epilogue(machinecode);
×
NEW
14
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc