Skip to content

Commit

Permalink
peepopt: handle empty src-attribute in shiftadd
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippe Sauter committed Jan 31, 2024
1 parent 7f8b6dd commit cbdf9b2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions passes/pmgen/peepopt_shiftadd.pmg
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,19 @@ code
new_a.append(old_a);
} else {
// data >> (...+c) transformed to data[MAX:c] >> (...)
if(offset < GetSize(old_a)) // some signal bits left?
if(offset < GetSize(old_a)) { // some signal bits left?
new_a.append(old_a.extract_end(offset));
else {
} else {
// warn user in case data is empty (no bits left)
std::string location = shift->get_src_attribute();
if (location.empty())
location = shift->name.str();
if(shift->type.in($shiftx))
log_warning("at %s: result of indexed part-selection is always constant (selecting from '%s' with index '%s + %d')\n", \
shift->get_src_attribute().c_str(), log_signal(old_a), log_signal(var_signal), offset);
location.c_str(), log_signal(old_a), log_signal(var_signal), offset);
else
log_warning("at %s: result of shift operation is always constant (shifting '%s' by '%s + %d'-bits)\n", \
shift->get_src_attribute().c_str(), log_signal(old_a), log_signal(var_signal), offset);
location.c_str(), log_signal(old_a), log_signal(var_signal), offset);
}
}

Expand Down

0 comments on commit cbdf9b2

Please sign in to comment.