Revert "Implement in-heap backing store for typed arrays."
[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  private:
1820   DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor, "call-with-descriptor")
1821   DECLARE_HYDROGEN_ACCESSOR(CallWithDescriptor)
1822
1823   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1824
1825   int arity() const { return hydrogen()->argument_count() - 1; }
1826
1827   const CallInterfaceDescriptor* descriptor_;
1828   ZoneList<LOperand*> inputs_;
1829
1830   // Iterator support.
1831   virtual int InputCount() V8_FINAL V8_OVERRIDE { return inputs_.length(); }
1832   virtual LOperand* InputAt(int i) V8_FINAL V8_OVERRIDE { return inputs_[i]; }
1833
1834   virtual int TempCount() V8_FINAL V8_OVERRIDE { return 0; }
1835   virtual LOperand* TempAt(int i) V8_FINAL V8_OVERRIDE { return NULL; }
1836 };
1837
1838
1839 class LInvokeFunction V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1840  public:
1841   LInvokeFunction(LOperand* context, LOperand* function) {
1842     inputs_[0] = context;
1843     inputs_[1] = function;
1844   }
1845
1846   LOperand* context() { return inputs_[0]; }
1847   LOperand* function() { return inputs_[1]; }
1848
1849   DECLARE_CONCRETE_INSTRUCTION(InvokeFunction, "invoke-function")
1850   DECLARE_HYDROGEN_ACCESSOR(InvokeFunction)
1851
1852   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1853
1854   int arity() const { return hydrogen()->argument_count() - 1; }
1855 };
1856
1857
1858 class LCallFunction V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1859  public:
1860   LCallFunction(LOperand* context, LOperand* function) {
1861     inputs_[0] = context;
1862     inputs_[1] = function;
1863   }
1864
1865   DECLARE_CONCRETE_INSTRUCTION(CallFunction, "call-function")
1866   DECLARE_HYDROGEN_ACCESSOR(CallFunction)
1867
1868   LOperand* context() { return inputs_[0]; }
1869   LOperand* function() { return inputs_[1]; }
1870   int arity() const { return hydrogen()->argument_count() - 1; }
1871 };
1872
1873
1874 class LCallNew V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1875  public:
1876   LCallNew(LOperand* context, LOperand* constructor) {
1877     inputs_[0] = context;
1878     inputs_[1] = constructor;
1879   }
1880
1881   LOperand* context() { return inputs_[0]; }
1882   LOperand* constructor() { return inputs_[1]; }
1883
1884   DECLARE_CONCRETE_INSTRUCTION(CallNew, "call-new")
1885   DECLARE_HYDROGEN_ACCESSOR(CallNew)
1886
1887   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1888
1889   int arity() const { return hydrogen()->argument_count() - 1; }
1890 };
1891
1892
1893 class LCallNewArray V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1894  public:
1895   LCallNewArray(LOperand* context, LOperand* constructor) {
1896     inputs_[0] = context;
1897     inputs_[1] = constructor;
1898   }
1899
1900   LOperand* context() { return inputs_[0]; }
1901   LOperand* constructor() { return inputs_[1]; }
1902
1903   DECLARE_CONCRETE_INSTRUCTION(CallNewArray, "call-new-array")
1904   DECLARE_HYDROGEN_ACCESSOR(CallNewArray)
1905
1906   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
1907
1908   int arity() const { return hydrogen()->argument_count() - 1; }
1909 };
1910
1911
1912 class LCallRuntime V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1913  public:
1914   explicit LCallRuntime(LOperand* context) {
1915     inputs_[0] = context;
1916   }
1917
1918   LOperand* context() { return inputs_[0]; }
1919
1920   DECLARE_CONCRETE_INSTRUCTION(CallRuntime, "call-runtime")
1921   DECLARE_HYDROGEN_ACCESSOR(CallRuntime)
1922
1923   virtual bool ClobbersDoubleRegisters() const V8_OVERRIDE {
1924     return save_doubles() == kDontSaveFPRegs;
1925   }
1926
1927   const Runtime::Function* function() const { return hydrogen()->function(); }
1928   int arity() const { return hydrogen()->argument_count(); }
1929   SaveFPRegsMode save_doubles() const { return hydrogen()->save_doubles(); }
1930 };
1931
1932
1933 class LInteger32ToDouble V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1934  public:
1935   explicit LInteger32ToDouble(LOperand* value) {
1936     inputs_[0] = value;
1937   }
1938
1939   LOperand* value() { return inputs_[0]; }
1940
1941   DECLARE_CONCRETE_INSTRUCTION(Integer32ToDouble, "int32-to-double")
1942 };
1943
1944
1945 class LInteger32ToSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1946  public:
1947   explicit LInteger32ToSmi(LOperand* value) {
1948     inputs_[0] = value;
1949   }
1950
1951   LOperand* value() { return inputs_[0]; }
1952
1953   DECLARE_CONCRETE_INSTRUCTION(Integer32ToSmi, "int32-to-smi")
1954   DECLARE_HYDROGEN_ACCESSOR(Change)
1955 };
1956
1957
1958 class LUint32ToDouble V8_FINAL : public LTemplateInstruction<1, 1, 1> {
1959  public:
1960   explicit LUint32ToDouble(LOperand* value, LOperand* temp) {
1961     inputs_[0] = value;
1962     temps_[0] = temp;
1963   }
1964
1965   LOperand* value() { return inputs_[0]; }
1966   LOperand* temp() { return temps_[0]; }
1967
1968   DECLARE_CONCRETE_INSTRUCTION(Uint32ToDouble, "uint32-to-double")
1969 };
1970
1971
1972 class LUint32ToSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1973  public:
1974   explicit LUint32ToSmi(LOperand* value) {
1975     inputs_[0] = value;
1976   }
1977
1978   LOperand* value() { return inputs_[0]; }
1979
1980   DECLARE_CONCRETE_INSTRUCTION(Uint32ToSmi, "uint32-to-smi")
1981   DECLARE_HYDROGEN_ACCESSOR(Change)
1982 };
1983
1984
1985 class LNumberTagI V8_FINAL : public LTemplateInstruction<1, 1, 0> {
1986  public:
1987   explicit LNumberTagI(LOperand* value) {
1988     inputs_[0] = value;
1989   }
1990
1991   LOperand* value() { return inputs_[0]; }
1992
1993   DECLARE_CONCRETE_INSTRUCTION(NumberTagI, "number-tag-i")
1994 };
1995
1996
1997 class LNumberTagU V8_FINAL : public LTemplateInstruction<1, 1, 1> {
1998  public:
1999   explicit LNumberTagU(LOperand* value, LOperand* temp) {
2000     inputs_[0] = value;
2001     temps_[0] = temp;
2002   }
2003
2004   LOperand* value() { return inputs_[0]; }
2005   LOperand* temp() { return temps_[0]; }
2006
2007   DECLARE_CONCRETE_INSTRUCTION(NumberTagU, "number-tag-u")
2008 };
2009
2010
2011 class LNumberTagD V8_FINAL : public LTemplateInstruction<1, 1, 1> {
2012  public:
2013   explicit LNumberTagD(LOperand* value, LOperand* temp) {
2014     inputs_[0] = value;
2015     temps_[0] = temp;
2016   }
2017
2018   LOperand* value() { return inputs_[0]; }
2019   LOperand* temp() { return temps_[0]; }
2020
2021   DECLARE_CONCRETE_INSTRUCTION(NumberTagD, "number-tag-d")
2022   DECLARE_HYDROGEN_ACCESSOR(Change)
2023 };
2024
2025
2026 // Sometimes truncating conversion from a tagged value to an int32.
2027 class LDoubleToI V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2028  public:
2029   explicit LDoubleToI(LOperand* value) {
2030     inputs_[0] = value;
2031   }
2032
2033   LOperand* value() { return inputs_[0]; }
2034
2035   DECLARE_CONCRETE_INSTRUCTION(DoubleToI, "double-to-i")
2036   DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
2037
2038   bool truncating() { return hydrogen()->CanTruncateToInt32(); }
2039 };
2040
2041
2042 class LDoubleToSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2043  public:
2044   explicit LDoubleToSmi(LOperand* value) {
2045     inputs_[0] = value;
2046   }
2047
2048   LOperand* value() { return inputs_[0]; }
2049
2050   DECLARE_CONCRETE_INSTRUCTION(DoubleToSmi, "double-to-smi")
2051   DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
2052 };
2053
2054
2055 // Truncating conversion from a tagged value to an int32.
2056 class LTaggedToI V8_FINAL : public LTemplateInstruction<1, 1, 1> {
2057  public:
2058   LTaggedToI(LOperand* value, LOperand* temp) {
2059     inputs_[0] = value;
2060     temps_[0] = temp;
2061   }
2062
2063   LOperand* value() { return inputs_[0]; }
2064   LOperand* temp() { return temps_[0]; }
2065
2066   DECLARE_CONCRETE_INSTRUCTION(TaggedToI, "tagged-to-i")
2067   DECLARE_HYDROGEN_ACCESSOR(Change)
2068
2069   bool truncating() { return hydrogen()->CanTruncateToInt32(); }
2070 };
2071
2072
2073 class LSmiTag V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2074  public:
2075   explicit LSmiTag(LOperand* value) {
2076     inputs_[0] = value;
2077   }
2078
2079   LOperand* value() { return inputs_[0]; }
2080
2081   DECLARE_CONCRETE_INSTRUCTION(SmiTag, "smi-tag")
2082 };
2083
2084
2085 class LNumberUntagD V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2086  public:
2087   explicit LNumberUntagD(LOperand* value) {
2088     inputs_[0] = value;
2089   }
2090
2091   LOperand* value() { return inputs_[0]; }
2092
2093   DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag")
2094   DECLARE_HYDROGEN_ACCESSOR(Change);
2095 };
2096
2097
2098 class LSmiUntag V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2099  public:
2100   LSmiUntag(LOperand* value, bool needs_check)
2101       : needs_check_(needs_check) {
2102     inputs_[0] = value;
2103   }
2104
2105   LOperand* value() { return inputs_[0]; }
2106   bool needs_check() const { return needs_check_; }
2107
2108   DECLARE_CONCRETE_INSTRUCTION(SmiUntag, "smi-untag")
2109
2110  private:
2111   bool needs_check_;
2112 };
2113
2114
2115 class LStoreNamedField V8_FINAL : public LTemplateInstruction<0, 2, 1> {
2116  public:
2117   LStoreNamedField(LOperand* object, LOperand* value, LOperand* temp) {
2118     inputs_[0] = object;
2119     inputs_[1] = value;
2120     temps_[0] = temp;
2121   }
2122
2123   LOperand* object() { return inputs_[0]; }
2124   LOperand* value() { return inputs_[1]; }
2125   LOperand* temp() { return temps_[0]; }
2126
2127   DECLARE_CONCRETE_INSTRUCTION(StoreNamedField, "store-named-field")
2128   DECLARE_HYDROGEN_ACCESSOR(StoreNamedField)
2129
2130   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2131
2132   Handle<Map> transition() const { return hydrogen()->transition_map(); }
2133   Representation representation() const {
2134     return hydrogen()->field_representation();
2135   }
2136 };
2137
2138
2139 class LStoreNamedGeneric V8_FINAL : public LTemplateInstruction<0, 3, 0> {
2140  public:
2141   LStoreNamedGeneric(LOperand* context, LOperand* object, LOperand* value) {
2142     inputs_[0] = context;
2143     inputs_[1] = object;
2144     inputs_[2] = value;
2145   }
2146
2147   LOperand* context() { return inputs_[0]; }
2148   LOperand* object() { return inputs_[1]; }
2149   LOperand* value() { return inputs_[2]; }
2150
2151   DECLARE_CONCRETE_INSTRUCTION(StoreNamedGeneric, "store-named-generic")
2152   DECLARE_HYDROGEN_ACCESSOR(StoreNamedGeneric)
2153
2154   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2155
2156   Handle<Object> name() const { return hydrogen()->name(); }
2157   StrictModeFlag strict_mode_flag() { return hydrogen()->strict_mode_flag(); }
2158 };
2159
2160
2161 class LStoreKeyed V8_FINAL : public LTemplateInstruction<0, 3, 0> {
2162  public:
2163   LStoreKeyed(LOperand* object, LOperand* key, LOperand* value) {
2164     inputs_[0] = object;
2165     inputs_[1] = key;
2166     inputs_[2] = value;
2167   }
2168
2169   bool is_external() const { return hydrogen()->is_external(); }
2170   LOperand* elements() { return inputs_[0]; }
2171   LOperand* key() { return inputs_[1]; }
2172   LOperand* value() { return inputs_[2]; }
2173   ElementsKind elements_kind() const { return hydrogen()->elements_kind(); }
2174
2175   DECLARE_CONCRETE_INSTRUCTION(StoreKeyed, "store-keyed")
2176   DECLARE_HYDROGEN_ACCESSOR(StoreKeyed)
2177
2178   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2179   bool NeedsCanonicalization() { return hydrogen()->NeedsCanonicalization(); }
2180   uint32_t additional_index() const { return hydrogen()->index_offset(); }
2181 };
2182
2183
2184 class LStoreKeyedGeneric V8_FINAL : public LTemplateInstruction<0, 4, 0> {
2185  public:
2186   LStoreKeyedGeneric(LOperand* context,
2187                      LOperand* object,
2188                      LOperand* key,
2189                      LOperand* value) {
2190     inputs_[0] = context;
2191     inputs_[1] = object;
2192     inputs_[2] = key;
2193     inputs_[3] = value;
2194   }
2195
2196   LOperand* context() { return inputs_[0]; }
2197   LOperand* object() { return inputs_[1]; }
2198   LOperand* key() { return inputs_[2]; }
2199   LOperand* value() { return inputs_[3]; }
2200
2201   DECLARE_CONCRETE_INSTRUCTION(StoreKeyedGeneric, "store-keyed-generic")
2202   DECLARE_HYDROGEN_ACCESSOR(StoreKeyedGeneric)
2203
2204   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2205
2206   StrictModeFlag strict_mode_flag() { return hydrogen()->strict_mode_flag(); }
2207 };
2208
2209
2210 class LTransitionElementsKind V8_FINAL : public LTemplateInstruction<0, 2, 2> {
2211  public:
2212   LTransitionElementsKind(LOperand* object,
2213                           LOperand* context,
2214                           LOperand* new_map_temp,
2215                           LOperand* temp) {
2216     inputs_[0] = object;
2217     inputs_[1] = context;
2218     temps_[0] = new_map_temp;
2219     temps_[1] = temp;
2220   }
2221
2222   LOperand* object() { return inputs_[0]; }
2223   LOperand* context() { return inputs_[1]; }
2224   LOperand* new_map_temp() { return temps_[0]; }
2225   LOperand* temp() { return temps_[1]; }
2226
2227   DECLARE_CONCRETE_INSTRUCTION(TransitionElementsKind,
2228                                "transition-elements-kind")
2229   DECLARE_HYDROGEN_ACCESSOR(TransitionElementsKind)
2230
2231   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2232
2233   Handle<Map> original_map() { return hydrogen()->original_map().handle(); }
2234   Handle<Map> transitioned_map() {
2235     return hydrogen()->transitioned_map().handle();
2236   }
2237   ElementsKind from_kind() { return hydrogen()->from_kind(); }
2238   ElementsKind to_kind() { return hydrogen()->to_kind(); }
2239 };
2240
2241
2242 class LTrapAllocationMemento V8_FINAL : public LTemplateInstruction<0, 1, 1> {
2243  public:
2244   LTrapAllocationMemento(LOperand* object,
2245                          LOperand* temp) {
2246     inputs_[0] = object;
2247     temps_[0] = temp;
2248   }
2249
2250   LOperand* object() { return inputs_[0]; }
2251   LOperand* temp() { return temps_[0]; }
2252
2253   DECLARE_CONCRETE_INSTRUCTION(TrapAllocationMemento,
2254                                "trap-allocation-memento")
2255 };
2256
2257
2258 class LStringAdd V8_FINAL : public LTemplateInstruction<1, 3, 0> {
2259  public:
2260   LStringAdd(LOperand* context, LOperand* left, LOperand* right) {
2261     inputs_[0] = context;
2262     inputs_[1] = left;
2263     inputs_[2] = right;
2264   }
2265
2266   LOperand* context() { return inputs_[0]; }
2267   LOperand* left() { return inputs_[1]; }
2268   LOperand* right() { return inputs_[2]; }
2269
2270   DECLARE_CONCRETE_INSTRUCTION(StringAdd, "string-add")
2271   DECLARE_HYDROGEN_ACCESSOR(StringAdd)
2272 };
2273
2274
2275 class LStringCharCodeAt V8_FINAL : public LTemplateInstruction<1, 3, 0> {
2276  public:
2277   LStringCharCodeAt(LOperand* context, LOperand* string, LOperand* index) {
2278     inputs_[0] = context;
2279     inputs_[1] = string;
2280     inputs_[2] = index;
2281   }
2282
2283   LOperand* context() { return inputs_[0]; }
2284   LOperand* string() { return inputs_[1]; }
2285   LOperand* index() { return inputs_[2]; }
2286
2287   DECLARE_CONCRETE_INSTRUCTION(StringCharCodeAt, "string-char-code-at")
2288   DECLARE_HYDROGEN_ACCESSOR(StringCharCodeAt)
2289 };
2290
2291
2292 class LStringCharFromCode V8_FINAL : public LTemplateInstruction<1, 2, 0> {
2293  public:
2294   explicit LStringCharFromCode(LOperand* context, LOperand* char_code) {
2295     inputs_[0] = context;
2296     inputs_[1] = char_code;
2297   }
2298
2299   LOperand* context() { return inputs_[0]; }
2300   LOperand* char_code() { return inputs_[1]; }
2301
2302   DECLARE_CONCRETE_INSTRUCTION(StringCharFromCode, "string-char-from-code")
2303   DECLARE_HYDROGEN_ACCESSOR(StringCharFromCode)
2304 };
2305
2306
2307 class LCheckValue V8_FINAL : public LTemplateInstruction<0, 1, 0> {
2308  public:
2309   explicit LCheckValue(LOperand* value) {
2310     inputs_[0] = value;
2311   }
2312
2313   LOperand* value() { return inputs_[0]; }
2314
2315   DECLARE_CONCRETE_INSTRUCTION(CheckValue, "check-value")
2316   DECLARE_HYDROGEN_ACCESSOR(CheckValue)
2317 };
2318
2319
2320 class LCheckInstanceType V8_FINAL : public LTemplateInstruction<0, 1, 0> {
2321  public:
2322   explicit LCheckInstanceType(LOperand* value) {
2323     inputs_[0] = value;
2324   }
2325
2326   LOperand* value() { return inputs_[0]; }
2327
2328   DECLARE_CONCRETE_INSTRUCTION(CheckInstanceType, "check-instance-type")
2329   DECLARE_HYDROGEN_ACCESSOR(CheckInstanceType)
2330 };
2331
2332
2333 class LCheckMaps V8_FINAL : public LTemplateInstruction<0, 1, 0> {
2334  public:
2335   explicit LCheckMaps(LOperand* value) {
2336     inputs_[0] = value;
2337   }
2338
2339   LOperand* value() { return inputs_[0]; }
2340
2341   DECLARE_CONCRETE_INSTRUCTION(CheckMaps, "check-maps")
2342   DECLARE_HYDROGEN_ACCESSOR(CheckMaps)
2343 };
2344
2345
2346 class LCheckSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2347  public:
2348   explicit LCheckSmi(LOperand* value) {
2349     inputs_[0] = value;
2350   }
2351
2352   LOperand* value() { return inputs_[0]; }
2353
2354   DECLARE_CONCRETE_INSTRUCTION(CheckSmi, "check-smi")
2355 };
2356
2357
2358 class LClampDToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2359  public:
2360   explicit LClampDToUint8(LOperand* unclamped) {
2361     inputs_[0] = unclamped;
2362   }
2363
2364   LOperand* unclamped() { return inputs_[0]; }
2365
2366   DECLARE_CONCRETE_INSTRUCTION(ClampDToUint8, "clamp-d-to-uint8")
2367 };
2368
2369
2370 class LClampIToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2371  public:
2372   explicit LClampIToUint8(LOperand* unclamped) {
2373     inputs_[0] = unclamped;
2374   }
2375
2376   LOperand* unclamped() { return inputs_[0]; }
2377
2378   DECLARE_CONCRETE_INSTRUCTION(ClampIToUint8, "clamp-i-to-uint8")
2379 };
2380
2381
2382 class LClampTToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 1> {
2383  public:
2384   LClampTToUint8(LOperand* unclamped,
2385                  LOperand* temp_xmm) {
2386     inputs_[0] = unclamped;
2387     temps_[0] = temp_xmm;
2388   }
2389
2390   LOperand* unclamped() { return inputs_[0]; }
2391   LOperand* temp_xmm() { return temps_[0]; }
2392
2393   DECLARE_CONCRETE_INSTRUCTION(ClampTToUint8, "clamp-t-to-uint8")
2394 };
2395
2396
2397 class LCheckNonSmi V8_FINAL : public LTemplateInstruction<0, 1, 0> {
2398  public:
2399   explicit LCheckNonSmi(LOperand* value) {
2400     inputs_[0] = value;
2401   }
2402
2403   LOperand* value() { return inputs_[0]; }
2404
2405   DECLARE_CONCRETE_INSTRUCTION(CheckNonSmi, "check-non-smi")
2406   DECLARE_HYDROGEN_ACCESSOR(CheckHeapObject)
2407 };
2408
2409
2410 class LAllocate V8_FINAL : public LTemplateInstruction<1, 2, 1> {
2411  public:
2412   LAllocate(LOperand* context, LOperand* size, LOperand* temp) {
2413     inputs_[0] = context;
2414     inputs_[1] = size;
2415     temps_[0] = temp;
2416   }
2417
2418   LOperand* context() { return inputs_[0]; }
2419   LOperand* size() { return inputs_[1]; }
2420   LOperand* temp() { return temps_[0]; }
2421
2422   DECLARE_CONCRETE_INSTRUCTION(Allocate, "allocate")
2423   DECLARE_HYDROGEN_ACCESSOR(Allocate)
2424 };
2425
2426
2427 class LRegExpLiteral V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2428  public:
2429   explicit LRegExpLiteral(LOperand* context) {
2430     inputs_[0] = context;
2431   }
2432
2433   LOperand* context() { return inputs_[0]; }
2434
2435   DECLARE_CONCRETE_INSTRUCTION(RegExpLiteral, "regexp-literal")
2436   DECLARE_HYDROGEN_ACCESSOR(RegExpLiteral)
2437 };
2438
2439
2440 class LFunctionLiteral V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2441  public:
2442   explicit LFunctionLiteral(LOperand* context) {
2443     inputs_[0] = context;
2444   }
2445
2446   LOperand* context() { return inputs_[0]; }
2447
2448   DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
2449   DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)
2450 };
2451
2452
2453 class LToFastProperties V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2454  public:
2455   explicit LToFastProperties(LOperand* value) {
2456     inputs_[0] = value;
2457   }
2458
2459   LOperand* value() { return inputs_[0]; }
2460
2461   DECLARE_CONCRETE_INSTRUCTION(ToFastProperties, "to-fast-properties")
2462   DECLARE_HYDROGEN_ACCESSOR(ToFastProperties)
2463 };
2464
2465
2466 class LTypeof V8_FINAL : public LTemplateInstruction<1, 2, 0> {
2467  public:
2468   LTypeof(LOperand* context, LOperand* value) {
2469     inputs_[0] = context;
2470     inputs_[1] = value;
2471   }
2472
2473   LOperand* context() { return inputs_[0]; }
2474   LOperand* value() { return inputs_[1]; }
2475
2476   DECLARE_CONCRETE_INSTRUCTION(Typeof, "typeof")
2477 };
2478
2479
2480 class LTypeofIsAndBranch V8_FINAL : public LControlInstruction<1, 0> {
2481  public:
2482   explicit LTypeofIsAndBranch(LOperand* value) {
2483     inputs_[0] = value;
2484   }
2485
2486   LOperand* value() { return inputs_[0]; }
2487
2488   DECLARE_CONCRETE_INSTRUCTION(TypeofIsAndBranch, "typeof-is-and-branch")
2489   DECLARE_HYDROGEN_ACCESSOR(TypeofIsAndBranch)
2490
2491   Handle<String> type_literal() { return hydrogen()->type_literal(); }
2492
2493   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
2494 };
2495
2496
2497 class LIsConstructCallAndBranch V8_FINAL : public LControlInstruction<0, 1> {
2498  public:
2499   explicit LIsConstructCallAndBranch(LOperand* temp) {
2500     temps_[0] = temp;
2501   }
2502
2503   LOperand* temp() { return temps_[0]; }
2504
2505   DECLARE_CONCRETE_INSTRUCTION(IsConstructCallAndBranch,
2506                                "is-construct-call-and-branch")
2507   DECLARE_HYDROGEN_ACCESSOR(IsConstructCallAndBranch)
2508 };
2509
2510
2511 class LOsrEntry V8_FINAL : public LTemplateInstruction<0, 0, 0> {
2512  public:
2513   LOsrEntry() {}
2514
2515   virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
2516     return false;
2517   }
2518   DECLARE_CONCRETE_INSTRUCTION(OsrEntry, "osr-entry")
2519 };
2520
2521
2522 class LStackCheck V8_FINAL : public LTemplateInstruction<0, 1, 0> {
2523  public:
2524   explicit LStackCheck(LOperand* context) {
2525     inputs_[0] = context;
2526   }
2527
2528   LOperand* context() { return inputs_[0]; }
2529
2530   DECLARE_CONCRETE_INSTRUCTION(StackCheck, "stack-check")
2531   DECLARE_HYDROGEN_ACCESSOR(StackCheck)
2532
2533   Label* done_label() { return &done_label_; }
2534
2535  private:
2536   Label done_label_;
2537 };
2538
2539
2540 class LForInPrepareMap V8_FINAL : public LTemplateInstruction<1, 2, 0> {
2541  public:
2542   LForInPrepareMap(LOperand* context, LOperand* object) {
2543     inputs_[0] = context;
2544     inputs_[1] = object;
2545   }
2546
2547   LOperand* context() { return inputs_[0]; }
2548   LOperand* object() { return inputs_[1]; }
2549
2550   DECLARE_CONCRETE_INSTRUCTION(ForInPrepareMap, "for-in-prepare-map")
2551 };
2552
2553
2554 class LForInCacheArray V8_FINAL : public LTemplateInstruction<1, 1, 0> {
2555  public:
2556   explicit LForInCacheArray(LOperand* map) {
2557     inputs_[0] = map;
2558   }
2559
2560   LOperand* map() { return inputs_[0]; }
2561
2562   DECLARE_CONCRETE_INSTRUCTION(ForInCacheArray, "for-in-cache-array")
2563
2564   int idx() {
2565     return HForInCacheArray::cast(this->hydrogen_value())->idx();
2566   }
2567 };
2568
2569
2570 class LCheckMapValue V8_FINAL : public LTemplateInstruction<0, 2, 0> {
2571  public:
2572   LCheckMapValue(LOperand* value, LOperand* map) {
2573     inputs_[0] = value;
2574     inputs_[1] = map;
2575   }
2576
2577   LOperand* value() { return inputs_[0]; }
2578   LOperand* map() { return inputs_[1]; }
2579
2580   DECLARE_CONCRETE_INSTRUCTION(CheckMapValue, "check-map-value")
2581 };
2582
2583
2584 class LLoadFieldByIndex V8_FINAL : public LTemplateInstruction<1, 2, 0> {
2585  public:
2586   LLoadFieldByIndex(LOperand* object, LOperand* index) {
2587     inputs_[0] = object;
2588     inputs_[1] = index;
2589   }
2590
2591   LOperand* object() { return inputs_[0]; }
2592   LOperand* index() { return inputs_[1]; }
2593
2594   DECLARE_CONCRETE_INSTRUCTION(LoadFieldByIndex, "load-field-by-index")
2595 };
2596
2597
2598 class LChunkBuilder;
2599 class LPlatformChunk V8_FINAL : public LChunk {
2600  public:
2601   LPlatformChunk(CompilationInfo* info, HGraph* graph)
2602       : LChunk(info, graph) { }
2603
2604   int GetNextSpillIndex(RegisterKind kind);
2605   LOperand* GetNextSpillSlot(RegisterKind kind);
2606 };
2607
2608
2609 class LChunkBuilder V8_FINAL : public LChunkBuilderBase {
2610  public:
2611   LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator)
2612       : LChunkBuilderBase(graph->zone()),
2613         chunk_(NULL),
2614         info_(info),
2615         graph_(graph),
2616         status_(UNUSED),
2617         current_instruction_(NULL),
2618         current_block_(NULL),
2619         next_block_(NULL),
2620         allocator_(allocator),
2621         instruction_pending_deoptimization_environment_(NULL),
2622         pending_deoptimization_ast_id_(BailoutId::None()) { }
2623
2624   // Build the sequence for the graph.
2625   LPlatformChunk* Build();
2626
2627   LInstruction* CheckElideControlInstruction(HControlInstruction* instr);
2628
2629   // Declare methods that deal with the individual node types.
2630 #define DECLARE_DO(type) LInstruction* Do##type(H##type* node);
2631   HYDROGEN_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
2632 #undef DECLARE_DO
2633
2634   static HValue* SimplifiedDivisorForMathFloorOfDiv(HValue* val);
2635
2636   LInstruction* DoMathFloor(HUnaryMathOperation* instr);
2637   LInstruction* DoMathRound(HUnaryMathOperation* instr);
2638   LInstruction* DoMathAbs(HUnaryMathOperation* instr);
2639   LInstruction* DoMathLog(HUnaryMathOperation* instr);
2640   LInstruction* DoMathExp(HUnaryMathOperation* instr);
2641   LInstruction* DoMathSqrt(HUnaryMathOperation* instr);
2642   LInstruction* DoMathPowHalf(HUnaryMathOperation* instr);
2643
2644  private:
2645   enum Status {
2646     UNUSED,
2647     BUILDING,
2648     DONE,
2649     ABORTED
2650   };
2651
2652   LPlatformChunk* chunk() const { return chunk_; }
2653   CompilationInfo* info() const { return info_; }
2654   HGraph* graph() const { return graph_; }
2655
2656   bool is_unused() const { return status_ == UNUSED; }
2657   bool is_building() const { return status_ == BUILDING; }
2658   bool is_done() const { return status_ == DONE; }
2659   bool is_aborted() const { return status_ == ABORTED; }
2660
2661   void Abort(BailoutReason reason);
2662
2663   // Methods for getting operands for Use / Define / Temp.
2664   LUnallocated* ToUnallocated(Register reg);
2665   LUnallocated* ToUnallocated(XMMRegister reg);
2666
2667   // Methods for setting up define-use relationships.
2668   MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand);
2669   MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register);
2670   MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value,
2671                                            XMMRegister fixed_register);
2672
2673   // A value that is guaranteed to be allocated to a register.
2674   // Operand created by UseRegister is guaranteed to be live until the end of
2675   // instruction. This means that register allocator will not reuse it's
2676   // register for any other operand inside instruction.
2677   // Operand created by UseRegisterAtStart is guaranteed to be live only at
2678   // instruction start. Register allocator is free to assign the same register
2679   // to some other operand used inside instruction (i.e. temporary or
2680   // output).
2681   MUST_USE_RESULT LOperand* UseRegister(HValue* value);
2682   MUST_USE_RESULT LOperand* UseRegisterAtStart(HValue* value);
2683
2684   // An input operand in a register that may be trashed.
2685   MUST_USE_RESULT LOperand* UseTempRegister(HValue* value);
2686
2687   // An input operand in a register that may be trashed or a constant operand.
2688   MUST_USE_RESULT LOperand* UseTempRegisterOrConstant(HValue* value);
2689
2690   // An input operand in a register or stack slot.
2691   MUST_USE_RESULT LOperand* Use(HValue* value);
2692   MUST_USE_RESULT LOperand* UseAtStart(HValue* value);
2693
2694   // An input operand in a register, stack slot or a constant operand.
2695   MUST_USE_RESULT LOperand* UseOrConstant(HValue* value);
2696   MUST_USE_RESULT LOperand* UseOrConstantAtStart(HValue* value);
2697
2698   // An input operand in a register or a constant operand.
2699   MUST_USE_RESULT LOperand* UseRegisterOrConstant(HValue* value);
2700   MUST_USE_RESULT LOperand* UseRegisterOrConstantAtStart(HValue* value);
2701
2702   // An input operand in a constant operand.
2703   MUST_USE_RESULT LOperand* UseConstant(HValue* value);
2704
2705   // An input operand in register, stack slot or a constant operand.
2706   // Will not be moved to a register even if one is freely available.
2707   virtual MUST_USE_RESULT LOperand* UseAny(HValue* value) V8_OVERRIDE;
2708
2709   // Temporary operand that must be in a register.
2710   MUST_USE_RESULT LUnallocated* TempRegister();
2711   MUST_USE_RESULT LOperand* FixedTemp(Register reg);
2712   MUST_USE_RESULT LOperand* FixedTemp(XMMRegister reg);
2713
2714   // Methods for setting up define-use relationships.
2715   // Return the same instruction that they are passed.
2716   LInstruction* Define(LTemplateResultInstruction<1>* instr,
2717                        LUnallocated* result);
2718   LInstruction* DefineAsRegister(LTemplateResultInstruction<1>* instr);
2719   LInstruction* DefineAsSpilled(LTemplateResultInstruction<1>* instr,
2720                                 int index);
2721   LInstruction* DefineSameAsFirst(LTemplateResultInstruction<1>* instr);
2722   LInstruction* DefineFixed(LTemplateResultInstruction<1>* instr,
2723                             Register reg);
2724   LInstruction* DefineFixedDouble(LTemplateResultInstruction<1>* instr,
2725                                   XMMRegister reg);
2726   // Assigns an environment to an instruction.  An instruction which can
2727   // deoptimize must have an environment.
2728   LInstruction* AssignEnvironment(LInstruction* instr);
2729   // Assigns a pointer map to an instruction.  An instruction which can
2730   // trigger a GC or a lazy deoptimization must have a pointer map.
2731   LInstruction* AssignPointerMap(LInstruction* instr);
2732
2733   enum CanDeoptimize { CAN_DEOPTIMIZE_EAGERLY, CANNOT_DEOPTIMIZE_EAGERLY };
2734
2735   // Marks a call for the register allocator.  Assigns a pointer map to
2736   // support GC and lazy deoptimization.  Assigns an environment to support
2737   // eager deoptimization if CAN_DEOPTIMIZE_EAGERLY.
2738   LInstruction* MarkAsCall(
2739       LInstruction* instr,
2740       HInstruction* hinstr,
2741       CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY);
2742
2743   void VisitInstruction(HInstruction* current);
2744
2745   void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block);
2746   LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2747   LInstruction* DoArithmeticD(Token::Value op,
2748                               HArithmeticBinaryOperation* instr);
2749   LInstruction* DoArithmeticT(Token::Value op,
2750                               HBinaryOperation* instr);
2751
2752   LPlatformChunk* chunk_;
2753   CompilationInfo* info_;
2754   HGraph* const graph_;
2755   Status status_;
2756   HInstruction* current_instruction_;
2757   HBasicBlock* current_block_;
2758   HBasicBlock* next_block_;
2759   LAllocator* allocator_;
2760   LInstruction* instruction_pending_deoptimization_environment_;
2761   BailoutId pending_deoptimization_ast_id_;
2762
2763   DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2764 };
2765
2766 #undef DECLARE_HYDROGEN_ACCESSOR
2767 #undef DECLARE_CONCRETE_INSTRUCTION
2768
2769 } }  // namespace v8::int
2770
2771 #endif  // V8_X64_LITHIUM_X64_H_