blob: 8713bd624d0863053ec60c44658f2378fd67c6fc [file]
/*
* Copyright (C) 2014 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.
*/
#include "base/arena_allocator.h"
#include "base/macros.h"
#include "builder.h"
#include "nodes.h"
#include "optimizing/data_type.h"
#include "optimizing_unit_test.h"
#include "pretty_printer.h"
#include "gtest/gtest.h"
namespace art HIDDEN {
class GraphTest : public OptimizingUnitTest {
protected:
HBasicBlock* CreateIfBlock();
HBasicBlock* CreateGotoBlock();
HBasicBlock* CreateEntryBlock();
HBasicBlock* CreateReturnBlock();
};
HBasicBlock* GraphTest::CreateIfBlock() {
HBasicBlock* if_block = AddNewBlock();
HInstruction* instr = graph_->GetIntConstant(4);
HInstruction* equal = MakeCondition(if_block, kCondEQ, instr, instr);
MakeIf(if_block, equal);
return if_block;
}
HBasicBlock* GraphTest::CreateGotoBlock() {
HBasicBlock* block = AddNewBlock();
MakeGoto(block);
return block;
}
HBasicBlock* GraphTest::CreateEntryBlock() {
HBasicBlock* block = CreateGotoBlock();
graph_->SetEntryBlock(block);
return block;
}
HBasicBlock* GraphTest::CreateReturnBlock() {
HBasicBlock* block = AddNewBlock();
MakeReturnVoid(block);
return block;
}
// Test that the successors of an if block stay consistent after a SimplifyCFG.
// This test sets the false block to be the return block.
TEST_F(GraphTest, IfSuccessorSimpleJoinBlock1) {
HGraph* graph = CreateGraph();
HBasicBlock* entry_block = CreateEntryBlock();
HBasicBlock* if_block = CreateIfBlock();
HBasicBlock* if_true = CreateGotoBlock();
HBasicBlock* return_block = CreateReturnBlock();
HBasicBlock* exit_block = AddExitBlock();
entry_block->AddSuccessor(if_block);
if_block->AddSuccessor(if_true);
if_true->AddSuccessor(return_block);
if_block->AddSuccessor(return_block);
return_block->AddSuccessor(exit_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), if_true);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), return_block);
graph->SimplifyCFG();
// Ensure we still have the same if true block.
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), if_true);
// Ensure the critical edge has been removed.
HBasicBlock* false_block = if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor();
ASSERT_NE(false_block, return_block);
// Ensure the new block branches to the join block.
ASSERT_EQ(false_block->GetSuccessors()[0], return_block);
}
// Test that the successors of an if block stay consistent after a SimplifyCFG.
// This test sets the true block to be the return block.
TEST_F(GraphTest, IfSuccessorSimpleJoinBlock2) {
HGraph* graph = CreateGraph();
HBasicBlock* entry_block = CreateEntryBlock();
HBasicBlock* if_block = CreateIfBlock();
HBasicBlock* if_false = CreateGotoBlock();
HBasicBlock* return_block = CreateReturnBlock();
HBasicBlock* exit_block = AddExitBlock();
entry_block->AddSuccessor(if_block);
if_block->AddSuccessor(return_block);
if_false->AddSuccessor(return_block);
if_block->AddSuccessor(if_false);
return_block->AddSuccessor(exit_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), return_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), if_false);
graph->SimplifyCFG();
// Ensure we still have the same if true block.
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), if_false);
// Ensure the critical edge has been removed.
HBasicBlock* true_block = if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor();
ASSERT_NE(true_block, return_block);
// Ensure the new block branches to the join block.
ASSERT_EQ(true_block->GetSuccessors()[0], return_block);
}
// Test that the successors of an if block stay consistent after a SimplifyCFG.
// This test sets the true block to be the loop header.
TEST_F(GraphTest, IfSuccessorMultipleBackEdges1) {
HGraph* graph = CreateGraph();
HBasicBlock* entry_block = CreateEntryBlock();
HBasicBlock* if_block = CreateIfBlock();
HBasicBlock* return_block = CreateReturnBlock();
HBasicBlock* exit_block = AddExitBlock();
entry_block->AddSuccessor(if_block);
if_block->AddSuccessor(if_block);
if_block->AddSuccessor(return_block);
return_block->AddSuccessor(exit_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), if_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), return_block);
graph->BuildDominatorTree();
// Ensure we still have the same if false block.
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), return_block);
// Ensure there is only one back edge.
ASSERT_EQ(if_block->GetPredecessors().size(), 2u);
ASSERT_EQ(if_block->GetPredecessors()[0], entry_block->GetSingleSuccessor());
ASSERT_NE(if_block->GetPredecessors()[1], if_block);
// Ensure the new block is the back edge.
ASSERT_EQ(if_block->GetPredecessors()[1],
if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor());
}
// Test that the successors of an if block stay consistent after a SimplifyCFG.
// This test sets the false block to be the loop header.
TEST_F(GraphTest, IfSuccessorMultipleBackEdges2) {
HGraph* graph = CreateGraph();
HBasicBlock* entry_block = CreateEntryBlock();
HBasicBlock* if_block = CreateIfBlock();
HBasicBlock* return_block = CreateReturnBlock();
HBasicBlock* exit_block = AddExitBlock();
entry_block->AddSuccessor(if_block);
if_block->AddSuccessor(return_block);
if_block->AddSuccessor(if_block);
return_block->AddSuccessor(exit_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), return_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), if_block);
graph->BuildDominatorTree();
// Ensure we still have the same if true block.
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), return_block);
// Ensure there is only one back edge.
ASSERT_EQ(if_block->GetPredecessors().size(), 2u);
ASSERT_EQ(if_block->GetPredecessors()[0], entry_block->GetSingleSuccessor());
ASSERT_NE(if_block->GetPredecessors()[1], if_block);
// Ensure the new block is the back edge.
ASSERT_EQ(if_block->GetPredecessors()[1],
if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor());
}
// Test that the successors of an if block stay consistent after a SimplifyCFG.
// This test sets the true block to be a loop header with multiple pre headers.
TEST_F(GraphTest, IfSuccessorMultiplePreHeaders1) {
HGraph* graph = CreateGraph();
HBasicBlock* entry_block = CreateEntryBlock();
HBasicBlock* first_if_block = CreateIfBlock();
HBasicBlock* if_block = CreateIfBlock();
HBasicBlock* loop_block = CreateGotoBlock();
HBasicBlock* return_block = CreateReturnBlock();
HBasicBlock* exit_block = AddExitBlock();
entry_block->AddSuccessor(first_if_block);
first_if_block->AddSuccessor(if_block);
first_if_block->AddSuccessor(loop_block);
loop_block->AddSuccessor(loop_block);
if_block->AddSuccessor(loop_block);
if_block->AddSuccessor(return_block);
return_block->AddSuccessor(exit_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), loop_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), return_block);
graph->BuildDominatorTree();
HIf* if_instr = if_block->GetLastInstruction()->AsIf();
// Ensure we still have the same if false block.
ASSERT_EQ(if_instr->IfFalseSuccessor(), return_block);
// Ensure there is only one pre header..
ASSERT_EQ(loop_block->GetPredecessors().size(), 2u);
// Ensure the new block is the successor of the true block.
ASSERT_EQ(if_instr->IfTrueSuccessor()->GetSuccessors().size(), 1u);
ASSERT_EQ(if_instr->IfTrueSuccessor()->GetSuccessors()[0],
loop_block->GetLoopInformation()->GetPreHeader());
}
// Test that the successors of an if block stay consistent after a SimplifyCFG.
// This test sets the false block to be a loop header with multiple pre headers.
TEST_F(GraphTest, IfSuccessorMultiplePreHeaders2) {
HGraph* graph = CreateGraph();
HBasicBlock* entry_block = CreateEntryBlock();
HBasicBlock* first_if_block = CreateIfBlock();
HBasicBlock* if_block = CreateIfBlock();
HBasicBlock* loop_block = CreateGotoBlock();
HBasicBlock* return_block = CreateReturnBlock();
HBasicBlock* exit_block = AddExitBlock();
entry_block->AddSuccessor(first_if_block);
first_if_block->AddSuccessor(if_block);
first_if_block->AddSuccessor(loop_block);
loop_block->AddSuccessor(loop_block);
if_block->AddSuccessor(return_block);
if_block->AddSuccessor(loop_block);
return_block->AddSuccessor(exit_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), return_block);
ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), loop_block);
graph->BuildDominatorTree();
HIf* if_instr = if_block->GetLastInstruction()->AsIf();
// Ensure we still have the same if true block.
ASSERT_EQ(if_instr->IfTrueSuccessor(), return_block);
// Ensure there is only one pre header..
ASSERT_EQ(loop_block->GetPredecessors().size(), 2u);
// Ensure the new block is the successor of the false block.
ASSERT_EQ(if_instr->IfFalseSuccessor()->GetSuccessors().size(), 1u);
ASSERT_EQ(if_instr->IfFalseSuccessor()->GetSuccessors()[0],
loop_block->GetLoopInformation()->GetPreHeader());
}
TEST_F(GraphTest, InsertInstructionBefore) {
CreateGraph();
HBasicBlock* block = CreateGotoBlock();
HInstruction* got = block->GetLastInstruction();
ASSERT_TRUE(got->IsControlFlow());
// Test at the beginning of the block.
HInstruction* first_instruction = new (GetAllocator()) HIntConstant(4);
block->InsertInstructionBefore(first_instruction, got);
ASSERT_NE(first_instruction->GetId(), -1);
ASSERT_EQ(first_instruction->GetBlock(), block);
ASSERT_EQ(block->GetFirstInstruction(), first_instruction);
ASSERT_EQ(block->GetLastInstruction(), got);
ASSERT_EQ(first_instruction->GetNext(), got);
ASSERT_EQ(first_instruction->GetPrevious(), nullptr);
ASSERT_EQ(got->GetNext(), nullptr);
ASSERT_EQ(got->GetPrevious(), first_instruction);
// Test in the middle of the block.
HInstruction* second_instruction = new (GetAllocator()) HIntConstant(4);
block->InsertInstructionBefore(second_instruction, got);
ASSERT_NE(second_instruction->GetId(), -1);
ASSERT_EQ(second_instruction->GetBlock(), block);
ASSERT_EQ(block->GetFirstInstruction(), first_instruction);
ASSERT_EQ(block->GetLastInstruction(), got);
ASSERT_EQ(first_instruction->GetNext(), second_instruction);
ASSERT_EQ(first_instruction->GetPrevious(), nullptr);
ASSERT_EQ(second_instruction->GetNext(), got);
ASSERT_EQ(second_instruction->GetPrevious(), first_instruction);
ASSERT_EQ(got->GetNext(), nullptr);
ASSERT_EQ(got->GetPrevious(), second_instruction);
}
TEST_F(GraphTest, GetConstant) {
CreateGraph();
HBasicBlock* entry = AddNewBlock();
graph_->SetEntryBlock(entry);
ASSERT_EQ(0, graph_->GetConstant(DataType::Type::kBool, 0)->GetValueAsUint64());
ASSERT_EQ(1, graph_->GetConstant(DataType::Type::kBool, 1)->GetValueAsUint64());
ASSERT_EQ(0, graph_->GetConstant(DataType::Type::kUint8, 0)->GetValueAsUint64());
ASSERT_EQ(0xFF, graph_->GetConstant(DataType::Type::kUint8, 0xFF)->GetValueAsUint64());
ASSERT_EQ(0, graph_->GetConstant(DataType::Type::kUint16, 0)->GetValueAsUint64());
ASSERT_EQ(0xFFFF, graph_->GetConstant(DataType::Type::kUint16, 0xFFFF)->GetValueAsUint64());
}
} // namespace art