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