1 /*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include "dead_code_elimination.h"
18
19 #include "base/macros.h"
20 #include "driver/compiler_options.h"
21 #include "graph_checker.h"
22 #include "optimizing_unit_test.h"
23 #include "pretty_printer.h"
24
25 #include "gtest/gtest.h"
26
27 namespace art HIDDEN {
28
29 class DeadCodeEliminationTest : public CommonCompilerTest, public OptimizingUnitTestHelper {
30 protected:
31 void TestCode(const std::vector<uint16_t>& data,
32 const std::string& expected_before,
33 const std::string& expected_after);
34 };
35
TestCode(const std::vector<uint16_t> & data,const std::string & expected_before,const std::string & expected_after)36 void DeadCodeEliminationTest::TestCode(const std::vector<uint16_t>& data,
37 const std::string& expected_before,
38 const std::string& expected_after) {
39 HGraph* graph = CreateCFG(data);
40 ASSERT_NE(graph, nullptr);
41
42 StringPrettyPrinter printer_before(graph);
43 printer_before.VisitInsertionOrder();
44 std::string actual_before = printer_before.str();
45 ASSERT_EQ(actual_before, expected_before);
46
47 HDeadCodeElimination(graph, /* stats= */ nullptr, "dead_code_elimination").Run();
48 GraphChecker graph_checker(graph);
49 graph_checker.Run();
50 ASSERT_TRUE(graph_checker.IsValid());
51
52 StringPrettyPrinter printer_after(graph);
53 printer_after.VisitInsertionOrder();
54 std::string actual_after = printer_after.str();
55 ASSERT_EQ(actual_after, expected_after);
56 }
57
58 /**
59 * Small three-register program.
60 *
61 * 16-bit
62 * offset
63 * ------
64 * v1 <- 1 0. const/4 v1, #+1
65 * v0 <- 0 1. const/4 v0, #+0
66 * if v1 >= 0 goto L1 2. if-gez v1, +3
67 * v0 <- v1 4. move v0, v1
68 * L1: v2 <- v0 + v1 5. add-int v2, v0, v1
69 * return-void 7. return
70 */
TEST_F(DeadCodeEliminationTest,AdditionAndConditionalJump)71 TEST_F(DeadCodeEliminationTest, AdditionAndConditionalJump) {
72 const std::vector<uint16_t> data = THREE_REGISTERS_CODE_ITEM(
73 Instruction::CONST_4 | 1 << 8 | 1 << 12,
74 Instruction::CONST_4 | 0 << 8 | 0 << 12,
75 Instruction::IF_GEZ | 1 << 8, 3,
76 Instruction::MOVE | 0 << 8 | 1 << 12,
77 Instruction::ADD_INT | 2 << 8, 0 | 1 << 8,
78 Instruction::RETURN_VOID);
79
80 std::string expected_before =
81 "BasicBlock 0, succ: 1\n"
82 " 3: IntConstant [9, 8, 5]\n"
83 " 4: IntConstant [8, 5]\n"
84 " 1: SuspendCheck\n"
85 " 2: Goto 1\n"
86 "BasicBlock 1, pred: 0, succ: 5, 2\n"
87 " 5: GreaterThanOrEqual(3, 4) [6]\n"
88 " 6: If(5)\n"
89 "BasicBlock 2, pred: 1, succ: 3\n"
90 " 7: Goto 3\n"
91 "BasicBlock 3, pred: 5, 2, succ: 4\n"
92 " 8: Phi(4, 3) [9]\n"
93 " 9: Add(8, 3)\n"
94 " 10: ReturnVoid\n"
95 "BasicBlock 4, pred: 3\n"
96 " 11: Exit\n"
97 "BasicBlock 5, pred: 1, succ: 3\n"
98 " 0: Goto 3\n";
99
100 // Expected difference after dead code elimination.
101 diff_t expected_diff = {
102 { " 3: IntConstant [9, 8, 5]\n", " 3: IntConstant [5]\n" },
103 { " 4: IntConstant [8, 5]\n", " 4: IntConstant [5]\n" },
104 { " 8: Phi(4, 3) [9]\n", removed },
105 { " 9: Add(8, 3)\n", removed }
106 };
107 std::string expected_after = Patch(expected_before, expected_diff);
108
109 TestCode(data, expected_before, expected_after);
110 }
111
112 /**
113 * Three-register program with jumps leading to the creation of many
114 * blocks.
115 *
116 * The intent of this test is to ensure that all dead instructions are
117 * actually pruned at compile-time, thanks to the (backward)
118 * post-order traversal of the dominator tree.
119 *
120 * 16-bit
121 * offset
122 * ------
123 * v0 <- 0 0. const/4 v0, #+0
124 * v1 <- 1 1. const/4 v1, #+1
125 * v2 <- v0 + v1 2. add-int v2, v0, v1
126 * goto L2 4. goto +4
127 * L1: v1 <- v0 + 3 5. add-int/lit16 v1, v0, #+3
128 * goto L3 7. goto +4
129 * L2: v0 <- v2 + 2 8. add-int/lit16 v0, v2, #+2
130 * goto L1 10. goto +(-5)
131 * L3: v2 <- v1 + 4 11. add-int/lit16 v2, v1, #+4
132 * return 13. return-void
133 */
TEST_F(DeadCodeEliminationTest,AdditionsAndInconditionalJumps)134 TEST_F(DeadCodeEliminationTest, AdditionsAndInconditionalJumps) {
135 const std::vector<uint16_t> data = THREE_REGISTERS_CODE_ITEM(
136 Instruction::CONST_4 | 0 << 8 | 0 << 12,
137 Instruction::CONST_4 | 1 << 8 | 1 << 12,
138 Instruction::ADD_INT | 2 << 8, 0 | 1 << 8,
139 Instruction::GOTO | 4 << 8,
140 Instruction::ADD_INT_LIT16 | 1 << 8 | 0 << 12, 3,
141 Instruction::GOTO | 4 << 8,
142 Instruction::ADD_INT_LIT16 | 0 << 8 | 2 << 12, 2,
143 static_cast<uint16_t>(Instruction::GOTO | 0xFFFFFFFB << 8),
144 Instruction::ADD_INT_LIT16 | 2 << 8 | 1 << 12, 4,
145 Instruction::RETURN_VOID);
146
147 std::string expected_before =
148 "BasicBlock 0, succ: 1\n"
149 " 2: IntConstant [4]\n"
150 " 3: IntConstant [4]\n"
151 " 6: IntConstant [7]\n"
152 " 9: IntConstant [10]\n"
153 " 12: IntConstant [13]\n"
154 " 0: SuspendCheck\n"
155 " 1: Goto 1\n"
156 "BasicBlock 1, pred: 0, succ: 3\n"
157 " 4: Add(2, 3) [7]\n"
158 " 5: Goto 3\n"
159 "BasicBlock 2, pred: 3, succ: 4\n"
160 " 10: Add(7, 9) [13]\n"
161 " 11: Goto 4\n"
162 "BasicBlock 3, pred: 1, succ: 2\n"
163 " 7: Add(4, 6) [10]\n"
164 " 8: Goto 2\n"
165 "BasicBlock 4, pred: 2, succ: 5\n"
166 " 13: Add(10, 12)\n"
167 " 14: ReturnVoid\n"
168 "BasicBlock 5, pred: 4\n"
169 " 15: Exit\n";
170
171 std::string expected_after =
172 "BasicBlock 0, succ: 1\n"
173 " 0: SuspendCheck\n"
174 " 1: Goto 1\n"
175 "BasicBlock 1, pred: 0, succ: 5\n"
176 " 14: ReturnVoid\n"
177 "BasicBlock 5, pred: 1\n"
178 " 15: Exit\n";
179
180 TestCode(data, expected_before, expected_after);
181 }
182
183 } // namespace art
184