blob: b3834f45e48b2cb7f6c7e9cacb2df75ca25fe6c5 [file] [log] [blame]
Nicolas Geoffraya7062e02014-05-22 12:50:17 +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
Matthew Gharritye9288852016-07-14 14:08:16 -070017#ifndef ART_COMPILER_OPTIMIZING_REGISTER_ALLOCATOR_LINEAR_SCAN_H_
18#define ART_COMPILER_OPTIMIZING_REGISTER_ALLOCATOR_LINEAR_SCAN_H_
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010019
Vladimir Marko80afd022015-05-19 18:08:00 +010020#include "arch/instruction_set.h"
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010021#include "base/arena_containers.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010022#include "base/macros.h"
Ian Rogerse63db272014-07-15 15:36:11 -070023#include "primitive.h"
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070024#include "register_allocator.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010025
26namespace art {
27
28class CodeGenerator;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010029class HBasicBlock;
30class HGraph;
31class HInstruction;
32class HParallelMove;
David Brazdil77a48ae2015-09-15 12:34:04 +000033class HPhi;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010034class LiveInterval;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010035class Location;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010036class SsaLivenessAnalysis;
37
38/**
39 * An implementation of a linear scan register allocator on an `HGraph` with SSA form.
40 */
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070041class RegisterAllocatorLinearScan : public RegisterAllocator {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010042 public:
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070043 RegisterAllocatorLinearScan(ArenaAllocator* allocator,
44 CodeGenerator* codegen,
45 const SsaLivenessAnalysis& analysis);
Matthew Gharrityd9ffd0d2016-06-22 10:27:55 -070046 ~RegisterAllocatorLinearScan() OVERRIDE {}
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010047
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070048 void AllocateRegisters() OVERRIDE;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010049
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070050 bool Validate(bool log_fatal_on_failure) OVERRIDE {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010051 processing_core_registers_ = true;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010052 if (!ValidateInternal(log_fatal_on_failure)) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010053 return false;
54 }
55 processing_core_registers_ = false;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010056 return ValidateInternal(log_fatal_on_failure);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010057 }
58
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010059 size_t GetNumberOfSpillSlots() const {
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010060 return int_spill_slots_.size()
61 + long_spill_slots_.size()
62 + float_spill_slots_.size()
63 + double_spill_slots_.size()
David Brazdil77a48ae2015-09-15 12:34:04 +000064 + catch_phi_spill_slots_;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010065 }
66
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010067 private:
68 // Main methods of the allocator.
69 void LinearScan();
70 bool TryAllocateFreeReg(LiveInterval* interval);
71 bool AllocateBlockedReg(LiveInterval* interval);
72
Nicolas Geoffray39468442014-09-02 15:17:15 +010073 // Add `interval` in the given sorted list.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010074 static void AddSorted(ArenaVector<LiveInterval*>* array, LiveInterval* interval);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010075
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010076 // Returns whether `reg` is blocked by the code generator.
77 bool IsBlocked(int reg) const;
78
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010079 // Update the interval for the register in `location` to cover [start, end).
Nicolas Geoffray102cbed2014-10-15 18:31:05 +010080 void BlockRegister(Location location, size_t start, size_t end);
David Brazdil77a48ae2015-09-15 12:34:04 +000081 void BlockRegisters(size_t start, size_t end, bool caller_save_only = false);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010082
David Brazdil77a48ae2015-09-15 12:34:04 +000083 // Allocate a spill slot for the given interval. Should be called in linear
84 // order of interval starting positions.
Nicolas Geoffray31d76b42014-06-09 15:02:22 +010085 void AllocateSpillSlotFor(LiveInterval* interval);
86
David Brazdil77a48ae2015-09-15 12:34:04 +000087 // Allocate a spill slot for the given catch phi. Will allocate the same slot
88 // for phis which share the same vreg. Must be called in reverse linear order
89 // of lifetime positions and ascending vreg numbers for correctness.
90 void AllocateSpillSlotForCatchPhi(HPhi* phi);
91
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010092 // Helper methods.
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010093 void AllocateRegistersInternal();
Nicolas Geoffray39468442014-09-02 15:17:15 +010094 void ProcessInstruction(HInstruction* instruction);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010095 bool ValidateInternal(bool log_fatal_on_failure) const;
96 void DumpInterval(std::ostream& stream, LiveInterval* interval) const;
Mingyao Yang296bd602014-10-06 16:47:28 -070097 void DumpAllIntervals(std::ostream& stream) const;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +000098 int FindAvailableRegisterPair(size_t* next_use, size_t starting_at) const;
Nicolas Geoffray8826f672015-04-17 09:15:11 +010099 int FindAvailableRegister(size_t* next_use, LiveInterval* current) const;
100 bool IsCallerSaveRegister(int reg) const;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100101
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000102 // Try splitting an active non-pair or unaligned pair interval at the given `position`.
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000103 // Returns whether it was successful at finding such an interval.
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000104 bool TrySplitNonPairOrUnalignedPairIntervalAt(size_t position,
105 size_t first_register_use,
106 size_t* next_use);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000107
Nicolas Geoffray39468442014-09-02 15:17:15 +0100108 // List of intervals for core registers that must be processed, ordered by start
109 // position. Last entry is the interval that has the lowest start position.
110 // This list is initially populated before doing the linear scan.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100111 ArenaVector<LiveInterval*> unhandled_core_intervals_;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100112
113 // List of intervals for floating-point registers. Same comments as above.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100114 ArenaVector<LiveInterval*> unhandled_fp_intervals_;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100115
116 // Currently processed list of unhandled intervals. Either `unhandled_core_intervals_`
117 // or `unhandled_fp_intervals_`.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100118 ArenaVector<LiveInterval*>* unhandled_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100119
120 // List of intervals that have been processed.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100121 ArenaVector<LiveInterval*> handled_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100122
123 // List of intervals that are currently active when processing a new live interval.
124 // That is, they have a live range that spans the start of the new interval.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100125 ArenaVector<LiveInterval*> active_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100126
127 // List of intervals that are currently inactive when processing a new live interval.
128 // That is, they have a lifetime hole that spans the start of the new interval.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100129 ArenaVector<LiveInterval*> inactive_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100130
Nicolas Geoffray39468442014-09-02 15:17:15 +0100131 // Fixed intervals for physical registers. Such intervals cover the positions
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100132 // where an instruction requires a specific register.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100133 ArenaVector<LiveInterval*> physical_core_register_intervals_;
134 ArenaVector<LiveInterval*> physical_fp_register_intervals_;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100135
Nicolas Geoffray39468442014-09-02 15:17:15 +0100136 // Intervals for temporaries. Such intervals cover the positions
137 // where an instruction requires a temporary.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100138 ArenaVector<LiveInterval*> temp_intervals_;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100139
Nicolas Geoffray776b3182015-02-23 14:14:57 +0000140 // The spill slots allocated for live intervals. We ensure spill slots
141 // are typed to avoid (1) doing moves and swaps between two different kinds
142 // of registers, and (2) swapping between a single stack slot and a double
143 // stack slot. This simplifies the parallel move resolver.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100144 ArenaVector<size_t> int_spill_slots_;
145 ArenaVector<size_t> long_spill_slots_;
146 ArenaVector<size_t> float_spill_slots_;
147 ArenaVector<size_t> double_spill_slots_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100148
David Brazdil77a48ae2015-09-15 12:34:04 +0000149 // Spill slots allocated to catch phis. This category is special-cased because
150 // (1) slots are allocated prior to linear scan and in reverse linear order,
151 // (2) equivalent phis need to share slots despite having different types.
152 size_t catch_phi_spill_slots_;
153
Nicolas Geoffray39468442014-09-02 15:17:15 +0100154 // Instructions that need a safepoint.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100155 ArenaVector<HInstruction*> safepoints_;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100156
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100157 // True if processing core registers. False if processing floating
158 // point registers.
159 bool processing_core_registers_;
160
161 // Number of registers for the current register kind (core or floating point).
162 size_t number_of_registers_;
163
164 // Temporary array, allocated ahead of time for simplicity.
165 size_t* registers_array_;
166
167 // Blocked registers, as decided by the code generator.
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100168 bool* const blocked_core_registers_;
169 bool* const blocked_fp_registers_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100170
Nicolas Geoffray39468442014-09-02 15:17:15 +0100171 // Slots reserved for out arguments.
172 size_t reserved_out_slots_;
173
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700174 ART_FRIEND_TEST(RegisterAllocatorTest, FreeUntil);
Nicolas Geoffraydd8f8872015-01-15 15:37:37 +0000175 ART_FRIEND_TEST(RegisterAllocatorTest, SpillInactive);
Nicolas Geoffrayaac0f392014-09-16 14:11:14 +0100176
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -0700177 DISALLOW_COPY_AND_ASSIGN(RegisterAllocatorLinearScan);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100178};
179
180} // namespace art
181
Matthew Gharritye9288852016-07-14 14:08:16 -0700182#endif // ART_COMPILER_OPTIMIZING_REGISTER_ALLOCATOR_LINEAR_SCAN_H_