blob: 9c650a44d23ba5ac4925be156065dc32a7672c85 [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"
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070023#include "register_allocator.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010024
25namespace art {
26
27class CodeGenerator;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010028class HBasicBlock;
29class HGraph;
30class HInstruction;
31class HParallelMove;
David Brazdil77a48ae2015-09-15 12:34:04 +000032class HPhi;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010033class LiveInterval;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010034class Location;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010035class SsaLivenessAnalysis;
36
37/**
38 * An implementation of a linear scan register allocator on an `HGraph` with SSA form.
39 */
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070040class RegisterAllocatorLinearScan : public RegisterAllocator {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010041 public:
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070042 RegisterAllocatorLinearScan(ArenaAllocator* allocator,
43 CodeGenerator* codegen,
44 const SsaLivenessAnalysis& analysis);
Matthew Gharrityd9ffd0d2016-06-22 10:27:55 -070045 ~RegisterAllocatorLinearScan() OVERRIDE {}
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010046
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070047 void AllocateRegisters() OVERRIDE;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010048
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -070049 bool Validate(bool log_fatal_on_failure) OVERRIDE {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010050 processing_core_registers_ = true;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010051 if (!ValidateInternal(log_fatal_on_failure)) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010052 return false;
53 }
54 processing_core_registers_ = false;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010055 return ValidateInternal(log_fatal_on_failure);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010056 }
57
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010058 size_t GetNumberOfSpillSlots() const {
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010059 return int_spill_slots_.size()
60 + long_spill_slots_.size()
61 + float_spill_slots_.size()
62 + double_spill_slots_.size()
David Brazdil77a48ae2015-09-15 12:34:04 +000063 + catch_phi_spill_slots_;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010064 }
65
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010066 private:
67 // Main methods of the allocator.
68 void LinearScan();
69 bool TryAllocateFreeReg(LiveInterval* interval);
70 bool AllocateBlockedReg(LiveInterval* interval);
71
Nicolas Geoffray39468442014-09-02 15:17:15 +010072 // Add `interval` in the given sorted list.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010073 static void AddSorted(ArenaVector<LiveInterval*>* array, LiveInterval* interval);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010074
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010075 // Returns whether `reg` is blocked by the code generator.
76 bool IsBlocked(int reg) const;
77
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010078 // Update the interval for the register in `location` to cover [start, end).
Nicolas Geoffray102cbed2014-10-15 18:31:05 +010079 void BlockRegister(Location location, size_t start, size_t end);
David Brazdil77a48ae2015-09-15 12:34:04 +000080 void BlockRegisters(size_t start, size_t end, bool caller_save_only = false);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010081
David Brazdil77a48ae2015-09-15 12:34:04 +000082 // Allocate a spill slot for the given interval. Should be called in linear
83 // order of interval starting positions.
Nicolas Geoffray31d76b42014-06-09 15:02:22 +010084 void AllocateSpillSlotFor(LiveInterval* interval);
85
David Brazdil77a48ae2015-09-15 12:34:04 +000086 // Allocate a spill slot for the given catch phi. Will allocate the same slot
87 // for phis which share the same vreg. Must be called in reverse linear order
88 // of lifetime positions and ascending vreg numbers for correctness.
89 void AllocateSpillSlotForCatchPhi(HPhi* phi);
90
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010091 // Helper methods.
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010092 void AllocateRegistersInternal();
Nicolas Geoffray39468442014-09-02 15:17:15 +010093 void ProcessInstruction(HInstruction* instruction);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010094 bool ValidateInternal(bool log_fatal_on_failure) const;
95 void DumpInterval(std::ostream& stream, LiveInterval* interval) const;
Mingyao Yang296bd602014-10-06 16:47:28 -070096 void DumpAllIntervals(std::ostream& stream) const;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +000097 int FindAvailableRegisterPair(size_t* next_use, size_t starting_at) const;
Nicolas Geoffray8826f672015-04-17 09:15:11 +010098 int FindAvailableRegister(size_t* next_use, LiveInterval* current) const;
99 bool IsCallerSaveRegister(int reg) const;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100100
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000101 // Try splitting an active non-pair or unaligned pair interval at the given `position`.
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000102 // Returns whether it was successful at finding such an interval.
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000103 bool TrySplitNonPairOrUnalignedPairIntervalAt(size_t position,
104 size_t first_register_use,
105 size_t* next_use);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000106
Nicolas Geoffray39468442014-09-02 15:17:15 +0100107 // List of intervals for core registers that must be processed, ordered by start
108 // position. Last entry is the interval that has the lowest start position.
109 // This list is initially populated before doing the linear scan.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100110 ArenaVector<LiveInterval*> unhandled_core_intervals_;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100111
112 // List of intervals for floating-point registers. Same comments as above.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100113 ArenaVector<LiveInterval*> unhandled_fp_intervals_;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100114
115 // Currently processed list of unhandled intervals. Either `unhandled_core_intervals_`
116 // or `unhandled_fp_intervals_`.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100117 ArenaVector<LiveInterval*>* unhandled_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100118
119 // List of intervals that have been processed.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100120 ArenaVector<LiveInterval*> handled_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100121
122 // List of intervals that are currently active when processing a new live interval.
123 // That is, they have a live range that spans the start of the new interval.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100124 ArenaVector<LiveInterval*> active_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100125
126 // List of intervals that are currently inactive when processing a new live interval.
127 // That is, they have a lifetime hole that spans the start of the new interval.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100128 ArenaVector<LiveInterval*> inactive_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100129
Nicolas Geoffray39468442014-09-02 15:17:15 +0100130 // Fixed intervals for physical registers. Such intervals cover the positions
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100131 // where an instruction requires a specific register.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100132 ArenaVector<LiveInterval*> physical_core_register_intervals_;
133 ArenaVector<LiveInterval*> physical_fp_register_intervals_;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100134
Nicolas Geoffray39468442014-09-02 15:17:15 +0100135 // Intervals for temporaries. Such intervals cover the positions
136 // where an instruction requires a temporary.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100137 ArenaVector<LiveInterval*> temp_intervals_;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100138
Nicolas Geoffray776b3182015-02-23 14:14:57 +0000139 // The spill slots allocated for live intervals. We ensure spill slots
140 // are typed to avoid (1) doing moves and swaps between two different kinds
141 // of registers, and (2) swapping between a single stack slot and a double
142 // stack slot. This simplifies the parallel move resolver.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100143 ArenaVector<size_t> int_spill_slots_;
144 ArenaVector<size_t> long_spill_slots_;
145 ArenaVector<size_t> float_spill_slots_;
146 ArenaVector<size_t> double_spill_slots_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100147
David Brazdil77a48ae2015-09-15 12:34:04 +0000148 // Spill slots allocated to catch phis. This category is special-cased because
149 // (1) slots are allocated prior to linear scan and in reverse linear order,
150 // (2) equivalent phis need to share slots despite having different types.
151 size_t catch_phi_spill_slots_;
152
Nicolas Geoffray39468442014-09-02 15:17:15 +0100153 // Instructions that need a safepoint.
Vladimir Marko2aaa4b52015-09-17 17:03:26 +0100154 ArenaVector<HInstruction*> safepoints_;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100155
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100156 // True if processing core registers. False if processing floating
157 // point registers.
158 bool processing_core_registers_;
159
160 // Number of registers for the current register kind (core or floating point).
161 size_t number_of_registers_;
162
163 // Temporary array, allocated ahead of time for simplicity.
164 size_t* registers_array_;
165
166 // Blocked registers, as decided by the code generator.
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100167 bool* const blocked_core_registers_;
168 bool* const blocked_fp_registers_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100169
Nicolas Geoffray39468442014-09-02 15:17:15 +0100170 // Slots reserved for out arguments.
171 size_t reserved_out_slots_;
172
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700173 ART_FRIEND_TEST(RegisterAllocatorTest, FreeUntil);
Nicolas Geoffraydd8f8872015-01-15 15:37:37 +0000174 ART_FRIEND_TEST(RegisterAllocatorTest, SpillInactive);
Nicolas Geoffrayaac0f392014-09-16 14:11:14 +0100175
Matthew Gharrity8f49d4b2016-07-14 13:24:00 -0700176 DISALLOW_COPY_AND_ASSIGN(RegisterAllocatorLinearScan);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100177};
178
179} // namespace art
180
Matthew Gharritye9288852016-07-14 14:08:16 -0700181#endif // ART_COMPILER_OPTIMIZING_REGISTER_ALLOCATOR_LINEAR_SCAN_H_