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