# Copyright (C) 2018 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 LMain2; .super Ljava/lang/Object; .source "Main2.java" # direct methods .method constructor ()V .registers 1 .prologue .line 17 invoke-direct {p0}, Ljava/lang/Object;->()V return-void .end method # Elementary test negating a boolean. Verifies that blocks are merged and # empty branches removed. ## CHECK-START: boolean Main2.BooleanNot(boolean) select_generator (before) ## CHECK-DAG: <> ParameterValue ## CHECK-DAG: <> IntConstant 0 ## CHECK-DAG: <> IntConstant 1 ## CHECK-DAG: If [<>] ## CHECK-DAG: <> Phi [<>,<>] ## CHECK-DAG: Return [<>] ## CHECK-START: boolean Main2.BooleanNot(boolean) select_generator (before) ## CHECK: Goto ## CHECK: Goto ## CHECK: Goto ## CHECK-NOT: Goto ## CHECK-START: boolean Main2.BooleanNot(boolean) select_generator (after) ## CHECK-DAG: <> ParameterValue ## CHECK-DAG: <> IntConstant 0 ## CHECK-DAG: <> IntConstant 1 ## CHECK-DAG: <> Select [<>,<>,<>] ## CHECK-DAG: Return [<>] ## CHECK-START: boolean Main2.BooleanNot(boolean) select_generator (after) ## CHECK-NOT: If ## CHECK-NOT: Phi ## CHECK-START: boolean Main2.BooleanNot(boolean) select_generator (after) ## CHECK: Goto ## CHECK-NOT: Goto # The original java source of this method: # # return !x; # .method public static BooleanNot(Z)Z .registers 2 .param p0, "x" # Z .prologue .line 70 if-nez p0, :cond_4 const/4 v0, 0x1 :goto_3 return v0 :cond_4 const/4 v0, 0x0 goto :goto_3 .end method # Program which further uses negated conditions. # Note that Phis are discovered retrospectively. ## CHECK-START: boolean Main2.ValuesOrdered(int, int, int) select_generator (before) ## CHECK-DAG: <> ParameterValue ## CHECK-DAG: <> ParameterValue ## CHECK-DAG: <> ParameterValue ## CHECK-DAG: <> IntConstant 0 ## CHECK-DAG: <> IntConstant 1 ## CHECK-DAG: <> GreaterThan [<>,<>] ## CHECK-DAG: If [<>] ## CHECK-DAG: <> GreaterThan [<>,<>] ## CHECK-DAG: If [<>] ## CHECK-DAG: <> NotEqual [<>,<>] ## CHECK-DAG: If [<>] ## CHECK-DAG: Return [<>] ## CHECK-DAG: <> Phi [<>,<>] ## CHECK-DAG: <> Phi [<>,<>] ## CHECK-DAG: <> Phi [<>,<>] ## CHECK-START: boolean Main2.ValuesOrdered(int, int, int) select_generator (after) ## CHECK-DAG: <> ParameterValue ## CHECK-DAG: <> ParameterValue ## CHECK-DAG: <> ParameterValue ## CHECK-DAG: <> IntConstant 0 ## CHECK-DAG: <> IntConstant 1 ## CHECK-DAG: <> GreaterThan [<>,<>] ## CHECK-DAG: <> Select [<>,<>,<>] ## CHECK-DAG: <> GreaterThan [<>,<>] ## CHECK-DAG: <> Select [<>,<>,<>] ## CHECK-DAG: <> NotEqual [<>,<>] ## CHECK-DAG: <> Select [<>,<>,<>] ## CHECK-DAG: Return [<>] # The original java source of this method: # # return (x <= y) == (y <= z); # .method public static ValuesOrdered(III)Z .registers 7 .param p0, "x" # I .param p1, "y" # I .param p2, "z" # I .prologue const/4 v0, 0x1 const/4 v1, 0x0 .line 166 if-gt p0, p1, :cond_b move v3, v0 :goto_5 if-gt p1, p2, :cond_d move v2, v0 :goto_8 if-ne v3, v2, :cond_f :goto_a return v0 :cond_b move v3, v1 goto :goto_5 :cond_d move v2, v1 goto :goto_8 :cond_f move v0, v1 goto :goto_a .end method ## CHECK-START: int Main2.NegatedCondition(boolean) select_generator (before) ## CHECK-DAG: <> ParameterValue ## CHECK-DAG: <> IntConstant 42 ## CHECK-DAG: <> IntConstant 43 ## CHECK-DAG: If [<>] ## CHECK-DAG: <> Phi [<>,<>] ## CHECK-DAG: Return [<>] ## CHECK-START: int Main2.NegatedCondition(boolean) select_generator (after) ## CHECK-DAG: <> ParameterValue ## CHECK-DAG: <> IntConstant 42 ## CHECK-DAG: <> IntConstant 43 ## CHECK-DAG: <> Select [<>,<>,<>] ## CHECK-DAG: Return [<