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