blob: 1374cbb6ab129876c9c509ae1ca72317fdb1b3a9 [file] [log] [blame]
Nicolas Geoffray184d6402014-06-09 14:06:02 +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
Calin Juravle10e244f2015-01-26 18:54:32 +000017#ifndef ART_COMPILER_OPTIMIZING_PRIMITIVE_TYPE_PROPAGATION_H_
18#define ART_COMPILER_OPTIMIZING_PRIMITIVE_TYPE_PROPAGATION_H_
Nicolas Geoffray184d6402014-06-09 14:06:02 +010019
20#include "nodes.h"
21
22namespace art {
23
Calin Juravle10e244f2015-01-26 18:54:32 +000024// Compute and propagate primitive types of phis in the graph.
25class PrimitiveTypePropagation : public ValueObject {
Nicolas Geoffray184d6402014-06-09 14:06:02 +010026 public:
Calin Juravle10e244f2015-01-26 18:54:32 +000027 explicit PrimitiveTypePropagation(HGraph* graph)
Nicolas Geoffray184d6402014-06-09 14:06:02 +010028 : graph_(graph), worklist_(graph->GetArena(), kDefaultWorklistSize) {}
29
30 void Run();
31
32 private:
33 void VisitBasicBlock(HBasicBlock* block);
34 void ProcessWorklist();
35 void AddToWorklist(HPhi* phi);
36 void AddDependentInstructionsToWorklist(HPhi* phi);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +010037 bool UpdateType(HPhi* phi);
Nicolas Geoffray184d6402014-06-09 14:06:02 +010038
39 HGraph* const graph_;
40 GrowableArray<HPhi*> worklist_;
41
42 static constexpr size_t kDefaultWorklistSize = 8;
43
Calin Juravle10e244f2015-01-26 18:54:32 +000044 DISALLOW_COPY_AND_ASSIGN(PrimitiveTypePropagation);
Nicolas Geoffray184d6402014-06-09 14:06:02 +010045};
46
47} // namespace art
48
Calin Juravle10e244f2015-01-26 18:54:32 +000049#endif // ART_COMPILER_OPTIMIZING_PRIMITIVE_TYPE_PROPAGATION_H_