blob: f737491026c04f818196e040b222845d28941928 [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
17#ifndef ART_COMPILER_OPTIMIZING_REGISTER_ALLOCATOR_H_
18#define ART_COMPILER_OPTIMIZING_REGISTER_ALLOCATOR_H_
19
20#include "base/macros.h"
Ian Rogerse63db272014-07-15 15:36:11 -070021#include "primitive.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010022#include "utils/growable_array.h"
23
24namespace art {
25
26class CodeGenerator;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010027class HBasicBlock;
28class HGraph;
29class HInstruction;
30class HParallelMove;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010031class LiveInterval;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010032class Location;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010033class SsaLivenessAnalysis;
34
35/**
36 * An implementation of a linear scan register allocator on an `HGraph` with SSA form.
37 */
38class RegisterAllocator {
39 public:
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010040 RegisterAllocator(ArenaAllocator* allocator,
41 CodeGenerator* codegen,
42 const SsaLivenessAnalysis& analysis);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010043
44 // Main entry point for the register allocator. Given the liveness analysis,
45 // allocates registers to live intervals.
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010046 void AllocateRegisters();
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010047
48 // Validate that the register allocator did not allocate the same register to
49 // intervals that intersect each other. Returns false if it did not.
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010050 bool Validate(bool log_fatal_on_failure) {
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
59 // Helper method for validation. Used by unit testing.
60 static bool ValidateIntervals(const GrowableArray<LiveInterval*>& intervals,
Nicolas Geoffray31d76b42014-06-09 15:02:22 +010061 size_t number_of_spill_slots,
Nicolas Geoffray39468442014-09-02 15:17:15 +010062 size_t number_of_out_slots,
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010063 const CodeGenerator& codegen,
64 ArenaAllocator* allocator,
65 bool processing_core_registers,
66 bool log_fatal_on_failure);
67
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010068 static bool CanAllocateRegistersFor(const HGraph& graph, InstructionSet instruction_set);
69 static bool Supports(InstructionSet instruction_set) {
Nicolas Geoffray93bedb72014-07-18 10:23:59 +010070 return instruction_set == kX86
71 || instruction_set == kArm
72 || instruction_set == kX86_64
73 || instruction_set == kThumb2;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010074 }
75
76 size_t GetNumberOfSpillSlots() const {
77 return spill_slots_.Size();
78 }
79
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010080 private:
81 // Main methods of the allocator.
82 void LinearScan();
83 bool TryAllocateFreeReg(LiveInterval* interval);
84 bool AllocateBlockedReg(LiveInterval* interval);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010085 void Resolve();
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010086
Nicolas Geoffray39468442014-09-02 15:17:15 +010087 // Add `interval` in the given sorted list.
88 static void AddSorted(GrowableArray<LiveInterval*>* array, LiveInterval* interval);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010089
90 // Split `interval` at the position `at`. The new interval starts at `at`.
91 LiveInterval* Split(LiveInterval* interval, size_t at);
92
93 // Returns whether `reg` is blocked by the code generator.
94 bool IsBlocked(int reg) const;
95
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +010096 // Update the interval for the register in `location` to cover [start, end).
97 void BlockRegister(Location location, size_t start, size_t end, Primitive::Type type);
98
Nicolas Geoffray31d76b42014-06-09 15:02:22 +010099 // Allocate a spill slot for the given interval.
100 void AllocateSpillSlotFor(LiveInterval* interval);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100101 void AllocateOneSpillSlot(LiveInterval* interval, size_t end);
102 void AllocateTwoSpillSlots(LiveInterval* interval, size_t end);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100103
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100104 // Connect adjacent siblings within blocks.
105 void ConnectSiblings(LiveInterval* interval);
106
107 // Connect siblings between block entries and exits.
108 void ConnectSplitSiblings(LiveInterval* interval, HBasicBlock* from, HBasicBlock* to) const;
109
110 // Helper methods to insert parallel moves in the graph.
111 void InsertParallelMoveAtExitOf(HBasicBlock* block, Location source, Location destination) const;
112 void InsertParallelMoveAtEntryOf(HBasicBlock* block, Location source, Location destination) const;
113 void InsertMoveAfter(HInstruction* instruction, Location source, Location destination) const;
114 void AddInputMoveFor(HInstruction* instruction, Location source, Location destination) const;
115 void InsertParallelMoveAt(size_t position, Location source, Location destination) const;
116
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100117 // Helper methods.
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100118 void AllocateRegistersInternal();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100119 void ProcessInstruction(HInstruction* instruction);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100120 bool ValidateInternal(bool log_fatal_on_failure) const;
121 void DumpInterval(std::ostream& stream, LiveInterval* interval) const;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100122
123 ArenaAllocator* const allocator_;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100124 CodeGenerator* const codegen_;
125 const SsaLivenessAnalysis& liveness_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100126
Nicolas Geoffray39468442014-09-02 15:17:15 +0100127 // List of intervals for core registers that must be processed, ordered by start
128 // position. Last entry is the interval that has the lowest start position.
129 // This list is initially populated before doing the linear scan.
130 GrowableArray<LiveInterval*> unhandled_core_intervals_;
131
132 // List of intervals for floating-point registers. Same comments as above.
133 GrowableArray<LiveInterval*> unhandled_fp_intervals_;
134
135 // Currently processed list of unhandled intervals. Either `unhandled_core_intervals_`
136 // or `unhandled_fp_intervals_`.
137 GrowableArray<LiveInterval*>* unhandled_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100138
139 // List of intervals that have been processed.
140 GrowableArray<LiveInterval*> handled_;
141
142 // List of intervals that are currently active when processing a new live interval.
143 // That is, they have a live range that spans the start of the new interval.
144 GrowableArray<LiveInterval*> active_;
145
146 // List of intervals that are currently inactive when processing a new live interval.
147 // That is, they have a lifetime hole that spans the start of the new interval.
148 GrowableArray<LiveInterval*> inactive_;
149
Nicolas Geoffray39468442014-09-02 15:17:15 +0100150 // Fixed intervals for physical registers. Such intervals cover the positions
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100151 // where an instruction requires a specific register.
152 GrowableArray<LiveInterval*> physical_register_intervals_;
153
Nicolas Geoffray39468442014-09-02 15:17:15 +0100154 // Intervals for temporaries. Such intervals cover the positions
155 // where an instruction requires a temporary.
156 GrowableArray<LiveInterval*> temp_intervals_;
157
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100158 // The spill slots allocated for live intervals.
159 GrowableArray<size_t> spill_slots_;
160
Nicolas Geoffray39468442014-09-02 15:17:15 +0100161 // Instructions that need a safepoint.
162 GrowableArray<HInstruction*> safepoints_;
163
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100164 // True if processing core registers. False if processing floating
165 // point registers.
166 bool processing_core_registers_;
167
168 // Number of registers for the current register kind (core or floating point).
169 size_t number_of_registers_;
170
171 // Temporary array, allocated ahead of time for simplicity.
172 size_t* registers_array_;
173
174 // Blocked registers, as decided by the code generator.
175 bool* const blocked_registers_;
176
Nicolas Geoffray39468442014-09-02 15:17:15 +0100177 // Slots reserved for out arguments.
178 size_t reserved_out_slots_;
179
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100180 DISALLOW_COPY_AND_ASSIGN(RegisterAllocator);
181};
182
183} // namespace art
184
185#endif // ART_COMPILER_OPTIMIZING_REGISTER_ALLOCATOR_H_