-
Notifications
You must be signed in to change notification settings - Fork 39
/
codeblock.js
287 lines (242 loc) · 6.57 KB
/
codeblock.js
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/* _________________________________________________________________________
*
* Tachyon : A Self-Hosted JavaScript Virtual Machine
*
*
* This file is part of the Tachyon JavaScript project. Tachyon is
* distributed at:
* http://github.com/Tachyon-Team/Tachyon
*
*
* Copyright (c) 2011, Universite de Montreal
* All rights reserved.
*
* This software is licensed under the following license (Modified BSD
* License):
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Universite de Montreal nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL UNIVERSITE DE
* MONTREAL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* _________________________________________________________________________
*/
/**
@fileOverview
Executable machine code block implementation.
@author
Maxime Chevalier-Boisvert
*/
/**
@class Low-level machine code block implementation.
Stores generated machine code, external references and exposed labels.
*/
function CodeBlock(size)
{
assert (
isPosInt(size),
'invalid code block size: ' + size
);
/**
@field Executable memory block
*/
this.memBlock = allocMemoryBlock(size, true);
/**
@field Memory block size
*/
this.size = size;
/**
@field Current writing position
*/
this.writePos = 0;
/**
@field Imported link values in this block
*/
this.imports = [];
/**
@field Exported labels in this block
*/
this.exports = {};
}
/**
Code block header size
*/
CodeBlock.HEADER_SIZE = 12;
/**
Reference (imported link) entry size in bytes
*/
CodeBlock.REF_ENTRY_SIZE = 8;
/**
Print the code block as a string
*/
CodeBlock.prototype.toString = function ()
{
var str = '';
for (var i = 0; i < this.writePos; ++i)
{
var byteVal = this.readByte(i);
var byteStr = byteVal.toString(16);
byteStr = byteStr.toUpperCase();
if (byteStr.length === 1)
byteStr = '0' + byteStr;
if (i !== 0)
str += ' ';
str += byteStr;
}
return str;
}
/**
Get the address of an offset in the code block
*/
CodeBlock.prototype.getAddress = function (idx)
{
if (idx === undefined)
idx = 0;
return getBlockAddr(this.memBlock, idx);
}
/**
Get the address of an exported label in the code block
*/
CodeBlock.prototype.getExportAddr = function (name)
{
assert (
this.exports[name] !== undefined,
'invalid exported label'
);
return getBlockAddr(this.memBlock, this.exports[name]);
}
/**
Clear the contents of the code block
*/
CodeBlock.prototype.clear = function ()
{
this.writePos = 0;
}
/**
Set the current write position
*/
CodeBlock.prototype.setWritePos = function (pos)
{
assert (
pos < this.size,
'invalid code block position'
);
this.writePos = pos;
}
/**
Read a byte at a given position
*/
CodeBlock.prototype.readByte = function (idx)
{
assert (
idx < this.size,
'invalid code block index'
);
return readFromMemoryBlock(this.memBlock, idx);
}
/**
Write a byte at the current position
*/
CodeBlock.prototype.writeByte = function (val)
{
assert (
this.memBlock,
'invalid memory block'
);
assert (
this.writePos + 1 <= this.size,
'no space to write byte in code block ' +
'(pos ' + this.writePos + '/' + this.size + ')'
);
assert (
isNonNegInt(val) && val <= 255,
'invalid byte value: ' + val
);
writeToMemoryBlock(this.memBlock, this.writePos, val);
this.writePos += 1;
}
/**
Write a sequence of bytes at the current position
*/
CodeBlock.prototype.writeBytes = function (bytes)
{
for (var i = 0; i < bytes.length; ++i)
this.writeByte(bytes[i]);
}
/**
Write a signed integer at the current position
*/
CodeBlock.prototype.writeInt = function (val, numBits)
{
assert (
isPosInt(numBits) && numBits % 8 === 0,
'the number of bits must be a positive multiple of 8'
);
assert (
num_ge(val, getIntMin(numBits)) &&
num_le(val, getIntMax(numBits, true)),
'integer value does not fit within ' + numBits + ' bits: ' + val
);
// Compute the size in bytes
var numBytes = numBits / 8;
// Write out the bytes
for (var i = 0; i < numBytes; ++i)
{
//print(num_to_string(val));
var byteVal = num_and(val, 0xFF);
this.writeByte(byteVal);
val = num_shift(val, -8);
}
}
/**
Write a link value at the current position
*/
CodeBlock.prototype.writeLink = function (linkVal, numBits)
{
assert (
numBits === 32 || numBits === 64,
'invalid link value size'
);
// Store the link value and its position
this.imports.push(
{
value: linkVal,
pos: this.writePos
}
);
// Compute the size in bytes
var numBytes = numBits / 8;
// Write placeholder bytes for the value
for (var i = 0; i < numBytes; ++i)
this.writeByte(0);
}
/**
Add an exported label at the the current position
*/
CodeBlock.prototype.exportLabel = function (name)
{
assert (
this.exports.hasOwnProperty(name) === false,
'exported label already exists: "' + name + '"'
);
// Store the link value and its position
this.exports[name] = this.writePos
}