diff options
| author | 2012-11-16 16:50:17 -0800 | |
|---|---|---|
| committer | 2012-11-16 16:50:18 -0800 | |
| commit | 6aa852b927a12ba16f5c05ee7d044ac1372feb7f (patch) | |
| tree | e88e202952fcf09fad44a58eb366b6a59dcd0424 /src/compiler/codegen/method_bitcode.h | |
| parent | 2bcb4a496b7aa00d996df3a070524f7568fb35a1 (diff) | |
| parent | eaf09bc65f9a10d12befcdb239156938c9bceef2 (diff) | |
Merge "Quick compiler: more refactoring" into dalvik-dev
Diffstat (limited to 'src/compiler/codegen/method_bitcode.h')
| -rw-r--r-- | src/compiler/codegen/method_bitcode.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/compiler/codegen/method_bitcode.h b/src/compiler/codegen/method_bitcode.h new file mode 100644 index 0000000000..8b1428682d --- /dev/null +++ b/src/compiler/codegen/method_bitcode.h @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef ART_SRC_COMPILER_CODEGEN_METHODBITCODE_H_ +#define ART_SRC_COMPILER_CODEGEN_METHODBITCODE_H_ + +namespace art { + +void oatMethodMIR2Bitcode(CompilationUnit* cUnit); +void oatMethodBitcode2LIR(CompilationUnit* cUnit); + +} // namespace art + +#endif // ART_SRC_COMPILER_CODEGEN_METHODBITCODE_H_ |