Please read this page from the main YASEP interface
Instruction flags The flag is used by these instruction :
version : 2014-04-28

 

The YASEP instruction flags

What are these flags ?

The YASEP's pipeline is designed for the efficient processing of some operations (addition, subtraction, rotation...) which set the default behaviour of the instructions : where and how the operands are obtained, what register will receive the result... The datapath is designed around these requirement. However, even for these typical operations, one default behaviour is not satisfying for each single instruction and all the divergences from the default behaviour are defined as "flags".

These flags (or attributes, or properties) are only visible at the JavaScript level (to a lesser extent, at the VHDL level as well) and they are defined in core-js/yasep_flags.js. They are used by all kinds of software, like the assembler, the disassembler and the simulator. These properties are critical for the correct operation of the whole YASEP design software so they should not be modified by the user. However their understanding can be useful and a good programmer benefits from knowing them so here are some explanations.

Attributes used only for assembly/disassembly

OPTIONAL

Some instructions are optional and can be left out of the core's implementation when not needed or when space is too tight.

You can enable/disable opcodes (and prune the underlying circuitry) with the profile configuration tool. A CPU that does not implement these instruction could ignore them, hang or trap. In the future, a Special Register might contain some constant flags that will allow user code to determine whether each instruction is implemented.

Preliminary

Instructions marked with this flag are being designed. The opcodes are reserved for a specific future use. The name or use could change or disappear at any time. Do not use, or rely on them (yet).

YASEP16_ONLY, YASEP32_ONLY

These flags indicate that the instruction is valid only for a particular datapath width. When none is set, the instruction is considered generic (valid for 16-bit and 32-bit implementations, even if the results might vary subtly).

If an instruction flagged as YASEP32_ONLY is decoded by a 16-bit YASEP (for example), this is an invalid instruction. The CPU could ignore them, hang or trap : it is undefined because the trapping mechanism is not yet designed.

See also YASEP16/YASEP32/YASEP

Note : currently (2011-09), the YASEP16_ONLY flag is not used, but it could be used in the future.

ALIAS_RR, ALIAS_IRR :

These flags are used when a register operand can be omitted in the source code, if the source register is the same as the destination register. They turn FORM_RR into FORM_R, or FORM_IRR into FORM_IR. The si4 and snd fields are set to the same value, but only one value is mentioned in the source code.

Attributes for assembly/disassembly and hardware decoding

NO_WRITEBACK

This instruction does not write anything to the register set. The suitable destination register field will be ignored by the instruction decoder, and no destination field can be specified at the assembly language level.

ABORT_WRITE

The "comparison" instructions can disable, or abort, the writeback of a value to the register set. The destination may remain unchanged or untouched after the instruction is executed. The mechanism for the abortion of the writeback (and all its side-effects) is also used by all the conditional instructions (with the extended form).

NO_CONDITION

The usual computation instructions can be "aborted" because the result's writeback can be inhibited at the last cycle of the pipeline. The operation is still speculatively performed by the execution units, however.

Some instructions don't write a result, or they perform operations that can't be aborted by inhibiting the writeback. The NO_CONDITION flag specifies that this instruction does not accept extended conditions when encoding, and will ignore them when decoding. The operation will always be performed.

IgnoreImmSign

Usually, the constant fields (Imm4 and Imm16) are sign-extended during decoding so the assembly language supports -8 to 7 or -32768 to 32767 ranges.

However, some instructions (like the SHL group and GET/PUT) must also support positive ranges. MUL8L and MUL8H are unsigned multiply instructions. The flag IgnoreImmSign tells the assembler that 0 to 15 or 0 to 65535 are valid ranges.

IMM_LSB, IMM16_5LSB, IMM16_8LSB

This flag indicates that the instruction will not take into account more than 5 or 8 significant digits in the long immediate form, or more than 1 or 2 least significant digits of the Imm4 field.

CHANGE_CARRY

This flag indicates that the instruction affects the carry flag

CHANGE_EQUAL

This flag indicates that the instruction affects the Equal flag, it's useful after CMPU/CMPS so far.

IGNORE_SND_SHORT, IGNORE_SND_LONG, IGNORE_SI4

During the read stage, the instruction does not use the value provided by the snd or si4 field. IGNORE_SND_SHORT is valid for short instructions while IGNORE_SND_LONG is used with long instructions (there are small differences depending on the opcodes).

No side-effect (related to the read operation) will happen, whatever the value in the field (it is usually cleared). However the snd field could still be used as a destination address during the write cycle.

READ_DST

This flag is used by some optional instructions that require 3 operands: in this case the DST field serves as both source and destination. This implies that this flag only works for long instructions forms.

IGNORE_IMM16

This flag indicates that the IMM16 field (for the long immediate instructions) is never used. It is often linked to IGNORE_SI4 but can also indicate that a long form is not accepted.

IMM20

This flag is specific to the long instructions that ignore the snd field, such as MOV instruction. In the case of YASEP32, these 4 bits are used as the sign-extended MSB of the immediate constant, providing a signed 20 bits number range (instead of 16 in YASEP16).