/* * Copyright (c) 2000-2008 Stephen Williams (steve@icarus.com) * * 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 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ # include "config.h" # include "PExpr.h" # include "compiler.h" # include "util.h" # include "netmisc.h" # include # include # include "ivl_assert.h" NetExpr*PExpr::elaborate_pexpr(Design*des, NetScope*sc) const { cerr << get_fileline() << ": error: invalid parameter expression: " << *this << endl; des->errors += 1; return 0; } /* * Binary operators have sub-expressions that must be elaborated as * parameter expressions. If either of them fail, then give up. Once * they are taken care of, make the base object just as in any other * expression. */ NetExpr*PEBinary::elaborate_pexpr (Design*des, NetScope*scope) const { NetExpr*lp = left_->elaborate_pexpr(des, scope); NetExpr*rp = right_->elaborate_pexpr(des, scope); if ((lp == 0) || (rp == 0)) { delete lp; delete rp; return 0; } NetEBinary*tmp = elaborate_expr_base_(des, lp, rp, -2); return tmp; } /* * Event though parameters are not generally sized, parameter * expressions can include concatenation expressions. This requires * that the subexpressions all have well-defined size (in spite of * being in a parameter expression) in order to get a defined * value. The sub-expressions themselves must also be value parameter * expressions. */ NetEConcat* PEConcat::elaborate_pexpr(Design*des, NetScope*scope) const { NetExpr* repeat = 0; /* If there is a repeat expression, then evaluate the constant value and set the repeat count. */ if (repeat_) { repeat = repeat_->elaborate_pexpr(des, scope); if (repeat == 0) { cerr << get_fileline() << ": error: " "concatenation repeat expression cannot be evaluated." << endl; des->errors += 1; return 0; } /* continue on even if the repeat expression doesn't work, as we can find more errors. */ } /* Make the empty concat expression. */ NetEConcat*tmp = new NetEConcat(parms_.count(), repeat); tmp->set_line(*this); /* Elaborate all the operands and attach them to the concat node. Use the elaborate_pexpr method instead of the elaborate_expr method. */ for (unsigned idx = 0 ; idx < parms_.count() ; idx += 1) { assert(parms_[idx]); NetExpr*ex = parms_[idx]->elaborate_pexpr(des, scope); if (ex == 0) continue; ex->set_line(*parms_[idx]); if (dynamic_cast(ex)) { /* If this parameter is a NetEParam, then put off the width check for later. */ } else if (! ex->has_width()) { cerr << ex->get_fileline() << ": error: operand of " << "concatenation has indefinite width: " << *ex << endl; des->errors += 1; delete tmp; return 0; } tmp->set(idx, ex); } return tmp; } NetExpr*PEFNumber::elaborate_pexpr(Design*des, NetScope*scope) const { return elaborate_expr(des, scope, -1, false); } /* * Parameter expressions may reference other parameters, but only in * the current scope. Preserve the parameter reference in the * parameter expression I'm generating, instead of evaluating it now, * because the referenced parameter may yet be overridden. */ NetExpr*PEIdent::elaborate_pexpr(Design*des, NetScope*scope) const { pform_name_t path = path_; name_component_t name_tail = path_.back(); path.pop_back(); NetScope*pscope = scope; if (path_.size() > 0) { list tmp = eval_scope_path(des, scope, path); pscope = des->find_scope(scope, tmp); } const NetExpr*ex_msb; const NetExpr*ex_lsb; const NetExpr*ex = 0; // Look up the parameter name in the current scope. If the // name is not found in the pscope, look in containing scopes, // but do not go outside the containing module instance. for (;;) { ex = pscope->get_parameter(name_tail.name, ex_msb, ex_lsb); if (ex != 0) break; if (pscope->type() == NetScope::MODULE) break; pscope = pscope->parent(); ivl_assert(*this, pscope); } if (ex == 0) { cerr << get_fileline() << ": error: identifier ``" << name_tail.name << "'' is not a parameter in "<< scope_path(scope)<< "." << endl; des->errors += 1; return 0; } NetExpr*res = new NetEParam(des, pscope, name_tail.name); res->set_line(*this); assert(res); index_component_t::ctype_t use_sel = index_component_t::SEL_NONE; if (!name_tail.index.empty()) use_sel = name_tail.index.back().sel; switch (use_sel) { case index_component_t::SEL_NONE: break; default: case index_component_t::SEL_PART: cerr << get_fileline() << ": sorry: Cannot part select " "bits of parameters." << endl; des->errors += 1; delete res; return 0; case index_component_t::SEL_BIT: /* We have here a bit select. Insert a NetESelect node to handle it. */ NetExpr*tmp = name_tail.index.back().msb->elaborate_pexpr(des, scope); if (tmp == 0) { delete res; return 0; } if (debug_elaborate) cerr << get_fileline() << ": debug: " << "Bit select [" << *tmp << "]" << " in parameter expression." << endl; res = new NetESelect(res, tmp, 1); res->set_line(*this); break; } return res; } /* * Simple numbers can be elaborated by the elaborate_expr method. */ NetExpr*PENumber::elaborate_pexpr(Design*des, NetScope*sc) const { return elaborate_expr(des, sc, -1, false); } NetEConst* PEString::elaborate_pexpr(Design*des, NetScope*scope) const { return elaborate_expr(des, scope, -1, false); } NetETernary* PETernary::elaborate_pexpr(Design*des, NetScope*scope) const { NetExpr*c = expr_->elaborate_pexpr(des, scope); NetExpr*t = tru_->elaborate_pexpr(des, scope); NetExpr*f = fal_->elaborate_pexpr(des, scope); if (c == 0 || t == 0 || f == 0) return 0; NetETernary*tmp = new NetETernary(c, t, f); tmp->set_line(*this); return tmp; } NetExpr*PEUnary::elaborate_pexpr (Design*des, NetScope*scope) const { NetExpr*ip = expr_->elaborate_pexpr(des, scope); if (ip == 0) return 0; /* Should we evaluate expressions ahead of time, * just like in PEBinary::elaborate_expr() ? */ NetEUnary*tmp; switch (op_) { default: tmp = new NetEUnary(op_, ip); tmp->set_line(*this); break; case '~': tmp = new NetEUBits(op_, ip); tmp->set_line(*this); break; case '!': // Logical NOT case '&': // Reduction AND case '|': // Reduction OR case '^': // Reduction XOR case 'A': // Reduction NAND (~&) case 'N': // Reduction NOR (~|) case 'X': // Reduction NXOR (~^) tmp = new NetEUReduce(op_, ip); tmp->set_line(*this); break; } return tmp; }