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 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 20 | #include "ssa_liveness_analysis.h" |
| 21 | |
| 22 | namespace art { |
| 23 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 24 | #define NUM_INSTRUCTIONS(...) \ |
| 25 | (sizeof((uint16_t[]) {__VA_ARGS__}) /sizeof(uint16_t)) |
| 26 | |
| 27 | #define ZERO_REGISTER_CODE_ITEM(...) \ |
| 28 | { 0, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ } |
| 29 | |
| 30 | #define ONE_REGISTER_CODE_ITEM(...) \ |
| 31 | { 1, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ } |
| 32 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 33 | #define TWO_REGISTERS_CODE_ITEM(...) \ |
| 34 | { 2, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ } |
| 35 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 36 | #define THREE_REGISTERS_CODE_ITEM(...) \ |
| 37 | { 3, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ } |
| 38 | |
| 39 | LiveInterval* BuildInterval(const size_t ranges[][2], |
| 40 | size_t number_of_ranges, |
| 41 | ArenaAllocator* allocator, |
| 42 | int reg = -1) { |
| 43 | LiveInterval* interval = new (allocator) LiveInterval(allocator, Primitive::kPrimInt); |
| 44 | for (size_t i = number_of_ranges; i > 0; --i) { |
| 45 | interval->AddRange(ranges[i - 1][0], ranges[i - 1][1]); |
| 46 | } |
| 47 | interval->SetRegister(reg); |
| 48 | return interval; |
| 49 | } |
| 50 | |
| 51 | } // namespace art |
| 52 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 53 | #endif // ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_ |