MIXAL
|
#include <memory.h>
Public Member Functions | |
ComputerWord () | |
ComputerWord (int32_t value) | |
ComputerWord (const std::string &chars) | |
ComputerWord (bool _negative, uint8_t _byte1, uint8_t _byte2, uint8_t _byte3, uint8_t _byte4, uint8_t _byte5) | |
ComputerWord (char sign, uint8_t _byte1, uint8_t _byte2, uint8_t _byte3, uint8_t _byte4, uint8_t _byte5) | |
ComputerWord (bool _negative, uint16_t bytes12, uint8_t _byte3, uint8_t _byte4, uint8_t _byte5) | |
ComputerWord (char sign, uint16_t bytes12, uint8_t _byte3, uint8_t _byte4, uint8_t _byte5) | |
void | reset () |
bool | operator== (const ComputerWord &word) const |
std::string | getBytesString () const |
uint8_t | operator[] (int index) const |
uint8_t & | operator[] (int index) |
uint16_t | bytes2 (int index1, int index2) const |
uint16_t | bytes12 () const |
uint16_t | bytes23 () const |
uint16_t | bytes34 () const |
uint16_t | bytes45 () const |
int32_t | value () const |
int16_t | addressValue () const |
uint16_t | address () const |
uint8_t | index () const |
uint8_t | field () const |
uint8_t | operation () const |
void | setAddress (int16_t address) |
void | setAddress (bool negative, uint16_t address) |
void | setIndex (uint8_t index) |
void | setField (uint8_t field) |
void | setOperation (uint8_t operation) |
uint8_t | getAt (int32_t index) const |
std::string | getCharacters () const |
void | set (int32_t value) |
void | set (const std::string &chars) |
void | set (int index, uint8_t val) |
void | set (bool negative, uint8_t byte1, uint8_t byte2, uint8_t byte3, uint8_t byte4, uint8_t byte5) |
void | set (char sign, uint8_t byte1, uint8_t byte2, uint8_t byte3, uint8_t byte4, uint8_t byte5) |
void | set (bool negative, uint16_t bytes12, uint8_t byte3, uint8_t byte4, uint8_t byte5) |
void | set (char sign, uint16_t bytes12, uint8_t byte3, uint8_t byte4, uint8_t byte5) |
Public Attributes | |
bool | negative |
uint8_t | byte1 |
uint8_t | byte2 |
uint8_t | byte3 |
uint8_t | byte4 |
uint8_t | byte5 |
Friends | |
std::ostream & | operator<< (std::ostream &out, const ComputerWord &word) |
Basic definition of a word.
A word contains a sign indicator (+
or -
) and 5 bytes. Each byte can represent at least [0, 64) integers.
mixal::ComputerWord::ComputerWord | ( | ) |
Initialize with 0s. The default sign is '+'.
Definition at line 32 of file memory.cpp.
|
explicit |
|
explicit |
Initialize with five characters.
Definition at line 39 of file memory.cpp.
References set().
mixal::ComputerWord::ComputerWord | ( | bool | _negative, |
uint8_t | _byte1, | ||
uint8_t | _byte2, | ||
uint8_t | _byte3, | ||
uint8_t | _byte4, | ||
uint8_t | _byte5 | ||
) |
Initialize with full representation.
Definition at line 43 of file memory.cpp.
mixal::ComputerWord::ComputerWord | ( | char | sign, |
uint8_t | _byte1, | ||
uint8_t | _byte2, | ||
uint8_t | _byte3, | ||
uint8_t | _byte4, | ||
uint8_t | _byte5 | ||
) |
Initialize with full representation.
std::runtime_error | when the sign is neither '+' nor '-'. |
Definition at line 48 of file memory.cpp.
mixal::ComputerWord::ComputerWord | ( | bool | _negative, |
uint16_t | bytes12, | ||
uint8_t | _byte3, | ||
uint8_t | _byte4, | ||
uint8_t | _byte5 | ||
) |
Initialize with the first two bytes combined.
Definition at line 55 of file memory.cpp.
mixal::ComputerWord::ComputerWord | ( | char | sign, |
uint16_t | bytes12, | ||
uint8_t | _byte3, | ||
uint8_t | _byte4, | ||
uint8_t | _byte5 | ||
) |
Initialize with the first two bytes combined.
std::runtime_error | when the sign is neither '+' nor '-'. |
Definition at line 59 of file memory.cpp.
|
inline |
int16_t mixal::ComputerWord::addressValue | ( | ) | const |
When representing an instruction, the function returns the value represented by the first two bytes with the sign.
-0
can not be returned. Definition at line 141 of file memory.cpp.
uint16_t mixal::ComputerWord::bytes12 | ( | ) | const |
Get the value of the first two bytes.
Definition at line 116 of file memory.cpp.
References bytes2().
Referenced by address(), addressValue(), and set().
uint16_t mixal::ComputerWord::bytes2 | ( | int | index1, |
int | index2 | ||
) | const |
uint16_t mixal::ComputerWord::bytes23 | ( | ) | const |
Get the value of the second and third bytes.
Definition at line 120 of file memory.cpp.
References bytes2().
uint16_t mixal::ComputerWord::bytes34 | ( | ) | const |
Get the value of the third and fourth bytes.
Definition at line 124 of file memory.cpp.
References bytes2().
uint16_t mixal::ComputerWord::bytes45 | ( | ) | const |
Get the value of the last two bytes.
Definition at line 128 of file memory.cpp.
References bytes2().
|
inline |
When representing an instruction, the function returns the field value of the instruction.
Definition at line 147 of file memory.h.
Referenced by mixal::Computer::executeSingle(), and setField().
|
inline |
Get the value with index in [1, 5].
std::runtime_error | when the index is not in [1, 5]. |
Definition at line 172 of file memory.h.
References index().
Referenced by getCharacters().
std::string mixal::ComputerWord::getBytesString | ( | ) | const |
Get the string of bytes with padded spaces like: - 0 12 3 43 49
Definition at line 71 of file memory.cpp.
std::string mixal::ComputerWord::getCharacters | ( | ) | const |
Get a UTF8 string represents the 5 characters in the word.
Definition at line 165 of file memory.cpp.
References mixal::CHAR_CODES, mixal::CHAR_CODES_NUM, and getAt().
|
inline |
When representing an instruction, the function returns the index value of the instruction.
Definition at line 140 of file memory.h.
Referenced by getAt(), operator[](), set(), and setIndex().
|
inline |
When representing an instruction, the function returns the type of operation of the instruction.
Definition at line 153 of file memory.h.
Referenced by mixal::Computer::executeSingle(), mixal::Computer::executeSinglePesudo(), mixal::Parser::parseLine(), and setOperation().
bool mixal::ComputerWord::operator== | ( | const ComputerWord & | word | ) | const |
Whether two words are strictly equal.
+0
does not equal to -0
.
Definition at line 18 of file memory.cpp.
uint8_t & mixal::ComputerWord::operator[] | ( | int | index | ) |
Get the reference with index in [1, 5].
std::runtime_error | when the index is not in [1, 5]. |
Definition at line 97 of file memory.cpp.
References index().
uint8_t mixal::ComputerWord::operator[] | ( | int | index | ) | const |
Get the value with index in [1, 5].
std::runtime_error | when the index is not in [1, 5]. |
Definition at line 84 of file memory.cpp.
References index().
void mixal::ComputerWord::reset | ( | ) |
Set the sign to +
and all the bytes to 0.
Definition at line 66 of file memory.cpp.
Referenced by mixal::Computer::reset().
void mixal::ComputerWord::set | ( | bool | negative, |
uint16_t | bytes12, | ||
uint8_t | byte3, | ||
uint8_t | byte4, | ||
uint8_t | byte5 | ||
) |
Set all the values.
bytes12 | Use the first two bytes to represent an integer within 4096. The behavior is undefined if the number can not be represented. |
Definition at line 242 of file memory.cpp.
References bytes12().
void mixal::ComputerWord::set | ( | bool | negative, |
uint8_t | byte1, | ||
uint8_t | byte2, | ||
uint8_t | byte3, | ||
uint8_t | byte4, | ||
uint8_t | byte5 | ||
) |
Set all the values.
Definition at line 221 of file memory.cpp.
void mixal::ComputerWord::set | ( | char | sign, |
uint16_t | bytes12, | ||
uint8_t | byte3, | ||
uint8_t | byte4, | ||
uint8_t | byte5 | ||
) |
Set all the values.
bytes12 | Use the first two bytes to represent an integer within 4096. The behavior is undefined if the number can not be represented. |
std::runtime_error | when the sign is neither '+' nor '-'. |
Definition at line 251 of file memory.cpp.
References bytes12().
void mixal::ComputerWord::set | ( | char | sign, |
uint8_t | byte1, | ||
uint8_t | byte2, | ||
uint8_t | byte3, | ||
uint8_t | byte4, | ||
uint8_t | byte5 | ||
) |
Set all the values.
std::runtime_error | when the sign is neither '+' nor '-'. |
Definition at line 230 of file memory.cpp.
void mixal::ComputerWord::set | ( | const std::string & | chars | ) |
Set the word with a UTF8 string.
Only a subset of characters are allowed. The invalid characters with be replaced with spaces.
The sign will always be +
.
chars | UTF8 encoded string. |
std::runtime_error | when the size of characters in the string is not 5. |
Definition at line 191 of file memory.cpp.
References mixal::CHAR_CODES, and mixal::CHAR_CODES_NUM.
void mixal::ComputerWord::set | ( | int | index, |
uint8_t | val | ||
) |
Set specific byte with the given index in [1, 5].
val | The behavior is undefined if it is greater than 63. |
std::runtime_error | when the index is not in [1, 5]. |
Definition at line 208 of file memory.cpp.
References index().
void mixal::ComputerWord::set | ( | int32_t | value | ) |
Set the word with an integer.
The sign will be set only when the input is non-zero. Therefore to set the word to -0
with this function, one can set it with a negative value first, then set it to 0.
The least significant 30 bits will be saved to the word. Each byte contains 6 bits. The byte5 will contain the least significant 6 bits.
Definition at line 178 of file memory.cpp.
References value().
Referenced by ComputerWord(), and mixal::Computer::loadCodes().
void mixal::ComputerWord::setAddress | ( | bool | negative, |
uint16_t | address | ||
) |
When representing an instruction, set the address value.
Definition at line 159 of file memory.cpp.
References address().
void mixal::ComputerWord::setAddress | ( | int16_t | address | ) |
When representing an instruction, set the address value.
Definition at line 149 of file memory.cpp.
References address().
|
inline |
When representing an instruction, set the field value.
Definition at line 162 of file memory.h.
References field().
Referenced by mixal::Parser::parseLine().
|
inline |
|
inline |
When representing an instruction, set the type of operation.
Definition at line 164 of file memory.h.
References operation().
Referenced by mixal::Parser::parseLine().
int32_t mixal::ComputerWord::value | ( | ) | const |
Get the value the word represents.
The range of the result should be [-1073741824, 1073741824].
Definition at line 132 of file memory.cpp.
Referenced by addressValue(), ComputerWord(), mixal::Parser::parseLine(), and set().
|
friend |
Output the word in the format like: + 0 1 2 13 24
Definition at line 24 of file memory.cpp.