summaryrefslogtreecommitdiff
path: root/src/virtualmachine/VirtualMachine.h
blob: eb293b9f7d56c812a00ae2dd22969021b79b227e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
#pragma once

#include "Exceptions.h"

namespace vm
{

	class VirtualMachine;

	typedef char ram_t;



	typedef unsigned	int		uint4_t;
	typedef signed		int		int4_t;

	typedef unsigned	short	uint2_t;
	typedef signed		short	int2_t;

	typedef unsigned	char	uint1_t;
	typedef signed		char	int1_t;

	typedef				float	float4_t;

	union word
	{
		uint4_t		uint4;
		int4_t		int4;
		uint2_t		uint2;
		int2_t		int2;
		uint1_t		uint1;
		int1_t		int1;
		float4_t		float4;
	};

	typedef int (VirtualMachine::*OperationFunction)(word parameter);

	struct Instruction
	{
		int Operation;
		word Parameter;
		//opfunc opfunc;
	};

	enum
	{
		QVM_MAGIC = 0x12721444,
	};

	struct qvm_header_t
	{
		int magic;
		/* not-entirely-RISC ISA, so instruction count != codelen */
		int inscount; /* instruction count. */
		int codeoff;  /* file offset of code segment. */
		int codelen;  /* length of code segment, in octets. */
		int dataoff;  /* file offset of data segment. */
		int datalen;  /* length of data segment, in octets. */
		int litlen;   /* length of lit segment (which is embedded in data segment). */
		int bsslen;   /* length of bss segment. */
	};

	class VirtualMachine
	{
		bool bigEndian;  /* host is big-endian (requires byte-swapping). */

		/* Memory spaces. */
		char * hunk;    /* hunk space (malloc'd). */
		int hunkSize;  /* total hunk size. */
		int hunkFree;  /* free pointer. */
		
		/* Read-Only Memory (code). */
		Instruction * rom;
		int romSize;

		/* Random-Access Memory (data). */
		ram_t *ram;
		int ramSize;

		int dataStack;
		int returnStack;

		word r[4];  	/* registers. */
		int DP;			/* Datastack pointer. */
		int RP;			/* Return stack pointer. */
		int PC;			/* Program Counter. */
		//  int AP;        /* Argument pointer.  (hrm...) */

		/* various flags. */
		int cm:1;
		
		/* Execution time */
		int cycles;

		#define TRAPDEF(n, f) int trap##f();
			#include "Syscalls.inl"
		#undef TRAPDEF

		static OperationFunction operations[];


		#define OPDEF(n) OP##n,
		enum {
			#include "Operations.inl"
		};
		#undef OPDEF

		int readByte(FILE *qvmfile);
		int readInt(FILE *qvmfile);
		int opcodeParameterSize(int opcode);
		int syscall(int programCounter);
public:
		#define OPDEF(n) int Op##n(word parameter);
		#include "Operations.inl"
		#undef OPDEF

		VirtualMachine(int hunkMbytes);
		virtual ~VirtualMachine();

		int LoadProgram(char * filename);
		int Run();
		int Call(int address);
		void Marshal(int address, word element)
		{
			ram_t * ptr = ram+RP+address;
			if(ptr < ram || ptr > ram+ramSize - sizeof(word))
				throw AccessViolationException(RP+address);
			*((word*)ptr) = element;
		}

		template <typename T> T Get(int address)
		{
			ram_t * ptr = ram+address;
			if(ptr < ram || ptr > ram+ramSize - sizeof(word))
				throw AccessViolationException(address);
			return *((T*)ptr);
		}

		template <typename T> void Set(int address, T value)
		{
			ram_t * ptr = ram+address;
			if(ptr < ram || ptr > ram+ramSize - sizeof(word))
				throw AccessViolationException(address);
			*((T*)ptr) = value;
		}

		template <typename T> T Pop ()
		{
			ram_t * ptr = ram+DP;
			if(DP + sizeof(word) < hunkSize)
				DP += sizeof(word);
			else
				throw StackUnderflowException();
			return *((T*)ptr);
		};

		template <typename T> T RPop ()
		{
			ram_t * ptr = ram+RP;
			if(RP + sizeof(word) < hunkSize)
				RP += sizeof(word);
			else
				throw StackUnderflowException();
			return *((T*)ptr);
		};

		template <typename T> void Push(T value)
		{
			if(DP - sizeof(word) >= 0)
				DP -= sizeof(word);
			else
				throw StackOverflowException();
			ram_t * ptr = ram+DP;
			*((T*)ptr) = value;
		};

		template <typename T> void RPush(T value)
		{
			if(RP - sizeof(word) >= 0)
				RP -= sizeof(word);
			else
				throw StackOverflowException();
			ram_t * ptr = ram+RP;
			*((T*)ptr) = value;
		};

		word Get(int address)
		{
			ram_t * ptr = ram+address;
			if(ptr < ram || ptr > ram+ramSize - sizeof(word))
				throw AccessViolationException(address);
			return *((word*)ptr);
		}

		void Set(int address, word value)
		{
			ram_t * ptr = ram+address;
			if(ptr < ram || ptr > ram+ramSize - sizeof(word))
				throw AccessViolationException(address);
			*((word*)ptr) = value;
		}

		word Pop()
		{
			ram_t * ptr = ram+DP;
			if(DP + sizeof(word) < hunkSize)
				DP += sizeof(word);
			else
				throw StackUnderflowException();
			return *((word*)ptr);
		};

		void Push(word value)
		{
			if(DP - sizeof(word) >= 0)
				DP -= sizeof(word);
			else
				throw StackOverflowException();
			ram_t * ptr = ram+DP;
			*((word*)ptr) = value;
		};

		word RPop()
		{
			ram_t * ptr = ram+RP;
			if(RP + sizeof(word) < hunkSize)
				RP += sizeof(word);
			else
				throw StackUnderflowException();
			return *((word*)ptr);
		};

		void RPush(word value)
		{
			if(RP - sizeof(word) >= 0)
				RP -= sizeof(word);
			else
				throw StackOverflowException();
			ram_t * ptr = ram+RP;
			*((word*)ptr) = value;
		};
	};

}