diff options
author | 2024-01-19 16:28:06 +0000 | |
---|---|---|
committer | 2024-01-19 16:28:06 +0000 | |
commit | 9f8df195b7ff2ce47eec4e9b193ff3214ebed19c (patch) | |
tree | 8dc68a588a6ee5c6e00c9e5bed519a9c6774d4c5 /compiler/optimizing/graph_checker.h | |
parent | 7c1dd6e2d1893f288214413c4b97273980f3aa4a (diff) |
Revert^2 "Disable write-barrier elimination pass"
This reverts commit 7c1dd6e2d1893f288214413c4b97273980f3aa4a.
Reason for revert: build breakages, using a different number of temps vs the expected (crashing in https://cs.android.com/android/platform/superproject/main/+/main:art/compiler/optimizing/code_generator_x86_64.cc;l=5488;drc=7c1dd6e2d1893f288214413c4b97273980f3aa4a)
Change-Id: I843c039394dd666776ea5bcb5b10b1f47df12d53
Diffstat (limited to 'compiler/optimizing/graph_checker.h')
-rw-r--r-- | compiler/optimizing/graph_checker.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/optimizing/graph_checker.h b/compiler/optimizing/graph_checker.h index 5704bcec1a..38e2d7ced9 100644 --- a/compiler/optimizing/graph_checker.h +++ b/compiler/optimizing/graph_checker.h @@ -59,8 +59,6 @@ class GraphChecker : public HGraphDelegateVisitor { void VisitPhi(HPhi* phi) override; void VisitArraySet(HArraySet* instruction) override; - void VisitInstanceFieldSet(HInstanceFieldSet* instruction) override; - void VisitStaticFieldSet(HStaticFieldSet* instruction) override; void VisitBinaryOperation(HBinaryOperation* op) override; void VisitBooleanNot(HBooleanNot* instruction) override; void VisitBoundType(HBoundType* instruction) override; @@ -95,9 +93,6 @@ class GraphChecker : public HGraphDelegateVisitor { void HandleLoop(HBasicBlock* loop_header); void HandleBooleanInput(HInstruction* instruction, size_t input_index); - template <typename GetWriteBarrierKind> - void CheckWriteBarrier(HInstruction* instruction, GetWriteBarrierKind&& get_write_barrier_kind); - // Was the last visit of the graph valid? bool IsValid() const { return errors_.empty(); |