blob: 4d226875bf15eb13fc97f05f575eb480c5413182 [file] [log] [blame]
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -07001/*
2 * Copyright (C) 2016 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_REGISTER_ALLOCATOR_H_
18#define ART_COMPILER_OPTIMIZING_REGISTER_ALLOCATOR_H_
19
20#include "arch/instruction_set.h"
Vladimir Markoe764d2e2017-10-05 14:35:55 +010021#include "base/array_ref.h"
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070022#include "base/arena_object.h"
23#include "base/macros.h"
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070024
Vladimir Marko0a516052019-10-14 13:00:44 +000025namespace art {
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070026
27class CodeGenerator;
28class HBasicBlock;
29class HGraph;
30class HInstruction;
31class HParallelMove;
32class LiveInterval;
33class Location;
34class SsaLivenessAnalysis;
35
36/**
37 * Base class for any register allocator.
38 */
Vladimir Markoe764d2e2017-10-05 14:35:55 +010039class RegisterAllocator : public DeletableArenaObject<kArenaAllocRegisterAllocator> {
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070040 public:
41 enum Strategy {
Matthew Gharrityd9ffd0d2016-06-22 10:27:55 -070042 kRegisterAllocatorLinearScan,
43 kRegisterAllocatorGraphColor
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070044 };
45
46 static constexpr Strategy kRegisterAllocatorDefault = kRegisterAllocatorLinearScan;
47
Vladimir Markoe764d2e2017-10-05 14:35:55 +010048 static std::unique_ptr<RegisterAllocator> Create(ScopedArenaAllocator* allocator,
49 CodeGenerator* codegen,
50 const SsaLivenessAnalysis& analysis,
51 Strategy strategy = kRegisterAllocatorDefault);
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070052
Vladimir Markobea75ff2017-10-11 20:39:54 +010053 virtual ~RegisterAllocator();
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070054
55 // Main entry point for the register allocator. Given the liveness analysis,
56 // allocates registers to live intervals.
57 virtual void AllocateRegisters() = 0;
58
59 // Validate that the register allocator did not allocate the same register to
60 // intervals that intersect each other. Returns false if it failed.
61 virtual bool Validate(bool log_fatal_on_failure) = 0;
62
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070063 // Verifies that live intervals do not conflict. Used by unit testing.
Vladimir Markoe764d2e2017-10-05 14:35:55 +010064 static bool ValidateIntervals(ArrayRef<LiveInterval* const> intervals,
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070065 size_t number_of_spill_slots,
66 size_t number_of_out_slots,
67 const CodeGenerator& codegen,
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070068 bool processing_core_registers,
69 bool log_fatal_on_failure);
70
71 static constexpr const char* kRegisterAllocatorPassName = "register";
72
73 protected:
Vladimir Markoe764d2e2017-10-05 14:35:55 +010074 RegisterAllocator(ScopedArenaAllocator* allocator,
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070075 CodeGenerator* codegen,
76 const SsaLivenessAnalysis& analysis);
77
78 // Split `interval` at the position `position`. The new interval starts at `position`.
79 // If `position` is at the start of `interval`, returns `interval` with its
80 // register location(s) cleared.
81 static LiveInterval* Split(LiveInterval* interval, size_t position);
82
83 // Split `interval` at a position between `from` and `to`. The method will try
84 // to find an optimal split position.
85 LiveInterval* SplitBetween(LiveInterval* interval, size_t from, size_t to);
86
Vladimir Marko69d310e2017-10-09 14:12:23 +010087 ScopedArenaAllocator* const allocator_;
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070088 CodeGenerator* const codegen_;
89 const SsaLivenessAnalysis& liveness_;
90};
91
92} // namespace art
93
94#endif // ART_COMPILER_OPTIMIZING_REGISTER_ALLOCATOR_H_