blob: 975366918c37572065cd337810a855290b6f9021 [file] [log] [blame]
Vladimir Markodc151b22015-10-15 18:02:30 +01001/*
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
Nicolas Geoffray83c8e272017-01-31 14:36:37 +000020#include "nodes.h"
Vladimir Markodc151b22015-10-15 18:02:30 +010021#include "optimization.h"
22
Vladimir Marko0a516052019-10-14 13:00:44 +000023namespace art {
Vladimir Markodc151b22015-10-15 18:02:30 +010024
25class CodeGenerator;
Vladimir Markodc151b22015-10-15 18:02:30 +010026class DexCompilationUnit;
Vladimir Markodc151b22015-10-15 18:02:30 +010027
Nicolas Geoffraybdb2ecc2018-09-18 14:33:55 +010028// Utility methods that try to improve the way we dispatch methods, and access
29// types and strings.
30class HSharpening {
Vladimir Markodc151b22015-10-15 18:02:30 +010031 public:
Nicolas Geoffraybdb2ecc2018-09-18 14:33:55 +010032 // Used by the builder and InstructionSimplifier.
Nicolas Geoffray8d34a182020-09-16 09:46:58 +010033 static HInvokeStaticOrDirect::DispatchInfo SharpenLoadMethod(
Nicolas Geoffrayd5a86952021-01-19 10:35:54 +000034 ArtMethod* callee,
35 bool has_method_id,
36 bool for_interface_call,
37 CodeGenerator* codegen);
Vladimir Marko28e012a2017-12-07 11:22:59 +000038
Nicolas Geoffray83c8e272017-01-31 14:36:37 +000039 // Used by the builder and the inliner.
Nicolas Geoffrayc4aa82c2017-03-06 14:38:52 +000040 static HLoadClass::LoadKind ComputeLoadClassKind(HLoadClass* load_class,
41 CodeGenerator* codegen,
Nicolas Geoffrayc4aa82c2017-03-06 14:38:52 +000042 const DexCompilationUnit& dex_compilation_unit)
Vladimir Marko28e012a2017-12-07 11:22:59 +000043 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffray56876342016-12-16 16:09:08 +000044
Vladimir Marko175e7862018-03-27 09:03:13 +000045 // Used by the builder.
46 static TypeCheckKind ComputeTypeCheckKind(ObjPtr<mirror::Class> klass,
47 CodeGenerator* codegen,
Vladimir Marko175e7862018-03-27 09:03:13 +000048 bool needs_access_check)
49 REQUIRES_SHARED(Locks::mutator_lock_);
50
51 // Used by the builder.
52 static void ProcessLoadString(HLoadString* load_string,
53 CodeGenerator* codegen,
Vladimir Marko175e7862018-03-27 09:03:13 +000054 const DexCompilationUnit& dex_compilation_unit,
55 VariableSizedHandleScope* handles);
Vladimir Markodc151b22015-10-15 18:02:30 +010056};
57
58} // namespace art
59
60#endif // ART_COMPILER_OPTIMIZING_SHARPENING_H_