Ben Cheng | e9695e5 | 2009-06-16 16:11:47 -0700 | [diff] [blame] | 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 | |
Ben Cheng | e9695e5 | 2009-06-16 16:11:47 -0700 | [diff] [blame] | 17 | #ifndef _DALVIK_VM_COMPILER_OPTIMIZATION_H |
| 18 | #define _DALVIK_VM_COMPILER_OPTIMIZATION_H |
| 19 | |
Ben Cheng | 4238ec2 | 2009-08-24 16:32:22 -0700 | [diff] [blame] | 20 | #include "Dalvik.h" |
| 21 | |
Ben Cheng | dcf3e5d | 2009-09-11 13:42:05 -0700 | [diff] [blame] | 22 | /* |
| 23 | * If the corresponding bit is set in gDvmJit.disableOpt, the selected |
| 24 | * optimization will be suppressed. |
| 25 | */ |
| 26 | typedef enum optControlVector { |
| 27 | kLoadStoreElimination = 0, |
| 28 | kLoadHoisting, |
Bill Buzbee | 1465db5 | 2009-09-23 17:17:35 -0700 | [diff] [blame] | 29 | kTrackLiveTemps, |
| 30 | kSuppressLoads, |
Ben Cheng | dcf3e5d | 2009-09-11 13:42:05 -0700 | [diff] [blame] | 31 | } optControlVector; |
| 32 | |
Ben Cheng | e9695e5 | 2009-06-16 16:11:47 -0700 | [diff] [blame] | 33 | /* Forward declarations */ |
| 34 | struct CompilationUnit; |
| 35 | struct LIR; |
| 36 | |
Ben Cheng | e9695e5 | 2009-06-16 16:11:47 -0700 | [diff] [blame] | 37 | void dvmCompilerApplyLocalOptimizations(struct CompilationUnit *cUnit, |
| 38 | struct LIR *head, |
| 39 | struct LIR *tail); |
| 40 | |
| 41 | void dvmCompilerApplyGlobalOptimizations(struct CompilationUnit *cUnit); |
| 42 | |
| 43 | #endif /* _DALVIK_VM_COMPILER_OPTIMIZATION_H */ |