2011-01-30 02:27:30 +01:00
|
|
|
/*
|
2013-04-18 02:44:45 +02:00
|
|
|
* Copyright (c) 2011-2013 Stephen Williams (steve@icarus.com)
|
2015-02-24 16:06:55 +01:00
|
|
|
* Copyright CERN 2012-2015 / Stephen Williams (steve@icarus.com),
|
2015-03-27 15:23:48 +01:00
|
|
|
* @author Maciej Suminski (maciej.suminski@cern.ch)
|
2011-01-30 02:27:30 +01:00
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
2012-08-29 03:41:23 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-01-30 02:27:30 +01:00
|
|
|
*/
|
|
|
|
|
|
2011-04-18 02:19:09 +02:00
|
|
|
# include "expression.h"
|
2015-01-22 17:04:23 +01:00
|
|
|
# include "subprogram.h"
|
2013-04-18 02:44:45 +02:00
|
|
|
# include "parse_types.h"
|
2011-04-18 02:19:09 +02:00
|
|
|
# include "scope.h"
|
|
|
|
|
# include <iostream>
|
2011-05-28 19:49:33 +02:00
|
|
|
# include <typeinfo>
|
2011-06-05 22:58:54 +02:00
|
|
|
# include <cstring>
|
2011-09-19 04:31:28 +02:00
|
|
|
# include <ivl_assert.h>
|
2011-05-28 19:49:33 +02:00
|
|
|
# include <cassert>
|
2011-04-18 02:19:09 +02:00
|
|
|
|
|
|
|
|
using namespace std;
|
2011-01-30 02:27:30 +01:00
|
|
|
|
|
|
|
|
Expression::Expression()
|
2011-06-14 02:46:05 +02:00
|
|
|
: type_(0)
|
2011-01-30 02:27:30 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Expression::~Expression()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-31 04:17:40 +02:00
|
|
|
void Expression::set_type(const VType*typ)
|
|
|
|
|
{
|
2013-06-08 00:49:19 +02:00
|
|
|
assert(type_==0 || type_==typ);
|
2011-05-31 04:17:40 +02:00
|
|
|
type_ = typ;
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-28 19:49:33 +02:00
|
|
|
bool Expression::symbolic_compare(const Expression*) const
|
|
|
|
|
{
|
|
|
|
|
cerr << get_fileline() << ": internal error: "
|
|
|
|
|
<< "symbolic_compare() method not implemented "
|
|
|
|
|
<< "for " << typeid(*this).name() << endl;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-09 01:40:35 +02:00
|
|
|
ExpAttribute::ExpAttribute(ExpName*bas, perm_string nam)
|
|
|
|
|
: base_(bas), name_(nam)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpAttribute::~ExpAttribute()
|
|
|
|
|
{
|
|
|
|
|
delete base_;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-02 11:00:59 +01:00
|
|
|
Expression*ExpAttribute::clone() const
|
|
|
|
|
{
|
|
|
|
|
return new ExpAttribute(static_cast<ExpName*>(base_->clone()), name_);
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-20 02:47:30 +01:00
|
|
|
ExpBinary::ExpBinary(Expression*op1, Expression*op2)
|
|
|
|
|
: operand1_(op1), operand2_(op2)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpBinary::~ExpBinary()
|
|
|
|
|
{
|
|
|
|
|
delete operand1_;
|
|
|
|
|
delete operand2_;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-18 02:19:09 +02:00
|
|
|
bool ExpBinary::eval_operand1(ScopeBase*scope, int64_t&val) const
|
|
|
|
|
{
|
|
|
|
|
return operand1_->evaluate(scope, val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ExpBinary::eval_operand2(ScopeBase*scope, int64_t&val) const
|
|
|
|
|
{
|
|
|
|
|
return operand2_->evaluate(scope, val);
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-21 02:03:46 +01:00
|
|
|
ExpUnary::ExpUnary(Expression*op1)
|
|
|
|
|
: operand1_(op1)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpUnary::~ExpUnary()
|
|
|
|
|
{
|
|
|
|
|
delete operand1_;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-04 02:11:55 +02:00
|
|
|
ExpAggregate::ExpAggregate(std::list<element_t*>*el)
|
|
|
|
|
: elements_(el? el->size() : 0)
|
|
|
|
|
{
|
|
|
|
|
assert(el);
|
|
|
|
|
size_t idx = 0;
|
|
|
|
|
while (! el->empty()) {
|
|
|
|
|
assert(idx < elements_.size());
|
|
|
|
|
elements_[idx++] = el->front();
|
|
|
|
|
el->pop_front();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpAggregate::~ExpAggregate()
|
|
|
|
|
{
|
|
|
|
|
for (size_t idx = 0 ; idx < elements_.size() ; idx += 1)
|
|
|
|
|
delete elements_[idx];
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-02 11:00:59 +01:00
|
|
|
Expression* ExpAggregate::clone() const
|
|
|
|
|
{
|
|
|
|
|
std::list<element_t*>*new_elements = NULL;
|
|
|
|
|
|
|
|
|
|
if(!elements_.empty()) {
|
|
|
|
|
new_elements = new std::list<element_t*>();
|
|
|
|
|
for(std::vector<element_t*>::const_iterator it = elements_.begin();
|
|
|
|
|
it != elements_.end(); ++it) {
|
|
|
|
|
new_elements->push_back(new element_t(**it));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert(aggregate_.empty()); // cloning should not happen after elab
|
|
|
|
|
|
|
|
|
|
return new ExpAggregate(new_elements);
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-04 02:11:55 +02:00
|
|
|
ExpAggregate::choice_t::choice_t(Expression*exp)
|
|
|
|
|
: expr_(exp)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpAggregate::choice_t::choice_t()
|
2012-04-01 01:29:40 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpAggregate::choice_t::choice_t(prange_t*rang)
|
|
|
|
|
: range_(rang)
|
2011-09-04 02:11:55 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-02 11:00:59 +01:00
|
|
|
ExpAggregate::choice_t::choice_t(const choice_t&other)
|
|
|
|
|
{
|
|
|
|
|
if(Expression*e = other.expr_.get())
|
|
|
|
|
expr_.reset(e->clone());
|
|
|
|
|
|
|
|
|
|
if(other.range_.get())
|
|
|
|
|
range_.reset(new prange_t(*other.range_.get()));
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-04 02:11:55 +02:00
|
|
|
ExpAggregate::choice_t::~choice_t()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ExpAggregate::choice_t::others() const
|
|
|
|
|
{
|
2012-04-01 01:29:40 +02:00
|
|
|
return expr_.get() == 0 && range_.get() == 0;
|
2011-09-04 02:11:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Expression*ExpAggregate::choice_t::simple_expression(bool detach_flag)
|
|
|
|
|
{
|
2012-04-01 01:29:40 +02:00
|
|
|
Expression*res = detach_flag? expr_.release() : expr_.get();
|
2011-09-04 02:11:55 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-22 20:42:16 +02:00
|
|
|
prange_t*ExpAggregate::choice_t::range_expressions(void)
|
|
|
|
|
{
|
|
|
|
|
return range_.get();
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-04 02:11:55 +02:00
|
|
|
ExpAggregate::element_t::element_t(list<choice_t*>*fields, Expression*val)
|
|
|
|
|
: fields_(fields? fields->size() : 0), val_(val)
|
|
|
|
|
{
|
|
|
|
|
if (fields) {
|
2011-10-12 20:51:00 +02:00
|
|
|
size_t idx = 0;
|
2011-09-04 02:11:55 +02:00
|
|
|
while (! fields->empty()) {
|
|
|
|
|
assert(idx < fields_.size());
|
|
|
|
|
fields_[idx++] = fields->front();
|
|
|
|
|
fields->pop_front();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-02 11:00:59 +01:00
|
|
|
ExpAggregate::element_t::element_t(const ExpAggregate::element_t&other)
|
|
|
|
|
{
|
|
|
|
|
fields_.reserve(other.fields_.size());
|
|
|
|
|
|
|
|
|
|
for(std::vector<choice_t*>::const_iterator it = other.fields_.begin();
|
|
|
|
|
it != other.fields_.end(); ++it) {
|
|
|
|
|
fields_.push_back(*it);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val_ = other.val_->clone();
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-04 02:11:55 +02:00
|
|
|
ExpAggregate::element_t::~element_t()
|
|
|
|
|
{
|
|
|
|
|
for (size_t idx = 0 ; idx < fields_.size() ; idx += 1)
|
|
|
|
|
delete fields_[idx];
|
|
|
|
|
|
|
|
|
|
delete val_;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-20 02:47:30 +01:00
|
|
|
ExpArithmetic::ExpArithmetic(ExpArithmetic::fun_t op, Expression*op1, Expression*op2)
|
|
|
|
|
: ExpBinary(op1, op2), fun_(op)
|
|
|
|
|
{
|
2012-04-22 20:42:16 +02:00
|
|
|
// The xCONCAT type is not actually used.
|
|
|
|
|
assert(op != xCONCAT);
|
2011-02-20 02:47:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpArithmetic::~ExpArithmetic()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-05 22:58:54 +02:00
|
|
|
/*
|
|
|
|
|
* Store bitstrings in little-endian order.
|
|
|
|
|
*/
|
|
|
|
|
ExpBitstring::ExpBitstring(const char*val)
|
|
|
|
|
: value_(strlen(val))
|
|
|
|
|
{
|
|
|
|
|
for (size_t idx = value_.size() ; idx > 0 ; idx -= 1)
|
|
|
|
|
value_[idx-1] = *val++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpBitstring::~ExpBitstring()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-09 01:40:35 +02:00
|
|
|
ExpCharacter::ExpCharacter(char val)
|
|
|
|
|
: value_(val)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpCharacter::~ExpCharacter()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-22 20:42:16 +02:00
|
|
|
ExpConcat::ExpConcat(Expression*op1, Expression*op2)
|
|
|
|
|
: operand1_(op1), operand2_(op2)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpConcat::~ExpConcat()
|
|
|
|
|
{
|
|
|
|
|
delete operand1_;
|
|
|
|
|
delete operand2_;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-24 18:23:50 +01:00
|
|
|
ExpConditional::ExpConditional(Expression*co, list<Expression*>*tru,
|
|
|
|
|
list<ExpConditional::else_t*>*fal)
|
2011-06-12 19:51:31 +02:00
|
|
|
: cond_(co)
|
|
|
|
|
{
|
|
|
|
|
if (tru) true_clause_.splice(true_clause_.end(), *tru);
|
2012-03-24 18:23:50 +01:00
|
|
|
if (fal) else_clause_.splice(else_clause_.end(), *fal);
|
2011-06-12 19:51:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpConditional::~ExpConditional()
|
|
|
|
|
{
|
|
|
|
|
delete cond_;
|
|
|
|
|
while (! true_clause_.empty()) {
|
|
|
|
|
Expression*tmp = true_clause_.front();
|
|
|
|
|
true_clause_.pop_front();
|
|
|
|
|
delete tmp;
|
|
|
|
|
}
|
|
|
|
|
while (! else_clause_.empty()) {
|
2012-03-24 18:23:50 +01:00
|
|
|
else_t*tmp = else_clause_.front();
|
2011-06-12 19:51:31 +02:00
|
|
|
else_clause_.pop_front();
|
|
|
|
|
delete tmp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-02 11:00:59 +01:00
|
|
|
Expression*ExpConditional::clone() const
|
|
|
|
|
{
|
|
|
|
|
std::list<Expression*>*new_true_clause = NULL;
|
|
|
|
|
if(!true_clause_.empty()) {
|
|
|
|
|
new_true_clause = new std::list<Expression*>();
|
|
|
|
|
|
|
|
|
|
for(std::list<Expression*>::const_iterator it = true_clause_.begin();
|
|
|
|
|
it != true_clause_.end(); ++it) {
|
|
|
|
|
new_true_clause->push_back((*it)->clone());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::list<else_t*>*new_else_clause = NULL;
|
|
|
|
|
if(!else_clause_.empty()) {
|
|
|
|
|
new_else_clause = new std::list<else_t*>();
|
|
|
|
|
|
|
|
|
|
for(std::list<else_t*>::const_iterator it = else_clause_.begin();
|
|
|
|
|
it != else_clause_.end(); ++it) {
|
|
|
|
|
new_else_clause->push_back(new else_t(**it));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new ExpConditional(cond_->clone(), new_true_clause, new_else_clause);
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-24 18:23:50 +01:00
|
|
|
ExpConditional::else_t::else_t(Expression*cond, std::list<Expression*>*tru)
|
|
|
|
|
: cond_(cond)
|
|
|
|
|
{
|
|
|
|
|
if (tru) true_clause_.splice(true_clause_.end(), *tru);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-02 11:00:59 +01:00
|
|
|
ExpConditional::else_t::else_t(const else_t&other)
|
2015-05-18 17:32:09 +02:00
|
|
|
: LineInfo(other)
|
2015-02-02 11:00:59 +01:00
|
|
|
{
|
|
|
|
|
cond_ = other.cond_->clone();
|
|
|
|
|
for(std::list<Expression*>::const_iterator it = other.true_clause_.begin();
|
|
|
|
|
it != other.true_clause_.end(); ++it) {
|
|
|
|
|
true_clause_.push_back((*it)->clone());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-24 18:23:50 +01:00
|
|
|
ExpConditional::else_t::~else_t()
|
|
|
|
|
{
|
|
|
|
|
delete cond_;
|
|
|
|
|
while (! true_clause_.empty()) {
|
|
|
|
|
Expression*tmp = true_clause_.front();
|
|
|
|
|
true_clause_.pop_front();
|
|
|
|
|
delete tmp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-05-28 19:49:33 +02:00
|
|
|
ExpEdge::ExpEdge(ExpEdge::fun_t typ, Expression*op)
|
|
|
|
|
: ExpUnary(op), fun_(typ)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpEdge::~ExpEdge()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-29 00:30:45 +02:00
|
|
|
ExpFunc::ExpFunc(perm_string nn)
|
2013-06-08 00:47:14 +02:00
|
|
|
: name_(nn), def_(0)
|
2011-08-29 00:30:45 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-19 04:31:28 +02:00
|
|
|
ExpFunc::ExpFunc(perm_string nn, list<Expression*>*args)
|
2013-06-08 00:47:14 +02:00
|
|
|
: name_(nn), argv_(args->size()), def_(0)
|
2011-08-29 00:30:45 +02:00
|
|
|
{
|
2011-09-19 04:31:28 +02:00
|
|
|
for (size_t idx = 0; idx < argv_.size() ; idx += 1) {
|
|
|
|
|
ivl_assert(*this, !args->empty());
|
|
|
|
|
argv_[idx] = args->front();
|
|
|
|
|
args->pop_front();
|
|
|
|
|
}
|
|
|
|
|
ivl_assert(*this, args->empty());
|
2011-08-29 00:30:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpFunc::~ExpFunc()
|
|
|
|
|
{
|
|
|
|
|
for (size_t idx = 0 ; idx < argv_.size() ; idx += 1)
|
|
|
|
|
delete argv_[idx];
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-02 11:00:59 +01:00
|
|
|
Expression*ExpFunc::clone() const {
|
|
|
|
|
std::list<Expression*>*new_args = NULL;
|
|
|
|
|
|
|
|
|
|
if(!argv_.empty()) {
|
|
|
|
|
new_args = new std::list<Expression*>();
|
|
|
|
|
for(std::vector<Expression*>::const_iterator it = argv_.begin();
|
|
|
|
|
it != argv_.end(); ++it)
|
|
|
|
|
new_args->push_back((*it)->clone());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpFunc*f = new ExpFunc(name_, new_args);
|
|
|
|
|
f->def_ = def_;
|
|
|
|
|
|
|
|
|
|
return f;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-22 17:04:23 +01:00
|
|
|
const VType* ExpFunc::func_ret_type() const
|
|
|
|
|
{
|
2015-01-22 17:17:02 +01:00
|
|
|
return def_ ? def_->peek_return_type() : NULL;
|
2015-01-22 17:04:23 +01:00
|
|
|
}
|
|
|
|
|
|
2011-02-14 04:01:21 +01:00
|
|
|
ExpInteger::ExpInteger(int64_t val)
|
|
|
|
|
: value_(val)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpInteger::~ExpInteger()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-18 02:19:09 +02:00
|
|
|
bool ExpInteger::evaluate(ScopeBase*, int64_t&val) const
|
2011-02-14 04:01:21 +01:00
|
|
|
{
|
|
|
|
|
val = value_;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2014-08-06 15:00:35 +02:00
|
|
|
|
|
|
|
|
ExpReal::ExpReal(double val)
|
|
|
|
|
: value_(val)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpReal::~ExpReal()
|
|
|
|
|
{
|
|
|
|
|
}
|
2011-02-14 04:01:21 +01:00
|
|
|
|
2011-01-30 02:27:30 +01:00
|
|
|
ExpLogical::ExpLogical(ExpLogical::fun_t ty, Expression*op1, Expression*op2)
|
2011-02-20 02:47:30 +01:00
|
|
|
: ExpBinary(op1, op2), fun_(ty)
|
2011-01-30 02:27:30 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpLogical::~ExpLogical()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpName::ExpName(perm_string nn)
|
2011-08-22 01:52:18 +02:00
|
|
|
: name_(nn), index_(0), lsb_(0)
|
2011-03-27 21:01:58 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-19 04:31:28 +02:00
|
|
|
ExpName::ExpName(perm_string nn, list<Expression*>*indices)
|
|
|
|
|
: name_(nn), index_(0), lsb_(0)
|
2011-08-22 01:52:18 +02:00
|
|
|
{
|
2011-09-19 04:31:28 +02:00
|
|
|
/* For now, assume a single index. */
|
|
|
|
|
ivl_assert(*this, indices->size() == 1);
|
|
|
|
|
|
|
|
|
|
index_ = indices->front();
|
|
|
|
|
indices->pop_front();
|
2011-08-22 01:52:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpName::ExpName(perm_string nn, Expression*msb, Expression*lsb)
|
|
|
|
|
: name_(nn), index_(msb), lsb_(lsb)
|
2011-01-30 02:27:30 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-01 01:29:40 +02:00
|
|
|
ExpName::ExpName(ExpName*prefix, perm_string nn)
|
|
|
|
|
: prefix_(prefix), name_(nn), index_(0), lsb_(0)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpName::ExpName(ExpName*prefix, perm_string nn, Expression*msb, Expression*lsb)
|
|
|
|
|
: prefix_(prefix), name_(nn), index_(msb), lsb_(lsb)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-30 02:27:30 +01:00
|
|
|
ExpName::~ExpName()
|
|
|
|
|
{
|
2011-03-27 21:01:58 +02:00
|
|
|
delete index_;
|
2011-01-30 02:27:30 +01:00
|
|
|
}
|
2011-02-21 02:03:46 +01:00
|
|
|
|
2012-09-01 21:05:40 +02:00
|
|
|
bool ExpName::symbolic_compare(const Expression*that) const
|
|
|
|
|
{
|
|
|
|
|
const ExpName*that_name = dynamic_cast<const ExpName*> (that);
|
|
|
|
|
if (that_name == 0)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (name_ != that_name->name_)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (that_name->index_ && !index_)
|
|
|
|
|
return false;
|
|
|
|
|
if (index_ && !that_name->index_)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (index_) {
|
|
|
|
|
assert(that_name->index_);
|
|
|
|
|
return index_->symbolic_compare(that_name->index_);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExpName::set_range(Expression*msb, Expression*lsb)
|
|
|
|
|
{
|
|
|
|
|
assert(index_==0);
|
|
|
|
|
index_ = msb;
|
|
|
|
|
assert(lsb_==0);
|
|
|
|
|
lsb_ = lsb;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-24 16:06:55 +01:00
|
|
|
int ExpName::index_t::emit(ostream&out, Entity*ent, ScopeBase*scope)
|
|
|
|
|
{
|
|
|
|
|
int errors = 0;
|
|
|
|
|
|
|
|
|
|
out << "(";
|
|
|
|
|
|
|
|
|
|
if(idx_ && size_) {
|
|
|
|
|
errors += idx_->emit(out, ent, scope);
|
|
|
|
|
out << "*";
|
|
|
|
|
errors += size_->emit(out, ent, scope);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(offset_) {
|
|
|
|
|
if(idx_ && size_)
|
|
|
|
|
out << "+";
|
|
|
|
|
errors += offset_->emit(out, ent, scope);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
out << ")";
|
|
|
|
|
return errors;
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-09 01:40:35 +02:00
|
|
|
ExpRelation::ExpRelation(ExpRelation::fun_t ty, Expression*op1, Expression*op2)
|
|
|
|
|
: ExpBinary(op1, op2), fun_(ty)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpRelation::~ExpRelation()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-10 14:11:56 +01:00
|
|
|
ExpShift::ExpShift(ExpShift::shift_t op, Expression*op1, Expression*op2)
|
|
|
|
|
: ExpBinary(op1, op2), shift_(op)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-05 12:03:30 +02:00
|
|
|
ExpString::ExpString(const char* value)
|
|
|
|
|
: value_(strlen(value))
|
|
|
|
|
{
|
2011-08-18 05:53:49 +02:00
|
|
|
for(size_t idx = 0; idx < value_.size(); idx += 1)
|
|
|
|
|
value_[idx] = value[idx];
|
2011-07-05 12:03:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpString::~ExpString()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-21 02:03:46 +01:00
|
|
|
ExpUAbs::ExpUAbs(Expression*op1)
|
|
|
|
|
: ExpUnary(op1)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpUAbs::~ExpUAbs()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpUNot::ExpUNot(Expression*op1)
|
|
|
|
|
: ExpUnary(op1)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpUNot::~ExpUNot()
|
|
|
|
|
{
|
|
|
|
|
}
|
2015-01-22 11:26:53 +01:00
|
|
|
|
|
|
|
|
ExpCast::ExpCast(Expression*base, const VType*type) :
|
|
|
|
|
base_(base), type_(type)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpCast::~ExpCast()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-23 12:13:28 +01:00
|
|
|
ExpNew::ExpNew(Expression*size) :
|
|
|
|
|
size_(size)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpNew::~ExpNew()
|
|
|
|
|
{
|
|
|
|
|
delete size_;
|
|
|
|
|
}
|