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 17 #include "Dalvik.h" 18 #include "interp/InterpDefs.h" 19 #include "libdex/OpCode.h" 20 #include "dexdump/OpCodeNames.h" 21 #include "compiler/CompilerInternals.h" 22 #include "compiler/codegen/arm/ArmLIR.h" 23 #include "mterp/common/FindInterface.h" 24 #include "compiler/codegen/arm/Ralloc.h" 25 #include "compiler/codegen/arm/Codegen.h" 26 #include "compiler/Loop.h" 27 #include "ArchVariant.h" 28 29 /* Architectural independent building blocks */ 30 #include "../CodegenCommon.c" 31 32 /* Architectural independent building blocks */ 33 #include "../Thumb/Factory.c" 34 /* Factory utilities dependent on arch-specific features */ 35 #include "../CodegenFactory.c" 36 37 /* Thumb-specific codegen routines */ 38 #include "../Thumb/Gen.c" 39 /* Thumb+Portable FP codegen routines */ 40 #include "../FP/ThumbPortableFP.c" 41 42 /* Thumb-specific register allocation */ 43 #include "../Thumb/Ralloc.c" 44 45 /* MIR2LIR dispatcher and architectural independent codegen routines */ 46 #include "../CodegenDriver.c" 47 48 /* Architecture manifest */ 49 #include "ArchVariant.c" 50