Project

General

Profile

Actions

Task #6368

closed

Ranged assignment merge

Added by Mikhail Lebedev over 8 years ago. Updated about 8 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
-
Target version:
Start date:
10/26/2015
Due date:
% Done:

0%

Estimated time:
Detected in build:
svn
Published in build:
0.2.1

Description

Multiple sequential ranged assignments are needed to be merged into a single assignment.
For example (b10 itc design):

v_out : out bit_vector(3 downto 0)
...
v_out(0) <= voto0 ;
v_out(1) <= voto1 ;
v_out(2) <= voto2 ;
v_out(3) <= voto3 ;

This can be converted into the concatenation of bits:
v_out <= voto3 & voto2 & voto1 & voto0;

Something like:
v_out(0) <= voto0 ;
v_out(3) <= voto3 ;
is converted into:
v_out <= voto3 & v_out(2 downto 1) & voto0;

etc.

Actions #1

Updated by Sergey Smolov over 8 years ago

  • Category set to 127
  • Status changed from New to Open
  • Target version set to 0.1
Actions #2

Updated by Sergey Smolov over 8 years ago

  • Status changed from Open to Resolved
  • % Done changed from 0 to 100

Done in r2548.

Note that basic blocks in CGAA model now contain only concurrent (non-blocking) assignments.

Actions #3

Updated by Mikhail Lebedev over 8 years ago

  • Category deleted (127)
  • Status changed from Resolved to Verified
  • Target version deleted (0.1)
  • % Done changed from 100 to 0
Actions #4

Updated by Sergey Smolov over 8 years ago

  • Target version set to 0.1
Actions #5

Updated by Sergey Smolov about 8 years ago

  • Status changed from Verified to Closed
  • Published in build set to 0.2.1
Actions

Also available in: Atom PDF