Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 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 | #ifndef ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_ |
| 18 | #define ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_ |
| 19 | |
Roland Levillain | ccc07a9 | 2014-09-16 14:48:16 +0100 | [diff] [blame^] | 20 | #include "nodes.h" |
| 21 | #include "builder.h" |
| 22 | #include "dex_file.h" |
| 23 | #include "dex_instruction.h" |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 24 | #include "ssa_liveness_analysis.h" |
| 25 | |
| 26 | namespace art { |
| 27 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 28 | #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 Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 37 | #define TWO_REGISTERS_CODE_ITEM(...) \ |
| 38 | { 2, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ } |
| 39 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 40 | #define THREE_REGISTERS_CODE_ITEM(...) \ |
| 41 | { 3, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ } |
| 42 | |
| 43 | LiveInterval* 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 Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 55 | void 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 Levillain | ccc07a9 | 2014-09-16 14:48:16 +0100 | [diff] [blame^] | 68 | // Create a control-flow graph from Dex instructions. |
| 69 | inline 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 Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 77 | } // namespace art |
| 78 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 79 | #endif // ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_ |