Go to the documentation of this file.
41 #ifndef __CPU_O3_DEP_GRAPH_HH__
42 #define __CPU_O3_DEP_GRAPH_HH__
53 template <
class DynInstPtr>
76 template <
class DynInstPtr>
90 void resize(
int num_entries);
144 template <
class DynInstPtr>
149 template <
class DynInstPtr>
153 numEntries = num_entries;
154 dependGraph.resize(numEntries);
157 template <
class DynInstPtr>
165 for (
int i = 0;
i < numEntries; ++
i) {
166 curr = dependGraph[
i].
next;
178 if (dependGraph[
i].inst) {
179 dependGraph[
i].
inst = NULL;
182 dependGraph[
i].next = NULL;
186 template <
class DynInstPtr>
196 new_entry->
next = dependGraph[idx].next;
197 new_entry->
inst = new_inst;
200 dependGraph[idx].next = new_entry;
206 template <
class DynInstPtr>
225 while (curr->
inst != inst_to_remove) {
230 assert(curr != NULL);
244 template <
class DynInstPtr>
249 node = dependGraph[idx].
next;
253 dependGraph[idx].next = node->
next;
261 template <
class DynInstPtr>
265 for (
int i = 0;
i < numEntries; ++
i) {
272 template <
class DynInstPtr>
278 for (
int i = 0;
i < numEntries; ++
i)
280 curr = &dependGraph[
i];
283 cprintf(
"dependGraph[%i]: producer: %s [sn:%lli] consumer: ",
286 cprintf(
"dependGraph[%i]: No producer. consumer: ",
i);
289 while (curr->
next != NULL) {
298 cprintf(
"memAllocCounter: %i\n", memAllocCounter);
304 #endif // __CPU_O3_DEP_GRAPH_HH__
void insert(RegIndex idx, const DynInstPtr &new_inst)
Inserts an instruction to be dependent on the given index.
std::vector< DepEntry > dependGraph
Array of linked lists.
void cprintf(const char *format, const Args &...args)
void setInst(RegIndex idx, const DynInstPtr &new_inst)
Sets the producing instruction of a given register.
Array of linked list that maintains the dependencies between producing instructions and consuming ins...
void clearInst(RegIndex idx)
Clears the producing instruction.
InstSeqNum seqNum
The sequence number of the instruction.
const PCStateBase & pcState() const override
Read the PC state of this instruction.
DynInstPtr pop(RegIndex idx)
Removes and returns the newest dependent of a specific register.
void reset()
Clears all of the linked lists.
void remove(RegIndex idx, const DynInstPtr &inst_to_remove)
Removes an instruction from a single linked list.
void resize(int num_entries)
Resize the dependency graph to have num_entries registers.
int numEntries
Number of linked lists; identical to the number of registers.
bool empty(RegIndex idx) const
Checks if there are any dependents on a specific register.
void dump()
Debugging function to dump out the dependency graph.
DependencyGraph()
Default construction.
bool empty() const
Checks if the entire dependency graph is empty.
DependencyEntry< DynInstPtr > * next
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
DependencyEntry< DynInstPtr > DepEntry
Generated on Wed May 4 2022 12:13:53 for gem5 by doxygen 1.8.17