blob: d10df4ce3fb523b31c0e3c5f15e9fdb0b7ad8b52 [file] [log] [blame]
Roland Levillainccc07a92014-09-16 14:48:16 +01001/*
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 "graph_checker.h"
18#include "optimizing_unit_test.h"
19
Roland Levillainccc07a92014-09-16 14:48:16 +010020namespace art {
21
22/**
23 * Create a simple control-flow graph composed of two blocks:
24 *
25 * BasicBlock 0, succ: 1
David Brazdildbf5d752015-07-30 18:21:41 +010026 * 0: ReturnVoid 1
Roland Levillainccc07a92014-09-16 14:48:16 +010027 * BasicBlock 1, pred: 0
28 * 1: Exit
29 */
30HGraph* CreateSimpleCFG(ArenaAllocator* allocator) {
Nicolas Geoffray0a23d742015-05-07 11:57:35 +010031 HGraph* graph = CreateGraph(allocator);
Roland Levillainccc07a92014-09-16 14:48:16 +010032 HBasicBlock* entry_block = new (allocator) HBasicBlock(graph);
David Brazdildbf5d752015-07-30 18:21:41 +010033 entry_block->AddInstruction(new (allocator) HReturnVoid());
Roland Levillainccc07a92014-09-16 14:48:16 +010034 graph->AddBlock(entry_block);
35 graph->SetEntryBlock(entry_block);
36 HBasicBlock* exit_block = new (allocator) HBasicBlock(graph);
37 exit_block->AddInstruction(new (allocator) HExit());
38 graph->AddBlock(exit_block);
39 graph->SetExitBlock(exit_block);
40 entry_block->AddSuccessor(exit_block);
41 return graph;
42}
43
Roland Levillainccc07a92014-09-16 14:48:16 +010044static void TestCode(const uint16_t* data) {
45 ArenaPool pool;
46 ArenaAllocator allocator(&pool);
47 HGraph* graph = CreateCFG(&allocator, data);
48 ASSERT_NE(graph, nullptr);
49
Vladimir Marko655e5852015-10-12 10:38:28 +010050 GraphChecker graph_checker(graph);
Roland Levillain633021e2014-10-01 14:12:25 +010051 graph_checker.Run();
Roland Levillainccc07a92014-09-16 14:48:16 +010052 ASSERT_TRUE(graph_checker.IsValid());
53}
54
55static void TestCodeSSA(const uint16_t* data) {
56 ArenaPool pool;
57 ArenaAllocator allocator(&pool);
58 HGraph* graph = CreateCFG(&allocator, data);
59 ASSERT_NE(graph, nullptr);
60
David Brazdil4833f5a2015-12-16 10:37:39 +000061 TransformToSsa(graph);
Roland Levillainccc07a92014-09-16 14:48:16 +010062
Vladimir Marko655e5852015-10-12 10:38:28 +010063 SSAChecker ssa_checker(graph);
Roland Levillain633021e2014-10-01 14:12:25 +010064 ssa_checker.Run();
Roland Levillainccc07a92014-09-16 14:48:16 +010065 ASSERT_TRUE(ssa_checker.IsValid());
66}
67
68
69TEST(GraphChecker, ReturnVoid) {
70 const uint16_t data[] = ZERO_REGISTER_CODE_ITEM(
71 Instruction::RETURN_VOID);
72
73 TestCode(data);
74}
75
76TEST(GraphChecker, CFG1) {
77 const uint16_t data[] = ZERO_REGISTER_CODE_ITEM(
78 Instruction::GOTO | 0x100,
79 Instruction::RETURN_VOID);
80
81 TestCode(data);
82}
83
84TEST(GraphChecker, CFG2) {
85 const uint16_t data[] = ONE_REGISTER_CODE_ITEM(
86 Instruction::CONST_4 | 0 | 0,
87 Instruction::IF_EQ, 3,
88 Instruction::GOTO | 0x100,
89 Instruction::RETURN_VOID);
90
91 TestCode(data);
92}
93
94TEST(GraphChecker, CFG3) {
95 const uint16_t data[] = ONE_REGISTER_CODE_ITEM(
96 Instruction::CONST_4 | 0 | 0,
97 Instruction::IF_EQ, 3,
98 Instruction::GOTO | 0x100,
99 Instruction::GOTO | 0xFF00);
100
101 TestCode(data);
102}
103
104// Test case with an invalid graph containing inconsistent
105// predecessor/successor arcs in CFG.
106TEST(GraphChecker, InconsistentPredecessorsAndSuccessors) {
107 ArenaPool pool;
108 ArenaAllocator allocator(&pool);
109
110 HGraph* graph = CreateSimpleCFG(&allocator);
Vladimir Marko655e5852015-10-12 10:38:28 +0100111 GraphChecker graph_checker(graph);
Roland Levillain633021e2014-10-01 14:12:25 +0100112 graph_checker.Run();
Roland Levillainccc07a92014-09-16 14:48:16 +0100113 ASSERT_TRUE(graph_checker.IsValid());
114
115 // Remove the entry block from the exit block's predecessors, to create an
116 // inconsistent successor/predecessor relation.
117 graph->GetExitBlock()->RemovePredecessor(graph->GetEntryBlock());
Roland Levillain633021e2014-10-01 14:12:25 +0100118 graph_checker.Run();
Roland Levillainccc07a92014-09-16 14:48:16 +0100119 ASSERT_FALSE(graph_checker.IsValid());
120}
121
122// Test case with an invalid graph containing a non-branch last
123// instruction in a block.
124TEST(GraphChecker, BlockEndingWithNonBranchInstruction) {
125 ArenaPool pool;
126 ArenaAllocator allocator(&pool);
127
128 HGraph* graph = CreateSimpleCFG(&allocator);
Vladimir Marko655e5852015-10-12 10:38:28 +0100129 GraphChecker graph_checker(graph);
Roland Levillain633021e2014-10-01 14:12:25 +0100130 graph_checker.Run();
Roland Levillainccc07a92014-09-16 14:48:16 +0100131 ASSERT_TRUE(graph_checker.IsValid());
132
133 // Remove the sole instruction of the exit block (composed of a
134 // single Exit instruction) to make it invalid (i.e. not ending by a
135 // branch instruction).
136 HBasicBlock* exit_block = graph->GetExitBlock();
137 HInstruction* last_inst = exit_block->GetLastInstruction();
138 exit_block->RemoveInstruction(last_inst);
139
Roland Levillain633021e2014-10-01 14:12:25 +0100140 graph_checker.Run();
Roland Levillainccc07a92014-09-16 14:48:16 +0100141 ASSERT_FALSE(graph_checker.IsValid());
142}
143
David Brazdil4833f5a2015-12-16 10:37:39 +0000144class SSACheckerTest : public CommonCompilerTest {};
145
146TEST_F(SSACheckerTest, SSAPhi) {
Roland Levillainccc07a92014-09-16 14:48:16 +0100147 // This code creates one Phi function during the conversion to SSA form.
148 const uint16_t data[] = ONE_REGISTER_CODE_ITEM(
149 Instruction::CONST_4 | 0 | 0,
150 Instruction::IF_EQ, 3,
151 Instruction::CONST_4 | 4 << 12 | 0,
152 Instruction::RETURN | 0 << 8);
153
154 TestCodeSSA(data);
155}
156
157} // namespace art