MIXAL
Enumerations | Functions
parser.cpp File Reference

The parsing of one line of code. More...

#include <cassert>
#include <iostream>
#include "parser.h"
#include "instructions.h"

Go to the source code of this file.

Enumerations

enum  mixal::ParseState {
  mixal::ParseState::START, mixal::ParseState::LOC, mixal::ParseState::BEFORE_OP, mixal::ParseState::OP,
  mixal::ParseState::BEFORE_ADDRESS, mixal::ParseState::ADDRESS, mixal::ParseState::BEFORE_INDEX, mixal::ParseState::INDEX,
  mixal::ParseState::FIELD_OPEN, mixal::ParseState::FIELD, mixal::ParseState::FIELD_CLOSE, mixal::ParseState::BEFORE_COMMENT,
  mixal::ParseState::COMMENT, mixal::ParseState::END
}
 

Functions

std::ostream & mixal::operator<< (std::ostream &os, ParsedType c)
 
std::ostream & mixal::operator<< (std::ostream &out, const ParsedResult &result)
 

Detailed Description

The parsing of one line of code.

Definition in file parser.cpp.

Enumeration Type Documentation

◆ ParseState

enum mixal::ParseState
strong

The state while parsing a line.

LOC OP ADDRESS,INDEX(FIELD) COMMENT

Definition at line 19 of file parser.cpp.

19  {
20  START,
21  LOC,
22  BEFORE_OP,
23  OP,
24  BEFORE_ADDRESS,
25  ADDRESS,
26  BEFORE_INDEX,
27  INDEX,
28  FIELD_OPEN,
29  FIELD,
30  FIELD_CLOSE,
31  BEFORE_COMMENT,
32  COMMENT,
33  END,
34 };

Function Documentation

◆ operator<<() [1/2]

std::ostream & mixal::operator<< ( std::ostream &  os,
ParsedType  c 
)

Output the name of a parsed type.

Definition at line 36 of file parser.cpp.

36  {
37  switch (c) {
38  case ParsedType::EMPTY: os << "EMPTY"; break;
39  case ParsedType::INSTRUCTION: os << "INSTRUCTION"; break;
40  case ParsedType::PSEUDO: os << "PSEUDO"; break;
41  }
42  return os;
43 }

References mixal::operator<<().

◆ operator<<() [2/2]

std::ostream& mixal::operator<< ( std::ostream &  out,
const ParsedResult result 
)

Output the instruction.

Definition at line 112 of file parser.cpp.

112  {
113  if (result.location.evaluated()) {
114  out << result.location.result().value << '\t';
115  } else {
116  out << result.rawLocation << '\t';
117  }
118  out << result.operation << '\t';
119  if (!result.rawAddress.empty()) {
120  if (result.address.evaluated()) {
121  out << result.address.result().value;
122  } else {
123  out << result.address;
124  }
125  }
126  if (!result.rawIndex.empty()) {
127  if (result.index.evaluated()) {
128  out << ',' << result.index.result().value;
129  } else {
130  out << ',' << result.index;
131  }
132  }
133  if (!result.rawField.empty()) {
134  if (result.field.evaluated()) {
135  out << '(' << result.field.result().value << ')';
136  } else {
137  out << '(' << result.field << ')';
138  }
139  }
140  return out;
141 }

References mixal::ParsedResult::address, mixal::Expression::evaluated(), mixal::ParsedResult::field, mixal::ParsedResult::index, mixal::ParsedResult::location, mixal::ParsedResult::operation, mixal::operator<<(), mixal::ParsedResult::rawAddress, mixal::ParsedResult::rawField, mixal::ParsedResult::rawIndex, mixal::ParsedResult::rawLocation, and mixal::Expression::result().