Remove the unused HElementsKind instruction.
[platform/upstream/v8.git] / src / x64 / lithium-x64.h
1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // 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_X64_LITHIUM_X64_H_
29 #define V8_X64_LITHIUM_X64_H_
30
31 #include "hydrogen.h"
32 #include "lithium-allocator.h"
33 #include "lithium.h"
34 #include "safepoint-table.h"
35 #include "utils.h"
36
37 namespace v8 {
38 namespace internal {
39
40 // Forward declarations.
41 class LCodeGen;
42
43 #define LITHIUM_CONCRETE_INSTRUCTION_LIST(V)    \
44   V(AccessArgumentsAt)                          \
45   V(AddI)                                       \
46   V(Allocate)                                   \
47   V(ApplyArguments)                             \
48   V(ArgumentsElements)                          \
49   V(ArgumentsLength)                            \
50   V(ArithmeticD)                                \
51   V(ArithmeticT)                                \
52   V(BitI)                                       \
53   V(BoundsCheck)                                \
54   V(Branch)                                     \
55   V(CallJSFunction)                             \
56   V(CallWithDescriptor)                         \
57   V(CallFunction)                               \
58   V(CallNew)                                    \
59   V(CallNewArray)                               \
60   V(CallRuntime)                                \
61   V(CallStub)                                   \
62   V(CheckInstanceType)                          \
63   V(CheckMaps)                                  \
64   V(CheckMapValue)                              \
65   V(CheckNonSmi)                                \
66   V(CheckSmi)                                   \
67   V(CheckValue)                                 \
68   V(ClampDToUint8)                              \
69   V(ClampIToUint8)                              \
70   V(ClampTToUint8)                              \
71   V(ClassOfTestAndBranch)                       \
72   V(CompareMinusZeroAndBranch)                  \
73   V(CompareNumericAndBranch)                    \
74   V(CmpObjectEqAndBranch)                       \
75   V(CmpHoleAndBranch)                           \
76   V(CmpMapAndBranch)                            \
77   V(CmpT)                                       \
78   V(ConstantD)                                  \
79   V(ConstantE)                                  \
80   V(ConstantI)                                  \
81   V(ConstantS)                                  \
82   V(ConstantT)                                  \
83   V(Context)                                    \
84   V(DateField)                                  \
85   V(DebugBreak)                                 \
86   V(DeclareGlobals)                             \
87   V(Deoptimize)                                 \
88   V(DivI)                                       \
89   V(DoubleToI)                                  \
90   V(DoubleToSmi)                                \
91   V(Drop)                                       \
92   V(DummyUse)                                   \
93   V(Dummy)                                      \
94   V(ForInCacheArray)                            \
95   V(ForInPrepareMap)                            \
96   V(FunctionLiteral)                            \
97   V(GetCachedArrayIndex)                        \
98   V(Goto)                                       \
99   V(HasCachedArrayIndexAndBranch)               \
100   V(HasInstanceTypeAndBranch)                   \
101   V(InnerAllocatedObject)                       \
102   V(InstanceOf)                                 \
103   V(InstanceOfKnownGlobal)                      \
104   V(InstructionGap)                             \
105   V(Integer32ToDouble)                          \
106   V(Integer32ToSmi)                             \
107   V(InvokeFunction)                             \
108   V(IsConstructCallAndBranch)                   \
109   V(IsObjectAndBranch)                          \
110   V(IsStringAndBranch)                          \
111   V(IsSmiAndBranch)                             \
112   V(IsUndetectableAndBranch)                    \
113   V(Label)                                      \
114   V(LazyBailout)                                \
115   V(LoadContextSlot)                            \
116   V(LoadRoot)                                   \
117   V(LoadFieldByIndex)                           \
118   V(LoadFunctionPrototype)                      \
119   V(LoadGlobalCell)                             \
120   V(LoadGlobalGeneric)                          \
121   V(LoadKeyed)                                  \
122   V(LoadKeyedGeneric)                           \
123   V(LoadNamedField)                             \
124   V(LoadNamedGeneric)                           \
125   V(MapEnumLength)                              \
126   V(MathAbs)                                    \
127   V(MathExp)                                    \
128   V(MathFloor)                                  \
129   V(MathFloorOfDiv)                             \
130   V(MathLog)                                    \
131   V(MathMinMax)                                 \
132   V(MathPowHalf)                                \
133   V(MathRound)                                  \
134   V(MathSqrt)                                   \
135   V(ModI)                                       \
136   V(MulI)                                       \
137   V(NumberTagD)                                 \
138   V(NumberTagI)                                 \
139   V(NumberTagU)                                 \
140   V(NumberUntagD)                               \
141   V(OsrEntry)                                   \
142   V(Parameter)                                  \
143   V(Power)                                      \
144   V(PushArgument)                               \
145   V(RegExpLiteral)                              \
146   V(Return)                                     \
147   V(SeqStringGetChar)                           \
148   V(SeqStringSetChar)                           \
149   V(ShiftI)                                     \
150   V(SmiTag)                                     \
151   V(SmiUntag)                                   \
152   V(StackCheck)                                 \
153   V(StoreCodeEntry)                             \
154   V(StoreContextSlot)                           \
155   V(StoreGlobalCell)                            \
156   V(StoreKeyed)                                 \
157   V(StoreKeyedGeneric)                          \
158   V(StoreNamedField)                            \
159   V(StoreNamedGeneric)                          \
160   V(StringAdd)                                  \
161   V(StringCharCodeAt)                           \
162   V(StringCharFromCode)                         \
163   V(StringCompareAndBranch)                     \
164   V(SubI)                                       \
165   V(TaggedToI)                                  \
166   V(ThisFunction)                               \
167   V(Throw)                                      \
168   V(ToFastProperties)                           \
169   V(TransitionElementsKind)                     \
170   V(TrapAllocationMemento)                      \
171   V(Typeof)                                     \
172   V(TypeofIsAndBranch)                          \
173   V(Uint32ToDouble)                             \
174   V(Uint32ToSmi)                                \
175   V(UnknownOSRValue)                            \
176   V(WrapReceiver)
177
178
179 #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic)                        \
180   virtual Opcode opcode() const V8_FINAL V8_OVERRIDE {                      \
181     return LInstruction::k##type;                                           \
182   }                                                                         \
183   virtual void CompileToNative(LCodeGen* generator) V8_FINAL V8_OVERRIDE;   \
184   virtual const char* Mnemonic() const V8_FINAL V8_OVERRIDE {               \
185     return mnemonic;                                                        \
186   }                                                                         \
187   static L##type* cast(LInstruction* instr) {                               \
188     ASSERT(instr->Is##type());                                              \
189     return reinterpret_cast<L##type*>(instr);                               \
190   }
191
192
193 #define DECLARE_HYDROGEN_ACCESSOR(type)     \
194   H##type* hydrogen() const {               \
195     return H##type::cast(hydrogen_value()); \
196   }
197
198
199 class LInstruction : public ZoneObject {
200  public:
201   LInstruction()
202       : environment_(NULL),
203         hydrogen_value_(NULL),
204         bit_field_(IsCallBits::encode(false)) {
205   }
206
207   virtual ~LInstruction() {}
208
209   virtual void CompileToNative(LCodeGen* generator) = 0;
210   virtual const char* Mnemonic() const = 0;
211   virtual void PrintTo(StringStream* stream);
212   virtual void PrintDataTo(StringStream* stream);
213   virtual void PrintOutputOperandTo(StringStream* stream);
214
215   enum Opcode {
216     // Declare a unique enum value for each instruction.
217 #define DECLARE_OPCODE(type) k##type,
218     LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_OPCODE)
219     kNumberOfInstructions
220 #undef DECLARE_OPCODE
221   };
222
223   virtual Opcode opcode() const = 0;
224
225   // Declare non-virtual type testers for all leaf IR classes.
226 #define DECLARE_PREDICATE(type) \
227   bool Is##type() const { return opcode() == k##type; }
228   LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_PREDICATE)
229 #undef DECLARE_PREDICATE
230
231   // Declare virtual predicates for instructions that don't have
232   // an opcode.
233   virtual bool IsGap() const { return false; }
234
235   virtual bool IsControl() const { return false; }
236
237   void set_environment(LEnvironment* env) { environment_ = env; }
238   LEnvironment* environment() const { return environment_; }
239   bool HasEnvironment() const { return environment_ != NULL; }
240
241   void set_pointer_map(LPointerMap* p) { pointer_map_.set(p); }
242   LPointerMap* pointer_map() const { return pointer_map_.get(); }
243   bool HasPointerMap() const { return pointer_map_.is_set(); }
244
245   void set_hydrogen_value(HValue* value) { hydrogen_value_ = value; }
246   HValue* hydrogen_value() const { return hydrogen_value_; }
247
248   void MarkAsCall() { bit_field_ = IsCallBits::update(bit_field_, true); }
249   bool IsCall() const { return IsCallBits::decode(bit_field_); }
250
251   // Interface to the register allocator and iterators.
252   bool ClobbersTemps() const { return IsCall(); }
253   bool ClobbersRegisters() const { return IsCall(); }
254   virtual bool ClobbersDoubleRegisters() const { return IsCall(); }
255
256   virtual void SetDeferredLazyDeoptimizationEnvironment(LEnvironment* env) { }
257
258   // Interface to the register allocator and iterators.
259   bool IsMarkedAsCall() const { return IsCall(); }
260
261   virtual bool HasResult() const = 0;
262   virtual LOperand* result() const = 0;
263
264   LOperand* FirstInput() { return InputAt(0); }
265   LOperand* Output() { return HasResult() ? result() : NULL; }
266
267   virtual bool HasInterestingComment(LCodeGen* gen) const { return true; }
268
269 #ifdef DEBUG
270   void VerifyCall();
271 #endif
272
273  private:
274   // Iterator support.
275   friend class InputIterator;
276   virtual int InputCount() = 0;
277   virtual LOperand* InputAt(int i) = 0;
278
279   friend class TempIterator;
280   virtual int TempCount() = 0;
281   virtual LOperand* TempAt(int i) = 0;
282
283   class IsCallBits: public BitField<bool, 0, 1> {};
284
285   LEnvironment* environment_;
286   SetOncePointer<LPointerMap> pointer_map_;
287   HValue* hydrogen_value_;
288   int bit_field_;
289 };
290
291
292 // R = number of result operands (0 or 1).
293 template<int R>
294 class LTemplateResultInstruction : public LInstruction {
295  public:
296   // Allow 0 or 1 output operands.
297   STATIC_ASSERT(R == 0 || R == 1);
298   virtual bool HasResult() const V8_FINAL V8_OVERRIDE {
299     return R != 0 && result() != NULL;
300   }
301   void set_result(LOperand* operand) { results_[0] = operand; }
302   LOperand* result() const { return results_[0]; }
303
304  protected:
305   EmbeddedContainer<LOperand*, R> results_;
306 };
307
308
309 // R = number of result operands (0 or 1).
310 // I = number of input operands.
311 // T = number of temporary operands.
312 template<int R, int I, int T>
313 class LTemplateInstruction : public LTemplateResultInstruction<R> {
314  protected:
315   EmbeddedContainer<LOperand*, I> inputs_;
316   EmbeddedContainer<LOperand*, T> temps_;
317
318  private:
319   // Iterator support.
320   virtual int InputCount() V8_FINAL V8_OVERRIDE { return I; }
321   virtual LOperand* InputAt(int i) V8_FINAL V8_OVERRIDE { return inputs_[i]; }
322
323   virtual int TempCount() V8_FINAL V8_OVERRIDE { return T; }
324   virtual LOperand* TempAt(int i) V8_FINAL V8_OVERRIDE { return temps_[i]; }
325 };
326
327
328 class LGap : public LTemplateInstruction<0, 0, 0> {
329  public:
330   explicit LGap(HBasicBlock* block)
331       : block_(block) {
332     parallel_moves_[BEFORE] = NULL;
333     parallel_moves_[START] = NULL;
334     parallel_moves_[END] = NULL;
335     parallel_moves_[AFTER] = NULL;
336   }
337
338   // Can't use the DECLARE-macro here because of sub-classes.
339   virtual bool IsGap() const V8_FINAL V8_OVERRIDE { return true; }
340   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
341   static LGap* cast(LInstruction* instr) {
342     ASSERT(instr->IsGap());
343     return reinterpret_cast<LGap*>(instr);
344   }
345
346   bool IsRedundant() const;
347
348   HBasicBlock* block() const { return block_; }
349
350   enum InnerPosition {
351     BEFORE,
352     START,
353     END,
354     AFTER,
355     FIRST_INNER_POSITION = BEFORE,
356     LAST_INNER_POSITION = AFTER
357   };
358
359   LParallelMove* GetOrCreateParallelMove(InnerPosition pos,
360                                          Zone* zone)  {
361     if (parallel_moves_[pos] == NULL) {
362       parallel_moves_[pos] = new(zone) LParallelMove(zone);
363     }
364     return parallel_moves_[pos];
365   }
366
367   LParallelMove* GetParallelMove(InnerPosition pos)  {
368     return parallel_moves_[pos];
369   }
370
371  private:
372   LParallelMove* parallel_moves_[LAST_INNER_POSITION + 1];
373   HBasicBlock* block_;
374 };
375
376
377 class LInstructionGap V8_FINAL : public LGap {
378  public:
379   explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
380
381   virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
382     return !IsRedundant();
383   }
384
385   DECLARE_CONCRETE_INSTRUCTION(InstructionGap, "gap")
386 };
387
388
389 class LGoto V8_FINAL : public LTemplateInstruction<0, 0, 0> {
390  public:
391   explicit LGoto(HBasicBlock* block) : block_(block) { }
392
393   virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE;
394   DECLARE_CONCRETE_INSTRUCTION(Goto, "goto")
395   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
396   virtual bool IsControl() const V8_OVERRIDE { return true; }
397
398   int block_id() const { return block_->block_id(); }
399
400  private:
401   HBasicBlock* block_;
402 };
403
404
405 class LLazyBailout V8_FINAL : public LTemplateInstruction<0, 0, 0> {
406  public:
407   LLazyBailout() : gap_instructions_size_(0) { }
408
409   DECLARE_CONCRETE_INSTRUCTION(LazyBailout, "lazy-bailout")
410
411   void set_gap_instructions_size(int gap_instructions_size) {
412     gap_instructions_size_ = gap_instructions_size;
413   }
414   int gap_instructions_size() { return gap_instructions_size_; }
415
416  private:
417   int gap_instructions_size_;
418 };
419
420
421 class LDummy V8_FINAL : public LTemplateInstruction<1, 0, 0> {
422  public:
423   explicit LDummy() { }
424   DECLARE_CONCRETE_INSTRUCTION(Dummy, "dummy")
425 };
426
427
428 class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> {
429  public:
430   explicit LDummyUse(LOperand* value) {
431     inputs_[0] = value;
432   }
433   DECLARE_CONCRETE_INSTRUCTION(DummyUse, "dummy-use")
434 };
435
436
437 class LDeoptimize V8_FINAL : public LTemplateInstruction<0, 0, 0> {
438  public:
439   DECLARE_CONCRETE_INSTRUCTION(Deoptimize, "deoptimize")
440   DECLARE_HYDROGEN_ACCESSOR(Deoptimize)
441 };
442
443
444 class LLabel V8_FINAL : public LGap {
445  public:
446   explicit LLabel(HBasicBlock* block)
447       : LGap(block), replacement_(NULL) { }
448
449   virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
450     return false;
451   }
452   DECLARE_CONCRETE_INSTRUCTION(Label, "label")
453
454   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
455
456   int block_id() const { return block()->block_id(); }
457   bool is_loop_header() const { return block()->IsLoopHeader(); }
458   bool is_osr_entry() const { return block()->is_osr_entry(); }
459   Label* label() { return &label_; }
460   LLabel* replacement() const { return replacement_; }
461   void set_replacement(LLabel* label) { replacement_ = label; }
462   bool HasReplacement() const { return replacement_ != NULL; }
463
464  private:
465   Label label_;
466   LLabel* replacement_;
467 };
468
469
470 class LParameter V8_FINAL : public LTemplateInstruction<1, 0, 0> {
471  public:
472   virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
473     return false;
474   }
475   DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter")
476 };
477
478
479 class LCallStub V8_FINAL : public LTemplateInstruction<1, 1, 0> {
480  public:
481   explicit LCallStub(LOperand* context) {
482     inputs_[0] = context;
483   }
484
485   LOperand* context() { return inputs_[0]; }
486
487   DECLARE_CONCRETE_INSTRUCTION(CallStub, "call-stub")
488   DECLARE_HYDROGEN_ACCESSOR(CallStub)
489 };
490
491
492 class LUnknownOSRValue V8_FINAL : public LTemplateInstruction<1, 0, 0> {
493  public:
494   virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
495     return false;
496   }
497   DECLARE_CONCRETE_INSTRUCTION(UnknownOSRValue, "unknown-osr-value")
498 };
499
500
501 template<int I, int T>
502 class LControlInstruction : public LTemplateInstruction<0, I, T> {
503  public:
504   LControlInstruction() : false_label_(NULL), true_label_(NULL) { }
505
506   virtual bool IsControl() const V8_FINAL V8_OVERRIDE { return true; }
507
508   int SuccessorCount() { return hydrogen()->SuccessorCount(); }
509   HBasicBlock* SuccessorAt(int i) { return hydrogen()->SuccessorAt(i); }
510
511   int TrueDestination(LChunk* chunk) {
512     return chunk->LookupDestination(true_block_id());
513   }
514   int FalseDestination(LChunk* chunk) {
515     return chunk->LookupDestination(false_block_id());
516   }
517
518   Label* TrueLabel(LChunk* chunk) {
519     if (true_label_ == NULL) {
520       true_label_ = chunk->GetAssemblyLabel(TrueDestination(chunk));
521     }
522     return true_label_;
523   }
524   Label* FalseLabel(LChunk* chunk) {
525     if (false_label_ == NULL) {
526       false_label_ = chunk->GetAssemblyLabel(FalseDestination(chunk));
527     }
528     return false_label_;
529   }
530
531  protected:
532   int true_block_id() { return SuccessorAt(0)->block_id(); }
533   int false_block_id() { return SuccessorAt(1)->block_id(); }
534
535  private:
536   HControlInstruction* hydrogen() {
537     return HControlInstruction::cast(this->hydrogen_value());
538   }
539
540   Label* false_label_;
541   Label* true_label_;
542 };
543
544
545 class LWrapReceiver V8_FINAL : public LTemplateInstruction<1, 2, 0> {
546  public:
547   LWrapReceiver(LOperand* receiver, LOperand* function) {
548     inputs_[0] = receiver;
549     inputs_[1] = function;
550   }
551
552   LOperand* receiver() { return inputs_[0]; }
553   LOperand* function() { return inputs_[1]; }
554
555   DECLARE_CONCRETE_INSTRUCTION(WrapReceiver, "wrap-receiver")
556 };
557
558
559 class LApplyArguments V8_FINAL : public LTemplateInstruction<1, 4, 0> {
560  public:
561   LApplyArguments(LOperand* function,
562                   LOperand* receiver,
563                   LOperand* length,
564                   LOperand* elements) {
565     inputs_[0] = function;
566     inputs_[1] = receiver;
567     inputs_[2] = length;
568     inputs_[3] = elements;
569   }
570
571   LOperand* function() { return inputs_[0]; }
572   LOperand* receiver() { return inputs_[1]; }
573   LOperand* length() { return inputs_[2]; }
574   LOperand* elements() { return inputs_[3]; }
575
576   DECLARE_CONCRETE_INSTRUCTION(ApplyArguments, "apply-arguments")
577 };
578
579
580 class LAccessArgumentsAt V8_FINAL : public LTemplateInstruction<1, 3, 0> {
581  public:
582   LAccessArgumentsAt(LOperand* arguments, LOperand* length, LOperand* index) {
583     inputs_[0] = arguments;
584     inputs_[1] = length;
585     inputs_[2] = index;
586   }
587
588   LOperand* arguments() { return inputs_[0]; }
589   LOperand* length() { return inputs_[1]; }
590   LOperand* index() { return inputs_[2]; }
591
592   DECLARE_CONCRETE_INSTRUCTION(AccessArgumentsAt, "access-arguments-at")
593
594   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
595 };
596
597
598 class LArgumentsLength V8_FINAL : public LTemplateInstruction<1, 1, 0> {
599  public:
600   explicit LArgumentsLength(LOperand* elements) {
601     inputs_[0] = elements;
602   }
603
604   LOperand* elements() { return inputs_[0]; }
605
606   DECLARE_CONCRETE_INSTRUCTION(ArgumentsLength, "arguments-length")
607 };
608
609
610 class LArgumentsElements V8_FINAL : public LTemplateInstruction<1, 0, 0> {
611  public:
612   DECLARE_CONCRETE_INSTRUCTION(ArgumentsElements, "arguments-elements")
613   DECLARE_HYDROGEN_ACCESSOR(ArgumentsElements)
614 };
615
616
617 class LModI V8_FINAL : public LTemplateInstruction<1, 2, 1> {
618  public:
619   LModI(LOperand* left, LOperand* right, LOperand* temp) {
620     inputs_[0] = left;
621     inputs_[1] = right;
622     temps_[0] = temp;
623   }
624
625   LOperand* left() { return inputs_[0]; }
626   LOperand* right() { return inputs_[1]; }
627   LOperand* temp() { return temps_[0]; }
628
629   DECLARE_CONCRETE_INSTRUCTION(ModI, "mod-i")
630   DECLARE_HYDROGEN_ACCESSOR(Mod)
631 };
632
633
634 class LDivI V8_FINAL : public LTemplateInstruction<1, 2, 1> {
635  public:
636   LDivI(LOperand* left, LOperand* right, LOperand* temp) {
637     inputs_[0] = left;
638     inputs_[1] = right;
639     temps_[0] = temp;
640   }
641
642   LOperand* left() { return inputs_[0]; }
643   LOperand* right() { return inputs_[1]; }
644   LOperand* temp() { return temps_[0]; }
645
646   bool is_flooring() { return hydrogen_value()->IsMathFloorOfDiv(); }
647
648   DECLARE_CONCRETE_INSTRUCTION(DivI, "div-i")
649   DECLARE_HYDROGEN_ACCESSOR(Div)
650 };
651
652
653 class LMathFloorOfDiv V8_FINAL : public LTemplateInstruction<1, 2, 1> {
654  public:
655   LMathFloorOfDiv(LOperand* left,
656                   LOperand* right,
657                   LOperand* temp = NULL) {
658     inputs_[0] = left;
659     inputs_[1] = right;
660     temps_[0] = temp;
661   }
662
663   LOperand* left() { return inputs_[0]; }
664   LOperand* right() { return inputs_[1]; }
665   LOperand* temp() { return temps_[0]; }
666
667   DECLARE_CONCRETE_INSTRUCTION(MathFloorOfDiv, "math-floor-of-div")
668   DECLARE_HYDROGEN_ACCESSOR(MathFloorOfDiv)
669 };
670
671
672 class LMulI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
673  public:
674   LMulI(LOperand* left, LOperand* right) {
675     inputs_[0] = left;
676     inputs_[1] = right;
677   }
678
679   LOperand* left() { return inputs_[0]; }
680   LOperand* right() { return inputs_[1]; }
681
682   DECLARE_CONCRETE_INSTRUCTION(MulI, "mul-i")
683   DECLARE_HYDROGEN_ACCESSOR(Mul)
684 };
685
686
687 class LCompareNumericAndBranch V8_FINAL : public LControlInstruction<2, 0> {
688  public:
689   LCompareNumericAndBranch(LOperand* left, LOperand* right) {
690     inputs_[0] = left;
691     inputs_[1] = right;
692   }
693
694   LOperand* left() { return inputs_[0]; }
695   LOperand* right() { return inputs_[1]; }
696
697   DECLARE_CONCRETE_INSTRUCTION(CompareNumericAndBranch,
698                                "compare-numeric-and-branch")
699   DECLARE_HYDROGEN_ACCESSOR(CompareNumericAndBranch)
700
701   Token::Value op() const { return hydrogen()->token(); }
702   bool is_double() const {
703     return hydrogen()->representation().IsDouble();
704   }
705
706   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
707 };
708
709
710 class LMathFloor V8_FINAL : public LTemplateInstruction<1, 1, 0> {
711  public:
712   explicit LMathFloor(LOperand* value) {
713     inputs_[0] = value;
714   }
715
716   LOperand* value() { return inputs_[0]; }
717
718   DECLARE_CONCRETE_INSTRUCTION(MathFloor, "math-floor")
719   DECLARE_HYDROGEN_ACCESSOR(UnaryMathOperation)
720 };
721
722
723 class LMathRound V8_FINAL : public LTemplateInstruction<1, 1, 0> {
724  public:
725   explicit LMathRound(LOperand* value) {
726     inputs_[0] = value;
727   }
728
729   LOperand* value() { return inputs_[0]; }
730
731   DECLARE_CONCRETE_INSTRUCTION(MathRound, "math-round")
732   DECLARE_HYDROGEN_ACCESSOR(UnaryMathOperation)
733 };
734
735
736 class LMathAbs V8_FINAL : public LTemplateInstruction<1, 2, 0> {
737  public:
738   explicit LMathAbs(LOperand* context, LOperand* value) {
739     inputs_[1] = context;
740     inputs_[0] = value;
741   }
742
743   LOperand* context() { return inputs_[1]; }
744   LOperand* value() { return inputs_[0]; }
745
746   DECLARE_CONCRETE_INSTRUCTION(MathAbs, "math-abs")
747   DECLARE_HYDROGEN_ACCESSOR(UnaryMathOperation)
748 };
749
750
751 class LMathLog V8_FINAL : public LTemplateInstruction<1, 1, 0> {
752  public:
753   explicit LMathLog(LOperand* value) {
754     inputs_[0] = value;
755   }
756
757   LOperand* value() { return inputs_[0]; }
758
759   DECLARE_CONCRETE_INSTRUCTION(MathLog, "math-log")
760 };
761
762
763 class LMathExp V8_FINAL : public LTemplateInstruction<1, 1, 2> {
764  public:
765   LMathExp(LOperand* value, LOperand* temp1, LOperand* temp2) {
766     inputs_[0] = value;
767     temps_[0] = temp1;
768     temps_[1] = temp2;
769     ExternalReference::InitializeMathExpData();
770   }
771
772   LOperand* value() { return inputs_[0]; }
773   LOperand* temp1() { return temps_[0]; }
774   LOperand* temp2() { return temps_[1]; }
775
776   DECLARE_CONCRETE_INSTRUCTION(MathExp, "math-exp")
777 };
778
779
780 class LMathSqrt V8_FINAL : public LTemplateInstruction<1, 1, 0> {
781  public:
782   explicit LMathSqrt(LOperand* value) {
783     inputs_[0] = value;
784   }
785
786   LOperand* value() { return inputs_[0]; }
787
788   DECLARE_CONCRETE_INSTRUCTION(MathSqrt, "math-sqrt")
789 };
790
791
792 class LMathPowHalf V8_FINAL : public LTemplateInstruction<1, 1, 0> {
793  public:
794   explicit LMathPowHalf(LOperand* value) {
795     inputs_[0] = value;
796   }
797
798   LOperand* value() { return inputs_[0]; }
799
800   DECLARE_CONCRETE_INSTRUCTION(MathPowHalf, "math-pow-half")
801 };
802
803
804 class LCmpObjectEqAndBranch V8_FINAL : public LControlInstruction<2, 0> {
805  public:
806   LCmpObjectEqAndBranch(LOperand* left, LOperand* right) {
807     inputs_[0] = left;
808     inputs_[1] = right;
809   }
810
811   LOperand* left() { return inputs_[0]; }
812   LOperand* right() { return inputs_[1]; }
813
814   DECLARE_CONCRETE_INSTRUCTION(CmpObjectEqAndBranch, "cmp-object-eq-and-branch")
815 };
816
817
818 class LCmpHoleAndBranch V8_FINAL : public LControlInstruction<1, 0> {
819  public:
820   explicit LCmpHoleAndBranch(LOperand* object) {
821     inputs_[0] = object;
822   }
823
824   LOperand* object() { return inputs_[0]; }
825
826   DECLARE_CONCRETE_INSTRUCTION(CmpHoleAndBranch, "cmp-hole-and-branch")
827   DECLARE_HYDROGEN_ACCESSOR(CompareHoleAndBranch)
828 };
829
830
831 class LCompareMinusZeroAndBranch V8_FINAL : public LControlInstruction<1, 0> {
832  public:
833   explicit LCompareMinusZeroAndBranch(LOperand* value) {
834     inputs_[0] = value;
835   }
836
837   LOperand* value() { return inputs_[0]; }
838
839   DECLARE_CONCRETE_INSTRUCTION(CompareMinusZeroAndBranch,
840                                "cmp-minus-zero-and-branch")
841   DECLARE_HYDROGEN_ACCESSOR(CompareMinusZeroAndBranch)
842 };
843
844
845
846 class LIsObjectAndBranch V8_FINAL : public LControlInstruction<1, 0> {
847  public:
848   explicit LIsObjectAndBranch(LOperand* value) {
849     inputs_[0] = value;
850   }
851
852   LOperand* value() { return inputs_[0]; }
853
854   DECLARE_CONCRETE_INSTRUCTION(IsObjectAndBranch, "is-object-and-branch")
855   DECLARE_HYDROGEN_ACCESSOR(IsObjectAndBranch)
856
857   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
858 };
859
860
861 class LIsStringAndBranch V8_FINAL : public LControlInstruction<1, 1> {
862  public:
863   explicit LIsStringAndBranch(LOperand* value, LOperand* temp) {
864     inputs_[0] = value;
865     temps_[0] = temp;
866   }
867
868   LOperand* value() { return inputs_[0]; }
869   LOperand* temp() { return temps_[0]; }
870
871   DECLARE_CONCRETE_INSTRUCTION(IsStringAndBranch, "is-string-and-branch")
872   DECLARE_HYDROGEN_ACCESSOR(IsStringAndBranch)
873
874   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
875 };
876
877
878 class LIsSmiAndBranch V8_FINAL : public LControlInstruction<1, 0> {
879  public:
880   explicit LIsSmiAndBranch(LOperand* value) {
881     inputs_[0] = value;
882   }
883
884   LOperand* value() { return inputs_[0]; }
885
886   DECLARE_CONCRETE_INSTRUCTION(IsSmiAndBranch, "is-smi-and-branch")
887   DECLARE_HYDROGEN_ACCESSOR(IsSmiAndBranch)
888
889   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
890 };
891
892
893 class LIsUndetectableAndBranch V8_FINAL : public LControlInstruction<1, 1> {
894  public:
895   explicit LIsUndetectableAndBranch(LOperand* value, LOperand* temp) {
896     inputs_[0] = value;
897     temps_[0] = temp;
898   }
899
900   LOperand* value() { return inputs_[0]; }
901   LOperand* temp() { return temps_[0]; }
902
903   DECLARE_CONCRETE_INSTRUCTION(IsUndetectableAndBranch,
904                                "is-undetectable-and-branch")
905   DECLARE_HYDROGEN_ACCESSOR(IsUndetectableAndBranch)
906
907   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
908 };
909
910
911 class LStringCompareAndBranch V8_FINAL : public LControlInstruction<3, 0> {
912  public:
913   explicit LStringCompareAndBranch(LOperand* context,
914                                    LOperand* left,
915                                    LOperand* right) {
916     inputs_[0] = context;
917     inputs_[1] = left;
918     inputs_[2] = right;
919   }
920
921   LOperand* context() { return inputs_[0]; }
922   LOperand* left() { return inputs_[1]; }
923   LOperand* right() { return inputs_[2]; }
924
925   DECLARE_CONCRETE_INSTRUCTION(StringCompareAndBranch,
926                                "string-compare-and-branch")
927   DECLARE_HYDROGEN_ACCESSOR(StringCompareAndBranch)
928
929   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
930
931   Token::Value op() const { return hydrogen()->token(); }
932 };
933
934
935 class LHasInstanceTypeAndBranch V8_FINAL : public LControlInstruction<1, 0> {
936  public:
937   explicit LHasInstanceTypeAndBranch(LOperand* value) {
938     inputs_[0] = value;
939   }
940
941   LOperand* value() { return inputs_[0]; }
942
943   DECLARE_CONCRETE_INSTRUCTION(HasInstanceTypeAndBranch,
944                                "has-instance-type-and-branch")
945   DECLARE_HYDROGEN_ACCESSOR(HasInstanceTypeAndBranch)
946
947   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
948 };
949
950
951 class LGetCachedArrayIndex V8_FINAL : public LTemplateInstruction<1, 1, 0> {
952  public:
953   explicit LGetCachedArrayIndex(LOperand* value) {
954     inputs_[0] = value;
955   }
956
957   LOperand* value() { return inputs_[0]; }
958
959   DECLARE_CONCRETE_INSTRUCTION(GetCachedArrayIndex, "get-cached-array-index")
960   DECLARE_HYDROGEN_ACCESSOR(GetCachedArrayIndex)
961 };
962
963
964 class LHasCachedArrayIndexAndBranch V8_FINAL
965     : public LControlInstruction<1, 0> {
966  public:
967   explicit LHasCachedArrayIndexAndBranch(LOperand* value) {
968     inputs_[0] = value;
969   }
970
971   LOperand* value() { return inputs_[0]; }
972
973   DECLARE_CONCRETE_INSTRUCTION(HasCachedArrayIndexAndBranch,
974                                "has-cached-array-index-and-branch")
975   DECLARE_HYDROGEN_ACCESSOR(HasCachedArrayIndexAndBranch)
976
977   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
978 };
979
980
981 class LClassOfTestAndBranch V8_FINAL : public LControlInstruction<1, 2> {
982  public:
983   LClassOfTestAndBranch(LOperand* value, LOperand* temp, LOperand* temp2) {
984     inputs_[0] = value;
985     temps_[0] = temp;
986     temps_[1] = temp2;
987   }
988
989   LOperand* value() { return inputs_[0]; }
990   LOperand* temp() { return temps_[0]; }
991   LOperand* temp2() { return temps_[1]; }
992
993   DECLARE_CONCRETE_INSTRUCTION(ClassOfTestAndBranch,
994                                "class-of-test-and-branch")
995   DECLARE_HYDROGEN_ACCESSOR(ClassOfTestAndBranch)
996
997   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
998 };
999
1000
1001 class LCmpT V8_FINAL : public LTemplateInstruction<1, 3, 0> {
1002  public:
1003   LCmpT(LOperand* context, LOperand* left, LOperand* right) {
1004     inputs_[0] = context;
1005     inputs_[1] = left;
1006     inputs_[2] = right;
1007   }
1008
1009   LOperand* context() { return inputs_[0]; }
1010   LOperand* left() { return inputs_[1]; }
1011   LOperand* right() { return inputs_[2]; }
1012
1013   DECLARE_CONCRETE_INSTRUCTION(CmpT, "cmp-t")
1014   DECLARE_HYDROGEN_ACCESSOR(CompareGeneric)
1015
1016   Token::Value op() const { return hydrogen()->token(); }
1017 };
1018
1019
1020 class LInstanceOf V8_FINAL : public LTemplateInstruction<1, 3, 0> {
1021  public:
1022   LInstanceOf(LOperand* context, LOperand* left, LOperand* right) {
1023     inputs_[0] = context;
1024     inputs_[1] = left;
1025     inputs_[2] = right;
1026   }
1027
1028   LOperand* context() { return inputs_[0]; }
1029   LOperand* left() { return inputs_[1]; }
1030   LOperand* right() { return inputs_[2]; }
1031
1032   DECLARE_CONCRETE_INSTRUCTION(InstanceOf, "instance-of")
1033 };
1034
1035
1036 class LInstanceOfKnownGlobal V8_FINAL : public LTemplateInstruction<1, 2, 1> {
1037  public:
1038   LInstanceOfKnownGlobal(LOperand* context, LOperand* value, LOperand* temp) {
1039     inputs_[0] = context;
1040     inputs_[1] = value;
1041     temps_[0] = temp;
1042   }
1043
1044   LOperand* context() { return inputs_[0]; }
1045   LOperand* value() { return inputs_[1]; }
1046   LOperand* temp() { return temps_[0]; }
1047
1048   DECLARE_CONCRETE_INSTRUCTION(InstanceOfKnownGlobal,
1049                                "instance-of-known-global")
1050   DECLARE_HYDROGEN_ACCESSOR(InstanceOfKnownGlobal)
1051
1052   Handle<JSFunction> function() const { return hydrogen()->function(); }
1053   LEnvironment* GetDeferredLazyDeoptimizationEnvironment() {
1054     return lazy_deopt_env_;
1055   }
1056   virtual void SetDeferredLazyDeoptimizationEnvironment(
1057       LEnvironment* env) V8_OVERRIDE {
1058     lazy_deopt_env_ = env;
1059   }
1060
1061  private:
1062   LEnvironment* lazy_deopt_env_;
1063 };
1064
1065
1066 class LBoundsCheck V8_FINAL : public LTemplateInstruction<0, 2, 0> {
1067  public:
1068   LBoundsCheck(LOperand* index, LOperand* length) {
1069     inputs_[0] = index;
1070     inputs_[1] = length;
1071   }
1072
1073   LOperand* index() { return inputs_[0]; }
1074   LOperand* length() { return inputs_[1]; }
1075
1076   DECLARE_CONCRETE_INSTRUCTION(BoundsCheck, "bounds-check")
1077   DECLARE_HYDROGEN_ACCESSOR(BoundsCheck)
1078 };
1079
1080
1081 class LBitI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1082  public:
1083   LBitI(LOperand* left, LOperand* right) {
1084     inputs_[0] = left;
1085     inputs_[1] = right;
1086   }
1087
1088   LOperand* left() { return inputs_[0]; }
1089   LOperand* right() { return inputs_[1]; }
1090
1091   Token::Value op() const { return hydrogen()->op(); }
1092
1093   DECLARE_CONCRETE_INSTRUCTION(BitI, "bit-i")
1094   DECLARE_HYDROGEN_ACCESSOR(Bitwise)
1095 };
1096
1097
1098 class LShiftI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1099  public:
1100   LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt)
1101       : op_(op), can_deopt_(can_deopt) {
1102     inputs_[0] = left;
1103     inputs_[1] = right;
1104   }
1105
1106   Token::Value op() const { return op_; }
1107   LOperand* left() { return inputs_[0]; }
1108   LOperand* right() { return inputs_[1]; }
1109   bool can_deopt() const { return can_deopt_; }
1110
1111   DECLARE_CONCRETE_INSTRUCTION(ShiftI, "shift-i")
1112
1113  private:
1114   Token::Value op_;
1115   bool can_deopt_;
1116 };
1117
1118
1119 class LSubI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1120  public:
1121   LSubI(LOperand* left, LOperand* right) {
1122     inputs_[0] = left;
1123     inputs_[1] = right;
1124   }
1125
1126   LOperand* left() { return inputs_[0]; }
1127   LOperand* right() { return inputs_[1]; }
1128
1129   DECLARE_CONCRETE_INSTRUCTION(SubI, "sub-i")
1130   DECLARE_HYDROGEN_ACCESSOR(Sub)
1131 };
1132
1133
1134 class LConstantI V8_FINAL : public LTemplateInstruction<1, 0, 0> {
1135  public:
1136   DECLARE_CONCRETE_INSTRUCTION(ConstantI, "constant-i")
1137   DECLARE_HYDROGEN_ACCESSOR(Constant)
1138
1139   int32_t value() const { return hydrogen()->Integer32Value(); }
1140 };
1141
1142
1143 class LConstantS V8_FINAL : public LTemplateInstruction<1, 0, 0> {
1144  public:
1145   DECLARE_CONCRETE_INSTRUCTION(ConstantS, "constant-s")
1146   DECLARE_HYDROGEN_ACCESSOR(Constant)
1147
1148   Smi* value() const { return Smi::FromInt(hydrogen()->Integer32Value()); }
1149 };
1150
1151
1152 class LConstantD V8_FINAL : public LTemplateInstruction<1, 0, 1> {
1153  public:
1154   explicit LConstantD(LOperand* temp) {
1155     temps_[0] = temp;
1156   }
1157
1158   LOperand* temp() { return temps_[0]; }
1159
1160   DECLARE_CONCRETE_INSTRUCTION(ConstantD, "constant-d")
1161   DECLARE_HYDROGEN_ACCESSOR(Constant)
1162
1163   double value() const { return hydrogen()->DoubleValue(); }
1164 };
1165
1166
1167 class LConstantE V8_FINAL : public LTemplateInstruction<1, 0, 0> {
1168  public:
1169   DECLARE_CONCRETE_INSTRUCTION(ConstantE, "constant-e")
1170   DECLARE_HYDROGEN_ACCESSOR(Constant)
1171
1172   ExternalReference value() const {
1173     return hydrogen()->ExternalReferenceValue();
1174   }
1175 };
1176
1177
1178 class LConstantT V8_FINAL : public LTemplateInstruction<1, 0, 0> {
1179  public:
1180   DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t")
1181   DECLARE_HYDROGEN_ACCESSOR(Constant)
1182
1183   Handle<Object> value(Isolate* isolate) const {
1184     return hydrogen()->handle(isolate);
1185   }
1186 };
1187
1188
1189 class LBranch V8_FINAL : public LControlInstruction<1, 0> {
1190  public:
1191   explicit LBranch(LOperand* value) {
1192     inputs_[0] = value;
1193   }
1194
1195   LOperand* value() { return inputs_[0]; }
1196
1197   DECLARE_CONCRETE_INSTRUCTION(Branch, "branch")
1198   DECLARE_HYDROGEN_ACCESSOR(Branch)
1199
1200   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1201 };
1202
1203
1204 class LDebugBreak V8_FINAL : public LTemplateInstruction<0, 0, 0> {
1205  public:
1206   DECLARE_CONCRETE_INSTRUCTION(DebugBreak, "break")
1207 };
1208
1209
1210 class LCmpMapAndBranch V8_FINAL : public LControlInstruction<1, 0> {
1211  public:
1212   explicit LCmpMapAndBranch(LOperand* value) {
1213     inputs_[0] = value;
1214   }
1215
1216   LOperand* value() { return inputs_[0]; }
1217
1218   DECLARE_CONCRETE_INSTRUCTION(CmpMapAndBranch, "cmp-map-and-branch")
1219   DECLARE_HYDROGEN_ACCESSOR(CompareMap)
1220
1221   Handle<Map> map() const { return hydrogen()->map().handle(); }
1222 };
1223
1224
1225 class LMapEnumLength V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1226  public:
1227   explicit LMapEnumLength(LOperand* value) {
1228     inputs_[0] = value;
1229   }
1230
1231   LOperand* value() { return inputs_[0]; }
1232
1233   DECLARE_CONCRETE_INSTRUCTION(MapEnumLength, "map-enum-length")
1234 };
1235
1236
1237 class LDateField V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1238  public:
1239   LDateField(LOperand* date, Smi* index) : index_(index) {
1240     inputs_[0] = date;
1241   }
1242
1243   LOperand* date() { return inputs_[0]; }
1244   Smi* index() const { return index_; }
1245
1246   DECLARE_CONCRETE_INSTRUCTION(DateField, "date-field")
1247   DECLARE_HYDROGEN_ACCESSOR(DateField)
1248
1249  private:
1250   Smi* index_;
1251 };
1252
1253
1254 class LSeqStringGetChar V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1255  public:
1256   LSeqStringGetChar(LOperand* string, LOperand* index) {
1257     inputs_[0] = string;
1258     inputs_[1] = index;
1259   }
1260
1261   LOperand* string() const { return inputs_[0]; }
1262   LOperand* index() const { return inputs_[1]; }
1263
1264   DECLARE_CONCRETE_INSTRUCTION(SeqStringGetChar, "seq-string-get-char")
1265   DECLARE_HYDROGEN_ACCESSOR(SeqStringGetChar)
1266 };
1267
1268
1269 class LSeqStringSetChar V8_FINAL : public LTemplateInstruction<1, 4, 0> {
1270  public:
1271   LSeqStringSetChar(LOperand* context,
1272                     LOperand* string,
1273                     LOperand* index,
1274                     LOperand* value) {
1275     inputs_[0] = context;
1276     inputs_[1] = string;
1277     inputs_[2] = index;
1278     inputs_[3] = value;
1279   }
1280
1281   LOperand* string() { return inputs_[1]; }
1282   LOperand* index() { return inputs_[2]; }
1283   LOperand* value() { return inputs_[3]; }
1284
1285   DECLARE_CONCRETE_INSTRUCTION(SeqStringSetChar, "seq-string-set-char")
1286   DECLARE_HYDROGEN_ACCESSOR(SeqStringSetChar)
1287 };
1288
1289
1290 class LThrow V8_FINAL : public LTemplateInstruction<0, 2, 0> {
1291  public:
1292   explicit LThrow(LOperand* context, LOperand* value) {
1293     inputs_[0] = context;
1294     inputs_[1] = value;
1295   }
1296
1297   LOperand* context() { return inputs_[0]; }
1298   LOperand* value() { return inputs_[1]; }
1299
1300   DECLARE_CONCRETE_INSTRUCTION(Throw, "throw")
1301 };
1302
1303
1304 class LAddI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1305  public:
1306   LAddI(LOperand* left, LOperand* right) {
1307     inputs_[0] = left;
1308     inputs_[1] = right;
1309   }
1310
1311   LOperand* left() { return inputs_[0]; }
1312   LOperand* right() { return inputs_[1]; }
1313
1314   static bool UseLea(HAdd* add) {
1315     return !add->CheckFlag(HValue::kCanOverflow) &&
1316         add->BetterLeftOperand()->UseCount() > 1;
1317   }
1318
1319   DECLARE_CONCRETE_INSTRUCTION(AddI, "add-i")
1320   DECLARE_HYDROGEN_ACCESSOR(Add)
1321 };
1322
1323
1324 class LMathMinMax V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1325  public:
1326   LMathMinMax(LOperand* left, LOperand* right) {
1327     inputs_[0] = left;
1328     inputs_[1] = right;
1329   }
1330
1331   LOperand* left() { return inputs_[0]; }
1332   LOperand* right() { return inputs_[1]; }
1333
1334   DECLARE_CONCRETE_INSTRUCTION(MathMinMax, "math-min-max")
1335   DECLARE_HYDROGEN_ACCESSOR(MathMinMax)
1336 };
1337
1338
1339 class LPower V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1340  public:
1341   LPower(LOperand* left, LOperand* right) {
1342     inputs_[0] = left;
1343     inputs_[1] = right;
1344   }
1345
1346   LOperand* left() { return inputs_[0]; }
1347   LOperand* right() { return inputs_[1]; }
1348
1349   DECLARE_CONCRETE_INSTRUCTION(Power, "power")
1350   DECLARE_HYDROGEN_ACCESSOR(Power)
1351 };
1352
1353
1354 class LArithmeticD V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1355  public:
1356   LArithmeticD(Token::Value op, LOperand* left, LOperand* right)
1357       : op_(op) {
1358     inputs_[0] = left;
1359     inputs_[1] = right;
1360   }
1361
1362   Token::Value op() const { return op_; }
1363   LOperand* left() { return inputs_[0]; }
1364   LOperand* right() { return inputs_[1]; }
1365
1366   virtual Opcode opcode() const V8_OVERRIDE {
1367     return LInstruction::kArithmeticD;
1368   }
1369   virtual void CompileToNative(LCodeGen* generator) V8_OVERRIDE;
1370   virtual const char* Mnemonic() const V8_OVERRIDE;
1371
1372  private:
1373   Token::Value op_;
1374 };
1375
1376
1377 class LArithmeticT V8_FINAL : public LTemplateInstruction<1, 3, 0> {
1378  public:
1379   LArithmeticT(Token::Value op,
1380                LOperand* context,
1381                LOperand* left,
1382                LOperand* right)
1383       : op_(op) {
1384     inputs_[0] = context;
1385     inputs_[1] = left;
1386     inputs_[2] = right;
1387   }
1388
1389   Token::Value op() const { return op_; }
1390   LOperand* context() { return inputs_[0]; }
1391   LOperand* left() { return inputs_[1]; }
1392   LOperand* right() { return inputs_[2]; }
1393
1394   virtual Opcode opcode() const V8_OVERRIDE {
1395     return LInstruction::kArithmeticT;
1396   }
1397   virtual void CompileToNative(LCodeGen* generator) V8_OVERRIDE;
1398   virtual const char* Mnemonic() const V8_OVERRIDE;
1399
1400  private:
1401   Token::Value op_;
1402 };
1403
1404
1405 class LReturn V8_FINAL : public LTemplateInstruction<0, 3, 0> {
1406  public:
1407   explicit LReturn(LOperand* value,
1408                    LOperand* context,
1409                    LOperand* parameter_count) {
1410     inputs_[0] = value;
1411     inputs_[1] = context;
1412     inputs_[2] = parameter_count;
1413   }
1414
1415   LOperand* value() { return inputs_[0]; }
1416   LOperand* context() { return inputs_[1]; }
1417
1418   bool has_constant_parameter_count() {
1419     return parameter_count()->IsConstantOperand();
1420   }
1421   LConstantOperand* constant_parameter_count() {
1422     ASSERT(has_constant_parameter_count());
1423     return LConstantOperand::cast(parameter_count());
1424   }
1425   LOperand* parameter_count() { return inputs_[2]; }
1426
1427   DECLARE_CONCRETE_INSTRUCTION(Return, "return")
1428   DECLARE_HYDROGEN_ACCESSOR(Return)
1429 };
1430
1431
1432 class LLoadNamedField V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1433  public:
1434   explicit LLoadNamedField(LOperand* object) {
1435     inputs_[0] = object;
1436   }
1437
1438   LOperand* object() { return inputs_[0]; }
1439
1440   DECLARE_CONCRETE_INSTRUCTION(LoadNamedField, "load-named-field")
1441   DECLARE_HYDROGEN_ACCESSOR(LoadNamedField)
1442 };
1443
1444
1445 class LLoadNamedGeneric V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1446  public:
1447   explicit LLoadNamedGeneric(LOperand* context, LOperand* object) {
1448     inputs_[0] = context;
1449     inputs_[1] = object;
1450   }
1451
1452   DECLARE_CONCRETE_INSTRUCTION(LoadNamedGeneric, "load-named-generic")
1453   DECLARE_HYDROGEN_ACCESSOR(LoadNamedGeneric)
1454
1455   LOperand* context() { return inputs_[0]; }
1456   LOperand* object() { return inputs_[1]; }
1457   Handle<Object> name() const { return hydrogen()->name(); }
1458 };
1459
1460
1461 class LLoadFunctionPrototype V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1462  public:
1463   explicit LLoadFunctionPrototype(LOperand* function) {
1464     inputs_[0] = function;
1465   }
1466
1467   DECLARE_CONCRETE_INSTRUCTION(LoadFunctionPrototype, "load-function-prototype")
1468   DECLARE_HYDROGEN_ACCESSOR(LoadFunctionPrototype)
1469
1470   LOperand* function() { return inputs_[0]; }
1471 };
1472
1473
1474 class LLoadRoot V8_FINAL : public LTemplateInstruction<1, 0, 0> {
1475  public:
1476   DECLARE_CONCRETE_INSTRUCTION(LoadRoot, "load-root")
1477   DECLARE_HYDROGEN_ACCESSOR(LoadRoot)
1478
1479   Heap::RootListIndex index() const { return hydrogen()->index(); }
1480 };
1481
1482
1483 class LLoadKeyed V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1484  public:
1485   LLoadKeyed(LOperand* elements, LOperand* key) {
1486     inputs_[0] = elements;
1487     inputs_[1] = key;
1488   }
1489
1490   DECLARE_CONCRETE_INSTRUCTION(LoadKeyed, "load-keyed")
1491   DECLARE_HYDROGEN_ACCESSOR(LoadKeyed)
1492
1493   bool is_external() const {
1494     return hydrogen()->is_external();
1495   }
1496   bool is_fixed_typed_array() const {
1497     return hydrogen()->is_fixed_typed_array();
1498   }
1499   bool is_typed_elements() const {
1500     return is_external() || is_fixed_typed_array();
1501   }
1502   LOperand* elements() { return inputs_[0]; }
1503   LOperand* key() { return inputs_[1]; }
1504   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1505   uint32_t additional_index() const { return hydrogen()->index_offset(); }
1506   ElementsKind elements_kind() const {
1507     return hydrogen()->elements_kind();
1508   }
1509 };
1510
1511
1512 class LLoadKeyedGeneric V8_FINAL : public LTemplateInstruction<1, 3, 0> {
1513  public:
1514   LLoadKeyedGeneric(LOperand* context, LOperand* obj, LOperand* key) {
1515     inputs_[0] = context;
1516     inputs_[1] = obj;
1517     inputs_[2] = key;
1518   }
1519
1520   DECLARE_CONCRETE_INSTRUCTION(LoadKeyedGeneric, "load-keyed-generic")
1521
1522   LOperand* context() { return inputs_[0]; }
1523   LOperand* object() { return inputs_[1]; }
1524   LOperand* key() { return inputs_[2]; }
1525 };
1526
1527
1528 class LLoadGlobalCell V8_FINAL : public LTemplateInstruction<1, 0, 0> {
1529  public:
1530   DECLARE_CONCRETE_INSTRUCTION(LoadGlobalCell, "load-global-cell")
1531   DECLARE_HYDROGEN_ACCESSOR(LoadGlobalCell)
1532 };
1533
1534
1535 class LLoadGlobalGeneric V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1536  public:
1537   explicit LLoadGlobalGeneric(LOperand* context, LOperand* global_object) {
1538     inputs_[0] = context;
1539     inputs_[1] = global_object;
1540   }
1541
1542   DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic")
1543   DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric)
1544
1545   LOperand* context() { return inputs_[0]; }
1546   LOperand* global_object() { return inputs_[1]; }
1547   Handle<Object> name() const { return hydrogen()->name(); }
1548   bool for_typeof() const { return hydrogen()->for_typeof(); }
1549 };
1550
1551
1552 class LStoreGlobalCell V8_FINAL : public LTemplateInstruction<0, 1, 1> {
1553  public:
1554   explicit LStoreGlobalCell(LOperand* value, LOperand* temp) {
1555     inputs_[0] = value;
1556     temps_[0] = temp;
1557   }
1558
1559   LOperand* value() { return inputs_[0]; }
1560   LOperand* temp() { return temps_[0]; }
1561
1562   DECLARE_CONCRETE_INSTRUCTION(StoreGlobalCell, "store-global-cell")
1563   DECLARE_HYDROGEN_ACCESSOR(StoreGlobalCell)
1564 };
1565
1566
1567 class LLoadContextSlot V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1568  public:
1569   explicit LLoadContextSlot(LOperand* context) {
1570     inputs_[0] = context;
1571   }
1572
1573   LOperand* context() { return inputs_[0]; }
1574
1575   DECLARE_CONCRETE_INSTRUCTION(LoadContextSlot, "load-context-slot")
1576   DECLARE_HYDROGEN_ACCESSOR(LoadContextSlot)
1577
1578   int slot_index() { return hydrogen()->slot_index(); }
1579
1580   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1581 };
1582
1583
1584 class LStoreContextSlot V8_FINAL : public LTemplateInstruction<0, 2, 1> {
1585  public:
1586   LStoreContextSlot(LOperand* context, LOperand* value, LOperand* temp) {
1587     inputs_[0] = context;
1588     inputs_[1] = value;
1589     temps_[0] = temp;
1590   }
1591
1592   LOperand* context() { return inputs_[0]; }
1593   LOperand* value() { return inputs_[1]; }
1594   LOperand* temp() { return temps_[0]; }
1595
1596   DECLARE_CONCRETE_INSTRUCTION(StoreContextSlot, "store-context-slot")
1597   DECLARE_HYDROGEN_ACCESSOR(StoreContextSlot)
1598
1599   int slot_index() { return hydrogen()->slot_index(); }
1600
1601   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1602 };
1603
1604
1605 class LPushArgument V8_FINAL : public LTemplateInstruction<0, 1, 0> {
1606  public:
1607   explicit LPushArgument(LOperand* value) {
1608     inputs_[0] = value;
1609   }
1610
1611   LOperand* value() { return inputs_[0]; }
1612
1613   DECLARE_CONCRETE_INSTRUCTION(PushArgument, "push-argument")
1614 };
1615
1616
1617 class LDrop V8_FINAL : public LTemplateInstruction<0, 0, 0> {
1618  public:
1619   explicit LDrop(int count) : count_(count) { }
1620
1621   int count() const { return count_; }
1622
1623   DECLARE_CONCRETE_INSTRUCTION(Drop, "drop")
1624
1625  private:
1626   int count_;
1627 };
1628
1629
1630 class LStoreCodeEntry V8_FINAL: public LTemplateInstruction<0, 1, 1> {
1631  public:
1632   LStoreCodeEntry(LOperand* function, LOperand* code_object) {
1633     inputs_[0] = function;
1634     temps_[0] = code_object;
1635   }
1636
1637   LOperand* function() { return inputs_[0]; }
1638   LOperand* code_object() { return temps_[0]; }
1639
1640   virtual void PrintDataTo(StringStream* stream);
1641
1642   DECLARE_CONCRETE_INSTRUCTION(StoreCodeEntry, "store-code-entry")
1643   DECLARE_HYDROGEN_ACCESSOR(StoreCodeEntry)
1644 };
1645
1646
1647 class LInnerAllocatedObject V8_FINAL: public LTemplateInstruction<1, 2, 0> {
1648  public:
1649   LInnerAllocatedObject(LOperand* base_object, LOperand* offset) {
1650     inputs_[0] = base_object;
1651     inputs_[1] = offset;
1652   }
1653
1654   LOperand* base_object() const { return inputs_[0]; }
1655   LOperand* offset() const { return inputs_[1]; }
1656
1657   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1658
1659   DECLARE_CONCRETE_INSTRUCTION(InnerAllocatedObject, "inner-allocated-object")
1660 };
1661
1662
1663 class LThisFunction V8_FINAL : public LTemplateInstruction<1, 0, 0> {
1664  public:
1665   DECLARE_CONCRETE_INSTRUCTION(ThisFunction, "this-function")
1666   DECLARE_HYDROGEN_ACCESSOR(ThisFunction)
1667 };
1668
1669
1670 class LContext V8_FINAL : public LTemplateInstruction<1, 0, 0> {
1671  public:
1672   DECLARE_CONCRETE_INSTRUCTION(Context, "context")
1673   DECLARE_HYDROGEN_ACCESSOR(Context)
1674 };
1675
1676
1677 class LDeclareGlobals V8_FINAL : public LTemplateInstruction<0, 1, 0> {
1678  public:
1679   explicit LDeclareGlobals(LOperand* context) {
1680     inputs_[0] = context;
1681   }
1682
1683   LOperand* context() { return inputs_[0]; }
1684
1685   DECLARE_CONCRETE_INSTRUCTION(DeclareGlobals, "declare-globals")
1686   DECLARE_HYDROGEN_ACCESSOR(DeclareGlobals)
1687 };
1688
1689
1690 class LCallJSFunction V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1691  public:
1692   explicit LCallJSFunction(LOperand* function) {
1693     inputs_[0] = function;
1694   }
1695
1696   LOperand* function() { return inputs_[0]; }
1697
1698   DECLARE_CONCRETE_INSTRUCTION(CallJSFunction, "call-js-function")
1699   DECLARE_HYDROGEN_ACCESSOR(CallJSFunction)
1700
1701   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1702
1703   int arity() const { return hydrogen()->argument_count() - 1; }
1704 };
1705
1706
1707 class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> {
1708  public:
1709   LCallWithDescriptor(const CallInterfaceDescriptor* descriptor,
1710                       ZoneList<LOperand*>& operands,
1711                       Zone* zone)
1712     : inputs_(descriptor->environment_length() + 1, zone) {
1713     ASSERT(descriptor->environment_length() + 1 == operands.length());
1714     inputs_.AddAll(operands, zone);
1715   }
1716
1717   LOperand* target() const { return inputs_[0]; }
1718
1719  private:
1720   DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor, "call-with-descriptor")
1721   DECLARE_HYDROGEN_ACCESSOR(CallWithDescriptor)
1722
1723   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1724
1725   int arity() const { return hydrogen()->argument_count() - 1; }
1726
1727   ZoneList<LOperand*> inputs_;
1728
1729   // Iterator support.
1730   virtual int InputCount() V8_FINAL V8_OVERRIDE { return inputs_.length(); }
1731   virtual LOperand* InputAt(int i) V8_FINAL V8_OVERRIDE { return inputs_[i]; }
1732
1733   virtual int TempCount() V8_FINAL V8_OVERRIDE { return 0; }
1734   virtual LOperand* TempAt(int i) V8_FINAL V8_OVERRIDE { return NULL; }
1735 };
1736
1737
1738 class LInvokeFunction V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1739  public:
1740   LInvokeFunction(LOperand* context, LOperand* function) {
1741     inputs_[0] = context;
1742     inputs_[1] = function;
1743   }
1744
1745   LOperand* context() { return inputs_[0]; }
1746   LOperand* function() { return inputs_[1]; }
1747
1748   DECLARE_CONCRETE_INSTRUCTION(InvokeFunction, "invoke-function")
1749   DECLARE_HYDROGEN_ACCESSOR(InvokeFunction)
1750
1751   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1752
1753   int arity() const { return hydrogen()->argument_count() - 1; }
1754 };
1755
1756
1757 class LCallFunction V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1758  public:
1759   LCallFunction(LOperand* context, LOperand* function) {
1760     inputs_[0] = context;
1761     inputs_[1] = function;
1762   }
1763
1764   DECLARE_CONCRETE_INSTRUCTION(CallFunction, "call-function")
1765   DECLARE_HYDROGEN_ACCESSOR(CallFunction)
1766
1767   LOperand* context() { return inputs_[0]; }
1768   LOperand* function() { return inputs_[1]; }
1769   int arity() const { return hydrogen()->argument_count() - 1; }
1770 };
1771
1772
1773 class LCallNew V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1774  public:
1775   LCallNew(LOperand* context, LOperand* constructor) {
1776     inputs_[0] = context;
1777     inputs_[1] = constructor;
1778   }
1779
1780   LOperand* context() { return inputs_[0]; }
1781   LOperand* constructor() { return inputs_[1]; }
1782
1783   DECLARE_CONCRETE_INSTRUCTION(CallNew, "call-new")
1784   DECLARE_HYDROGEN_ACCESSOR(CallNew)
1785
1786   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1787
1788   int arity() const { return hydrogen()->argument_count() - 1; }
1789 };
1790
1791
1792 class LCallNewArray V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1793  public:
1794   LCallNewArray(LOperand* context, LOperand* constructor) {
1795     inputs_[0] = context;
1796     inputs_[1] = constructor;
1797   }
1798
1799   LOperand* context() { return inputs_[0]; }
1800   LOperand* constructor() { return inputs_[1]; }
1801
1802   DECLARE_CONCRETE_INSTRUCTION(CallNewArray, "call-new-array")
1803   DECLARE_HYDROGEN_ACCESSOR(CallNewArray)
1804
1805   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1806
1807   int arity() const { return hydrogen()->argument_count() - 1; }
1808 };
1809
1810
1811 class LCallRuntime V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1812  public:
1813   explicit LCallRuntime(LOperand* context) {
1814     inputs_[0] = context;
1815   }
1816
1817   LOperand* context() { return inputs_[0]; }
1818
1819   DECLARE_CONCRETE_INSTRUCTION(CallRuntime, "call-runtime")
1820   DECLARE_HYDROGEN_ACCESSOR(CallRuntime)
1821
1822   virtual bool ClobbersDoubleRegisters() const V8_OVERRIDE {
1823     return save_doubles() == kDontSaveFPRegs;
1824   }
1825
1826   const Runtime::Function* function() const { return hydrogen()->function(); }
1827   int arity() const { return hydrogen()->argument_count(); }
1828   SaveFPRegsMode save_doubles() const { return hydrogen()->save_doubles(); }
1829 };
1830
1831
1832 class LInteger32ToDouble V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1833  public:
1834   explicit LInteger32ToDouble(LOperand* value) {
1835     inputs_[0] = value;
1836   }
1837
1838   LOperand* value() { return inputs_[0]; }
1839
1840   DECLARE_CONCRETE_INSTRUCTION(Integer32ToDouble, "int32-to-double")
1841 };
1842
1843
1844 class LInteger32ToSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1845  public:
1846   explicit LInteger32ToSmi(LOperand* value) {
1847     inputs_[0] = value;
1848   }
1849
1850   LOperand* value() { return inputs_[0]; }
1851
1852   DECLARE_CONCRETE_INSTRUCTION(Integer32ToSmi, "int32-to-smi")
1853   DECLARE_HYDROGEN_ACCESSOR(Change)
1854 };
1855
1856
1857 class LUint32ToDouble V8_FINAL : public LTemplateInstruction<1, 1, 1> {
1858  public:
1859   explicit LUint32ToDouble(LOperand* value, LOperand* temp) {
1860     inputs_[0] = value;
1861     temps_[0] = temp;
1862   }
1863
1864   LOperand* value() { return inputs_[0]; }
1865   LOperand* temp() { return temps_[0]; }
1866
1867   DECLARE_CONCRETE_INSTRUCTION(Uint32ToDouble, "uint32-to-double")
1868 };
1869
1870
1871 class LUint32ToSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1872  public:
1873   explicit LUint32ToSmi(LOperand* value) {
1874     inputs_[0] = value;
1875   }
1876
1877   LOperand* value() { return inputs_[0]; }
1878
1879   DECLARE_CONCRETE_INSTRUCTION(Uint32ToSmi, "uint32-to-smi")
1880   DECLARE_HYDROGEN_ACCESSOR(Change)
1881 };
1882
1883
1884 class LNumberTagI V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1885  public:
1886   explicit LNumberTagI(LOperand* value) {
1887     inputs_[0] = value;
1888   }
1889
1890   LOperand* value() { return inputs_[0]; }
1891
1892   DECLARE_CONCRETE_INSTRUCTION(NumberTagI, "number-tag-i")
1893 };
1894
1895
1896 class LNumberTagU V8_FINAL : public LTemplateInstruction<1, 1, 1> {
1897  public:
1898   explicit LNumberTagU(LOperand* value, LOperand* temp) {
1899     inputs_[0] = value;
1900     temps_[0] = temp;
1901   }
1902
1903   LOperand* value() { return inputs_[0]; }
1904   LOperand* temp() { return temps_[0]; }
1905
1906   DECLARE_CONCRETE_INSTRUCTION(NumberTagU, "number-tag-u")
1907 };
1908
1909
1910 class LNumberTagD V8_FINAL : public LTemplateInstruction<1, 1, 1> {
1911  public:
1912   explicit LNumberTagD(LOperand* value, LOperand* temp) {
1913     inputs_[0] = value;
1914     temps_[0] = temp;
1915   }
1916
1917   LOperand* value() { return inputs_[0]; }
1918   LOperand* temp() { return temps_[0]; }
1919
1920   DECLARE_CONCRETE_INSTRUCTION(NumberTagD, "number-tag-d")
1921   DECLARE_HYDROGEN_ACCESSOR(Change)
1922 };
1923
1924
1925 // Sometimes truncating conversion from a tagged value to an int32.
1926 class LDoubleToI V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1927  public:
1928   explicit LDoubleToI(LOperand* value) {
1929     inputs_[0] = value;
1930   }
1931
1932   LOperand* value() { return inputs_[0]; }
1933
1934   DECLARE_CONCRETE_INSTRUCTION(DoubleToI, "double-to-i")
1935   DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
1936
1937   bool truncating() { return hydrogen()->CanTruncateToInt32(); }
1938 };
1939
1940
1941 class LDoubleToSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1942  public:
1943   explicit LDoubleToSmi(LOperand* value) {
1944     inputs_[0] = value;
1945   }
1946
1947   LOperand* value() { return inputs_[0]; }
1948
1949   DECLARE_CONCRETE_INSTRUCTION(DoubleToSmi, "double-to-smi")
1950   DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
1951 };
1952
1953
1954 // Truncating conversion from a tagged value to an int32.
1955 class LTaggedToI V8_FINAL : public LTemplateInstruction<1, 1, 1> {
1956  public:
1957   LTaggedToI(LOperand* value, LOperand* temp) {
1958     inputs_[0] = value;
1959     temps_[0] = temp;
1960   }
1961
1962   LOperand* value() { return inputs_[0]; }
1963   LOperand* temp() { return temps_[0]; }
1964
1965   DECLARE_CONCRETE_INSTRUCTION(TaggedToI, "tagged-to-i")
1966   DECLARE_HYDROGEN_ACCESSOR(Change)
1967
1968   bool truncating() { return hydrogen()->CanTruncateToInt32(); }
1969 };
1970
1971
1972 class LSmiTag V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1973  public:
1974   explicit LSmiTag(LOperand* value) {
1975     inputs_[0] = value;
1976   }
1977
1978   LOperand* value() { return inputs_[0]; }
1979
1980   DECLARE_CONCRETE_INSTRUCTION(SmiTag, "smi-tag")
1981 };
1982
1983
1984 class LNumberUntagD V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1985  public:
1986   explicit LNumberUntagD(LOperand* value) {
1987     inputs_[0] = value;
1988   }
1989
1990   LOperand* value() { return inputs_[0]; }
1991
1992   DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag")
1993   DECLARE_HYDROGEN_ACCESSOR(Change);
1994 };
1995
1996
1997 class LSmiUntag V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1998  public:
1999   LSmiUntag(LOperand* value, bool needs_check)
2000       : needs_check_(needs_check) {
2001     inputs_[0] = value;
2002   }
2003
2004   LOperand* value() { return inputs_[0]; }
2005   bool needs_check() const { return needs_check_; }
2006
2007   DECLARE_CONCRETE_INSTRUCTION(SmiUntag, "smi-untag")
2008
2009  private:
2010   bool needs_check_;
2011 };
2012
2013
2014 class LStoreNamedField V8_FINAL : public LTemplateInstruction<0, 2, 1> {
2015  public:
2016   LStoreNamedField(LOperand* object, LOperand* value, LOperand* temp) {
2017     inputs_[0] = object;
2018     inputs_[1] = value;
2019     temps_[0] = temp;
2020   }
2021
2022   LOperand* object() { return inputs_[0]; }
2023   LOperand* value() { return inputs_[1]; }
2024   LOperand* temp() { return temps_[0]; }
2025
2026   DECLARE_CONCRETE_INSTRUCTION(StoreNamedField, "store-named-field")
2027   DECLARE_HYDROGEN_ACCESSOR(StoreNamedField)
2028
2029   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2030
2031   Handle<Map> transition() const { return hydrogen()->transition_map(); }
2032   Representation representation() const {
2033     return hydrogen()->field_representation();
2034   }
2035 };
2036
2037
2038 class LStoreNamedGeneric V8_FINAL : public LTemplateInstruction<0, 3, 0> {
2039  public:
2040   LStoreNamedGeneric(LOperand* context, LOperand* object, LOperand* value) {
2041     inputs_[0] = context;
2042     inputs_[1] = object;
2043     inputs_[2] = value;
2044   }
2045
2046   LOperand* context() { return inputs_[0]; }
2047   LOperand* object() { return inputs_[1]; }
2048   LOperand* value() { return inputs_[2]; }
2049
2050   DECLARE_CONCRETE_INSTRUCTION(StoreNamedGeneric, "store-named-generic")
2051   DECLARE_HYDROGEN_ACCESSOR(StoreNamedGeneric)
2052
2053   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2054
2055   Handle<Object> name() const { return hydrogen()->name(); }
2056   StrictModeFlag strict_mode_flag() { return hydrogen()->strict_mode_flag(); }
2057 };
2058
2059
2060 class LStoreKeyed V8_FINAL : public LTemplateInstruction<0, 3, 0> {
2061  public:
2062   LStoreKeyed(LOperand* object, LOperand* key, LOperand* value) {
2063     inputs_[0] = object;
2064     inputs_[1] = key;
2065     inputs_[2] = value;
2066   }
2067
2068   bool is_external() const { return hydrogen()->is_external(); }
2069   bool is_fixed_typed_array() const {
2070     return hydrogen()->is_fixed_typed_array();
2071   }
2072   bool is_typed_elements() const {
2073     return is_external() || is_fixed_typed_array();
2074   }
2075   LOperand* elements() { return inputs_[0]; }
2076   LOperand* key() { return inputs_[1]; }
2077   LOperand* value() { return inputs_[2]; }
2078   ElementsKind elements_kind() const { return hydrogen()->elements_kind(); }
2079
2080   DECLARE_CONCRETE_INSTRUCTION(StoreKeyed, "store-keyed")
2081   DECLARE_HYDROGEN_ACCESSOR(StoreKeyed)
2082
2083   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2084   bool NeedsCanonicalization() { return hydrogen()->NeedsCanonicalization(); }
2085   uint32_t additional_index() const { return hydrogen()->index_offset(); }
2086 };
2087
2088
2089 class LStoreKeyedGeneric V8_FINAL : public LTemplateInstruction<0, 4, 0> {
2090  public:
2091   LStoreKeyedGeneric(LOperand* context,
2092                      LOperand* object,
2093                      LOperand* key,
2094                      LOperand* value) {
2095     inputs_[0] = context;
2096     inputs_[1] = object;
2097     inputs_[2] = key;
2098     inputs_[3] = value;
2099   }
2100
2101   LOperand* context() { return inputs_[0]; }
2102   LOperand* object() { return inputs_[1]; }
2103   LOperand* key() { return inputs_[2]; }
2104   LOperand* value() { return inputs_[3]; }
2105
2106   DECLARE_CONCRETE_INSTRUCTION(StoreKeyedGeneric, "store-keyed-generic")
2107   DECLARE_HYDROGEN_ACCESSOR(StoreKeyedGeneric)
2108
2109   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2110
2111   StrictModeFlag strict_mode_flag() { return hydrogen()->strict_mode_flag(); }
2112 };
2113
2114
2115 class LTransitionElementsKind V8_FINAL : public LTemplateInstruction<0, 2, 2> {
2116  public:
2117   LTransitionElementsKind(LOperand* object,
2118                           LOperand* context,
2119                           LOperand* new_map_temp,
2120                           LOperand* temp) {
2121     inputs_[0] = object;
2122     inputs_[1] = context;
2123     temps_[0] = new_map_temp;
2124     temps_[1] = temp;
2125   }
2126
2127   LOperand* object() { return inputs_[0]; }
2128   LOperand* context() { return inputs_[1]; }
2129   LOperand* new_map_temp() { return temps_[0]; }
2130   LOperand* temp() { return temps_[1]; }
2131
2132   DECLARE_CONCRETE_INSTRUCTION(TransitionElementsKind,
2133                                "transition-elements-kind")
2134   DECLARE_HYDROGEN_ACCESSOR(TransitionElementsKind)
2135
2136   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2137
2138   Handle<Map> original_map() { return hydrogen()->original_map().handle(); }
2139   Handle<Map> transitioned_map() {
2140     return hydrogen()->transitioned_map().handle();
2141   }
2142   ElementsKind from_kind() { return hydrogen()->from_kind(); }
2143   ElementsKind to_kind() { return hydrogen()->to_kind(); }
2144 };
2145
2146
2147 class LTrapAllocationMemento V8_FINAL : public LTemplateInstruction<0, 1, 1> {
2148  public:
2149   LTrapAllocationMemento(LOperand* object,
2150                          LOperand* temp) {
2151     inputs_[0] = object;
2152     temps_[0] = temp;
2153   }
2154
2155   LOperand* object() { return inputs_[0]; }
2156   LOperand* temp() { return temps_[0]; }
2157
2158   DECLARE_CONCRETE_INSTRUCTION(TrapAllocationMemento,
2159                                "trap-allocation-memento")
2160 };
2161
2162
2163 class LStringAdd V8_FINAL : public LTemplateInstruction<1, 3, 0> {
2164  public:
2165   LStringAdd(LOperand* context, LOperand* left, LOperand* right) {
2166     inputs_[0] = context;
2167     inputs_[1] = left;
2168     inputs_[2] = right;
2169   }
2170
2171   LOperand* context() { return inputs_[0]; }
2172   LOperand* left() { return inputs_[1]; }
2173   LOperand* right() { return inputs_[2]; }
2174
2175   DECLARE_CONCRETE_INSTRUCTION(StringAdd, "string-add")
2176   DECLARE_HYDROGEN_ACCESSOR(StringAdd)
2177 };
2178
2179
2180 class LStringCharCodeAt V8_FINAL : public LTemplateInstruction<1, 3, 0> {
2181  public:
2182   LStringCharCodeAt(LOperand* context, LOperand* string, LOperand* index) {
2183     inputs_[0] = context;
2184     inputs_[1] = string;
2185     inputs_[2] = index;
2186   }
2187
2188   LOperand* context() { return inputs_[0]; }
2189   LOperand* string() { return inputs_[1]; }
2190   LOperand* index() { return inputs_[2]; }
2191
2192   DECLARE_CONCRETE_INSTRUCTION(StringCharCodeAt, "string-char-code-at")
2193   DECLARE_HYDROGEN_ACCESSOR(StringCharCodeAt)
2194 };
2195
2196
2197 class LStringCharFromCode V8_FINAL : public LTemplateInstruction<1, 2, 0> {
2198  public:
2199   explicit LStringCharFromCode(LOperand* context, LOperand* char_code) {
2200     inputs_[0] = context;
2201     inputs_[1] = char_code;
2202   }
2203
2204   LOperand* context() { return inputs_[0]; }
2205   LOperand* char_code() { return inputs_[1]; }
2206
2207   DECLARE_CONCRETE_INSTRUCTION(StringCharFromCode, "string-char-from-code")
2208   DECLARE_HYDROGEN_ACCESSOR(StringCharFromCode)
2209 };
2210
2211
2212 class LCheckValue V8_FINAL : public LTemplateInstruction<0, 1, 0> {
2213  public:
2214   explicit LCheckValue(LOperand* value) {
2215     inputs_[0] = value;
2216   }
2217
2218   LOperand* value() { return inputs_[0]; }
2219
2220   DECLARE_CONCRETE_INSTRUCTION(CheckValue, "check-value")
2221   DECLARE_HYDROGEN_ACCESSOR(CheckValue)
2222 };
2223
2224
2225 class LCheckInstanceType V8_FINAL : public LTemplateInstruction<0, 1, 0> {
2226  public:
2227   explicit LCheckInstanceType(LOperand* value) {
2228     inputs_[0] = value;
2229   }
2230
2231   LOperand* value() { return inputs_[0]; }
2232
2233   DECLARE_CONCRETE_INSTRUCTION(CheckInstanceType, "check-instance-type")
2234   DECLARE_HYDROGEN_ACCESSOR(CheckInstanceType)
2235 };
2236
2237
2238 class LCheckMaps V8_FINAL : public LTemplateInstruction<0, 1, 0> {
2239  public:
2240   explicit LCheckMaps(LOperand* value) {
2241     inputs_[0] = value;
2242   }
2243
2244   LOperand* value() { return inputs_[0]; }
2245
2246   DECLARE_CONCRETE_INSTRUCTION(CheckMaps, "check-maps")
2247   DECLARE_HYDROGEN_ACCESSOR(CheckMaps)
2248 };
2249
2250
2251 class LCheckSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2252  public:
2253   explicit LCheckSmi(LOperand* value) {
2254     inputs_[0] = value;
2255   }
2256
2257   LOperand* value() { return inputs_[0]; }
2258
2259   DECLARE_CONCRETE_INSTRUCTION(CheckSmi, "check-smi")
2260 };
2261
2262
2263 class LClampDToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2264  public:
2265   explicit LClampDToUint8(LOperand* unclamped) {
2266     inputs_[0] = unclamped;
2267   }
2268
2269   LOperand* unclamped() { return inputs_[0]; }
2270
2271   DECLARE_CONCRETE_INSTRUCTION(ClampDToUint8, "clamp-d-to-uint8")
2272 };
2273
2274
2275 class LClampIToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2276  public:
2277   explicit LClampIToUint8(LOperand* unclamped) {
2278     inputs_[0] = unclamped;
2279   }
2280
2281   LOperand* unclamped() { return inputs_[0]; }
2282
2283   DECLARE_CONCRETE_INSTRUCTION(ClampIToUint8, "clamp-i-to-uint8")
2284 };
2285
2286
2287 class LClampTToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 1> {
2288  public:
2289   LClampTToUint8(LOperand* unclamped,
2290                  LOperand* temp_xmm) {
2291     inputs_[0] = unclamped;
2292     temps_[0] = temp_xmm;
2293   }
2294
2295   LOperand* unclamped() { return inputs_[0]; }
2296   LOperand* temp_xmm() { return temps_[0]; }
2297
2298   DECLARE_CONCRETE_INSTRUCTION(ClampTToUint8, "clamp-t-to-uint8")
2299 };
2300
2301
2302 class LCheckNonSmi V8_FINAL : public LTemplateInstruction<0, 1, 0> {
2303  public:
2304   explicit LCheckNonSmi(LOperand* value) {
2305     inputs_[0] = value;
2306   }
2307
2308   LOperand* value() { return inputs_[0]; }
2309
2310   DECLARE_CONCRETE_INSTRUCTION(CheckNonSmi, "check-non-smi")
2311   DECLARE_HYDROGEN_ACCESSOR(CheckHeapObject)
2312 };
2313
2314
2315 class LAllocate V8_FINAL : public LTemplateInstruction<1, 2, 1> {
2316  public:
2317   LAllocate(LOperand* context, LOperand* size, LOperand* temp) {
2318     inputs_[0] = context;
2319     inputs_[1] = size;
2320     temps_[0] = temp;
2321   }
2322
2323   LOperand* context() { return inputs_[0]; }
2324   LOperand* size() { return inputs_[1]; }
2325   LOperand* temp() { return temps_[0]; }
2326
2327   DECLARE_CONCRETE_INSTRUCTION(Allocate, "allocate")
2328   DECLARE_HYDROGEN_ACCESSOR(Allocate)
2329 };
2330
2331
2332 class LRegExpLiteral V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2333  public:
2334   explicit LRegExpLiteral(LOperand* context) {
2335     inputs_[0] = context;
2336   }
2337
2338   LOperand* context() { return inputs_[0]; }
2339
2340   DECLARE_CONCRETE_INSTRUCTION(RegExpLiteral, "regexp-literal")
2341   DECLARE_HYDROGEN_ACCESSOR(RegExpLiteral)
2342 };
2343
2344
2345 class LFunctionLiteral V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2346  public:
2347   explicit LFunctionLiteral(LOperand* context) {
2348     inputs_[0] = context;
2349   }
2350
2351   LOperand* context() { return inputs_[0]; }
2352
2353   DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
2354   DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)
2355 };
2356
2357
2358 class LToFastProperties V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2359  public:
2360   explicit LToFastProperties(LOperand* value) {
2361     inputs_[0] = value;
2362   }
2363
2364   LOperand* value() { return inputs_[0]; }
2365
2366   DECLARE_CONCRETE_INSTRUCTION(ToFastProperties, "to-fast-properties")
2367   DECLARE_HYDROGEN_ACCESSOR(ToFastProperties)
2368 };
2369
2370
2371 class LTypeof V8_FINAL : public LTemplateInstruction<1, 2, 0> {
2372  public:
2373   LTypeof(LOperand* context, LOperand* value) {
2374     inputs_[0] = context;
2375     inputs_[1] = value;
2376   }
2377
2378   LOperand* context() { return inputs_[0]; }
2379   LOperand* value() { return inputs_[1]; }
2380
2381   DECLARE_CONCRETE_INSTRUCTION(Typeof, "typeof")
2382 };
2383
2384
2385 class LTypeofIsAndBranch V8_FINAL : public LControlInstruction<1, 0> {
2386  public:
2387   explicit LTypeofIsAndBranch(LOperand* value) {
2388     inputs_[0] = value;
2389   }
2390
2391   LOperand* value() { return inputs_[0]; }
2392
2393   DECLARE_CONCRETE_INSTRUCTION(TypeofIsAndBranch, "typeof-is-and-branch")
2394   DECLARE_HYDROGEN_ACCESSOR(TypeofIsAndBranch)
2395
2396   Handle<String> type_literal() { return hydrogen()->type_literal(); }
2397
2398   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2399 };
2400
2401
2402 class LIsConstructCallAndBranch V8_FINAL : public LControlInstruction<0, 1> {
2403  public:
2404   explicit LIsConstructCallAndBranch(LOperand* temp) {
2405     temps_[0] = temp;
2406   }
2407
2408   LOperand* temp() { return temps_[0]; }
2409
2410   DECLARE_CONCRETE_INSTRUCTION(IsConstructCallAndBranch,
2411                                "is-construct-call-and-branch")
2412   DECLARE_HYDROGEN_ACCESSOR(IsConstructCallAndBranch)
2413 };
2414
2415
2416 class LOsrEntry V8_FINAL : public LTemplateInstruction<0, 0, 0> {
2417  public:
2418   LOsrEntry() {}
2419
2420   virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
2421     return false;
2422   }
2423   DECLARE_CONCRETE_INSTRUCTION(OsrEntry, "osr-entry")
2424 };
2425
2426
2427 class LStackCheck V8_FINAL : public LTemplateInstruction<0, 1, 0> {
2428  public:
2429   explicit LStackCheck(LOperand* context) {
2430     inputs_[0] = context;
2431   }
2432
2433   LOperand* context() { return inputs_[0]; }
2434
2435   DECLARE_CONCRETE_INSTRUCTION(StackCheck, "stack-check")
2436   DECLARE_HYDROGEN_ACCESSOR(StackCheck)
2437
2438   Label* done_label() { return &done_label_; }
2439
2440  private:
2441   Label done_label_;
2442 };
2443
2444
2445 class LForInPrepareMap V8_FINAL : public LTemplateInstruction<1, 2, 0> {
2446  public:
2447   LForInPrepareMap(LOperand* context, LOperand* object) {
2448     inputs_[0] = context;
2449     inputs_[1] = object;
2450   }
2451
2452   LOperand* context() { return inputs_[0]; }
2453   LOperand* object() { return inputs_[1]; }
2454
2455   DECLARE_CONCRETE_INSTRUCTION(ForInPrepareMap, "for-in-prepare-map")
2456 };
2457
2458
2459 class LForInCacheArray V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2460  public:
2461   explicit LForInCacheArray(LOperand* map) {
2462     inputs_[0] = map;
2463   }
2464
2465   LOperand* map() { return inputs_[0]; }
2466
2467   DECLARE_CONCRETE_INSTRUCTION(ForInCacheArray, "for-in-cache-array")
2468
2469   int idx() {
2470     return HForInCacheArray::cast(this->hydrogen_value())->idx();
2471   }
2472 };
2473
2474
2475 class LCheckMapValue V8_FINAL : public LTemplateInstruction<0, 2, 0> {
2476  public:
2477   LCheckMapValue(LOperand* value, LOperand* map) {
2478     inputs_[0] = value;
2479     inputs_[1] = map;
2480   }
2481
2482   LOperand* value() { return inputs_[0]; }
2483   LOperand* map() { return inputs_[1]; }
2484
2485   DECLARE_CONCRETE_INSTRUCTION(CheckMapValue, "check-map-value")
2486 };
2487
2488
2489 class LLoadFieldByIndex V8_FINAL : public LTemplateInstruction<1, 2, 0> {
2490  public:
2491   LLoadFieldByIndex(LOperand* object, LOperand* index) {
2492     inputs_[0] = object;
2493     inputs_[1] = index;
2494   }
2495
2496   LOperand* object() { return inputs_[0]; }
2497   LOperand* index() { return inputs_[1]; }
2498
2499   DECLARE_CONCRETE_INSTRUCTION(LoadFieldByIndex, "load-field-by-index")
2500 };
2501
2502
2503 class LChunkBuilder;
2504 class LPlatformChunk V8_FINAL : public LChunk {
2505  public:
2506   LPlatformChunk(CompilationInfo* info, HGraph* graph)
2507       : LChunk(info, graph) { }
2508
2509   int GetNextSpillIndex(RegisterKind kind);
2510   LOperand* GetNextSpillSlot(RegisterKind kind);
2511 };
2512
2513
2514 class LChunkBuilder V8_FINAL : public LChunkBuilderBase {
2515  public:
2516   LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator)
2517       : LChunkBuilderBase(graph->zone()),
2518         chunk_(NULL),
2519         info_(info),
2520         graph_(graph),
2521         status_(UNUSED),
2522         current_instruction_(NULL),
2523         current_block_(NULL),
2524         next_block_(NULL),
2525         allocator_(allocator),
2526         instruction_pending_deoptimization_environment_(NULL),
2527         pending_deoptimization_ast_id_(BailoutId::None()) { }
2528
2529   // Build the sequence for the graph.
2530   LPlatformChunk* Build();
2531
2532   LInstruction* CheckElideControlInstruction(HControlInstruction* instr);
2533
2534   // Declare methods that deal with the individual node types.
2535 #define DECLARE_DO(type) LInstruction* Do##type(H##type* node);
2536   HYDROGEN_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
2537 #undef DECLARE_DO
2538
2539   LInstruction* DoMathFloor(HUnaryMathOperation* instr);
2540   LInstruction* DoMathRound(HUnaryMathOperation* instr);
2541   LInstruction* DoMathAbs(HUnaryMathOperation* instr);
2542   LInstruction* DoMathLog(HUnaryMathOperation* instr);
2543   LInstruction* DoMathExp(HUnaryMathOperation* instr);
2544   LInstruction* DoMathSqrt(HUnaryMathOperation* instr);
2545   LInstruction* DoMathPowHalf(HUnaryMathOperation* instr);
2546
2547  private:
2548   enum Status {
2549     UNUSED,
2550     BUILDING,
2551     DONE,
2552     ABORTED
2553   };
2554
2555   LPlatformChunk* chunk() const { return chunk_; }
2556   CompilationInfo* info() const { return info_; }
2557   HGraph* graph() const { return graph_; }
2558
2559   bool is_unused() const { return status_ == UNUSED; }
2560   bool is_building() const { return status_ == BUILDING; }
2561   bool is_done() const { return status_ == DONE; }
2562   bool is_aborted() const { return status_ == ABORTED; }
2563
2564   void Abort(BailoutReason reason);
2565
2566   // Methods for getting operands for Use / Define / Temp.
2567   LUnallocated* ToUnallocated(Register reg);
2568   LUnallocated* ToUnallocated(XMMRegister reg);
2569
2570   // Methods for setting up define-use relationships.
2571   MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand);
2572   MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register);
2573   MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value,
2574                                            XMMRegister fixed_register);
2575
2576   // A value that is guaranteed to be allocated to a register.
2577   // Operand created by UseRegister is guaranteed to be live until the end of
2578   // instruction. This means that register allocator will not reuse it's
2579   // register for any other operand inside instruction.
2580   // Operand created by UseRegisterAtStart is guaranteed to be live only at
2581   // instruction start. Register allocator is free to assign the same register
2582   // to some other operand used inside instruction (i.e. temporary or
2583   // output).
2584   MUST_USE_RESULT LOperand* UseRegister(HValue* value);
2585   MUST_USE_RESULT LOperand* UseRegisterAtStart(HValue* value);
2586
2587   // An input operand in a register that may be trashed.
2588   MUST_USE_RESULT LOperand* UseTempRegister(HValue* value);
2589
2590   // An input operand in a register that may be trashed or a constant operand.
2591   MUST_USE_RESULT LOperand* UseTempRegisterOrConstant(HValue* value);
2592
2593   // An input operand in a register or stack slot.
2594   MUST_USE_RESULT LOperand* Use(HValue* value);
2595   MUST_USE_RESULT LOperand* UseAtStart(HValue* value);
2596
2597   // An input operand in a register, stack slot or a constant operand.
2598   MUST_USE_RESULT LOperand* UseOrConstant(HValue* value);
2599   MUST_USE_RESULT LOperand* UseOrConstantAtStart(HValue* value);
2600
2601   // An input operand in a register or a constant operand.
2602   MUST_USE_RESULT LOperand* UseRegisterOrConstant(HValue* value);
2603   MUST_USE_RESULT LOperand* UseRegisterOrConstantAtStart(HValue* value);
2604
2605   // An input operand in a constant operand.
2606   MUST_USE_RESULT LOperand* UseConstant(HValue* value);
2607
2608   // An input operand in register, stack slot or a constant operand.
2609   // Will not be moved to a register even if one is freely available.
2610   virtual MUST_USE_RESULT LOperand* UseAny(HValue* value) V8_OVERRIDE;
2611
2612   // Temporary operand that must be in a register.
2613   MUST_USE_RESULT LUnallocated* TempRegister();
2614   MUST_USE_RESULT LOperand* FixedTemp(Register reg);
2615   MUST_USE_RESULT LOperand* FixedTemp(XMMRegister reg);
2616
2617   // Methods for setting up define-use relationships.
2618   // Return the same instruction that they are passed.
2619   LInstruction* Define(LTemplateResultInstruction<1>* instr,
2620                        LUnallocated* result);
2621   LInstruction* DefineAsRegister(LTemplateResultInstruction<1>* instr);
2622   LInstruction* DefineAsSpilled(LTemplateResultInstruction<1>* instr,
2623                                 int index);
2624   LInstruction* DefineSameAsFirst(LTemplateResultInstruction<1>* instr);
2625   LInstruction* DefineFixed(LTemplateResultInstruction<1>* instr,
2626                             Register reg);
2627   LInstruction* DefineFixedDouble(LTemplateResultInstruction<1>* instr,
2628                                   XMMRegister reg);
2629   // Assigns an environment to an instruction.  An instruction which can
2630   // deoptimize must have an environment.
2631   LInstruction* AssignEnvironment(LInstruction* instr);
2632   // Assigns a pointer map to an instruction.  An instruction which can
2633   // trigger a GC or a lazy deoptimization must have a pointer map.
2634   LInstruction* AssignPointerMap(LInstruction* instr);
2635
2636   enum CanDeoptimize { CAN_DEOPTIMIZE_EAGERLY, CANNOT_DEOPTIMIZE_EAGERLY };
2637
2638   // Marks a call for the register allocator.  Assigns a pointer map to
2639   // support GC and lazy deoptimization.  Assigns an environment to support
2640   // eager deoptimization if CAN_DEOPTIMIZE_EAGERLY.
2641   LInstruction* MarkAsCall(
2642       LInstruction* instr,
2643       HInstruction* hinstr,
2644       CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY);
2645
2646   void VisitInstruction(HInstruction* current);
2647
2648   void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block);
2649   LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2650   LInstruction* DoArithmeticD(Token::Value op,
2651                               HArithmeticBinaryOperation* instr);
2652   LInstruction* DoArithmeticT(Token::Value op,
2653                               HBinaryOperation* instr);
2654
2655   LPlatformChunk* chunk_;
2656   CompilationInfo* info_;
2657   HGraph* const graph_;
2658   Status status_;
2659   HInstruction* current_instruction_;
2660   HBasicBlock* current_block_;
2661   HBasicBlock* next_block_;
2662   LAllocator* allocator_;
2663   LInstruction* instruction_pending_deoptimization_environment_;
2664   BailoutId pending_deoptimization_ast_id_;
2665
2666   DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2667 };
2668
2669 #undef DECLARE_HYDROGEN_ACCESSOR
2670 #undef DECLARE_CONCRETE_INSTRUCTION
2671
2672 } }  // namespace v8::int
2673
2674 #endif  // V8_X64_LITHIUM_X64_H_