[llvm] [SandboxVec][DAG] Build actual dependencies (PR #111094)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 8 16:39:52 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
----------------
vporpo wrote:
The reason I am using RAW and not WBR is because it's standard dependency terminology. I agree that WBR is easier to process, but let's stick to what's expected.
Yeah, these uppercase ones need to go. I will update them.
https://github.com/llvm/llvm-project/pull/111094
More information about the llvm-commits
mailing list