blob: 36a6a21d019b742f141c0e902a2b491b3e92c00e [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
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010020#include "ssa_liveness_analysis.h"
21
22namespace art {
23
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +000024#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 Geoffraybab4ed72014-03-11 17:53:17 +000033#define TWO_REGISTERS_CODE_ITEM(...) \
34 { 2, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ }
35
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010036#define THREE_REGISTERS_CODE_ITEM(...) \
37 { 3, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ }
38
39LiveInterval* 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 Geoffray3ff386a2014-03-04 14:46:47 +000053#endif // ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_