|
LLVM 24.0.0git
|
Represent the ILP of the subDAG rooted at a DAG node. More...
#include "llvm/CodeGen/ScheduleDFS.h"
Public Member Functions | |
| ILPValue (unsigned count, unsigned length) | |
| bool | operator< (ILPValue RHS) const |
| bool | operator> (ILPValue RHS) const |
| bool | operator<= (ILPValue RHS) const |
| bool | operator>= (ILPValue RHS) const |
| LLVM_ABI void | print (raw_ostream &OS) const |
| LLVM_ABI void | dump () const |
Public Attributes | |
| unsigned | InstrCount |
| unsigned | Length |
| Length may either correspond to depth or height, depending on direction, and cycles or nodes depending on context. | |
Represent the ILP of the subDAG rooted at a DAG node.
ILPValues summarize the DAG subtree rooted at each node. ILPValues are valid for all nodes regardless of their subtree membership.
When computed using bottom-up DFS, this metric assumes that the DAG is a forest of trees with roots at the bottom of the schedule branching upward.
Definition at line 34 of file ScheduleDFS.h.
Definition at line 40 of file ScheduleDFS.h.
References llvm::count(), InstrCount, and Length.
Referenced by operator<(), operator<=(), operator>(), and operator>=().
| LLVM_DUMP_METHOD void ILPValue::dump | ( | ) | const |
Definition at line 1465 of file ScheduleDAGInstrs.cpp.
References llvm::dbgs(), and LLVM_DUMP_METHOD.
Definition at line 44 of file ScheduleDFS.h.
References ILPValue(), InstrCount, Length, RHS, and uint64_t.
Definition at line 51 of file ScheduleDFS.h.
References ILPValue(), InstrCount, Length, RHS, and uint64_t.
Definition at line 48 of file ScheduleDFS.h.
References ILPValue(), and RHS.
Definition at line 55 of file ScheduleDFS.h.
References ILPValue(), and RHS.
| LLVM_DUMP_METHOD void ILPValue::print | ( | raw_ostream & | OS | ) | const |
Definition at line 1457 of file ScheduleDAGInstrs.cpp.
References llvm::format(), InstrCount, Length, and LLVM_DUMP_METHOD.
Referenced by llvm::operator<<().
| unsigned llvm::ILPValue::InstrCount |
Definition at line 35 of file ScheduleDFS.h.
Referenced by ILPValue(), operator<(), operator<=(), and print().
| unsigned llvm::ILPValue::Length |
Length may either correspond to depth or height, depending on direction, and cycles or nodes depending on context.
Definition at line 38 of file ScheduleDFS.h.
Referenced by ILPValue(), operator<(), operator<=(), and print().