gpcas_forwardcom 0.2.0

ForwardCom instruction set architecture (ISA) properties for use with the General Purpose Core Architecture Simulator (GPCAS).
Documentation
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
// Filename: jumps.rs
// Author:	 Kai Rese
// Version:	 0.11
// Date:	 15-07-2022 (DD-MM-YYYY)
// Library:  gpcas_forwardcom
//
// Copyright (c) 2022 Kai Rese
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this program. If not, see
// <https://www.gnu.org/licenses/>.

//! All instruction functions for jumps.
//!
//! As ForwardCom has ALU-and-branch instructions, some instructions have a arithmetical or logical
//! component, but are listed here because they still are jumps.

use crate::emulator::constants::operand_indices;
use crate::emulator::core::OperandType;
use crate::emulator::instructions::functions::quad_word_not_supported;
use crate::emulator::{EmulatorInstruction, ForwardComEmulator};

use gpcas_isa::instruction_flags;

/// Subtraction of one operand from another. Jump if the result is zero.
#[inline]
pub fn sub_jump_zero(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let value = emulator
        .operands
        .get_i64(operand_indices::INPUT1)
        .wrapping_sub(emulator.operands.get_i64(operand_indices::INPUT2));

    instruction.core.flags |= instruction_flags::BR_TAKEN * (value == 0) as u16;
    emulator.operands.set_i64(operand_indices::OUTPUT, value);
}

/// Subtraction of one operand from another. Jump if the result is negative.
#[inline]
pub fn sub_jump_neg(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let value = emulator
        .operands
        .get_i64(operand_indices::INPUT1)
        .wrapping_sub(emulator.operands.get_i64(operand_indices::INPUT2));

    instruction.core.flags |= instruction_flags::BR_TAKEN * ((value < 0) as u16);
    emulator.operands.set_i64(operand_indices::OUTPUT, value);
}

/// Subtraction of one operand from another. Jump if the result is positive.
#[inline]
pub fn sub_jump_pos(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let value = emulator
        .operands
        .get_i64(operand_indices::INPUT1)
        .wrapping_sub(emulator.operands.get_i64(operand_indices::INPUT2));

    instruction.core.flags |= instruction_flags::BR_TAKEN * (value > 0) as u16;
    emulator.operands.set_i64(operand_indices::OUTPUT, value);
}

/// Subtraction of one operand from another. Jump if the result overflows.
#[inline]
pub fn sub_jump_overflow(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let (result, overflow) = emulator
        .operands
        .get_i64(operand_indices::INPUT1)
        .overflowing_sub(emulator.operands.get_i64(operand_indices::INPUT2));

    instruction.core.flags |= instruction_flags::BR_TAKEN * overflow as u16;
    emulator.operands.set_i64(operand_indices::OUTPUT, result);
}

/// Subtraction of one operand from another. Jump if the result triggers a borrow.
#[inline]
pub fn sub_jump_borrow(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let (result, borrow) = emulator
        .operands
        .get_u64(operand_indices::INPUT1)
        .overflowing_sub(emulator.operands.get_u64(operand_indices::INPUT2));

    instruction.core.flags |= instruction_flags::BR_TAKEN * borrow as u16;
    emulator.operands.set_u64(operand_indices::OUTPUT, result);
}

/// Addition of two operands. Jump if the result is zero.
#[inline]
pub fn add_jump_zero(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let value = emulator
        .operands
        .get_i64(operand_indices::INPUT1)
        .wrapping_add(emulator.operands.get_i64(operand_indices::INPUT2));

    instruction.core.flags |= instruction_flags::BR_TAKEN * (value == 0) as u16;
    emulator.operands.set_i64(operand_indices::OUTPUT, value);
}

/// Addition of two operands. Jump if the result is negative.
#[inline]
pub fn add_jump_neg(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let value = emulator
        .operands
        .get_i64(operand_indices::INPUT1)
        .wrapping_add(emulator.operands.get_i64(operand_indices::INPUT2));

    instruction.core.flags |= instruction_flags::BR_TAKEN * (value < 0) as u16;
    emulator.operands.set_i64(operand_indices::OUTPUT, value);
}

/// Addition of two operands. Jump if the result is positive.
#[inline]
pub fn add_jump_pos(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let value = emulator
        .operands
        .get_i64(operand_indices::INPUT1)
        .wrapping_add(emulator.operands.get_i64(operand_indices::INPUT2));

    instruction.core.flags |= instruction_flags::BR_TAKEN * (value > 0) as u16;
    emulator.operands.set_i64(operand_indices::OUTPUT, value);
}

/// Addition of two operands. Jump if the result overflows.
#[inline]
pub fn add_jump_overflow(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let (result, overflow) = emulator
        .operands
        .get_i64(operand_indices::INPUT1)
        .overflowing_add(emulator.operands.get_i64(operand_indices::INPUT2));

    instruction.core.flags |= instruction_flags::BR_TAKEN * overflow as u16;
    emulator.operands.set_i64(operand_indices::OUTPUT, result);
}

/// Addition of two operands. Jump if the result has a carry.
#[inline]
pub fn add_jump_carry(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let (result, carry) = emulator
        .operands
        .get_u64(operand_indices::INPUT1)
        .overflowing_add(emulator.operands.get_u64(operand_indices::INPUT2));

    instruction.core.flags |= instruction_flags::BR_TAKEN * carry as u16;
    emulator.operands.set_u64(operand_indices::OUTPUT, result);
}

/// AND of two operands. Jump if the result is zero.
#[inline]
pub fn and_jump_zero(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let value = emulator.operands.get_u64(operand_indices::INPUT1)
        & emulator.operands.get_u64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * (value == 0) as u16;
    emulator.operands.set_u64(operand_indices::OUTPUT, value);
}

/// OR of two operands. Jump if the result is zero.
#[inline]
pub fn or_jump_zero(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let value = emulator.operands.get_u64(operand_indices::INPUT1)
        | emulator.operands.get_u64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * (value == 0) as u16;
    emulator.operands.set_u64(operand_indices::OUTPUT, value);
}

/// XOR of two operands. Jump if the result is zero.
#[inline]
pub fn xor_jump_zero(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let value = emulator.operands.get_u64(operand_indices::INPUT1)
        ^ emulator.operands.get_u64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * (value == 0) as u16;
    emulator.operands.set_u64(operand_indices::OUTPUT, value);
}

/// Comparison of two operands. Jump if they are equal.
#[inline]
pub fn compare_jump_equal(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let first = emulator.operands.get_i64(operand_indices::INPUT1);
    let second = emulator.operands.get_i64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * (first == second) as u16;
}

/// Comparison of two signed operands. Jump if the first is below the second.
#[inline]
pub fn compare_jump_signed_below(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let first = emulator.operands.get_i64(operand_indices::INPUT1);
    let second = emulator.operands.get_i64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * (first < second) as u16;
}

/// Comparison of two signed operands. Jump if the first is above the second.
#[inline]
pub fn compare_jump_signed_above(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let first = emulator.operands.get_i64(operand_indices::INPUT1);
    let second = emulator.operands.get_i64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * (first > second) as u16;
}

/// Comparison of two unsigned operands. Jump if the first is below the second.
#[inline]
pub fn compare_jump_unsigned_below(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let first = emulator.operands.get_u64(operand_indices::INPUT1);
    let second = emulator.operands.get_u64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * (first < second) as u16;
}

/// Comparison of two unsigned operands. Jump if the first is above the second.
#[inline]
pub fn compare_jump_unsigned_above(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let first = emulator.operands.get_u64(operand_indices::INPUT1);
    let second = emulator.operands.get_u64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * (first > second) as u16;
}

/// Test of one bit of an operand defined by another. Jump if it is set.
#[inline]
pub fn test_bit_jump_true(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let first = emulator.operands.get_u64(operand_indices::INPUT1);
    let second = emulator.operands.get_u64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * ((first & (1 << second)) != 0) as u16;
}

/// Test of a range of bits defined by one operand in another. Jump if all bits are set.
#[inline]
pub fn test_bits_and_jump_true(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let first = emulator.operands.get_u64(operand_indices::INPUT1);
    let second = emulator.operands.get_u64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * ((first & second) == second) as u16;
}

/// Test of a range of bits defined by one operand in another. Jump if any bit it set.
#[inline]
pub fn test_bits_or_jump_true(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let first = emulator.operands.get_u64(operand_indices::INPUT1);
    let second = emulator.operands.get_u64(operand_indices::INPUT2);

    instruction.core.flags |= instruction_flags::BR_TAKEN * ((first & second) != 0) as u16;
}

/// Incrementation of one operand and jump if the result is below another.
#[inline]
pub fn increment_compare_jump_below(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let first = emulator.operands.get_i64(operand_indices::INPUT1);
    let second = emulator.operands.get_i64(operand_indices::INPUT2);
    let result = first.wrapping_add(1);
    emulator.operands.set_i64(operand_indices::OUTPUT, result);

    instruction.core.flags |= instruction_flags::BR_TAKEN * (result < second) as u16;
}

/// Incrementation of one operand and jump if the result is above another.
#[inline]
pub fn increment_compare_jump_above(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let first = emulator.operands.get_i64(operand_indices::INPUT1);
    let second = emulator.operands.get_i64(operand_indices::INPUT2);
    emulator
        .operands
        .set_i64(operand_indices::OUTPUT, first.wrapping_add(1));

    instruction.core.flags |= instruction_flags::BR_TAKEN * (first >= second) as u16;
}

/// Subtraction of the maximum vector length from one operand. Jump if the result is positive.
#[inline]
pub fn sub_max_len_jump_pos(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let result = emulator
        .operands
        .get_i64(operand_indices::INPUT1)
        .wrapping_sub(emulator.operands.operand_size() as i64);
    emulator.operands.set_i64(operand_indices::OUTPUT, result);

    instruction.core.flags |= instruction_flags::BR_TAKEN * (result > 0) as u16;
}

/// Computes the jump target as the sum of the input operand and the pre-set offset.
pub fn indirect_jump(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    instruction.core.branch_address = instruction
        .core
        .branch_address
        .wrapping_add(emulator.operands.get_u64(operand_indices::INPUT1) as usize);
}

/// Computes the target as the sum of the base in the first operand and the scaled offset in the
/// second operand.
pub fn multiway_jump(
    emulator: &mut ForwardComEmulator,
    instruction: &mut EmulatorInstruction,
    _: usize,
) {
    let base = emulator.operands.get_i64(operand_indices::INPUT1);
    let offset = match instruction.operand_type {
        OperandType::I8 => emulator.operands.get_i8(operand_indices::INPUT2) as i64,
        OperandType::I16 => emulator.operands.get_i16(operand_indices::INPUT2) as i64,
        OperandType::I32 => emulator.operands.get_i32(operand_indices::INPUT2) as i64,
        OperandType::I128 => {
            quad_word_not_supported(instruction);
            0
        }
        _ => unimplemented!(),
    };

    instruction.core.branch_address = (base + (offset << 2)) as usize;
}