diff options
-rw-r--r-- | compiler/optimizing/graph_checker.cc | 24 | ||||
-rw-r--r-- | compiler/optimizing/graph_checker.h | 4 | ||||
-rw-r--r-- | compiler/optimizing/reference_type_propagation.cc | 9 | ||||
-rw-r--r-- | compiler/optimizing/ssa_builder.cc | 8 | ||||
-rw-r--r-- | runtime/java_vm_ext.cc | 5 | ||||
-rw-r--r-- | test/519-bound-load-class/expected.txt | 0 | ||||
-rw-r--r-- | test/519-bound-load-class/info.txt | 3 | ||||
-rw-r--r-- | test/519-bound-load-class/src/Main.java | 24 | ||||
-rw-r--r-- | test/520-equivalent-phi/expected.txt | 0 | ||||
-rw-r--r-- | test/520-equivalent-phi/info.txt | 2 | ||||
-rw-r--r-- | test/520-equivalent-phi/smali/Equivalent.smali | 35 | ||||
-rw-r--r-- | test/520-equivalent-phi/src/Main.java | 30 |
12 files changed, 140 insertions, 4 deletions
diff --git a/compiler/optimizing/graph_checker.cc b/compiler/optimizing/graph_checker.cc index fd28f0b83f..44c4101369 100644 --- a/compiler/optimizing/graph_checker.cc +++ b/compiler/optimizing/graph_checker.cc @@ -253,6 +253,30 @@ void GraphChecker::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) { } } +void GraphChecker::VisitCheckCast(HCheckCast* check) { + VisitInstruction(check); + HInstruction* input = check->InputAt(1); + if (!input->IsLoadClass()) { + AddError(StringPrintf("%s:%d expects a HLoadClass as second input, not %s:%d.", + check->DebugName(), + check->GetId(), + input->DebugName(), + input->GetId())); + } +} + +void GraphChecker::VisitInstanceOf(HInstanceOf* instruction) { + VisitInstruction(instruction); + HInstruction* input = instruction->InputAt(1); + if (!input->IsLoadClass()) { + AddError(StringPrintf("%s:%d expects a HLoadClass as second input, not %s:%d.", + instruction->DebugName(), + instruction->GetId(), + input->DebugName(), + input->GetId())); + } +} + void SSAChecker::VisitBasicBlock(HBasicBlock* block) { super_type::VisitBasicBlock(block); diff --git a/compiler/optimizing/graph_checker.h b/compiler/optimizing/graph_checker.h index b4314da03b..9284bb77b0 100644 --- a/compiler/optimizing/graph_checker.h +++ b/compiler/optimizing/graph_checker.h @@ -48,6 +48,10 @@ class GraphChecker : public HGraphDelegateVisitor { // Check that the HasBoundsChecks() flag is set for bounds checks. void VisitBoundsCheck(HBoundsCheck* check) OVERRIDE; + // Check that HCheckCast and HInstanceOf have HLoadClass as second input. + void VisitCheckCast(HCheckCast* check) OVERRIDE; + void VisitInstanceOf(HInstanceOf* check) OVERRIDE; + // Was the last visit of the graph valid? bool IsValid() const { return errors_.empty(); diff --git a/compiler/optimizing/reference_type_propagation.cc b/compiler/optimizing/reference_type_propagation.cc index e93e06118c..302366e71a 100644 --- a/compiler/optimizing/reference_type_propagation.cc +++ b/compiler/optimizing/reference_type_propagation.cc @@ -130,6 +130,15 @@ void ReferenceTypePropagation::BoundTypeForIfInstanceOf(HBasicBlock* block) { HBoundType* bound_type = nullptr; HInstruction* obj = instanceOf->InputAt(0); + if (obj->GetReferenceTypeInfo().IsExact() && !obj->IsPhi()) { + // This method is being called while doing a fixed-point calculation + // over phis. Non-phis instruction whose type is already known do + // not need to be bound to another type. + // Not that this also prevents replacing `HLoadClass` with a `HBoundType`. + // `HCheckCast` and `HInstanceOf` expect a `HLoadClass` as a second + // input. + return; + } for (HUseIterator<HInstruction*> it(obj->GetUses()); !it.Done(); it.Advance()) { HInstruction* user = it.Current()->GetUser(); if (instanceOfTrueBlock->Dominates(user->GetBlock())) { diff --git a/compiler/optimizing/ssa_builder.cc b/compiler/optimizing/ssa_builder.cc index 9236f7c585..3814e8f77d 100644 --- a/compiler/optimizing/ssa_builder.cc +++ b/compiler/optimizing/ssa_builder.cc @@ -213,7 +213,13 @@ void SsaBuilder::EquivalentPhisCleanup() { HPhi* phi = it.Current()->AsPhi(); HPhi* next = phi->GetNextEquivalentPhiWithSameType(); if (next != nullptr) { - phi->ReplaceWith(next); + // Make sure we do not replace a live phi with a dead phi. A live phi has been + // handled by the type propagation phase, unlike a dead phi. + if (next->IsLive()) { + phi->ReplaceWith(next); + } else { + next->ReplaceWith(phi); + } DCHECK(next->GetNextEquivalentPhiWithSameType() == nullptr) << "More then one phi equivalent with type " << phi->GetType() << " found for phi" << phi->GetId(); diff --git a/runtime/java_vm_ext.cc b/runtime/java_vm_ext.cc index eb9c32d7ad..f1deacf39a 100644 --- a/runtime/java_vm_ext.cc +++ b/runtime/java_vm_ext.cc @@ -132,6 +132,8 @@ class SharedLibrary { } void* FindSymbol(const std::string& symbol_name) { + CHECK(!NeedsNativeBridge()); + return dlsym(handle_, symbol_name.c_str()); } @@ -234,9 +236,6 @@ class Libraries { fn = library->FindSymbol(jni_long_name); } } - if (fn == nullptr) { - fn = library->FindSymbol(jni_long_name); - } if (fn != nullptr) { VLOG(jni) << "[Found native code for " << PrettyMethod(m) << " in \"" << library->GetPath() << "\"]"; diff --git a/test/519-bound-load-class/expected.txt b/test/519-bound-load-class/expected.txt new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/test/519-bound-load-class/expected.txt diff --git a/test/519-bound-load-class/info.txt b/test/519-bound-load-class/info.txt new file mode 100644 index 0000000000..57639621e4 --- /dev/null +++ b/test/519-bound-load-class/info.txt @@ -0,0 +1,3 @@ +Regression test for the optimizing compiler that +used to crash when a `HCheckCast` did not have a `HLoadClass` +as second input. diff --git a/test/519-bound-load-class/src/Main.java b/test/519-bound-load-class/src/Main.java new file mode 100644 index 0000000000..41bb951cfb --- /dev/null +++ b/test/519-bound-load-class/src/Main.java @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +public class Main { + public static void main(String[] args) { + Object o = Main.class; + if (o instanceof Main) { + System.out.println((Main)o); + } + } +} diff --git a/test/520-equivalent-phi/expected.txt b/test/520-equivalent-phi/expected.txt new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/test/520-equivalent-phi/expected.txt diff --git a/test/520-equivalent-phi/info.txt b/test/520-equivalent-phi/info.txt new file mode 100644 index 0000000000..b895e91f9d --- /dev/null +++ b/test/520-equivalent-phi/info.txt @@ -0,0 +1,2 @@ +Regression test for the SSA building of the optimizing +compiler. See comment in smali file. diff --git a/test/520-equivalent-phi/smali/Equivalent.smali b/test/520-equivalent-phi/smali/Equivalent.smali new file mode 100644 index 0000000000..fb4b756042 --- /dev/null +++ b/test/520-equivalent-phi/smali/Equivalent.smali @@ -0,0 +1,35 @@ +# Copyright (C) 2015 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +.class public LEquivalent; + +.super Ljava/lang/Object; + +.method public static method([I)V + .registers 3 + const/4 v0, 0 + if-eq p0, v0, :first_if + move-object v0, p0 + :first_if + if-eqz v0, :second_if + # Having this move-object used to confuse the type propagation + # phase of the optimizing compiler: the phase propagates types + # based on uses, but a move-object disappears after SSA, leaving + # the compiler with a reference equivalent that has no use. So + # we would consider the phi equivalent reference of v0, as dead, + # even though it is the one that has the correct type. + move-object v1, v0 + :second_if + return-void +.end method diff --git a/test/520-equivalent-phi/src/Main.java b/test/520-equivalent-phi/src/Main.java new file mode 100644 index 0000000000..96608bdca6 --- /dev/null +++ b/test/520-equivalent-phi/src/Main.java @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import java.lang.reflect.Method; + +public class Main { + // Workaround for b/18051191. + class Inner {} + + public static void main(String[] args) throws Exception { + Class<?> c = Class.forName("Equivalent"); + Method m = c.getMethod("method", int[].class); + int[] array = new int[7]; + Object[] arguments = { array }; + m.invoke(null, arguments); + } +} |