mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-10 08:04:45 +00:00
74 lines
1.7 KiB
C++
74 lines
1.7 KiB
C++
//
|
|
// 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"
|
|
#include "Model.hpp"
|
|
#include "Status.hpp"
|
|
#include "../../Numeric/RegisterSizes.hpp"
|
|
|
|
namespace InstructionSet::x86 {
|
|
|
|
/// Performs @c instruction using @c resolver to obtain to query @c registers and/or @c memory as required, using @c io for port input/output,
|
|
/// and providing any flow control effects to @c flow_controller.
|
|
///
|
|
/// Any change in processor status will be applied to @c status.
|
|
///
|
|
/// If the template parameter @c operation is not @c Operation::Undefined then that operation will be performed, ignoring
|
|
/// whatever is specifed in @c instruction.
|
|
template <
|
|
Model model,
|
|
typename InstructionT,
|
|
typename FlowControllerT,
|
|
typename DataPointerResolverT,
|
|
typename RegistersT,
|
|
typename MemoryT,
|
|
typename IOT,
|
|
Operation operation = Operation::Invalid
|
|
> void perform(
|
|
const InstructionT &instruction,
|
|
Status &status,
|
|
FlowControllerT &flow_controller,
|
|
DataPointerResolverT &resolver,
|
|
RegistersT ®isters,
|
|
MemoryT &memory,
|
|
IOT &io
|
|
);
|
|
|
|
template <
|
|
Model model,
|
|
Operation operation,
|
|
DataSize data_size,
|
|
typename FlowControllerT
|
|
> void perform(
|
|
CPU::RegisterPair32 &destination,
|
|
CPU::RegisterPair32 &source,
|
|
Status &status,
|
|
FlowControllerT &flow_controller
|
|
);
|
|
|
|
template <
|
|
Model model,
|
|
Operation operation,
|
|
DataSize data_size,
|
|
typename FlowControllerT
|
|
> void perform(
|
|
CPU::RegisterPair16 &destination,
|
|
CPU::RegisterPair16 &source,
|
|
Status &status,
|
|
FlowControllerT &flow_controller
|
|
);
|
|
|
|
}
|
|
|
|
#include "Implementation/PerformImplementation.hpp"
|
|
|
|
#endif /* Perform_h */
|