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