You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "arch/getcycles.h"
|
|
|
|
#include "panic.h"
|
|
|
|
#include "software_interrupt.h"
|
|
|
|
#include "sandbox_types.h"
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
sandbox_set_as_running(struct sandbox *sandbox, sandbox_state_t last_state)
|
|
|
|
{
|
|
|
|
assert(sandbox);
|
|
|
|
assert(!software_interrupt_is_enabled());
|
|
|
|
|
|
|
|
uint64_t now = __getcycles();
|
|
|
|
uint64_t duration_of_last_state = now - sandbox->last_state_change_timestamp;
|
|
|
|
|
|
|
|
sandbox->state = SANDBOX_SET_AS_RUNNING;
|
|
|
|
|
|
|
|
switch (last_state) {
|
|
|
|
case SANDBOX_RUNNABLE: {
|
|
|
|
sandbox->runnable_duration += duration_of_last_state;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
panic("Sandbox %lu | Illegal transition from %s to Running\n", sandbox->id,
|
|
|
|
sandbox_state_stringify(last_state));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sandbox->last_state_change_timestamp = now;
|
|
|
|
sandbox->state = SANDBOX_RUNNING;
|
|
|
|
|
|
|
|
/* State Change Bookkeeping */
|
|
|
|
sandbox_state_log_transition(sandbox->id, last_state, SANDBOX_RUNNING);
|
|
|
|
runtime_sandbox_total_increment(SANDBOX_RUNNING);
|
|
|
|
runtime_sandbox_total_decrement(last_state);
|
|
|
|
}
|