diff options
author | 2024-01-22 15:03:42 +0000 | |
---|---|---|
committer | 2024-01-22 16:20:41 +0000 | |
commit | 31b949bc4a76e5c6d00a8e18c346f123b5321a1c (patch) | |
tree | b60da081b30899a7447c63ccad60cc4519de9d00 /compiler/optimizing/graph_checker.h | |
parent | 689cca840843eeced3206da16e475856de953360 (diff) |
Revert^4 "Disable write-barrier elimination pass"
This reverts commit b5b98b9bb31acb2deffb692c50d0fbc71476663b.
Reason for revert: Breaks tests in arm64 + heap poison configurations
Bug: 310755375
Bug: 260843353
Change-Id: I682c74987a365497e0dbe47eba26a9ccf0513561
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(); |