OSDN Git Service

Merge remote branch 'goog/dalvik-dev' into dalvik-dev-to-master
[android-x86/dalvik.git] / vm / compiler / codegen / arm / armv7-a / Codegen.c
1 /*
2  * Copyright (C) 2009 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
18 #define TGT_LIR ArmLIR
19
20 #include "Dalvik.h"
21 #include "interp/InterpDefs.h"
22 #include "libdex/OpCode.h"
23 #include "libdex/OpCodeNames.h"
24 #include "compiler/CompilerInternals.h"
25 #include "compiler/codegen/arm/ArmLIR.h"
26 #include "mterp/common/FindInterface.h"
27 #include "compiler/codegen/Ralloc.h"
28 #include "compiler/codegen/arm/Codegen.h"
29 #include "compiler/Loop.h"
30 #include "ArchVariant.h"
31
32 /* Arm codegen building blocks */
33 #include "../CodegenCommon.c"
34
35 /* Thumb2-specific factory utilities */
36 #include "../Thumb2/Factory.c"
37 /* Target independent factory utilities */
38 #include "../../CodegenFactory.c"
39 /* Arm-specific factory utilities */
40 #include "../ArchFactory.c"
41
42 /* Thumb2-specific codegen routines */
43 #include "../Thumb2/Gen.c"
44 /* Thumb2+VFP codegen routines */
45 #include "../FP/Thumb2VFP.c"
46
47 /* Thumb2-specific register allocation */
48 #include "../Thumb2/Ralloc.c"
49
50 /* MIR2LIR dispatcher and architectural independent codegen routines */
51 #include "../CodegenDriver.c"
52
53 /* Architecture manifest */
54 #include "ArchVariant.c"