blob: f042d5ddde27a33dbe53eb5df4f6fd1bbc2887e4 [file] [log] [blame]
buzbee67bf8852011-08-17 17:51:35 -07001/*
2 * Copyright (C) 2011 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#define _CODEGEN_C
17#define _ARMV7_A_NEON
18#define TGT_LIR ArmLIR
19
20#include "../../../Dalvik.h"
buzbee67bf8852011-08-17 17:51:35 -070021#include "../../../CompilerInternals.h"
22#include "../arm/ArmLIR.h"
buzbee67bf8852011-08-17 17:51:35 -070023#include "../../Ralloc.h"
24#include "../Codegen.h"
25
26/* Arm codegen building blocks */
27#include "../CodegenCommon.cc"
28
29/* Thumb2-specific factory utilities */
30#include "../Thumb2/Factory.cc"
31/* Target indepedent factory utilities */
32#include "../../CodegenFactory.cc"
33/* Arm-specific factory utilities */
34#include "../ArchFactory.cc"
35
36/* Thumb2-specific codegen routines */
37#include "../Thumb2/Gen.cc"
38/* Thumb2+VFP codegen routines */
39#include "../FP/Thumb2VFP.cc"
40
41/* Thumb2-specific register allocation */
42#include "../Thumb2/Ralloc.cc"
43
44/* MIR2LIR dispatcher and architectural independent codegen routines */
buzbeee3acd072012-02-25 17:03:10 -080045#include "../../MethodCodegenDriver.cc"
46
47/* Target-independent local optimizations */
48#include "../../LocalOptimizations.cc"
49
50/* Common codegen utility code */
51#include "../../CodegenUtil.cc"
buzbee67bf8852011-08-17 17:51:35 -070052
53/* Architecture manifest */
54#include "ArchVariant.cc"