1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
use crate::symbol;

/// Shift st_bind value for constructing st_info.
pub fn setup_symbol_bind(bind: u8) -> u8 {
    bind << 4
}

/// Construct an symbol's information from st_bind and st_type.
pub fn symbol_info(bind: u8, sym_type: u8) -> u8 {
    setup_symbol_bind(bind) | sym_type
}

/// create a visibility field from enum variants.
pub fn symbol_visibility(vis: symbol::VISIBILITY) -> u8 {
    vis.to_byte()
}