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