MIXAL
|
#include <expression.h>
Public Member Functions | |
Expression () | |
Expression (const std::string &expression, const std::string &lineSymbol="") | |
bool | evaluated () const |
const AtomicValue & | result () const |
bool | literalConstant () const |
const std::unordered_set< std::string > | depends () const |
const std::vector< Atomic > | atomics () const |
const std::vector< Operation > | operations () const |
void | parse (const std::string &expression, const std::string &lineSymbol) |
bool | evaluate (const std::unordered_map< std::string, AtomicValue > &constants) |
void | replaceSymbol (const std::unordered_map< std::string, std::string > &mapping) |
void | reset () |
bool | operator== (const Expression &expression) |
bool | operator!= (const Expression &expression) |
Static Public Member Functions | |
static Expression | getConstExpression (const AtomicValue &value) |
static Expression | getConstExpression (const std::string &symbol) |
static Expression | getConstOffsetExpression (const std::string &symbol, int32_t offset) |
static bool | isValidFirst (char ch) |
static bool | isValidChar (char ch) |
Friends | |
std::ostream & | operator<< (std::ostream &out, const Expression &expression) |
Parse and store expressions.
Definition at line 103 of file expression.h.
mixal::Expression::Expression | ( | ) |
Initialize with zeros.
Definition at line 13 of file expression.cpp.
Referenced by getConstExpression(), and getConstOffsetExpression().
|
explicit |
|
inline |
Get the atomics in the expression.
Definition at line 154 of file expression.h.
|
inline |
Get the symbols that should be evaluated before evaluating this expression.
Definition at line 152 of file expression.h.
bool mixal::Expression::evaluate | ( | const std::unordered_map< std::string, AtomicValue > & | constants | ) |
Try to evaluate the parsed expression.
constants | A dictionary that maps from symbol names to evaluated atomic values. |
Definition at line 233 of file expression.cpp.
References mixal::Atomic::integer, mixal::Atomic::negative, result(), mixal::Atomic::symbol, and mixal::Atomic::type.
|
inline |
Whether the expression has been evaluated.
Definition at line 144 of file expression.h.
Referenced by mixal::ParsedResult::evaluated(), and mixal::operator<<().
|
static |
Get a constant expression based on a given atomic value.
Definition at line 23 of file expression.cpp.
References Expression().
Referenced by mixal::Computer::loadCodes(), and mixal::Parser::parseLine().
|
static |
Get a constant expression based on a given symbol.
The evaluation will depend on the given symbol.
Definition at line 31 of file expression.cpp.
References Expression().
|
static |
Get a constant expression based on a given symbol and an offset.
This is used for representing the offset from an address.
Definition at line 38 of file expression.cpp.
References Expression().
Referenced by mixal::Computer::loadCodes().
|
static |
Whether a character is valid inside an expression.
Besides the valid characters at the beginning, the rest characters in the operations are also valid: /
and :
.
Definition at line 50 of file expression.cpp.
References isValidFirst().
Referenced by mixal::Parser::parseLine().
|
static |
Whether an expression can start with the given character.
The first character could be:
[0-9A-Z]
, for symbols.*
, for current location.[+-]
, for the sign of an atomic.=
, for literal constant. Definition at line 46 of file expression.cpp.
Referenced by isValidChar(), and mixal::Parser::parseLine().
|
inline |
Whether this is a literal constant, which is surrounded by =
.
Definition at line 149 of file expression.h.
Referenced by mixal::Computer::executeSingle().
|
inline |
Get the operations in the expression.
Definition at line 156 of file expression.h.
bool mixal::Expression::operator!= | ( | const Expression & | expression | ) |
Whether two expressions are different.
Definition at line 331 of file expression.cpp.
bool mixal::Expression::operator== | ( | const Expression & | expression | ) |
void mixal::Expression::parse | ( | const std::string & | expression, |
const std::string & | lineSymbol | ||
) |
Try to parse an expression string.
expression | A string containing only the expression. |
lineSymbol | The symbol representing the current location. Used for * to point to the current location. |
ExpressionError | When the input expression string is invalid. |
Definition at line 89 of file expression.cpp.
References mixal::isOperationFirst(), and reset().
Referenced by Expression(), and mixal::Parser::parseLine().
void mixal::Expression::replaceSymbol | ( | const std::unordered_map< std::string, std::string > & | mapping | ) |
Replace the symbols in the expression.
This is used for replacing local symbols.
Definition at line 293 of file expression.cpp.
void mixal::Expression::reset | ( | ) |
|
inline |
Get the evaluated atomic value.
Definition at line 146 of file expression.h.
Referenced by evaluate(), and mixal::operator<<().
|
friend |
Output the expression.
Definition at line 346 of file expression.cpp.