blob: 596a5f74e2a7ee83faf1a86275fe888e1bb9e00d [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
buzbeeefc63692012-11-14 16:31:52 -080019#include "mips_lir.h"
buzbeeeaf09bc2012-11-15 14:51:41 -080020#include "../ralloc_util.h"
buzbeeefc63692012-11-14 16:31:52 -080021
22/* Common codegen building blocks */
23#include "../codegen_util.cc"
24
25#include "utility_mips.cc"
buzbeeeaf09bc2012-11-15 14:51:41 -080026#include "../gen_loadstore.cc"
buzbeeefc63692012-11-14 16:31:52 -080027#include "../gen_common.cc"
28#include "../gen_invoke.cc"
29#include "call_mips.cc"
30#include "fp_mips.cc"
31#include "int_mips.cc"
32
33/* Bitcode conversion */
34#include "../method_bitcode.cc"
35
36/* MIR2LIR dispatcher and architectural independent codegen routines */
37#include "../method_codegen_driver.cc"
38
39/* Target-independent local optimizations */
40#include "../local_optimizations.cc"