blob: 1b930ec3df840efb44e1db52bbcd7c5937518b3d [file] [log] [blame]
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001/*
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#ifndef ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_
18#define ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_
19
Roland Levillainccc07a92014-09-16 14:48:16 +010020#include "nodes.h"
21#include "builder.h"
22#include "dex_file.h"
23#include "dex_instruction.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010024#include "ssa_liveness_analysis.h"
25
26namespace art {
27
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +000028#define NUM_INSTRUCTIONS(...) \
29 (sizeof((uint16_t[]) {__VA_ARGS__}) /sizeof(uint16_t))
30
31#define ZERO_REGISTER_CODE_ITEM(...) \
32 { 0, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ }
33
34#define ONE_REGISTER_CODE_ITEM(...) \
35 { 1, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ }
36
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +000037#define TWO_REGISTERS_CODE_ITEM(...) \
38 { 2, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ }
39
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010040#define THREE_REGISTERS_CODE_ITEM(...) \
41 { 3, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ }
42
43LiveInterval* BuildInterval(const size_t ranges[][2],
44 size_t number_of_ranges,
45 ArenaAllocator* allocator,
46 int reg = -1) {
47 LiveInterval* interval = new (allocator) LiveInterval(allocator, Primitive::kPrimInt);
48 for (size_t i = number_of_ranges; i > 0; --i) {
49 interval->AddRange(ranges[i - 1][0], ranges[i - 1][1]);
50 }
51 interval->SetRegister(reg);
52 return interval;
53}
54
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +000055void RemoveSuspendChecks(HGraph* graph) {
56 for (size_t i = 0, e = graph->GetBlocks().Size(); i < e; ++i) {
57 for (HInstructionIterator it(graph->GetBlocks().Get(i)->GetInstructions());
58 !it.Done();
59 it.Advance()) {
60 HInstruction* current = it.Current();
61 if (current->IsSuspendCheck()) {
62 current->GetBlock()->RemoveInstruction(current);
63 }
64 }
65 }
66}
67
Roland Levillainccc07a92014-09-16 14:48:16 +010068// Create a control-flow graph from Dex instructions.
69inline HGraph* CreateCFG(ArenaAllocator* allocator, const uint16_t* data) {
70 HGraphBuilder builder(allocator);
71 const DexFile::CodeItem* item =
72 reinterpret_cast<const DexFile::CodeItem*>(data);
73 HGraph* graph = builder.BuildGraph(*item);
74 return graph;
75}
76
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010077} // namespace art
78
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +000079#endif // ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_