blob: 25ebe203b89ad0b705ed9ea47a34593d9e31b36a [file] [log] [blame]
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +05301/*Copyright (C) 2018 The Android Open Source Project
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef ART_COMPILER_OPTIMIZING_INSTRUCTION_SIMPLIFIER_X86_H_
17#define ART_COMPILER_OPTIMIZING_INSTRUCTION_SIMPLIFIER_X86_H_
18
Vladimir Markoe2727152019-10-10 10:46:42 +010019#include "base/macros.h"
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +053020#include "nodes.h"
21#include "optimization.h"
22
Vladimir Markoe2727152019-10-10 10:46:42 +010023namespace art HIDDEN {
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +053024
25class CodeGenerator;
26namespace x86 {
27
28class InstructionSimplifierX86 : public HOptimization {
29 public:
30 InstructionSimplifierX86(HGraph* graph, CodeGenerator* codegen, OptimizingCompilerStats* stats)
31 : HOptimization(graph, kInstructionSimplifierX86PassName, stats),
32 codegen_(codegen) {}
33
34 static constexpr const char* kInstructionSimplifierX86PassName = "instruction_simplifier_x86";
35
36 bool Run() override;
37
38 private:
39 CodeGenerator* codegen_;
40};
41
42} // namespace x86
43} // namespace art
44
45#endif // ART_COMPILER_OPTIMIZING_INSTRUCTION_SIMPLIFIER_X86_H_