From f79077ad9e7b1e5b885466dce7f672130ee7efea Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Thu, 23 Jan 2025 14:45:35 +0000 Subject: Optimizing: Rename `HCodeFlowSimplifier`... ... to `HControlFlowSimplifier` because "control flow" is the correct technical term. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Change-Id: I2607ac699fa33c3e7ca7f54364e1e8497148412b --- .../src-art/Main.java | 38 +++++++++++----------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'test/463-checker-boolean-simplifier/src-art/Main.java') diff --git a/test/463-checker-boolean-simplifier/src-art/Main.java b/test/463-checker-boolean-simplifier/src-art/Main.java index 5105f50a6e..a76966d167 100644 --- a/test/463-checker-boolean-simplifier/src-art/Main.java +++ b/test/463-checker-boolean-simplifier/src-art/Main.java @@ -39,7 +39,7 @@ public class Main { * and 0 when False. */ - /// CHECK-START: boolean Main.GreaterThan(int, int) code_flow_simplifier (before) + /// CHECK-START: boolean Main.GreaterThan(int, int) control_flow_simplifier (before) /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> IntConstant 0 @@ -49,7 +49,7 @@ public class Main { /// CHECK-DAG: <> Phi [<>,<>] /// CHECK-DAG: Return [<>] - /// CHECK-START: boolean Main.GreaterThan(int, int) code_flow_simplifier (after) + /// CHECK-START: boolean Main.GreaterThan(int, int) control_flow_simplifier (after) /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> IntConstant 0 @@ -67,7 +67,7 @@ public class Main { * and 1 when False. */ - /// CHECK-START: boolean Main.LessThan(int, int) code_flow_simplifier (before) + /// CHECK-START: boolean Main.LessThan(int, int) control_flow_simplifier (before) /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> IntConstant 0 @@ -77,7 +77,7 @@ public class Main { /// CHECK-DAG: <> Phi [<>,<>] /// CHECK-DAG: Return [<>] - /// CHECK-START: boolean Main.LessThan(int, int) code_flow_simplifier (after) + /// CHECK-START: boolean Main.LessThan(int, int) control_flow_simplifier (after) /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> IntConstant 0 @@ -90,7 +90,7 @@ public class Main { return (x < y) ? true : false; } - /// CHECK-START: int Main.SimpleTrueBlock(boolean, int) code_flow_simplifier (after) + /// CHECK-START: int Main.SimpleTrueBlock(boolean, int) control_flow_simplifier (after) /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> IntConstant 42 @@ -99,14 +99,14 @@ public class Main { /// CHECK-DAG: <> Select [<>,<>,<>] /// CHECK-DAG: Return [<>] - /// CHECK-START: int Main.SimpleFalseBlock(boolean, int) code_flow_simplifier (after) + /// CHECK-START: int Main.SimpleFalseBlock(boolean, int) control_flow_simplifier (after) /// CHECK-NOT: If public static int SimpleFalseBlock(boolean x, int y) { return x ? 42 : y + 43; } - /// CHECK-START: int Main.SimpleBothBlocks(boolean, int, int) code_flow_simplifier (after) + /// CHECK-START: int Main.SimpleBothBlocks(boolean, int, int) control_flow_simplifier (after) /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> ParameterValue @@ -133,14 +133,14 @@ public class Main { /// CHECK-DAG: <> Select [<>,<>,<>] /// CHECK-DAG: Return [<