buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1 | /* |
| 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 |
| 18 | #define TGT_LIR ArmLIR |
| 19 | |
| 20 | #include "../../../Dalvik.h" |
| 21 | //#include "interp/InterpDefs.h" |
| 22 | //#include "libdex/DexOpcodes.h" |
| 23 | #include "../../../CompilerInternals.h" |
| 24 | #include "../ArmLIR.h" |
| 25 | //#include "mterp/common/FindInterface.h" |
| 26 | #include "../../Ralloc.h" |
| 27 | #include "../Codegen.h" |
| 28 | |
| 29 | /* Arm codegen building blocks */ |
| 30 | #include "../CodegenCommon.cc" |
| 31 | |
| 32 | /* Thumb2-specific factory utilities */ |
| 33 | #include "../Thumb2/Factory.cc" |
| 34 | /* Target independent factory utilities */ |
| 35 | #include "../../CodegenFactory.cc" |
| 36 | /* Arm-specific factory utilities */ |
| 37 | #include "../ArchFactory.cc" |
| 38 | |
| 39 | /* Thumb2-specific codegen routines */ |
| 40 | #include "../Thumb2/Gen.cc" |
| 41 | /* Thumb2+VFP codegen routines */ |
| 42 | #include "../FP/Thumb2VFP.cc" |
| 43 | |
| 44 | /* Thumb2-specific register allocation */ |
| 45 | #include "../Thumb2/Ralloc.cc" |
| 46 | |
| 47 | /* MIR2LIR dispatcher and architectural independent codegen routines */ |
| 48 | #include "../MethodCodegenDriver.cc" |
| 49 | |
| 50 | /* Architecture manifest */ |
| 51 | #include "ArchVariant.cc" |