blob: 023d6135e049b24b55ea7d860dea9dece1acaa87 [file] [log] [blame]
buzbeeefc63692012-11-14 16:31:52 -08001/*
2 * Copyright (C) 2012 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#define _CODEGEN_C
18
19#include "../../dalvik.h"
20#include "../../compiler_internals.h"
21#include "mips_lir.h"
22#include "../ralloc.h"
23#include "codegen.h"
24
25/* Common codegen building blocks */
26#include "../codegen_util.cc"
27
28#include "utility_mips.cc"
29#include "../codegen_factory.cc"
30#include "../gen_common.cc"
31#include "../gen_invoke.cc"
32#include "call_mips.cc"
33#include "fp_mips.cc"
34#include "int_mips.cc"
35
36/* Bitcode conversion */
37#include "../method_bitcode.cc"
38
39/* MIR2LIR dispatcher and architectural independent codegen routines */
40#include "../method_codegen_driver.cc"
41
42/* Target-independent local optimizations */
43#include "../local_optimizations.cc"