| Vladimir Marko | dc151b2 | 2015-10-15 18:02:30 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 | #ifndef ART_COMPILER_OPTIMIZING_SHARPENING_H_ |
| 18 | #define ART_COMPILER_OPTIMIZING_SHARPENING_H_ |
| 19 | |
| Vladimir Marko | e272715 | 2019-10-10 10:46:42 +0100 | [diff] [blame^] | 20 | #include "base/macros.h" |
| Nicolas Geoffray | 83c8e27 | 2017-01-31 14:36:37 +0000 | [diff] [blame] | 21 | #include "nodes.h" |
| Vladimir Marko | dc151b2 | 2015-10-15 18:02:30 +0100 | [diff] [blame] | 22 | #include "optimization.h" |
| 23 | |
| Vladimir Marko | e272715 | 2019-10-10 10:46:42 +0100 | [diff] [blame^] | 24 | namespace art HIDDEN { |
| Vladimir Marko | dc151b2 | 2015-10-15 18:02:30 +0100 | [diff] [blame] | 25 | |
| 26 | class CodeGenerator; |
| Vladimir Marko | dc151b2 | 2015-10-15 18:02:30 +0100 | [diff] [blame] | 27 | class DexCompilationUnit; |
| Vladimir Marko | dc151b2 | 2015-10-15 18:02:30 +0100 | [diff] [blame] | 28 | |
| Nicolas Geoffray | bdb2ecc | 2018-09-18 14:33:55 +0100 | [diff] [blame] | 29 | // Utility methods that try to improve the way we dispatch methods, and access |
| 30 | // types and strings. |
| 31 | class HSharpening { |
| Vladimir Marko | dc151b2 | 2015-10-15 18:02:30 +0100 | [diff] [blame] | 32 | public: |
| Nicolas Geoffray | bdb2ecc | 2018-09-18 14:33:55 +0100 | [diff] [blame] | 33 | // Used by the builder and InstructionSimplifier. |
| 34 | static HInvokeStaticOrDirect::DispatchInfo SharpenInvokeStaticOrDirect( |
| 35 | ArtMethod* callee, CodeGenerator* codegen); |
| Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 36 | |
| Nicolas Geoffray | 83c8e27 | 2017-01-31 14:36:37 +0000 | [diff] [blame] | 37 | // Used by the builder and the inliner. |
| Nicolas Geoffray | c4aa82c | 2017-03-06 14:38:52 +0000 | [diff] [blame] | 38 | static HLoadClass::LoadKind ComputeLoadClassKind(HLoadClass* load_class, |
| 39 | CodeGenerator* codegen, |
| Nicolas Geoffray | c4aa82c | 2017-03-06 14:38:52 +0000 | [diff] [blame] | 40 | const DexCompilationUnit& dex_compilation_unit) |
| Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 41 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Nicolas Geoffray | 5687634 | 2016-12-16 16:09:08 +0000 | [diff] [blame] | 42 | |
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 43 | // Used by the builder. |
| 44 | static TypeCheckKind ComputeTypeCheckKind(ObjPtr<mirror::Class> klass, |
| 45 | CodeGenerator* codegen, |
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 46 | bool needs_access_check) |
| 47 | REQUIRES_SHARED(Locks::mutator_lock_); |
| 48 | |
| 49 | // Used by the builder. |
| 50 | static void ProcessLoadString(HLoadString* load_string, |
| 51 | CodeGenerator* codegen, |
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 52 | const DexCompilationUnit& dex_compilation_unit, |
| 53 | VariableSizedHandleScope* handles); |
| Vladimir Marko | dc151b2 | 2015-10-15 18:02:30 +0100 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | } // namespace art |
| 57 | |
| 58 | #endif // ART_COMPILER_OPTIMIZING_SHARPENING_H_ |