burritos/src/kernel/thread.rs

123 lines
3.0 KiB
Rust
Raw Normal View History

2023-02-28 14:43:40 +01:00
use super::process::Process;
2023-03-01 15:45:49 +01:00
use crate::{simulator::machine::{NUM_INT_REGS, NUM_FP_REGS, STACK_REG}, utility::system::ObjectType};
2023-02-28 14:43:40 +01:00
2023-03-01 15:45:49 +01:00
const SIMULATORSTACKSIZE: usize = 32 * 1024;
2023-02-28 14:43:40 +01:00
2023-03-01 11:10:15 +01:00
#[derive(PartialEq)]
2023-02-28 14:43:40 +01:00
struct SimulatorContext {
// todo
}
2023-03-01 11:10:15 +01:00
#[derive(PartialEq)]
2023-02-28 14:43:40 +01:00
struct ThreadContext {
pub int_registers: [i64; NUM_INT_REGS],
pub float_registers: [i64; NUM_FP_REGS],
pc: i64,
}
2023-03-01 11:10:15 +01:00
#[derive(PartialEq)]
2023-02-28 14:43:40 +01:00
pub struct Thread {
name: String,
process: Option<Process>,
simulation_context: SimulatorContext,
thread_context: ThreadContext,
stack_pointer: i32,
object_type: ObjectType
}
impl Thread {
pub fn new(name: String) -> Self {
Self {
name,
process: None,
simulation_context: SimulatorContext { },
thread_context: ThreadContext {
int_registers: [0; NUM_INT_REGS],
float_registers: [0; NUM_FP_REGS],
pc: 0
},
stack_pointer: 0,
object_type: ObjectType::ThreadType
2023-02-28 14:43:40 +01:00
}
}
/// Start a thread, attaching it to a process
2023-03-01 15:45:49 +01:00
pub fn start(&mut self, owner: Process, func: i64, arg: i64) -> i32 {
self.process = Option::Some(owner);
let ptr = 0; // todo addrspace
self.init_thread_context(func, ptr, arg);
let base_stack_addr: [i8; SIMULATORSTACKSIZE] = [0; SIMULATORSTACKSIZE]; // todo AllocBoundedArray
self.init_simulator_context(base_stack_addr);
self.process.as_mut().unwrap().num_thread += 1;
2023-02-28 14:43:40 +01:00
todo!();
}
2023-03-01 15:45:49 +01:00
fn init_thread_context(&mut self, initial_pc_reg: i64, initial_sp: i64, arg: i64) {
self.thread_context.pc = initial_pc_reg;
self.thread_context.int_registers[10] = arg;
self.thread_context.int_registers[STACK_REG] = initial_sp;
}
2023-02-28 14:43:40 +01:00
/// Wait for another thread to finish its execution
pub fn join(&self, id_thread: &Thread) {
todo!();
}
/// Relinquish the CPU if any other thread is runnable.
///
/// Cannot use yield as a function name -> reserved name in rust
pub fn t_yield(&self) {
todo!();
}
/// Put the thread to sleep and relinquish the processor
pub fn sleep(&self) {
todo!();
}
/// Finish the execution of the thread and prepare its deallocation
pub fn finish(&self) {
todo!();
}
/// Check if a thread has overflowed its stack
pub fn check_overflow(&self) {
todo!();
}
2023-03-01 15:45:49 +01:00
pub fn init_simulator_context(&self, base_stack_addr: [i8; SIMULATORSTACKSIZE]) {
2023-02-28 14:43:40 +01:00
todo!();
}
pub fn save_processor_state(&self) {
todo!();
}
pub fn restore_processor_state(&self) {
todo!();
}
pub fn save_simulator_state(&self) {
todo!();
}
pub fn restore_simulator_state(&self) {
todo!();
}
pub fn get_name(&self) -> String {
self.name.clone()
}
2023-03-01 15:45:49 +01:00
}
impl Drop for Thread {
fn drop(&mut self) {
self.object_type = ObjectType::InvalidType;
todo!();
}
2023-02-28 14:43:40 +01:00
}