MIXAL
Public Member Functions | Public Attributes | Friends | List of all members
mixal::ComputerWord Struct Reference

#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)
 

Detailed Description

Basic definition of a word.

A word contains a sign indicator (+ or -) and 5 bytes. Each byte can represent at least [0, 64) integers.

Definition at line 25 of file memory.h.

Constructor & Destructor Documentation

◆ ComputerWord() [1/7]

mixal::ComputerWord::ComputerWord ( )

Initialize with 0s. The default sign is '+'.

Definition at line 32 of file memory.cpp.

32  : negative(), byte1(), byte2(), byte3(), byte4(), byte5() {
33 }

◆ ComputerWord() [2/7]

mixal::ComputerWord::ComputerWord ( int32_t  value)
explicit

Initialize with integer value.

See also
set(int32_t)

Definition at line 35 of file memory.cpp.

35  : negative(), byte1(), byte2(), byte3(), byte4(), byte5() {
36  set(value);
37 }

References set(), and value().

◆ ComputerWord() [3/7]

mixal::ComputerWord::ComputerWord ( const std::string &  chars)
explicit

Initialize with five characters.

See also
set(const std::string&)

Definition at line 39 of file memory.cpp.

39  : negative(), byte1(), byte2(), byte3(), byte4(), byte5() {
40  set(chars);
41 }

References set().

◆ ComputerWord() [4/7]

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.

44  :
45  negative(_negative), byte1(_byte1), byte2(_byte2), byte3(_byte3), byte4(_byte4), byte5(_byte5) {
46 }

◆ ComputerWord() [5/7]

mixal::ComputerWord::ComputerWord ( char  sign,
uint8_t  _byte1,
uint8_t  _byte2,
uint8_t  _byte3,
uint8_t  _byte4,
uint8_t  _byte5 
)

Initialize with full representation.

Exceptions
std::runtime_errorwhen the sign is neither '+' nor '-'.

Definition at line 48 of file memory.cpp.

48  :
49  negative(sign == '-'), byte1(_byte1), byte2(_byte2), byte3(_byte3), byte4(_byte4), byte5(_byte5) {
50  if (sign != '+' && sign != '-') {
51  throw std::runtime_error("Invalid sign: " + std::string(1, sign));
52  }
53 }

◆ ComputerWord() [6/7]

mixal::ComputerWord::ComputerWord ( bool  _negative,
uint16_t  bytes12,
uint8_t  _byte3,
uint8_t  _byte4,
uint8_t  _byte5 
)

Initialize with the first two bytes combined.

See also
set(bool, uint16_t, uint8_t, uint8_t, uint8_t)

Definition at line 55 of file memory.cpp.

55  :
56  negative(_negative), byte1(bytes12 / 64), byte2(bytes12 % 64), byte3(_byte3), byte4(_byte4), byte5(_byte5) {
57 }

◆ ComputerWord() [7/7]

mixal::ComputerWord::ComputerWord ( char  sign,
uint16_t  bytes12,
uint8_t  _byte3,
uint8_t  _byte4,
uint8_t  _byte5 
)

Initialize with the first two bytes combined.

See also
set(sign, uint16_t, uint8_t, uint8_t, uint8_t)
Exceptions
std::runtime_errorwhen the sign is neither '+' nor '-'.

Definition at line 59 of file memory.cpp.

59  :
60  negative(sign == '-'), byte1(bytes12 / 64), byte2(bytes12 % 64), byte3(_byte3), byte4(_byte4), byte5(_byte5) {
61  if (sign != '+' && sign != '-') {
62  throw std::runtime_error("Invalid sign: " + std::string(1, sign));
63  }
64 }

Member Function Documentation

◆ address()

uint16_t mixal::ComputerWord::address ( ) const
inline

When representing an instruction, the function returns the value represented by the first two bytes without the sign.

See also
bytes12

Definition at line 134 of file memory.h.

134 { return bytes12(); }

References bytes12().

Referenced by setAddress().

◆ addressValue()

int16_t mixal::ComputerWord::addressValue ( ) const

When representing an instruction, the function returns the value represented by the first two bytes with the sign.

See also
bytes12()
Returns
Note that -0 can not be returned.

Definition at line 141 of file memory.cpp.

141  {
142  int16_t value = static_cast<int16_t>(this->bytes12());
143  if (negative) {
144  value = -value;
145  }
146  return value;
147 }

References bytes12(), and value().

◆ bytes12()

uint16_t mixal::ComputerWord::bytes12 ( ) const

Get the value of the first two bytes.

See also
bytes2(int, int)

Definition at line 116 of file memory.cpp.

116  {
117  return bytes2(1, 2);
118 }

References bytes2().

Referenced by address(), addressValue(), and set().

◆ bytes2()

uint16_t mixal::ComputerWord::bytes2 ( int  index1,
int  index2 
) const

Get the value that represented by the indices of two bytes.

Definition at line 110 of file memory.cpp.

110  {
111  int16_t high = static_cast<int16_t>(static_cast<uint8_t>((*this)[index1]));
112  int16_t low = static_cast<int16_t>(static_cast<uint8_t>((*this)[index2]));
113  return high * 64 + low;
114 }

Referenced by bytes12(), bytes23(), bytes34(), and bytes45().

◆ bytes23()

uint16_t mixal::ComputerWord::bytes23 ( ) const

Get the value of the second and third bytes.

See also
bytes2(int, int)

Definition at line 120 of file memory.cpp.

120  {
121  return bytes2(2, 3);
122 }

References bytes2().

◆ bytes34()

uint16_t mixal::ComputerWord::bytes34 ( ) const

Get the value of the third and fourth bytes.

See also
bytes2(int, int)

Definition at line 124 of file memory.cpp.

124  {
125  return bytes2(3, 4);
126 }

References bytes2().

◆ bytes45()

uint16_t mixal::ComputerWord::bytes45 ( ) const

Get the value of the last two bytes.

See also
bytes2(int, int)

Definition at line 128 of file memory.cpp.

128  {
129  return bytes2(4, 5);
130 }

References bytes2().

◆ field()

uint8_t mixal::ComputerWord::field ( ) const
inline

When representing an instruction, the function returns the field value of the instruction.

Returns
The value should be in [0, 63]. For most of the operations the default field value is 5.

Definition at line 147 of file memory.h.

147 { return byte4; }

Referenced by mixal::Computer::executeSingle(), and setField().

◆ getAt()

uint8_t mixal::ComputerWord::getAt ( int32_t  index) const
inline

Get the value with index in [1, 5].

See also
operator[](int) const
Exceptions
std::runtime_errorwhen the index is not in [1, 5].

Definition at line 172 of file memory.h.

172 { return (*this)[index]; }

References index().

Referenced by getCharacters().

◆ getBytesString()

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.

71  {
72  std::string result;
73  result += negative ? '-' : '+';
74  for (int i = 1; i <= 5; ++i) {
75  result += ' ';
76  if ((*this)[i] < 10) {
77  result += ' ';
78  }
79  result += std::to_string(static_cast<int>((*this)[i]));
80  }
81  return result;
82 }

◆ getCharacters()

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.

165  {
166  std::string chars;
167  for (int i = 1; i <= 5; ++i) {
168  if (getAt(i) < CHAR_CODES_NUM) {
169  uint16_t code = CHAR_CODES[getAt(i)];
170  chars += unicode::toUTF8(static_cast<unicode::UChar>(code));
171  } else {
172  chars += ' ';
173  }
174  }
175  return chars;
176 }

References mixal::CHAR_CODES, mixal::CHAR_CODES_NUM, and getAt().

◆ index()

uint8_t mixal::ComputerWord::index ( ) const
inline

When representing an instruction, the function returns the index value of the instruction.

Returns
The value should be in [0, 6].

Definition at line 140 of file memory.h.

140 { return byte3; }

Referenced by getAt(), operator[](), set(), and setIndex().

◆ operation()

uint8_t mixal::ComputerWord::operation ( ) const
inline

When representing an instruction, the function returns the type of operation of the instruction.

Returns
The value should be in [0, 63].

Definition at line 153 of file memory.h.

153 { return byte5; }

Referenced by mixal::Computer::executeSingle(), mixal::Computer::executeSinglePesudo(), mixal::Parser::parseLine(), and setOperation().

◆ operator==()

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.

18  {
19  return negative == word.negative && byte1 == word.byte1 &&
20  byte2 == word.byte2 && byte3 == word.byte3 &&
21  byte4 == word.byte4 && byte5 == word.byte5;
22 }

◆ operator[]() [1/2]

uint8_t & mixal::ComputerWord::operator[] ( int  index)

Get the reference with index in [1, 5].

Exceptions
std::runtime_errorwhen the index is not in [1, 5].

Definition at line 97 of file memory.cpp.

97  {
98  if (index <= 0 || index > 5) {
99  throw std::runtime_error("Invalid index for a word: " + std::to_string(index));
100  }
101  switch (index) {
102  case 1: return byte1;
103  case 2: return byte2;
104  case 3: return byte3;
105  case 4: return byte4;
106  default: return byte5;
107  }
108 }

References index().

◆ operator[]() [2/2]

uint8_t mixal::ComputerWord::operator[] ( int  index) const

Get the value with index in [1, 5].

Exceptions
std::runtime_errorwhen the index is not in [1, 5].

Definition at line 84 of file memory.cpp.

84  {
85  if (index <= 0 || index > 5) {
86  throw std::runtime_error("Invalid index for a word: " + std::to_string(index));
87  }
88  switch (index) {
89  case 1: return byte1;
90  case 2: return byte2;
91  case 3: return byte3;
92  case 4: return byte4;
93  default: return byte5;
94  }
95 }

References index().

◆ reset()

void mixal::ComputerWord::reset ( )

Set the sign to + and all the bytes to 0.

Definition at line 66 of file memory.cpp.

66  {
67  negative = false;
68  byte1 = byte2 = byte3 = byte4 = byte5 = 0;
69 }

Referenced by mixal::Computer::reset().

◆ set() [1/7]

void mixal::ComputerWord::set ( bool  negative,
uint16_t  bytes12,
uint8_t  byte3,
uint8_t  byte4,
uint8_t  byte5 
)

Set all the values.

Parameters
bytes12Use 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.

242  {
243  this->negative = negative;
244  this->byte1 = static_cast<uint8_t>(bytes12 / 64);
245  this->byte2 = static_cast<uint8_t>(bytes12 % 64);
246  this->byte3 = byte3;
247  this->byte4 = byte4;
248  this->byte5 = byte5;
249 }

References bytes12().

◆ set() [2/7]

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.

221  {
222  this->negative = negative;
223  this->byte1 = byte1;
224  this->byte2 = byte2;
225  this->byte3 = byte3;
226  this->byte4 = byte4;
227  this->byte5 = byte5;
228 }

◆ set() [3/7]

void mixal::ComputerWord::set ( char  sign,
uint16_t  bytes12,
uint8_t  byte3,
uint8_t  byte4,
uint8_t  byte5 
)

Set all the values.

Parameters
bytes12Use the first two bytes to represent an integer within 4096. The behavior is undefined if the number can not be represented.
Exceptions
std::runtime_errorwhen the sign is neither '+' nor '-'.

Definition at line 251 of file memory.cpp.

251  {
252  if (sign != '+' && sign != '-') {
253  throw std::runtime_error("Invalid sign: " + std::string(1, sign));
254  }
255  this->negative = sign == '-';
256  this->byte1 = static_cast<uint8_t>(bytes12 / 64);
257  this->byte2 = static_cast<uint8_t>(bytes12 % 64);
258  this->byte3 = byte3;
259  this->byte4 = byte4;
260  this->byte5 = byte5;
261 }

References bytes12().

◆ set() [4/7]

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.

Exceptions
std::runtime_errorwhen the sign is neither '+' nor '-'.

Definition at line 230 of file memory.cpp.

230  {
231  if (sign != '+' && sign != '-') {
232  throw std::runtime_error("Invalid sign: " + std::string(1, sign));
233  }
234  this->negative = sign == '-';
235  this->byte1 = byte1;
236  this->byte2 = byte2;
237  this->byte3 = byte3;
238  this->byte4 = byte4;
239  this->byte5 = byte5;
240 }

◆ set() [5/7]

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 +.

Parameters
charsUTF8 encoded string.
Exceptions
std::runtime_errorwhen the size of characters in the string is not 5.

Definition at line 191 of file memory.cpp.

191  {
192  auto codes = unicode::fromUTF8(chars);
193  if (codes.size() != 5) {
194  throw std::runtime_error("Invalid length of characters for a word: " + chars);
195  }
196  negative = false;
197  for (int i = 0; i < 5; ++i) {
198  (*this)[i + 1] = 0;
199  for (int j = 0; j < CHAR_CODES_NUM; ++j) {
200  if (static_cast<uint16_t>(codes[i]) == CHAR_CODES[j]) {
201  (*this)[i + 1] = j;
202  break;
203  }
204  }
205  }
206 }

References mixal::CHAR_CODES, and mixal::CHAR_CODES_NUM.

◆ set() [6/7]

void mixal::ComputerWord::set ( int  index,
uint8_t  val 
)

Set specific byte with the given index in [1, 5].

Parameters
valThe behavior is undefined if it is greater than 63.
Exceptions
std::runtime_errorwhen the index is not in [1, 5].

Definition at line 208 of file memory.cpp.

208  {
209  if (index <= 0 || index > 5) {
210  throw std::runtime_error("Invalid index for a word: " + std::to_string(index));
211  }
212  switch (index) {
213  case 1: byte1 = val; break;
214  case 2: byte2 = val; break;
215  case 3: byte3 = val; break;
216  case 4: byte4 = val; break;
217  default: byte5 = val;
218  }
219 }

References index().

◆ set() [7/7]

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.

178  {
179  if (value > 0) {
180  negative = false;
181  } else if (value < 0) {
182  negative = true;
183  value = -value;
184  }
185  for (int i = 5; i >= 1; --i) {
186  set(i, static_cast<uint8_t>(value & ((1 << 6) - 1)));
187  value >>= 6;
188  }
189 }

References value().

Referenced by ComputerWord(), and mixal::Computer::loadCodes().

◆ setAddress() [1/2]

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.

159  {
160  this->negative = negative;
161  byte1 = static_cast<uint8_t>(address / 64);
162  byte2 = static_cast<uint8_t>(address % 64);
163 }

References address().

◆ setAddress() [2/2]

void mixal::ComputerWord::setAddress ( int16_t  address)

When representing an instruction, set the address value.

Definition at line 149 of file memory.cpp.

149  {
150  negative = false;
151  if (address < 0) {
152  negative = true;
153  address = -address;
154  }
155  byte1 = static_cast<uint8_t>(address / 64);
156  byte2 = static_cast<uint8_t>(address % 64);
157 }

References address().

◆ setField()

void mixal::ComputerWord::setField ( uint8_t  field)
inline

When representing an instruction, set the field value.

Definition at line 162 of file memory.h.

162 { byte4 = field; }

References field().

Referenced by mixal::Parser::parseLine().

◆ setIndex()

void mixal::ComputerWord::setIndex ( uint8_t  index)
inline

When representing an instruction, set the index value.

Definition at line 160 of file memory.h.

160 { byte3 = index; }

References index().

◆ setOperation()

void mixal::ComputerWord::setOperation ( uint8_t  operation)
inline

When representing an instruction, set the type of operation.

Definition at line 164 of file memory.h.

164 { byte5 = operation; }

References operation().

Referenced by mixal::Parser::parseLine().

◆ value()

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.

132  {
133  int32_t value = static_cast<int32_t>(byte1 << 24) |
134  static_cast<int32_t>(byte2 << 18) |
135  static_cast<int32_t>(byte3 << 12) |
136  static_cast<int32_t>(byte4 << 6) |
137  static_cast<int32_t>(byte5);
138  return negative ? -value : value;
139 }

Referenced by addressValue(), ComputerWord(), mixal::Parser::parseLine(), and set().

Friends And Related Function Documentation

◆ operator<<

std::ostream& operator<< ( std::ostream &  out,
const ComputerWord word 
)
friend

Output the word in the format like: + 0 1 2 13 24

Definition at line 24 of file memory.cpp.

24  {
25  out << (word.negative ? '-' : '+');
26  for (int i = 1; i <= 5; ++i) {
27  out << ' ' << static_cast<int>(word[i]);
28  }
29  return out;
30 }

The documentation for this struct was generated from the following files:
mixal::ComputerWord::address
uint16_t address() const
Definition: memory.h:134
mixal::CHAR_CODES_NUM
const int32_t CHAR_CODES_NUM
Definition: memory.h:17
mixal::ComputerWord::bytes12
uint16_t bytes12() const
Definition: memory.cpp:116
mixal::ComputerWord::field
uint8_t field() const
Definition: memory.h:147
mixal::ComputerWord::index
uint8_t index() const
Definition: memory.h:140
mixal::ComputerWord::getAt
uint8_t getAt(int32_t index) const
Definition: memory.h:172
mixal::ComputerWord::value
int32_t value() const
Definition: memory.cpp:132
mixal::ComputerWord::set
void set(int32_t value)
Definition: memory.cpp:178
mixal::CHAR_CODES
uint16_t CHAR_CODES[]
Definition: memory.cpp:9
mixal::ComputerWord::bytes2
uint16_t bytes2(int index1, int index2) const
Definition: memory.cpp:110
mixal::ComputerWord::operation
uint8_t operation() const
Definition: memory.h:153