From d6138ef1ea13d07ae555542f8898b30d89e9ac9a Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Wed, 18 Feb 2015 14:48:53 +0000 Subject: Ensure the graph is correctly typed. We used to be forgiving because of HIntConstant(0) also being used for null. We now create a special HNullConstant for such uses. Also, we need to run the dead phi elimination twice during ssa building to ensure the correctness. Change-Id: If479efa3680d3358800aebb1cca692fa2d94f6e5 --- compiler/optimizing/ssa_builder.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'compiler/optimizing/ssa_builder.h') diff --git a/compiler/optimizing/ssa_builder.h b/compiler/optimizing/ssa_builder.h index 2eec87b618..148e9590c3 100644 --- a/compiler/optimizing/ssa_builder.h +++ b/compiler/optimizing/ssa_builder.h @@ -58,6 +58,8 @@ class SsaBuilder : public HGraphVisitor { HInstruction* instruction, Primitive::Type type); + static HInstruction* GetReferenceTypeEquivalent(HInstruction* instruction); + private: // Locals for the current block being visited. HEnvironment* current_locals_; -- cgit v1.2.3-59-g8ed1b