blob: e74d969f117e24882597d62fb881a9dec629584b [file] [log] [blame]
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001/*
2 * Copyright (C) 2014 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_GVN_H_
18#define ART_COMPILER_OPTIMIZING_GVN_H_
19
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010020#include "nodes.h"
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +000021#include "optimization.h"
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010022
23namespace art {
24
Nicolas Geoffray827eedb2015-01-26 15:18:36 +000025class SideEffectsAnalysis;
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010026
Nicolas Geoffray31596742014-11-24 15:28:45 +000027class GVNOptimization : public HOptimization {
28 public:
Nicolas Geoffray86dde162015-01-26 12:54:33 +000029 GVNOptimization(HGraph* graph, const SideEffectsAnalysis& side_effects)
Andreas Gampe7c3952f2015-02-19 18:21:24 -080030 : HOptimization(graph, true, kGlobalValueNumberingPassName), side_effects_(side_effects) {}
Nicolas Geoffray31596742014-11-24 15:28:45 +000031
Nicolas Geoffray827eedb2015-01-26 15:18:36 +000032 void Run() OVERRIDE;
Nicolas Geoffray31596742014-11-24 15:28:45 +000033
Andreas Gampe7c3952f2015-02-19 18:21:24 -080034 static constexpr const char* kGlobalValueNumberingPassName = "GVN";
35
Nicolas Geoffray31596742014-11-24 15:28:45 +000036 private:
Nicolas Geoffray86dde162015-01-26 12:54:33 +000037 const SideEffectsAnalysis& side_effects_;
38
Nicolas Geoffray31596742014-11-24 15:28:45 +000039 DISALLOW_COPY_AND_ASSIGN(GVNOptimization);
40};
41
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010042} // namespace art
43
44#endif // ART_COMPILER_OPTIMIZING_GVN_H_