buzbee | efc6369 | 2012-11-14 16:31:52 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
buzbee | efc6369 | 2012-11-14 16:31:52 -0800 | [diff] [blame] | 19 | #include "mips_lir.h" |
buzbee | eaf09bc | 2012-11-15 14:51:41 -0800 | [diff] [blame^] | 20 | #include "../ralloc_util.h" |
buzbee | efc6369 | 2012-11-14 16:31:52 -0800 | [diff] [blame] | 21 | |
| 22 | /* Common codegen building blocks */ |
| 23 | #include "../codegen_util.cc" |
| 24 | |
| 25 | #include "utility_mips.cc" |
buzbee | eaf09bc | 2012-11-15 14:51:41 -0800 | [diff] [blame^] | 26 | #include "../gen_loadstore.cc" |
buzbee | efc6369 | 2012-11-14 16:31:52 -0800 | [diff] [blame] | 27 | #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" |