2023-10-05 15:23:41 +00:00
|
|
|
//
|
|
|
|
// Perform.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 05/10/2023.
|
|
|
|
// Copyright © 2023 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Perform_h
|
|
|
|
#define Perform_h
|
|
|
|
|
|
|
|
#include "Instruction.hpp"
|
2023-10-05 18:37:58 +00:00
|
|
|
#include "Model.hpp"
|
|
|
|
#include "Status.hpp"
|
2023-10-05 15:23:41 +00:00
|
|
|
|
|
|
|
namespace InstructionSet::x86 {
|
|
|
|
|
2023-10-28 19:56:37 +00:00
|
|
|
/// Explains the type of access that `perform` intends to perform; is provided as a template parameter to whatever
|
|
|
|
/// the caller supplies as `MemoryT` and `RegistersT` when obtaining a reference to whatever the processor
|
|
|
|
/// intends to reference.
|
|
|
|
///
|
|
|
|
/// `perform` guarantees to validate all accesses before modifying any state, giving the caller opportunity to generate
|
|
|
|
/// any exceptions that might be applicable.
|
|
|
|
enum class AccessType {
|
|
|
|
/// The requested value will be read from.
|
|
|
|
Read,
|
|
|
|
/// The requested value will be written to.
|
|
|
|
Write,
|
|
|
|
/// The requested value will be read from and then written to.
|
|
|
|
ReadModifyWrite,
|
|
|
|
/// The requested value has already been authorised for whatever form of access is now intended, so there's no
|
|
|
|
/// need further to inspect. This is done e.g. by operations that will push multiple values to the stack to verify that
|
|
|
|
/// all necessary stack space is available ahead of pushing anything, though each individual push will then result in
|
2023-11-01 18:11:10 +00:00
|
|
|
/// a further `Preauthorised` access.
|
2023-11-01 18:31:42 +00:00
|
|
|
PreauthorisedRead,
|
|
|
|
PreauthorisedWrite,
|
2023-10-28 19:56:37 +00:00
|
|
|
};
|
|
|
|
|
2023-11-01 21:03:23 +00:00
|
|
|
template <
|
|
|
|
Model model_,
|
|
|
|
typename FlowControllerT,
|
|
|
|
typename RegistersT,
|
|
|
|
typename MemoryT,
|
|
|
|
typename IOT
|
|
|
|
> struct ExecutionContext {
|
|
|
|
FlowControllerT flow_controller;
|
|
|
|
Status status;
|
|
|
|
RegistersT registers;
|
|
|
|
MemoryT memory;
|
|
|
|
IOT io;
|
|
|
|
static constexpr Model model = model_;
|
|
|
|
};
|
|
|
|
|
2023-10-05 20:49:02 +00:00
|
|
|
/// Performs @c instruction querying @c registers and/or @c memory as required, using @c io for port input/output,
|
2023-10-05 15:23:41 +00:00
|
|
|
/// and providing any flow control effects to @c flow_controller.
|
|
|
|
///
|
|
|
|
/// Any change in processor status will be applied to @c status.
|
|
|
|
template <
|
2023-10-05 18:37:58 +00:00
|
|
|
typename InstructionT,
|
2023-11-01 21:03:23 +00:00
|
|
|
typename ContextT
|
2023-10-05 15:23:41 +00:00
|
|
|
> void perform(
|
2023-10-05 18:37:58 +00:00
|
|
|
const InstructionT &instruction,
|
2023-11-01 21:03:23 +00:00
|
|
|
ContextT &context
|
|
|
|
);
|
|
|
|
|
|
|
|
template <
|
|
|
|
typename ContextT
|
|
|
|
> void interrupt(
|
|
|
|
int index,
|
|
|
|
ContextT &context
|
2023-10-05 15:23:41 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-10-05 18:37:58 +00:00
|
|
|
#include "Implementation/PerformImplementation.hpp"
|
|
|
|
|
2023-10-05 15:23:41 +00:00
|
|
|
#endif /* Perform_h */
|