Review Board 2.0.15


cpu: o3: replace issueLatency with bool pipelined

Review Request #2745 - Created April 20, 2015 and submitted

Information
Nilay Vaish
gem5
default
Reviewers
Default
Changeset 10791:d5f41246ec2e
---------------------------
cpu: o3: replace issueLatency with bool pipelined

Currently, each op class has a parameter issueLat that denotes the cycles after
which another op of the same class can be issued.  As of now, this latency can
either be one cycle (fully pipelined) or same as execution latency of the op
(not at all pipelined).  The fact that issueLat is a parameter of type Cycles
makes one believe that it can be set to any value.  To avoid the confusion, the
parameter is being renamed as 'pipelined' with type boolean.  If set to true,
the op would execute in a fully pipelined fashion. Otherwise, it would execute
in an unpipelined fashion.

   

Issue Summary

1 0 0 1
Review request changed
Updated (April 29, 2015, 8:40 p.m.)

Status: Closed (submitted)