CPU
cpu.h
Go to the documentation of this file.
1 #ifndef CPU_H_INCLUDED
2 #define CPU_H_INCLUDED
3 
4 #include <stdlib.h>
5 #include <stdio.h>
6 #include <string.h>
7 #include "../stack/stack.h"
8 
9 typedef int cpu_operand_t;
10 
11 
12 /*--------------------------CONST---------------------------------------------*/
13 const int CPU_VERSION = 0;
14 
15 const int RAM_SIZE = 100;
16 const int RAM_ACCESS_TIME = 20;
17 
18 const int instruction_length[] =
19 {
20  1, //HLT
21  1, //START
22  2, //PUSH
23  1, //POP
24  1, //ADD
25  1, //SUB
26  1, //MUL
27  1, //DIV
28  1, //OUT
29  1 //NONE
30 };
31 
32 
33 /*--------------------------ENUM----------------------------------------------*/
35 {
37  HLT = 0,
38  STRT = 1,
39  PUSH = 2,
40  POP = 3,
41  ADD = 4,
42  SUB = 5,
43  MUL = 6,
44  DIV = 7,
45  OUT = 8,
46  NONE = 9
47 };
48 
49 
50 /*--------------------------ENUM----------------------------------------------*/
52 //тип дополнительного (определительного) аргумента в машинном коде
53 {
54  NARG = 0,
55  INT = 1,
56  REAL = 2,
57  RGAX = 3,
58  RGBX = 4,
59  RGCX = 5,
60  RGDX = 6,
61  RAM = 7,
62  RAMA = 8,
63  RAMB = 9,
64  RAMC = 10,
65  RAMD = 11
66 };
67 
68 
69 /*--------------------------STRUCT--------------------------------------------*/
70 struct CpuCode
71 {
73  int N_entities = 0;
74  int N_instructions = 0;
75 };
76 
77 struct CPU
78 {
79  Stack data_stack;
80  cpu_operand_t reg[4] = {};
82  //cpu_operand_t
83 };
84 
85 struct BinaryHeader
86 {
87  char header = 0x7f;
88  char type[4] = "ELF";
89  char name[18] = "SoftwareProcessor";
90  int version = 0;
91 };
92 
93 
94 /*--------------------------PROTOTYPE-----------------------------------------*/
95 void execute_cpu( CPU* some_cpu, instruction_type instruction, descriptional_argument descr_arg = NARG, cpu_operand_t operand = {} );
96 void execute_cpucode( CPU* some_cpu, CpuCode* some_cpucode );
97 void cpucode_file_input( CpuCode* some_cpucode, const char* filename );
98 void free_cpucode( CpuCode* some_cpucode );
99 
100 void start_cpu( CPU* some_cpu );
101 void push_cpu( CPU* some_cpu, descriptional_argument descr_arg, cpu_operand_t value );
102 void pop_cpu( CPU* some_cpu, descriptional_argument descr_arg );
103 void add_cpu( CPU* some_cpu );
104 void sub_cpu( CPU* some_cpu );
105 void mul_cpu( CPU* some_cpu );
106 void div_cpu( CPU* some_cpu );
107 void out_cpu( CPU* some_cpu );
108 void hlt_cpu( CPU* some_cpu );
109 
110 #endif //CPU_H_INCLUDED
HLT
@ HLT
Definition: cpu.h:37
RAM_SIZE
const int RAM_SIZE
Number of RAM cells.
Definition: cpu.h:15
descriptional_argument
descriptional_argument
< Special machine code argument that provides additional information about types of instruction opera...
Definition: cpu.h:51
INT
@ INT
Definition: cpu.h:55
mul_cpu
void mul_cpu(CPU *some_cpu)
Executes MUL instruction on the CPU.
Definition: cpu.cpp:167
sub_cpu
void sub_cpu(CPU *some_cpu)
Executes SUB instruction on the CPU.
Definition: cpu.cpp:157
RGDX
@ RGDX
Definition: cpu.h:60
cpucode_file_input
void cpucode_file_input(CpuCode *some_cpucode, const char *filename)
Reads machine code from file given and checks its version compatibility.
Definition: cpu.cpp:5
CPU::reg
cpu_operand_t reg[4]
Definition: cpu.h:80
add_cpu
void add_cpu(CPU *some_cpu)
Executes ADD instruction on the CPU.
Definition: cpu.cpp:147
POP
@ POP
Definition: cpu.h:40
out_cpu
void out_cpu(CPU *some_cpu)
Executes OUT instruction on the CPU.
Definition: cpu.cpp:187
execute_cpucode
void execute_cpucode(CPU *some_cpu, CpuCode *some_cpucode)
Executes machine code sequence on the CPU.
Definition: cpu.cpp:39
hlt_cpu
void hlt_cpu(CPU *some_cpu)
Executes HLT instruction on the CPU.
Definition: cpu.cpp:196
ADD
@ ADD
Definition: cpu.h:41
BinaryHeader::version
int version
Definition: cpu.h:90
cpu_operand_t
int cpu_operand_t
Definition: cpu.h:9
div_cpu
void div_cpu(CPU *some_cpu)
Executes DIV instruction on the CPU.
Definition: cpu.cpp:177
RGBX
@ RGBX
Definition: cpu.h:58
pop_cpu
void pop_cpu(CPU *some_cpu, descriptional_argument descr_arg)
Executes POP instruction with the arguments given on the CPU.
Definition: cpu.cpp:139
SUB
@ SUB
Definition: cpu.h:42
RGAX
@ RGAX
Definition: cpu.h:57
RAMB
@ RAMB
Definition: cpu.h:63
execute_cpu
void execute_cpu(CPU *some_cpu, instruction_type instruction, descriptional_argument descr_arg, cpu_operand_t operand)
Executes instruction with arguments and operands given on the CPU.
Definition: cpu.cpp:83
NONE
@ NONE
Definition: cpu.h:46
BinaryHeader::header
char header
Definition: cpu.h:87
push_cpu
void push_cpu(CPU *some_cpu, descriptional_argument descr_arg, cpu_operand_t value)
Executes PUSH instruction with the arguments and operands given on the CPU.
Definition: cpu.cpp:112
div_cpu
void div_cpu(CPU *some_cpu)
Executes DIV instruction on the CPU.
Definition: cpu.cpp:177
CpuCode
< Describes machine code that can be loaded from file and executed
Definition: cpu.h:70
NARG
@ NARG
Definition: cpu.h:54
CpuCode::N_entities
int N_entities
TODO изменить на int.
Definition: cpu.h:73
free_cpucode
void free_cpucode(CpuCode *some_cpucode)
Frees memory allocated by the cpucode array.
Definition: cpu.cpp:76
DIV
@ DIV
Definition: cpu.h:44
RAM_ACCESS_TIME
const int RAM_ACCESS_TIME
Ram access delay (adds realism to the model)
Definition: cpu.h:16
BinaryHeader::name
char name[18]
Definition: cpu.h:89
push_cpu
void push_cpu(CPU *some_cpu, descriptional_argument descr_arg, cpu_operand_t value)
Executes PUSH instruction with the arguments and operands given on the CPU.
Definition: cpu.cpp:112
instruction_type
instruction_type
TODO включить общим файлом или сделать что-то подобное
Definition: cpu.h:34
out_cpu
void out_cpu(CPU *some_cpu)
Executes OUT instruction on the CPU.
Definition: cpu.cpp:187
CPU::data_stack
Stack data_stack
Definition: cpu.h:79
mul_cpu
void mul_cpu(CPU *some_cpu)
Executes MUL instruction on the CPU.
Definition: cpu.cpp:167
execute_cpucode
void execute_cpucode(CPU *some_cpu, CpuCode *some_cpucode)
Executes machine code sequence on the CPU.
Definition: cpu.cpp:39
cpucode_file_input
void cpucode_file_input(CpuCode *some_cpucode, const char *filename)
Reads machine code from file given and checks its version compatibility.
Definition: cpu.cpp:5
cpu.h
RAM
@ RAM
Definition: cpu.h:61
BinaryHeader
< Describes special machine code file header that is responsible for assembler/cpu version compatibil...
Definition: cpu.h:85
MUL
@ MUL
Definition: cpu.h:43
execute_cpu
void execute_cpu(CPU *some_cpu, instruction_type instruction, descriptional_argument descr_arg=NARG, cpu_operand_t operand={})
Executes instruction with arguments and operands given on the CPU.
Definition: cpu.cpp:83
CPU_VERSION
const int CPU_VERSION
This parameter is compared to the same parameter from binary header red from machine code file.
Definition: cpu.h:13
RAMC
@ RAMC
Definition: cpu.h:64
BinaryHeader::type
char type[4]
Definition: cpu.h:88
PUSH
@ PUSH
Definition: cpu.h:39
OUT
@ OUT
Definition: cpu.h:45
add_cpu
void add_cpu(CPU *some_cpu)
Executes ADD instruction on the CPU.
Definition: cpu.cpp:147
CPU
< Describes CPU with its stack, registers and RAM
Definition: cpu.h:77
sub_cpu
void sub_cpu(CPU *some_cpu)
Executes SUB instruction on the CPU.
Definition: cpu.cpp:157
start_cpu
void start_cpu(CPU *some_cpu)
Executes STRT instruction on the CPU.
Definition: cpu.cpp:103
instruction_length
const int instruction_length[]
Number of instruction arguments in machine code + instruction code (N + 1 > 0)
Definition: cpu.h:18
pop_cpu
void pop_cpu(CPU *some_cpu, descriptional_argument descr_arg)
Executes POP instruction with the arguments given on the CPU.
Definition: cpu.cpp:139
CpuCode::N_instructions
int N_instructions
Definition: cpu.h:74
CPU::ram_ptr
cpu_operand_t * ram_ptr
Definition: cpu.h:81
hlt_cpu
void hlt_cpu(CPU *some_cpu)
Executes HLT instruction on the CPU.
Definition: cpu.cpp:196
RAMA
@ RAMA
Definition: cpu.h:62
free_cpucode
void free_cpucode(CpuCode *some_cpucode)
Frees memory allocated by the cpucode array.
Definition: cpu.cpp:76
RAMD
@ RAMD
Definition: cpu.h:65
REAL
@ REAL
Definition: cpu.h:56
start_cpu
void start_cpu(CPU *some_cpu)
Executes STRT instruction on the CPU.
Definition: cpu.cpp:103
RGCX
@ RGCX
Definition: cpu.h:59
CpuCode::machine_code
cpu_operand_t * machine_code
Definition: cpu.h:72
STRT
@ STRT
Definition: cpu.h:38