[llvm] [SandboxVec][DAG] Build actual dependencies (PR #111094)
Arthur Eubanks via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 9 08:50:48 PDT 2024
================
@@ -159,8 +168,37 @@ class DependencyGraph {
/// The DAG spans across all instructions in this interval.
Interval<Instruction> DAGInterval;
+ std::unique_ptr<BatchAAResults> BatchAA;
+
+ enum class DependencyType {
+ RAW, ///> Read After Write
+ WAW, ///> Write After Write
+ RAR, ///> Read After Read
----------------
aeubanks wrote:
it looks like the current patch doesn't distinguish between the two. are we planning on distinguishing the two at some point? RAR isn't really a dependency right?
https://github.com/llvm/llvm-project/pull/111094
More information about the llvm-commits
mailing list