blob: 5b05263575dcc45d2d1f9e53ee8066054660d49f [file] [log] [blame]
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +00001// Copyright 2012 the V8 project authors. All rights reserved.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_LITHIUM_ALLOCATOR_H_
29#define V8_LITHIUM_ALLOCATOR_H_
30
31#include "v8.h"
32
lrn@chromium.org1c092762011-05-09 09:42:16 +000033#include "allocation.h"
ricow@chromium.org83aa5492011-02-07 12:42:56 +000034#include "lithium.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000035#include "zone.h"
36
37namespace v8 {
38namespace internal {
39
40// Forward declarations.
41class HBasicBlock;
42class HGraph;
43class HInstruction;
44class HPhi;
45class HTracer;
46class HValue;
47class BitVector;
48class StringStream;
49
50class LArgument;
jkummerow@chromium.org28583c92012-07-16 11:31:55 +000051class LPlatformChunk;
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +000052class LOperand;
53class LUnallocated;
kasperl@chromium.orga5551262010-12-07 12:49:48 +000054class LConstantOperand;
55class LGap;
kasperl@chromium.orga5551262010-12-07 12:49:48 +000056class LParallelMove;
57class LPointerMap;
58class LStackSlot;
59class LRegister;
60
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000061
kasperl@chromium.orga5551262010-12-07 12:49:48 +000062// This class represents a single point of a LOperand's lifetime.
63// For each lithium instruction there are exactly two lifetime positions:
64// the beginning and the end of the instruction. Lifetime positions for
65// different lithium instructions are disjoint.
66class LifetimePosition {
67 public:
68 // Return the lifetime position that corresponds to the beginning of
69 // the instruction with the given index.
70 static LifetimePosition FromInstructionIndex(int index) {
71 return LifetimePosition(index * kStep);
72 }
73
74 // Returns a numeric representation of this lifetime position.
75 int Value() const {
76 return value_;
77 }
78
79 // Returns the index of the instruction to which this lifetime position
80 // corresponds.
81 int InstructionIndex() const {
82 ASSERT(IsValid());
83 return value_ / kStep;
84 }
85
86 // Returns true if this lifetime position corresponds to the instruction
87 // start.
88 bool IsInstructionStart() const {
89 return (value_ & (kStep - 1)) == 0;
90 }
91
92 // Returns the lifetime position for the start of the instruction which
93 // corresponds to this lifetime position.
94 LifetimePosition InstructionStart() const {
95 ASSERT(IsValid());
96 return LifetimePosition(value_ & ~(kStep - 1));
97 }
98
99 // Returns the lifetime position for the end of the instruction which
100 // corresponds to this lifetime position.
101 LifetimePosition InstructionEnd() const {
102 ASSERT(IsValid());
103 return LifetimePosition(InstructionStart().Value() + kStep/2);
104 }
105
106 // Returns the lifetime position for the beginning of the next instruction.
107 LifetimePosition NextInstruction() const {
108 ASSERT(IsValid());
109 return LifetimePosition(InstructionStart().Value() + kStep);
110 }
111
112 // Returns the lifetime position for the beginning of the previous
113 // instruction.
114 LifetimePosition PrevInstruction() const {
115 ASSERT(IsValid());
116 ASSERT(value_ > 1);
117 return LifetimePosition(InstructionStart().Value() - kStep);
118 }
119
120 // Constructs the lifetime position which does not correspond to any
121 // instruction.
122 LifetimePosition() : value_(-1) {}
123
124 // Returns true if this lifetime positions corrensponds to some
125 // instruction.
126 bool IsValid() const { return value_ != -1; }
127
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000128 static inline LifetimePosition Invalid() { return LifetimePosition(); }
129
130 static inline LifetimePosition MaxPosition() {
131 // We have to use this kind of getter instead of static member due to
132 // crash bug in GDB.
133 return LifetimePosition(kMaxInt);
134 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000135
136 private:
137 static const int kStep = 2;
138
139 // Code relies on kStep being a power of two.
140 STATIC_ASSERT(IS_POWER_OF_TWO(kStep));
141
142 explicit LifetimePosition(int value) : value_(value) { }
143
144 int value_;
145};
146
147
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000148enum RegisterKind {
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000149 GENERAL_REGISTERS,
150 DOUBLE_REGISTERS
151};
152
153
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000154// A register-allocator view of a Lithium instruction. It contains the id of
155// the output operand and a list of input operand uses.
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000156
157class LInstruction;
158class LEnvironment;
159
160// Iterator for non-null temp operands.
161class TempIterator BASE_EMBEDDED {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000162 public:
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000163 inline explicit TempIterator(LInstruction* instr);
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000164 inline bool Done();
165 inline LOperand* Current();
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000166 inline void Advance();
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000167
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000168 private:
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000169 inline void SkipUninteresting();
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000170 LInstruction* instr_;
171 int limit_;
172 int current_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000173};
174
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000175
176// Iterator for non-constant input operands.
177class InputIterator BASE_EMBEDDED {
178 public:
179 inline explicit InputIterator(LInstruction* instr);
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000180 inline bool Done();
181 inline LOperand* Current();
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000182 inline void Advance();
183
184 private:
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000185 inline void SkipUninteresting();
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000186 LInstruction* instr_;
187 int limit_;
188 int current_;
189};
190
191
192class UseIterator BASE_EMBEDDED {
193 public:
194 inline explicit UseIterator(LInstruction* instr);
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000195 inline bool Done();
196 inline LOperand* Current();
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000197 inline void Advance();
198
199 private:
200 InputIterator input_iterator_;
201 DeepIterator env_iterator_;
202};
203
204
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000205// Representation of the non-empty interval [start,end[.
206class UseInterval: public ZoneObject {
207 public:
208 UseInterval(LifetimePosition start, LifetimePosition end)
209 : start_(start), end_(end), next_(NULL) {
210 ASSERT(start.Value() < end.Value());
211 }
212
213 LifetimePosition start() const { return start_; }
214 LifetimePosition end() const { return end_; }
215 UseInterval* next() const { return next_; }
216
217 // Split this interval at the given position without effecting the
218 // live range that owns it. The interval must contain the position.
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000219 void SplitAt(LifetimePosition pos, Zone* zone);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000220
221 // If this interval intersects with other return smallest position
222 // that belongs to both of them.
223 LifetimePosition Intersect(const UseInterval* other) const {
224 if (other->start().Value() < start_.Value()) return other->Intersect(this);
225 if (other->start().Value() < end_.Value()) return other->start();
226 return LifetimePosition::Invalid();
227 }
228
229 bool Contains(LifetimePosition point) const {
230 return start_.Value() <= point.Value() && point.Value() < end_.Value();
231 }
232
233 private:
234 void set_start(LifetimePosition start) { start_ = start; }
235 void set_next(UseInterval* next) { next_ = next; }
236
237 LifetimePosition start_;
238 LifetimePosition end_;
239 UseInterval* next_;
240
241 friend class LiveRange; // Assigns to start_.
242};
243
244// Representation of a use position.
245class UsePosition: public ZoneObject {
246 public:
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000247 UsePosition(LifetimePosition pos, LOperand* operand);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000248
249 LOperand* operand() const { return operand_; }
250 bool HasOperand() const { return operand_ != NULL; }
251
252 LOperand* hint() const { return hint_; }
253 void set_hint(LOperand* hint) { hint_ = hint; }
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000254 bool HasHint() const;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000255 bool RequiresRegister() const;
256 bool RegisterIsBeneficial() const;
257
258 LifetimePosition pos() const { return pos_; }
259 UsePosition* next() const { return next_; }
260
261 private:
262 void set_next(UsePosition* next) { next_ = next; }
263
264 LOperand* operand_;
265 LOperand* hint_;
266 LifetimePosition pos_;
267 UsePosition* next_;
268 bool requires_reg_;
269 bool register_beneficial_;
270
271 friend class LiveRange;
272};
273
274// Representation of SSA values' live ranges as a collection of (continuous)
275// intervals over the instruction ordering.
276class LiveRange: public ZoneObject {
277 public:
278 static const int kInvalidAssignment = 0x7fffffff;
279
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000280 LiveRange(int id, Zone* zone);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000281
282 UseInterval* first_interval() const { return first_interval_; }
283 UsePosition* first_pos() const { return first_pos_; }
284 LiveRange* parent() const { return parent_; }
285 LiveRange* TopLevel() { return (parent_ == NULL) ? this : parent_; }
286 LiveRange* next() const { return next_; }
287 bool IsChild() const { return parent() != NULL; }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000288 int id() const { return id_; }
289 bool IsFixed() const { return id_ < 0; }
290 bool IsEmpty() const { return first_interval() == NULL; }
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000291 LOperand* CreateAssignedOperand(Zone* zone);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000292 int assigned_register() const { return assigned_register_; }
293 int spill_start_index() const { return spill_start_index_; }
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000294 void set_assigned_register(int reg,
295 RegisterKind register_kind,
296 Zone* zone);
297 void MakeSpilled(Zone* zone);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000298
299 // Returns use position in this live range that follows both start
300 // and last processed use position.
301 // Modifies internal state of live range!
302 UsePosition* NextUsePosition(LifetimePosition start);
303
304 // Returns use position for which register is required in this live
305 // range and which follows both start and last processed use position
306 // Modifies internal state of live range!
307 UsePosition* NextRegisterPosition(LifetimePosition start);
308
309 // Returns use position for which register is beneficial in this live
310 // range and which follows both start and last processed use position
311 // Modifies internal state of live range!
312 UsePosition* NextUsePositionRegisterIsBeneficial(LifetimePosition start);
313
314 // Can this live range be spilled at this position.
315 bool CanBeSpilled(LifetimePosition pos);
316
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000317 // Split this live range at the given position which must follow the start of
318 // the range.
319 // All uses following the given position will be moved from this
320 // live range to the result live range.
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000321 void SplitAt(LifetimePosition position, LiveRange* result, Zone* zone);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000322
danno@chromium.org2c456792011-11-11 12:00:53 +0000323 bool IsDouble() const { return is_double_; }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000324 bool HasRegisterAssigned() const {
325 return assigned_register_ != kInvalidAssignment;
326 }
327 bool IsSpilled() const { return spilled_; }
328 UsePosition* FirstPosWithHint() const;
329
330 LOperand* FirstHint() const {
331 UsePosition* pos = FirstPosWithHint();
332 if (pos != NULL) return pos->hint();
333 return NULL;
334 }
335
336 LifetimePosition Start() const {
337 ASSERT(!IsEmpty());
338 return first_interval()->start();
339 }
340
341 LifetimePosition End() const {
342 ASSERT(!IsEmpty());
343 return last_interval_->end();
344 }
345
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000346 bool HasAllocatedSpillOperand() const;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000347 LOperand* GetSpillOperand() const { return spill_operand_; }
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000348 void SetSpillOperand(LOperand* operand);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000349
350 void SetSpillStartIndex(int start) {
351 spill_start_index_ = Min(start, spill_start_index_);
352 }
353
354 bool ShouldBeAllocatedBefore(const LiveRange* other) const;
355 bool CanCover(LifetimePosition position) const;
356 bool Covers(LifetimePosition position);
357 LifetimePosition FirstIntersection(LiveRange* other);
358
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000359 // Add a new interval or a new use position to this live range.
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000360 void EnsureInterval(LifetimePosition start,
361 LifetimePosition end,
362 Zone* zone);
363 void AddUseInterval(LifetimePosition start,
364 LifetimePosition end,
365 Zone* zone);
366 UsePosition* AddUsePosition(LifetimePosition pos,
367 LOperand* operand,
368 Zone* zone);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000369
370 // Shorten the most recently added interval by setting a new start.
371 void ShortenTo(LifetimePosition start);
372
373#ifdef DEBUG
374 // True if target overlaps an existing interval.
375 bool HasOverlap(UseInterval* target) const;
376 void Verify() const;
377#endif
378
379 private:
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000380 void ConvertOperands(Zone* zone);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000381 UseInterval* FirstSearchIntervalForPosition(LifetimePosition position) const;
382 void AdvanceLastProcessedMarker(UseInterval* to_start_of,
383 LifetimePosition but_not_past) const;
384
385 int id_;
386 bool spilled_;
danno@chromium.org2c456792011-11-11 12:00:53 +0000387 bool is_double_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000388 int assigned_register_;
389 UseInterval* last_interval_;
390 UseInterval* first_interval_;
391 UsePosition* first_pos_;
392 LiveRange* parent_;
393 LiveRange* next_;
394 // This is used as a cache, it doesn't affect correctness.
395 mutable UseInterval* current_interval_;
396 UsePosition* last_processed_use_;
397 LOperand* spill_operand_;
398 int spill_start_index_;
399};
400
401
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000402class GrowableBitVector BASE_EMBEDDED {
403 public:
404 GrowableBitVector() : bits_(NULL) { }
405
406 bool Contains(int value) const {
407 if (!InBitsRange(value)) return false;
408 return bits_->Contains(value);
409 }
410
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000411 void Add(int value, Zone* zone) {
412 EnsureCapacity(value, zone);
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000413 bits_->Add(value);
414 }
415
416 private:
417 static const int kInitialLength = 1024;
418
419 bool InBitsRange(int value) const {
420 return bits_ != NULL && bits_->length() > value;
421 }
422
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000423 void EnsureCapacity(int value, Zone* zone) {
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000424 if (InBitsRange(value)) return;
425 int new_length = bits_ == NULL ? kInitialLength : bits_->length();
426 while (new_length <= value) new_length *= 2;
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000427 BitVector* new_bits = new(zone) BitVector(new_length, zone);
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000428 if (bits_ != NULL) new_bits->CopyFrom(*bits_);
429 bits_ = new_bits;
430 }
431
432 BitVector* bits_;
433};
434
435
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000436class LAllocator BASE_EMBEDDED {
437 public:
whesse@chromium.orgb08986c2011-03-14 16:13:42 +0000438 LAllocator(int first_virtual_register, HGraph* graph);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000439
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000440 static void TraceAlloc(const char* msg, ...);
441
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000442 // Checks whether the value of a given virtual register is tagged.
443 bool HasTaggedValue(int virtual_register) const;
444
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000445 // Returns the register kind required by the given virtual register.
446 RegisterKind RequiredRegisterKind(int virtual_register) const;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000447
rossberg@chromium.org994edf62012-02-06 10:12:55 +0000448 bool Allocate(LChunk* chunk);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000449
450 const ZoneList<LiveRange*>* live_ranges() const { return &live_ranges_; }
whesse@chromium.orgb08986c2011-03-14 16:13:42 +0000451 const Vector<LiveRange*>* fixed_live_ranges() const {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000452 return &fixed_live_ranges_;
453 }
whesse@chromium.orgb08986c2011-03-14 16:13:42 +0000454 const Vector<LiveRange*>* fixed_double_live_ranges() const {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000455 return &fixed_double_live_ranges_;
456 }
457
jkummerow@chromium.org28583c92012-07-16 11:31:55 +0000458 LPlatformChunk* chunk() const { return chunk_; }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000459 HGraph* graph() const { return graph_; }
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000460 Zone* zone() const { return zone_; }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000461
rossberg@chromium.org994edf62012-02-06 10:12:55 +0000462 int GetVirtualRegister() {
463 if (next_virtual_register_ > LUnallocated::kMaxVirtualRegisters) {
464 allocation_ok_ = false;
465 }
466 return next_virtual_register_++;
467 }
468
469 bool AllocationOk() { return allocation_ok_; }
470
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000471 void MarkAsOsrEntry() {
472 // There can be only one.
473 ASSERT(!has_osr_entry_);
474 // Simply set a flag to find and process instruction later.
475 has_osr_entry_ = true;
476 }
477
478#ifdef DEBUG
479 void Verify() const;
480#endif
481
482 private:
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000483 void MeetRegisterConstraints();
484 void ResolvePhis();
485 void BuildLiveRanges();
486 void AllocateGeneralRegisters();
487 void AllocateDoubleRegisters();
488 void ConnectRanges();
489 void ResolveControlFlow();
490 void PopulatePointerMaps();
491 void ProcessOsrEntry();
492 void AllocateRegisters();
493 bool CanEagerlyResolveControlFlow(HBasicBlock* block) const;
494 inline bool SafePointsAreInOrder() const;
495
496 // Liveness analysis support.
497 void InitializeLivenessAnalysis();
498 BitVector* ComputeLiveOut(HBasicBlock* block);
499 void AddInitialIntervals(HBasicBlock* block, BitVector* live_out);
500 void ProcessInstructions(HBasicBlock* block, BitVector* live);
501 void MeetRegisterConstraints(HBasicBlock* block);
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000502 void MeetConstraintsBetween(LInstruction* first,
503 LInstruction* second,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000504 int gap_index);
505 void ResolvePhis(HBasicBlock* block);
506
507 // Helper methods for building intervals.
508 LOperand* AllocateFixed(LUnallocated* operand, int pos, bool is_tagged);
509 LiveRange* LiveRangeFor(LOperand* operand);
510 void Define(LifetimePosition position, LOperand* operand, LOperand* hint);
511 void Use(LifetimePosition block_start,
512 LifetimePosition position,
513 LOperand* operand,
514 LOperand* hint);
515 void AddConstraintsGapMove(int index, LOperand* from, LOperand* to);
516
517 // Helper methods for updating the life range lists.
518 void AddToActive(LiveRange* range);
519 void AddToInactive(LiveRange* range);
520 void AddToUnhandledSorted(LiveRange* range);
521 void AddToUnhandledUnsorted(LiveRange* range);
522 void SortUnhandled();
523 bool UnhandledIsSorted();
524 void ActiveToHandled(LiveRange* range);
525 void ActiveToInactive(LiveRange* range);
526 void InactiveToHandled(LiveRange* range);
527 void InactiveToActive(LiveRange* range);
528 void FreeSpillSlot(LiveRange* range);
529 LOperand* TryReuseSpillSlot(LiveRange* range);
530
531 // Helper methods for allocating registers.
532 bool TryAllocateFreeReg(LiveRange* range);
533 void AllocateBlockedReg(LiveRange* range);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000534
535 // Live range splitting helpers.
536
537 // Split the given range at the given position.
538 // If range starts at or after the given position then the
539 // original range is returned.
540 // Otherwise returns the live range that starts at pos and contains
541 // all uses from the original range that follow pos. Uses at pos will
542 // still be owned by the original range after splitting.
rossberg@chromium.org994edf62012-02-06 10:12:55 +0000543 LiveRange* SplitRangeAt(LiveRange* range, LifetimePosition pos);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000544
545 // Split the given range in a position from the interval [start, end].
546 LiveRange* SplitBetween(LiveRange* range,
547 LifetimePosition start,
548 LifetimePosition end);
549
550 // Find a lifetime position in the interval [start, end] which
551 // is optimal for splitting: it is either header of the outermost
552 // loop covered by this interval or the latest possible position.
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000553 LifetimePosition FindOptimalSplitPos(LifetimePosition start,
554 LifetimePosition end);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000555
556 // Spill the given life range after position pos.
557 void SpillAfter(LiveRange* range, LifetimePosition pos);
558
559 // Spill the given life range after position start and up to position end.
560 void SpillBetween(LiveRange* range,
561 LifetimePosition start,
562 LifetimePosition end);
563
564 void SplitAndSpillIntersecting(LiveRange* range);
565
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000566 void Spill(LiveRange* range);
567 bool IsBlockBoundary(LifetimePosition pos);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000568
569 // Helper methods for resolving control flow.
570 void ResolveControlFlow(LiveRange* range,
571 HBasicBlock* block,
572 HBasicBlock* pred);
573
574 // Return parallel move that should be used to connect ranges split at the
575 // given position.
576 LParallelMove* GetConnectingParallelMove(LifetimePosition pos);
577
578 // Return the block which contains give lifetime position.
579 HBasicBlock* GetBlock(LifetimePosition pos);
580
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000581 // Helper methods for the fixed registers.
582 int RegisterCount() const;
583 static int FixedLiveRangeID(int index) { return -index - 1; }
584 static int FixedDoubleLiveRangeID(int index);
585 LiveRange* FixedLiveRangeFor(int index);
586 LiveRange* FixedDoubleLiveRangeFor(int index);
587 LiveRange* LiveRangeFor(int index);
588 HPhi* LookupPhi(LOperand* operand) const;
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000589 LGap* GetLastGap(HBasicBlock* block);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000590
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000591 const char* RegisterName(int allocation_index);
592
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000593 inline bool IsGapAt(int index);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000594
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000595 inline LInstruction* InstructionAt(int index);
596
597 inline LGap* GapAt(int index);
598
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000599 Zone* zone_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000600
jkummerow@chromium.org28583c92012-07-16 11:31:55 +0000601 LPlatformChunk* chunk_;
rossberg@chromium.org994edf62012-02-06 10:12:55 +0000602
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000603 // During liveness analysis keep a mapping from block id to live_in sets
604 // for blocks already analyzed.
605 ZoneList<BitVector*> live_in_sets_;
606
607 // Liveness analysis results.
608 ZoneList<LiveRange*> live_ranges_;
609
610 // Lists of live ranges
whesse@chromium.orgb08986c2011-03-14 16:13:42 +0000611 EmbeddedVector<LiveRange*, Register::kNumAllocatableRegisters>
612 fixed_live_ranges_;
613 EmbeddedVector<LiveRange*, DoubleRegister::kNumAllocatableRegisters>
614 fixed_double_live_ranges_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000615 ZoneList<LiveRange*> unhandled_live_ranges_;
616 ZoneList<LiveRange*> active_live_ranges_;
617 ZoneList<LiveRange*> inactive_live_ranges_;
618 ZoneList<LiveRange*> reusable_slots_;
619
620 // Next virtual register number to be assigned to temporaries.
621 int next_virtual_register_;
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000622 int first_artificial_register_;
623 GrowableBitVector double_artificial_registers_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000624
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000625 RegisterKind mode_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000626 int num_registers_;
627
628 HGraph* graph_;
629
630 bool has_osr_entry_;
631
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000632 // Indicates success or failure during register allocation.
633 bool allocation_ok_;
634
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000635 DISALLOW_COPY_AND_ASSIGN(LAllocator);
636};
637
638
639} } // namespace v8::internal
640
641#endif // V8_LITHIUM_ALLOCATOR_H_