pub struct AdressManager { /* private fields */ }
Expand description

The AdressManager class is the handler for memory managment

!interfears with the memory managment of evrything other!

Implementations§

source§

impl AdressManager

source

pub fn new(mem_range: (u64, u64)) -> Self

Examples found in repository?
examples/jit.rs (line 6)
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pub fn main() -> Result<()> {
    let mut adr = AdressManager::new((0, 0));
    let mut func = Function::new(
        "five",
        &mut adr
    );

    func.ret_int(5);

    unsafe {
        let typed = func.typed::<(), u32>().unwrap();
        let res = typed();

        println!("5 = {}", res);
    };

    Ok(())
}
source

pub fn reg_var(&mut self, name: &String, size: u64) -> i128

Registeres a variabel with the name name and size size

source

pub fn get_entry(&self, name: &String) -> &AdressBoxEntry

Returns AdressBoxEntry of variabel with name name

AdressBoxEntry.size is 0 means it couldn’t find variabel with name name

source

pub fn get_adr(&self, name: &String) -> i128

Returns adress of variabel with name name

-1 equals None

source

pub fn get_size(&self, name: &String) -> i128

Returns size of variabel with name name

-1 equals None

source

pub fn ok(&self) -> Result<bool>

Checks if the adress rang is ok

Trait Implementations§

source§

impl Clone for AdressManager

source§

fn clone(&self) -> AdressManager

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.