blob: 4fdba26ebd262130403da749ba1d78324114f630 [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:
Alexandre Rames44b9cf92015-08-19 15:39:06 +010029 GVNOptimization(HGraph* graph,
30 const SideEffectsAnalysis& side_effects,
31 const char* pass_name = kGlobalValueNumberingPassName)
32 : HOptimization(graph, pass_name), side_effects_(side_effects) {}
Nicolas Geoffray31596742014-11-24 15:28:45 +000033
Nicolas Geoffray827eedb2015-01-26 15:18:36 +000034 void Run() OVERRIDE;
Nicolas Geoffray31596742014-11-24 15:28:45 +000035
Andreas Gampe7c3952f2015-02-19 18:21:24 -080036 static constexpr const char* kGlobalValueNumberingPassName = "GVN";
37
Nicolas Geoffray31596742014-11-24 15:28:45 +000038 private:
Nicolas Geoffray86dde162015-01-26 12:54:33 +000039 const SideEffectsAnalysis& side_effects_;
40
Nicolas Geoffray31596742014-11-24 15:28:45 +000041 DISALLOW_COPY_AND_ASSIGN(GVNOptimization);
42};
43
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010044} // namespace art
45
46#endif // ART_COMPILER_OPTIMIZING_GVN_H_