MIPS: Convert String array index/length hash to BitField.
[platform/upstream/v8.git] / src / mips / macro-assembler-mips.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_MIPS_MACRO_ASSEMBLER_MIPS_H_
6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
7
8 #include "assembler.h"
9 #include "mips/assembler-mips.h"
10 #include "globals.h"
11
12 namespace v8 {
13 namespace internal {
14
15 // Forward declaration.
16 class JumpTarget;
17
18 // Reserved Register Usage Summary.
19 //
20 // Registers t8, t9, and at are reserved for use by the MacroAssembler.
21 //
22 // The programmer should know that the MacroAssembler may clobber these three,
23 // but won't touch other registers except in special cases.
24 //
25 // Per the MIPS ABI, register t9 must be used for indirect function call
26 // via 'jalr t9' or 'jr t9' instructions. This is relied upon by gcc when
27 // trying to update gp register for position-independent-code. Whenever
28 // MIPS generated code calls C code, it must be via t9 register.
29
30
31 // Flags used for LeaveExitFrame function.
32 enum LeaveExitFrameMode {
33   EMIT_RETURN = true,
34   NO_EMIT_RETURN = false
35 };
36
37 // Flags used for AllocateHeapNumber
38 enum TaggingMode {
39   // Tag the result.
40   TAG_RESULT,
41   // Don't tag
42   DONT_TAG_RESULT
43 };
44
45 // Flags used for the ObjectToDoubleFPURegister function.
46 enum ObjectToDoubleFlags {
47   // No special flags.
48   NO_OBJECT_TO_DOUBLE_FLAGS = 0,
49   // Object is known to be a non smi.
50   OBJECT_NOT_SMI = 1 << 0,
51   // Don't load NaNs or infinities, branch to the non number case instead.
52   AVOID_NANS_AND_INFINITIES = 1 << 1
53 };
54
55 // Allow programmer to use Branch Delay Slot of Branches, Jumps, Calls.
56 enum BranchDelaySlot {
57   USE_DELAY_SLOT,
58   PROTECT
59 };
60
61 // Flags used for the li macro-assembler function.
62 enum LiFlags {
63   // If the constant value can be represented in just 16 bits, then
64   // optimize the li to use a single instruction, rather than lui/ori pair.
65   OPTIMIZE_SIZE = 0,
66   // Always use 2 instructions (lui/ori pair), even if the constant could
67   // be loaded with just one, so that this value is patchable later.
68   CONSTANT_SIZE = 1
69 };
70
71
72 enum RememberedSetAction { EMIT_REMEMBERED_SET, OMIT_REMEMBERED_SET };
73 enum SmiCheck { INLINE_SMI_CHECK, OMIT_SMI_CHECK };
74 enum RAStatus { kRAHasNotBeenSaved, kRAHasBeenSaved };
75
76 Register GetRegisterThatIsNotOneOf(Register reg1,
77                                    Register reg2 = no_reg,
78                                    Register reg3 = no_reg,
79                                    Register reg4 = no_reg,
80                                    Register reg5 = no_reg,
81                                    Register reg6 = no_reg);
82
83 bool AreAliased(Register r1, Register r2, Register r3, Register r4);
84
85
86 // -----------------------------------------------------------------------------
87 // Static helper functions.
88
89 inline MemOperand ContextOperand(Register context, int index) {
90   return MemOperand(context, Context::SlotOffset(index));
91 }
92
93
94 inline MemOperand GlobalObjectOperand()  {
95   return ContextOperand(cp, Context::GLOBAL_OBJECT_INDEX);
96 }
97
98
99 // Generate a MemOperand for loading a field from an object.
100 inline MemOperand FieldMemOperand(Register object, int offset) {
101   return MemOperand(object, offset - kHeapObjectTag);
102 }
103
104
105 // Generate a MemOperand for storing arguments 5..N on the stack
106 // when calling CallCFunction().
107 inline MemOperand CFunctionArgumentOperand(int index) {
108   ASSERT(index > kCArgSlotCount);
109   // Argument 5 takes the slot just past the four Arg-slots.
110   int offset = (index - 5) * kPointerSize + kCArgsSlotsSize;
111   return MemOperand(sp, offset);
112 }
113
114
115 // MacroAssembler implements a collection of frequently used macros.
116 class MacroAssembler: public Assembler {
117  public:
118   // The isolate parameter can be NULL if the macro assembler should
119   // not use isolate-dependent functionality. In this case, it's the
120   // responsibility of the caller to never invoke such function on the
121   // macro assembler.
122   MacroAssembler(Isolate* isolate, void* buffer, int size);
123
124   // Arguments macros.
125 #define COND_TYPED_ARGS Condition cond, Register r1, const Operand& r2
126 #define COND_ARGS cond, r1, r2
127
128   // Cases when relocation is not needed.
129 #define DECLARE_NORELOC_PROTOTYPE(Name, target_type) \
130   void Name(target_type target, BranchDelaySlot bd = PROTECT); \
131   inline void Name(BranchDelaySlot bd, target_type target) { \
132     Name(target, bd); \
133   } \
134   void Name(target_type target, \
135             COND_TYPED_ARGS, \
136             BranchDelaySlot bd = PROTECT); \
137   inline void Name(BranchDelaySlot bd, \
138                    target_type target, \
139                    COND_TYPED_ARGS) { \
140     Name(target, COND_ARGS, bd); \
141   }
142
143 #define DECLARE_BRANCH_PROTOTYPES(Name) \
144   DECLARE_NORELOC_PROTOTYPE(Name, Label*) \
145   DECLARE_NORELOC_PROTOTYPE(Name, int16_t)
146
147   DECLARE_BRANCH_PROTOTYPES(Branch)
148   DECLARE_BRANCH_PROTOTYPES(BranchAndLink)
149   DECLARE_BRANCH_PROTOTYPES(BranchShort)
150
151 #undef DECLARE_BRANCH_PROTOTYPES
152 #undef COND_TYPED_ARGS
153 #undef COND_ARGS
154
155
156   // Jump, Call, and Ret pseudo instructions implementing inter-working.
157 #define COND_ARGS Condition cond = al, Register rs = zero_reg, \
158   const Operand& rt = Operand(zero_reg), BranchDelaySlot bd = PROTECT
159
160   void Jump(Register target, COND_ARGS);
161   void Jump(intptr_t target, RelocInfo::Mode rmode, COND_ARGS);
162   void Jump(Address target, RelocInfo::Mode rmode, COND_ARGS);
163   void Jump(Handle<Code> code, RelocInfo::Mode rmode, COND_ARGS);
164   static int CallSize(Register target, COND_ARGS);
165   void Call(Register target, COND_ARGS);
166   static int CallSize(Address target, RelocInfo::Mode rmode, COND_ARGS);
167   void Call(Address target, RelocInfo::Mode rmode, COND_ARGS);
168   int CallSize(Handle<Code> code,
169                RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
170                TypeFeedbackId ast_id = TypeFeedbackId::None(),
171                COND_ARGS);
172   void Call(Handle<Code> code,
173             RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
174             TypeFeedbackId ast_id = TypeFeedbackId::None(),
175             COND_ARGS);
176   void Ret(COND_ARGS);
177   inline void Ret(BranchDelaySlot bd, Condition cond = al,
178     Register rs = zero_reg, const Operand& rt = Operand(zero_reg)) {
179     Ret(cond, rs, rt, bd);
180   }
181
182   void Branch(Label* L,
183               Condition cond,
184               Register rs,
185               Heap::RootListIndex index,
186               BranchDelaySlot bdslot = PROTECT);
187
188 #undef COND_ARGS
189
190   // Emit code to discard a non-negative number of pointer-sized elements
191   // from the stack, clobbering only the sp register.
192   void Drop(int count,
193             Condition cond = cc_always,
194             Register reg = no_reg,
195             const Operand& op = Operand(no_reg));
196
197   // Trivial case of DropAndRet that utilizes the delay slot and only emits
198   // 2 instructions.
199   void DropAndRet(int drop);
200
201   void DropAndRet(int drop,
202                   Condition cond,
203                   Register reg,
204                   const Operand& op);
205
206   // Swap two registers.  If the scratch register is omitted then a slightly
207   // less efficient form using xor instead of mov is emitted.
208   void Swap(Register reg1, Register reg2, Register scratch = no_reg);
209
210   void Call(Label* target);
211
212   inline void Move(Register dst, Register src) {
213     if (!dst.is(src)) {
214       mov(dst, src);
215     }
216   }
217
218   inline void Move(FPURegister dst, FPURegister src) {
219     if (!dst.is(src)) {
220       mov_d(dst, src);
221     }
222   }
223
224   inline void Move(Register dst_low, Register dst_high, FPURegister src) {
225     mfc1(dst_low, src);
226     mfc1(dst_high, FPURegister::from_code(src.code() + 1));
227   }
228
229   inline void FmoveHigh(Register dst_high, FPURegister src) {
230     mfc1(dst_high, FPURegister::from_code(src.code() + 1));
231   }
232
233   inline void FmoveLow(Register dst_low, FPURegister src) {
234     mfc1(dst_low, src);
235   }
236
237   inline void Move(FPURegister dst, Register src_low, Register src_high) {
238     mtc1(src_low, dst);
239     mtc1(src_high, FPURegister::from_code(dst.code() + 1));
240   }
241
242   // Conditional move.
243   void Move(FPURegister dst, double imm);
244   void Movz(Register rd, Register rs, Register rt);
245   void Movn(Register rd, Register rs, Register rt);
246   void Movt(Register rd, Register rs, uint16_t cc = 0);
247   void Movf(Register rd, Register rs, uint16_t cc = 0);
248
249   void Clz(Register rd, Register rs);
250
251   // Jump unconditionally to given label.
252   // We NEED a nop in the branch delay slot, as it used by v8, for example in
253   // CodeGenerator::ProcessDeferred().
254   // Currently the branch delay slot is filled by the MacroAssembler.
255   // Use rather b(Label) for code generation.
256   void jmp(Label* L) {
257     Branch(L);
258   }
259
260   void Load(Register dst, const MemOperand& src, Representation r);
261   void Store(Register src, const MemOperand& dst, Representation r);
262
263   // Load an object from the root table.
264   void LoadRoot(Register destination,
265                 Heap::RootListIndex index);
266   void LoadRoot(Register destination,
267                 Heap::RootListIndex index,
268                 Condition cond, Register src1, const Operand& src2);
269
270   // Store an object to the root table.
271   void StoreRoot(Register source,
272                  Heap::RootListIndex index);
273   void StoreRoot(Register source,
274                  Heap::RootListIndex index,
275                  Condition cond, Register src1, const Operand& src2);
276
277   // ---------------------------------------------------------------------------
278   // GC Support
279
280   void IncrementalMarkingRecordWriteHelper(Register object,
281                                            Register value,
282                                            Register address);
283
284   enum RememberedSetFinalAction {
285     kReturnAtEnd,
286     kFallThroughAtEnd
287   };
288
289
290   // Record in the remembered set the fact that we have a pointer to new space
291   // at the address pointed to by the addr register.  Only works if addr is not
292   // in new space.
293   void RememberedSetHelper(Register object,  // Used for debug code.
294                            Register addr,
295                            Register scratch,
296                            SaveFPRegsMode save_fp,
297                            RememberedSetFinalAction and_then);
298
299   void CheckPageFlag(Register object,
300                      Register scratch,
301                      int mask,
302                      Condition cc,
303                      Label* condition_met);
304
305   void CheckMapDeprecated(Handle<Map> map,
306                           Register scratch,
307                           Label* if_deprecated);
308
309   // Check if object is in new space.  Jumps if the object is not in new space.
310   // The register scratch can be object itself, but it will be clobbered.
311   void JumpIfNotInNewSpace(Register object,
312                            Register scratch,
313                            Label* branch) {
314     InNewSpace(object, scratch, ne, branch);
315   }
316
317   // Check if object is in new space.  Jumps if the object is in new space.
318   // The register scratch can be object itself, but scratch will be clobbered.
319   void JumpIfInNewSpace(Register object,
320                         Register scratch,
321                         Label* branch) {
322     InNewSpace(object, scratch, eq, branch);
323   }
324
325   // Check if an object has a given incremental marking color.
326   void HasColor(Register object,
327                 Register scratch0,
328                 Register scratch1,
329                 Label* has_color,
330                 int first_bit,
331                 int second_bit);
332
333   void JumpIfBlack(Register object,
334                    Register scratch0,
335                    Register scratch1,
336                    Label* on_black);
337
338   // Checks the color of an object.  If the object is already grey or black
339   // then we just fall through, since it is already live.  If it is white and
340   // we can determine that it doesn't need to be scanned, then we just mark it
341   // black and fall through.  For the rest we jump to the label so the
342   // incremental marker can fix its assumptions.
343   void EnsureNotWhite(Register object,
344                       Register scratch1,
345                       Register scratch2,
346                       Register scratch3,
347                       Label* object_is_white_and_not_data);
348
349   // Detects conservatively whether an object is data-only, i.e. it does need to
350   // be scanned by the garbage collector.
351   void JumpIfDataObject(Register value,
352                         Register scratch,
353                         Label* not_data_object);
354
355   // Notify the garbage collector that we wrote a pointer into an object.
356   // |object| is the object being stored into, |value| is the object being
357   // stored.  value and scratch registers are clobbered by the operation.
358   // The offset is the offset from the start of the object, not the offset from
359   // the tagged HeapObject pointer.  For use with FieldOperand(reg, off).
360   void RecordWriteField(
361       Register object,
362       int offset,
363       Register value,
364       Register scratch,
365       RAStatus ra_status,
366       SaveFPRegsMode save_fp,
367       RememberedSetAction remembered_set_action = EMIT_REMEMBERED_SET,
368       SmiCheck smi_check = INLINE_SMI_CHECK);
369
370   // As above, but the offset has the tag presubtracted.  For use with
371   // MemOperand(reg, off).
372   inline void RecordWriteContextSlot(
373       Register context,
374       int offset,
375       Register value,
376       Register scratch,
377       RAStatus ra_status,
378       SaveFPRegsMode save_fp,
379       RememberedSetAction remembered_set_action = EMIT_REMEMBERED_SET,
380       SmiCheck smi_check = INLINE_SMI_CHECK) {
381     RecordWriteField(context,
382                      offset + kHeapObjectTag,
383                      value,
384                      scratch,
385                      ra_status,
386                      save_fp,
387                      remembered_set_action,
388                      smi_check);
389   }
390
391   // For a given |object| notify the garbage collector that the slot |address|
392   // has been written.  |value| is the object being stored. The value and
393   // address registers are clobbered by the operation.
394   void RecordWrite(
395       Register object,
396       Register address,
397       Register value,
398       RAStatus ra_status,
399       SaveFPRegsMode save_fp,
400       RememberedSetAction remembered_set_action = EMIT_REMEMBERED_SET,
401       SmiCheck smi_check = INLINE_SMI_CHECK);
402
403
404   // ---------------------------------------------------------------------------
405   // Inline caching support.
406
407   // Generate code for checking access rights - used for security checks
408   // on access to global objects across environments. The holder register
409   // is left untouched, whereas both scratch registers are clobbered.
410   void CheckAccessGlobalProxy(Register holder_reg,
411                               Register scratch,
412                               Label* miss);
413
414   void GetNumberHash(Register reg0, Register scratch);
415
416   void LoadFromNumberDictionary(Label* miss,
417                                 Register elements,
418                                 Register key,
419                                 Register result,
420                                 Register reg0,
421                                 Register reg1,
422                                 Register reg2);
423
424
425   inline void MarkCode(NopMarkerTypes type) {
426     nop(type);
427   }
428
429   // Check if the given instruction is a 'type' marker.
430   // i.e. check if it is a sll zero_reg, zero_reg, <type> (referenced as
431   // nop(type)). These instructions are generated to mark special location in
432   // the code, like some special IC code.
433   static inline bool IsMarkedCode(Instr instr, int type) {
434     ASSERT((FIRST_IC_MARKER <= type) && (type < LAST_CODE_MARKER));
435     return IsNop(instr, type);
436   }
437
438
439   static inline int GetCodeMarker(Instr instr) {
440     uint32_t opcode = ((instr & kOpcodeMask));
441     uint32_t rt = ((instr & kRtFieldMask) >> kRtShift);
442     uint32_t rs = ((instr & kRsFieldMask) >> kRsShift);
443     uint32_t sa = ((instr & kSaFieldMask) >> kSaShift);
444
445     // Return <n> if we have a sll zero_reg, zero_reg, n
446     // else return -1.
447     bool sllzz = (opcode == SLL &&
448                   rt == static_cast<uint32_t>(ToNumber(zero_reg)) &&
449                   rs == static_cast<uint32_t>(ToNumber(zero_reg)));
450     int type =
451         (sllzz && FIRST_IC_MARKER <= sa && sa < LAST_CODE_MARKER) ? sa : -1;
452     ASSERT((type == -1) ||
453            ((FIRST_IC_MARKER <= type) && (type < LAST_CODE_MARKER)));
454     return type;
455   }
456
457
458
459   // ---------------------------------------------------------------------------
460   // Allocation support.
461
462   // Allocate an object in new space or old pointer space. The object_size is
463   // specified either in bytes or in words if the allocation flag SIZE_IN_WORDS
464   // is passed. If the space is exhausted control continues at the gc_required
465   // label. The allocated object is returned in result. If the flag
466   // tag_allocated_object is true the result is tagged as as a heap object.
467   // All registers are clobbered also when control continues at the gc_required
468   // label.
469   void Allocate(int object_size,
470                 Register result,
471                 Register scratch1,
472                 Register scratch2,
473                 Label* gc_required,
474                 AllocationFlags flags);
475
476   void Allocate(Register object_size,
477                 Register result,
478                 Register scratch1,
479                 Register scratch2,
480                 Label* gc_required,
481                 AllocationFlags flags);
482
483   // Undo allocation in new space. The object passed and objects allocated after
484   // it will no longer be allocated. The caller must make sure that no pointers
485   // are left to the object(s) no longer allocated as they would be invalid when
486   // allocation is undone.
487   void UndoAllocationInNewSpace(Register object, Register scratch);
488
489
490   void AllocateTwoByteString(Register result,
491                              Register length,
492                              Register scratch1,
493                              Register scratch2,
494                              Register scratch3,
495                              Label* gc_required);
496   void AllocateAsciiString(Register result,
497                            Register length,
498                            Register scratch1,
499                            Register scratch2,
500                            Register scratch3,
501                            Label* gc_required);
502   void AllocateTwoByteConsString(Register result,
503                                  Register length,
504                                  Register scratch1,
505                                  Register scratch2,
506                                  Label* gc_required);
507   void AllocateAsciiConsString(Register result,
508                                Register length,
509                                Register scratch1,
510                                Register scratch2,
511                                Label* gc_required);
512   void AllocateTwoByteSlicedString(Register result,
513                                    Register length,
514                                    Register scratch1,
515                                    Register scratch2,
516                                    Label* gc_required);
517   void AllocateAsciiSlicedString(Register result,
518                                  Register length,
519                                  Register scratch1,
520                                  Register scratch2,
521                                  Label* gc_required);
522
523   // Allocates a heap number or jumps to the gc_required label if the young
524   // space is full and a scavenge is needed. All registers are clobbered also
525   // when control continues at the gc_required label.
526   void AllocateHeapNumber(Register result,
527                           Register scratch1,
528                           Register scratch2,
529                           Register heap_number_map,
530                           Label* gc_required,
531                           TaggingMode tagging_mode = TAG_RESULT);
532   void AllocateHeapNumberWithValue(Register result,
533                                    FPURegister value,
534                                    Register scratch1,
535                                    Register scratch2,
536                                    Label* gc_required);
537
538   // ---------------------------------------------------------------------------
539   // Instruction macros.
540
541 #define DEFINE_INSTRUCTION(instr)                                              \
542   void instr(Register rd, Register rs, const Operand& rt);                     \
543   void instr(Register rd, Register rs, Register rt) {                          \
544     instr(rd, rs, Operand(rt));                                                \
545   }                                                                            \
546   void instr(Register rs, Register rt, int32_t j) {                            \
547     instr(rs, rt, Operand(j));                                                 \
548   }
549
550 #define DEFINE_INSTRUCTION2(instr)                                             \
551   void instr(Register rs, const Operand& rt);                                  \
552   void instr(Register rs, Register rt) {                                       \
553     instr(rs, Operand(rt));                                                    \
554   }                                                                            \
555   void instr(Register rs, int32_t j) {                                         \
556     instr(rs, Operand(j));                                                     \
557   }
558
559   DEFINE_INSTRUCTION(Addu);
560   DEFINE_INSTRUCTION(Subu);
561   DEFINE_INSTRUCTION(Mul);
562   DEFINE_INSTRUCTION2(Mult);
563   DEFINE_INSTRUCTION2(Multu);
564   DEFINE_INSTRUCTION2(Div);
565   DEFINE_INSTRUCTION2(Divu);
566
567   DEFINE_INSTRUCTION(And);
568   DEFINE_INSTRUCTION(Or);
569   DEFINE_INSTRUCTION(Xor);
570   DEFINE_INSTRUCTION(Nor);
571   DEFINE_INSTRUCTION2(Neg);
572
573   DEFINE_INSTRUCTION(Slt);
574   DEFINE_INSTRUCTION(Sltu);
575
576   // MIPS32 R2 instruction macro.
577   DEFINE_INSTRUCTION(Ror);
578
579 #undef DEFINE_INSTRUCTION
580 #undef DEFINE_INSTRUCTION2
581
582   void Pref(int32_t hint, const MemOperand& rs);
583
584
585   // ---------------------------------------------------------------------------
586   // Pseudo-instructions.
587
588   void mov(Register rd, Register rt) { or_(rd, rt, zero_reg); }
589
590   void Ulw(Register rd, const MemOperand& rs);
591   void Usw(Register rd, const MemOperand& rs);
592
593   // Load int32 in the rd register.
594   void li(Register rd, Operand j, LiFlags mode = OPTIMIZE_SIZE);
595   inline void li(Register rd, int32_t j, LiFlags mode = OPTIMIZE_SIZE) {
596     li(rd, Operand(j), mode);
597   }
598   void li(Register dst, Handle<Object> value, LiFlags mode = OPTIMIZE_SIZE);
599
600   // Push multiple registers on the stack.
601   // Registers are saved in numerical order, with higher numbered registers
602   // saved in higher memory addresses.
603   void MultiPush(RegList regs);
604   void MultiPushReversed(RegList regs);
605
606   void MultiPushFPU(RegList regs);
607   void MultiPushReversedFPU(RegList regs);
608
609   void push(Register src) {
610     Addu(sp, sp, Operand(-kPointerSize));
611     sw(src, MemOperand(sp, 0));
612   }
613   void Push(Register src) { push(src); }
614
615   // Push a handle.
616   void Push(Handle<Object> handle);
617   void Push(Smi* smi) { Push(Handle<Smi>(smi, isolate())); }
618
619   // Push two registers. Pushes leftmost register first (to highest address).
620   void Push(Register src1, Register src2) {
621     Subu(sp, sp, Operand(2 * kPointerSize));
622     sw(src1, MemOperand(sp, 1 * kPointerSize));
623     sw(src2, MemOperand(sp, 0 * kPointerSize));
624   }
625
626   // Push three registers. Pushes leftmost register first (to highest address).
627   void Push(Register src1, Register src2, Register src3) {
628     Subu(sp, sp, Operand(3 * kPointerSize));
629     sw(src1, MemOperand(sp, 2 * kPointerSize));
630     sw(src2, MemOperand(sp, 1 * kPointerSize));
631     sw(src3, MemOperand(sp, 0 * kPointerSize));
632   }
633
634   // Push four registers. Pushes leftmost register first (to highest address).
635   void Push(Register src1, Register src2, Register src3, Register src4) {
636     Subu(sp, sp, Operand(4 * kPointerSize));
637     sw(src1, MemOperand(sp, 3 * kPointerSize));
638     sw(src2, MemOperand(sp, 2 * kPointerSize));
639     sw(src3, MemOperand(sp, 1 * kPointerSize));
640     sw(src4, MemOperand(sp, 0 * kPointerSize));
641   }
642
643   void Push(Register src, Condition cond, Register tst1, Register tst2) {
644     // Since we don't have conditional execution we use a Branch.
645     Branch(3, cond, tst1, Operand(tst2));
646     Subu(sp, sp, Operand(kPointerSize));
647     sw(src, MemOperand(sp, 0));
648   }
649
650   // Pops multiple values from the stack and load them in the
651   // registers specified in regs. Pop order is the opposite as in MultiPush.
652   void MultiPop(RegList regs);
653   void MultiPopReversed(RegList regs);
654
655   void MultiPopFPU(RegList regs);
656   void MultiPopReversedFPU(RegList regs);
657
658   void pop(Register dst) {
659     lw(dst, MemOperand(sp, 0));
660     Addu(sp, sp, Operand(kPointerSize));
661   }
662   void Pop(Register dst) { pop(dst); }
663
664   // Pop two registers. Pops rightmost register first (from lower address).
665   void Pop(Register src1, Register src2) {
666     ASSERT(!src1.is(src2));
667     lw(src2, MemOperand(sp, 0 * kPointerSize));
668     lw(src1, MemOperand(sp, 1 * kPointerSize));
669     Addu(sp, sp, 2 * kPointerSize);
670   }
671
672   // Pop three registers. Pops rightmost register first (from lower address).
673   void Pop(Register src1, Register src2, Register src3) {
674     lw(src3, MemOperand(sp, 0 * kPointerSize));
675     lw(src2, MemOperand(sp, 1 * kPointerSize));
676     lw(src1, MemOperand(sp, 2 * kPointerSize));
677     Addu(sp, sp, 3 * kPointerSize);
678   }
679
680   void Pop(uint32_t count = 1) {
681     Addu(sp, sp, Operand(count * kPointerSize));
682   }
683
684   // Push and pop the registers that can hold pointers, as defined by the
685   // RegList constant kSafepointSavedRegisters.
686   void PushSafepointRegisters();
687   void PopSafepointRegisters();
688   void PushSafepointRegistersAndDoubles();
689   void PopSafepointRegistersAndDoubles();
690   // Store value in register src in the safepoint stack slot for
691   // register dst.
692   void StoreToSafepointRegisterSlot(Register src, Register dst);
693   void StoreToSafepointRegistersAndDoublesSlot(Register src, Register dst);
694   // Load the value of the src register from its safepoint stack slot
695   // into register dst.
696   void LoadFromSafepointRegisterSlot(Register dst, Register src);
697
698   // Flush the I-cache from asm code. You should use CPU::FlushICache from C.
699   // Does not handle errors.
700   void FlushICache(Register address, unsigned instructions);
701
702   // MIPS32 R2 instruction macro.
703   void Ins(Register rt, Register rs, uint16_t pos, uint16_t size);
704   void Ext(Register rt, Register rs, uint16_t pos, uint16_t size);
705
706   // ---------------------------------------------------------------------------
707   // FPU macros. These do not handle special cases like NaN or +- inf.
708
709   // Convert unsigned word to double.
710   void Cvt_d_uw(FPURegister fd, FPURegister fs, FPURegister scratch);
711   void Cvt_d_uw(FPURegister fd, Register rs, FPURegister scratch);
712
713   // Convert double to unsigned word.
714   void Trunc_uw_d(FPURegister fd, FPURegister fs, FPURegister scratch);
715   void Trunc_uw_d(FPURegister fd, Register rs, FPURegister scratch);
716
717   void Trunc_w_d(FPURegister fd, FPURegister fs);
718   void Round_w_d(FPURegister fd, FPURegister fs);
719   void Floor_w_d(FPURegister fd, FPURegister fs);
720   void Ceil_w_d(FPURegister fd, FPURegister fs);
721   // Wrapper function for the different cmp/branch types.
722   void BranchF(Label* target,
723                Label* nan,
724                Condition cc,
725                FPURegister cmp1,
726                FPURegister cmp2,
727                BranchDelaySlot bd = PROTECT);
728
729   // Alternate (inline) version for better readability with USE_DELAY_SLOT.
730   inline void BranchF(BranchDelaySlot bd,
731                       Label* target,
732                       Label* nan,
733                       Condition cc,
734                       FPURegister cmp1,
735                       FPURegister cmp2) {
736     BranchF(target, nan, cc, cmp1, cmp2, bd);
737   }
738
739   // Truncates a double using a specific rounding mode, and writes the value
740   // to the result register.
741   // The except_flag will contain any exceptions caused by the instruction.
742   // If check_inexact is kDontCheckForInexactConversion, then the inexact
743   // exception is masked.
744   void EmitFPUTruncate(FPURoundingMode rounding_mode,
745                        Register result,
746                        DoubleRegister double_input,
747                        Register scratch,
748                        DoubleRegister double_scratch,
749                        Register except_flag,
750                        CheckForInexactConversion check_inexact
751                            = kDontCheckForInexactConversion);
752
753   // Performs a truncating conversion of a floating point number as used by
754   // the JS bitwise operations. See ECMA-262 9.5: ToInt32. Goes to 'done' if it
755   // succeeds, otherwise falls through if result is saturated. On return
756   // 'result' either holds answer, or is clobbered on fall through.
757   //
758   // Only public for the test code in test-code-stubs-arm.cc.
759   void TryInlineTruncateDoubleToI(Register result,
760                                   DoubleRegister input,
761                                   Label* done);
762
763   // Performs a truncating conversion of a floating point number as used by
764   // the JS bitwise operations. See ECMA-262 9.5: ToInt32.
765   // Exits with 'result' holding the answer.
766   void TruncateDoubleToI(Register result, DoubleRegister double_input);
767
768   // Performs a truncating conversion of a heap number as used by
769   // the JS bitwise operations. See ECMA-262 9.5: ToInt32. 'result' and 'input'
770   // must be different registers. Exits with 'result' holding the answer.
771   void TruncateHeapNumberToI(Register result, Register object);
772
773   // Converts the smi or heap number in object to an int32 using the rules
774   // for ToInt32 as described in ECMAScript 9.5.: the value is truncated
775   // and brought into the range -2^31 .. +2^31 - 1. 'result' and 'input' must be
776   // different registers.
777   void TruncateNumberToI(Register object,
778                          Register result,
779                          Register heap_number_map,
780                          Register scratch,
781                          Label* not_int32);
782
783   // Loads the number from object into dst register.
784   // If |object| is neither smi nor heap number, |not_number| is jumped to
785   // with |object| still intact.
786   void LoadNumber(Register object,
787                   FPURegister dst,
788                   Register heap_number_map,
789                   Register scratch,
790                   Label* not_number);
791
792   // Loads the number from object into double_dst in the double format.
793   // Control will jump to not_int32 if the value cannot be exactly represented
794   // by a 32-bit integer.
795   // Floating point value in the 32-bit integer range that are not exact integer
796   // won't be loaded.
797   void LoadNumberAsInt32Double(Register object,
798                                DoubleRegister double_dst,
799                                Register heap_number_map,
800                                Register scratch1,
801                                Register scratch2,
802                                FPURegister double_scratch,
803                                Label* not_int32);
804
805   // Loads the number from object into dst as a 32-bit integer.
806   // Control will jump to not_int32 if the object cannot be exactly represented
807   // by a 32-bit integer.
808   // Floating point value in the 32-bit integer range that are not exact integer
809   // won't be converted.
810   void LoadNumberAsInt32(Register object,
811                          Register dst,
812                          Register heap_number_map,
813                          Register scratch1,
814                          Register scratch2,
815                          FPURegister double_scratch0,
816                          FPURegister double_scratch1,
817                          Label* not_int32);
818
819   // Enter exit frame.
820   // argc - argument count to be dropped by LeaveExitFrame.
821   // save_doubles - saves FPU registers on stack, currently disabled.
822   // stack_space - extra stack space.
823   void EnterExitFrame(bool save_doubles,
824                       int stack_space = 0);
825
826   // Leave the current exit frame.
827   void LeaveExitFrame(bool save_doubles,
828                       Register arg_count,
829                       bool restore_context,
830                       bool do_return = NO_EMIT_RETURN);
831
832   // Get the actual activation frame alignment for target environment.
833   static int ActivationFrameAlignment();
834
835   // Make sure the stack is aligned. Only emits code in debug mode.
836   void AssertStackIsAligned();
837
838   void LoadContext(Register dst, int context_chain_length);
839
840   // Conditionally load the cached Array transitioned map of type
841   // transitioned_kind from the native context if the map in register
842   // map_in_out is the cached Array map in the native context of
843   // expected_kind.
844   void LoadTransitionedArrayMapConditional(
845       ElementsKind expected_kind,
846       ElementsKind transitioned_kind,
847       Register map_in_out,
848       Register scratch,
849       Label* no_map_match);
850
851   void LoadGlobalFunction(int index, Register function);
852
853   // Load the initial map from the global function. The registers
854   // function and map can be the same, function is then overwritten.
855   void LoadGlobalFunctionInitialMap(Register function,
856                                     Register map,
857                                     Register scratch);
858
859   void InitializeRootRegister() {
860     ExternalReference roots_array_start =
861         ExternalReference::roots_array_start(isolate());
862     li(kRootRegister, Operand(roots_array_start));
863   }
864
865   // -------------------------------------------------------------------------
866   // JavaScript invokes.
867
868   // Invoke the JavaScript function code by either calling or jumping.
869   void InvokeCode(Register code,
870                   const ParameterCount& expected,
871                   const ParameterCount& actual,
872                   InvokeFlag flag,
873                   const CallWrapper& call_wrapper);
874
875   // Invoke the JavaScript function in the given register. Changes the
876   // current context to the context in the function before invoking.
877   void InvokeFunction(Register function,
878                       const ParameterCount& actual,
879                       InvokeFlag flag,
880                       const CallWrapper& call_wrapper);
881
882   void InvokeFunction(Register function,
883                       const ParameterCount& expected,
884                       const ParameterCount& actual,
885                       InvokeFlag flag,
886                       const CallWrapper& call_wrapper);
887
888   void InvokeFunction(Handle<JSFunction> function,
889                       const ParameterCount& expected,
890                       const ParameterCount& actual,
891                       InvokeFlag flag,
892                       const CallWrapper& call_wrapper);
893
894
895   void IsObjectJSObjectType(Register heap_object,
896                             Register map,
897                             Register scratch,
898                             Label* fail);
899
900   void IsInstanceJSObjectType(Register map,
901                               Register scratch,
902                               Label* fail);
903
904   void IsObjectJSStringType(Register object,
905                             Register scratch,
906                             Label* fail);
907
908   void IsObjectNameType(Register object,
909                         Register scratch,
910                         Label* fail);
911
912   // -------------------------------------------------------------------------
913   // Debugger Support.
914
915   void DebugBreak();
916
917   // -------------------------------------------------------------------------
918   // Exception handling.
919
920   // Push a new try handler and link into try handler chain.
921   void PushTryHandler(StackHandler::Kind kind, int handler_index);
922
923   // Unlink the stack handler on top of the stack from the try handler chain.
924   // Must preserve the result register.
925   void PopTryHandler();
926
927   // Passes thrown value to the handler of top of the try handler chain.
928   void Throw(Register value);
929
930   // Propagates an uncatchable exception to the top of the current JS stack's
931   // handler chain.
932   void ThrowUncatchable(Register value);
933
934   // Throw a message string as an exception.
935   void Throw(BailoutReason reason);
936
937   // Throw a message string as an exception if a condition is not true.
938   void ThrowIf(Condition cc, BailoutReason reason, Register rs, Operand rt);
939
940   // Copies a fixed number of fields of heap objects from src to dst.
941   void CopyFields(Register dst, Register src, RegList temps, int field_count);
942
943   // Copies a number of bytes from src to dst. All registers are clobbered. On
944   // exit src and dst will point to the place just after where the last byte was
945   // read or written and length will be zero.
946   void CopyBytes(Register src,
947                  Register dst,
948                  Register length,
949                  Register scratch);
950
951   // Initialize fields with filler values.  Fields starting at |start_offset|
952   // not including end_offset are overwritten with the value in |filler|.  At
953   // the end the loop, |start_offset| takes the value of |end_offset|.
954   void InitializeFieldsWithFiller(Register start_offset,
955                                   Register end_offset,
956                                   Register filler);
957
958   // -------------------------------------------------------------------------
959   // Support functions.
960
961   // Try to get function prototype of a function and puts the value in
962   // the result register. Checks that the function really is a
963   // function and jumps to the miss label if the fast checks fail. The
964   // function register will be untouched; the other registers may be
965   // clobbered.
966   void TryGetFunctionPrototype(Register function,
967                                Register result,
968                                Register scratch,
969                                Label* miss,
970                                bool miss_on_bound_function = false);
971
972   void GetObjectType(Register function,
973                      Register map,
974                      Register type_reg);
975
976   // Check if a map for a JSObject indicates that the object has fast elements.
977   // Jump to the specified label if it does not.
978   void CheckFastElements(Register map,
979                          Register scratch,
980                          Label* fail);
981
982   // Check if a map for a JSObject indicates that the object can have both smi
983   // and HeapObject elements.  Jump to the specified label if it does not.
984   void CheckFastObjectElements(Register map,
985                                Register scratch,
986                                Label* fail);
987
988   // Check if a map for a JSObject indicates that the object has fast smi only
989   // elements.  Jump to the specified label if it does not.
990   void CheckFastSmiElements(Register map,
991                             Register scratch,
992                             Label* fail);
993
994   // Check to see if maybe_number can be stored as a double in
995   // FastDoubleElements. If it can, store it at the index specified by key in
996   // the FastDoubleElements array elements. Otherwise jump to fail.
997   void StoreNumberToDoubleElements(Register value_reg,
998                                    Register key_reg,
999                                    Register elements_reg,
1000                                    Register scratch1,
1001                                    Register scratch2,
1002                                    Register scratch3,
1003                                    Label* fail,
1004                                    int elements_offset = 0);
1005
1006   // Compare an object's map with the specified map and its transitioned
1007   // elements maps if mode is ALLOW_ELEMENT_TRANSITION_MAPS. Jumps to
1008   // "branch_to" if the result of the comparison is "cond". If multiple map
1009   // compares are required, the compare sequences branches to early_success.
1010   void CompareMapAndBranch(Register obj,
1011                            Register scratch,
1012                            Handle<Map> map,
1013                            Label* early_success,
1014                            Condition cond,
1015                            Label* branch_to);
1016
1017   // As above, but the map of the object is already loaded into the register
1018   // which is preserved by the code generated.
1019   void CompareMapAndBranch(Register obj_map,
1020                            Handle<Map> map,
1021                            Label* early_success,
1022                            Condition cond,
1023                            Label* branch_to);
1024
1025   // Check if the map of an object is equal to a specified map and branch to
1026   // label if not. Skip the smi check if not required (object is known to be a
1027   // heap object). If mode is ALLOW_ELEMENT_TRANSITION_MAPS, then also match
1028   // against maps that are ElementsKind transition maps of the specificed map.
1029   void CheckMap(Register obj,
1030                 Register scratch,
1031                 Handle<Map> map,
1032                 Label* fail,
1033                 SmiCheckType smi_check_type);
1034
1035
1036   void CheckMap(Register obj,
1037                 Register scratch,
1038                 Heap::RootListIndex index,
1039                 Label* fail,
1040                 SmiCheckType smi_check_type);
1041
1042   // Check if the map of an object is equal to a specified map and branch to a
1043   // specified target if equal. Skip the smi check if not required (object is
1044   // known to be a heap object)
1045   void DispatchMap(Register obj,
1046                    Register scratch,
1047                    Handle<Map> map,
1048                    Handle<Code> success,
1049                    SmiCheckType smi_check_type);
1050
1051
1052   // Load and check the instance type of an object for being a string.
1053   // Loads the type into the second argument register.
1054   // Returns a condition that will be enabled if the object was a string.
1055   Condition IsObjectStringType(Register obj,
1056                                Register type,
1057                                Register result) {
1058     lw(type, FieldMemOperand(obj, HeapObject::kMapOffset));
1059     lbu(type, FieldMemOperand(type, Map::kInstanceTypeOffset));
1060     And(type, type, Operand(kIsNotStringMask));
1061     ASSERT_EQ(0, kStringTag);
1062     return eq;
1063   }
1064
1065
1066   // Picks out an array index from the hash field.
1067   // Register use:
1068   //   hash - holds the index's hash. Clobbered.
1069   //   index - holds the overwritten index on exit.
1070   void IndexFromHash(Register hash, Register index);
1071
1072   // Get the number of least significant bits from a register.
1073   void GetLeastBitsFromSmi(Register dst, Register src, int num_least_bits);
1074   void GetLeastBitsFromInt32(Register dst, Register src, int mun_least_bits);
1075
1076   // Load the value of a number object into a FPU double register. If the
1077   // object is not a number a jump to the label not_number is performed
1078   // and the FPU double register is unchanged.
1079   void ObjectToDoubleFPURegister(
1080       Register object,
1081       FPURegister value,
1082       Register scratch1,
1083       Register scratch2,
1084       Register heap_number_map,
1085       Label* not_number,
1086       ObjectToDoubleFlags flags = NO_OBJECT_TO_DOUBLE_FLAGS);
1087
1088   // Load the value of a smi object into a FPU double register. The register
1089   // scratch1 can be the same register as smi in which case smi will hold the
1090   // untagged value afterwards.
1091   void SmiToDoubleFPURegister(Register smi,
1092                               FPURegister value,
1093                               Register scratch1);
1094
1095   // -------------------------------------------------------------------------
1096   // Overflow handling functions.
1097   // Usage: first call the appropriate arithmetic function, then call one of the
1098   // jump functions with the overflow_dst register as the second parameter.
1099
1100   void AdduAndCheckForOverflow(Register dst,
1101                                Register left,
1102                                Register right,
1103                                Register overflow_dst,
1104                                Register scratch = at);
1105
1106   void SubuAndCheckForOverflow(Register dst,
1107                                Register left,
1108                                Register right,
1109                                Register overflow_dst,
1110                                Register scratch = at);
1111
1112   void BranchOnOverflow(Label* label,
1113                         Register overflow_check,
1114                         BranchDelaySlot bd = PROTECT) {
1115     Branch(label, lt, overflow_check, Operand(zero_reg), bd);
1116   }
1117
1118   void BranchOnNoOverflow(Label* label,
1119                           Register overflow_check,
1120                           BranchDelaySlot bd = PROTECT) {
1121     Branch(label, ge, overflow_check, Operand(zero_reg), bd);
1122   }
1123
1124   void RetOnOverflow(Register overflow_check, BranchDelaySlot bd = PROTECT) {
1125     Ret(lt, overflow_check, Operand(zero_reg), bd);
1126   }
1127
1128   void RetOnNoOverflow(Register overflow_check, BranchDelaySlot bd = PROTECT) {
1129     Ret(ge, overflow_check, Operand(zero_reg), bd);
1130   }
1131
1132   // -------------------------------------------------------------------------
1133   // Runtime calls.
1134
1135   // See comments at the beginning of CEntryStub::Generate.
1136   inline void PrepareCEntryArgs(int num_args) {
1137     li(s0, num_args);
1138     li(s1, (num_args - 1) * kPointerSize);
1139   }
1140
1141   inline void PrepareCEntryFunction(const ExternalReference& ref) {
1142     li(s2, Operand(ref));
1143   }
1144
1145 #define COND_ARGS Condition cond = al, Register rs = zero_reg, \
1146 const Operand& rt = Operand(zero_reg), BranchDelaySlot bd = PROTECT
1147
1148   // Call a code stub.
1149   void CallStub(CodeStub* stub,
1150                 TypeFeedbackId ast_id = TypeFeedbackId::None(),
1151                 COND_ARGS);
1152
1153   // Tail call a code stub (jump).
1154   void TailCallStub(CodeStub* stub, COND_ARGS);
1155
1156 #undef COND_ARGS
1157
1158   void CallJSExitStub(CodeStub* stub);
1159
1160   // Call a runtime routine.
1161   void CallRuntime(const Runtime::Function* f,
1162                    int num_arguments,
1163                    SaveFPRegsMode save_doubles = kDontSaveFPRegs);
1164   void CallRuntimeSaveDoubles(Runtime::FunctionId id) {
1165     const Runtime::Function* function = Runtime::FunctionForId(id);
1166     CallRuntime(function, function->nargs, kSaveFPRegs);
1167   }
1168
1169   // Convenience function: Same as above, but takes the fid instead.
1170   void CallRuntime(Runtime::FunctionId id,
1171                    int num_arguments,
1172                    SaveFPRegsMode save_doubles = kDontSaveFPRegs) {
1173     CallRuntime(Runtime::FunctionForId(id), num_arguments, save_doubles);
1174   }
1175
1176   // Convenience function: call an external reference.
1177   void CallExternalReference(const ExternalReference& ext,
1178                              int num_arguments,
1179                              BranchDelaySlot bd = PROTECT);
1180
1181   // Tail call of a runtime routine (jump).
1182   // Like JumpToExternalReference, but also takes care of passing the number
1183   // of parameters.
1184   void TailCallExternalReference(const ExternalReference& ext,
1185                                  int num_arguments,
1186                                  int result_size);
1187
1188   // Convenience function: tail call a runtime routine (jump).
1189   void TailCallRuntime(Runtime::FunctionId fid,
1190                        int num_arguments,
1191                        int result_size);
1192
1193   int CalculateStackPassedWords(int num_reg_arguments,
1194                                 int num_double_arguments);
1195
1196   // Before calling a C-function from generated code, align arguments on stack
1197   // and add space for the four mips argument slots.
1198   // After aligning the frame, non-register arguments must be stored on the
1199   // stack, after the argument-slots using helper: CFunctionArgumentOperand().
1200   // The argument count assumes all arguments are word sized.
1201   // Some compilers/platforms require the stack to be aligned when calling
1202   // C++ code.
1203   // Needs a scratch register to do some arithmetic. This register will be
1204   // trashed.
1205   void PrepareCallCFunction(int num_reg_arguments,
1206                             int num_double_registers,
1207                             Register scratch);
1208   void PrepareCallCFunction(int num_reg_arguments,
1209                             Register scratch);
1210
1211   // Arguments 1-4 are placed in registers a0 thru a3 respectively.
1212   // Arguments 5..n are stored to stack using following:
1213   //  sw(t0, CFunctionArgumentOperand(5));
1214
1215   // Calls a C function and cleans up the space for arguments allocated
1216   // by PrepareCallCFunction. The called function is not allowed to trigger a
1217   // garbage collection, since that might move the code and invalidate the
1218   // return address (unless this is somehow accounted for by the called
1219   // function).
1220   void CallCFunction(ExternalReference function, int num_arguments);
1221   void CallCFunction(Register function, int num_arguments);
1222   void CallCFunction(ExternalReference function,
1223                      int num_reg_arguments,
1224                      int num_double_arguments);
1225   void CallCFunction(Register function,
1226                      int num_reg_arguments,
1227                      int num_double_arguments);
1228   void MovFromFloatResult(DoubleRegister dst);
1229   void MovFromFloatParameter(DoubleRegister dst);
1230
1231   // There are two ways of passing double arguments on MIPS, depending on
1232   // whether soft or hard floating point ABI is used. These functions
1233   // abstract parameter passing for the three different ways we call
1234   // C functions from generated code.
1235   void MovToFloatParameter(DoubleRegister src);
1236   void MovToFloatParameters(DoubleRegister src1, DoubleRegister src2);
1237   void MovToFloatResult(DoubleRegister src);
1238
1239   // Calls an API function.  Allocates HandleScope, extracts returned value
1240   // from handle and propagates exceptions.  Restores context.  stack_space
1241   // - space to be unwound on exit (includes the call JS arguments space and
1242   // the additional space allocated for the fast call).
1243   void CallApiFunctionAndReturn(Register function_address,
1244                                 ExternalReference thunk_ref,
1245                                 int stack_space,
1246                                 MemOperand return_value_operand,
1247                                 MemOperand* context_restore_operand);
1248
1249   // Jump to the builtin routine.
1250   void JumpToExternalReference(const ExternalReference& builtin,
1251                                BranchDelaySlot bd = PROTECT);
1252
1253   // Invoke specified builtin JavaScript function. Adds an entry to
1254   // the unresolved list if the name does not resolve.
1255   void InvokeBuiltin(Builtins::JavaScript id,
1256                      InvokeFlag flag,
1257                      const CallWrapper& call_wrapper = NullCallWrapper());
1258
1259   // Store the code object for the given builtin in the target register and
1260   // setup the function in a1.
1261   void GetBuiltinEntry(Register target, Builtins::JavaScript id);
1262
1263   // Store the function for the given builtin in the target register.
1264   void GetBuiltinFunction(Register target, Builtins::JavaScript id);
1265
1266   struct Unresolved {
1267     int pc;
1268     uint32_t flags;  // See Bootstrapper::FixupFlags decoders/encoders.
1269     const char* name;
1270   };
1271
1272   Handle<Object> CodeObject() {
1273     ASSERT(!code_object_.is_null());
1274     return code_object_;
1275   }
1276
1277   // Emit code for a truncating division by a constant. The dividend register is
1278   // unchanged and at gets clobbered. Dividend and result must be different.
1279   void TruncatingDiv(Register result, Register dividend, int32_t divisor);
1280
1281   // -------------------------------------------------------------------------
1282   // StatsCounter support.
1283
1284   void SetCounter(StatsCounter* counter, int value,
1285                   Register scratch1, Register scratch2);
1286   void IncrementCounter(StatsCounter* counter, int value,
1287                         Register scratch1, Register scratch2);
1288   void DecrementCounter(StatsCounter* counter, int value,
1289                         Register scratch1, Register scratch2);
1290
1291
1292   // -------------------------------------------------------------------------
1293   // Debugging.
1294
1295   // Calls Abort(msg) if the condition cc is not satisfied.
1296   // Use --debug_code to enable.
1297   void Assert(Condition cc, BailoutReason reason, Register rs, Operand rt);
1298   void AssertFastElements(Register elements);
1299
1300   // Like Assert(), but always enabled.
1301   void Check(Condition cc, BailoutReason reason, Register rs, Operand rt);
1302
1303   // Print a message to stdout and abort execution.
1304   void Abort(BailoutReason msg);
1305
1306   // Verify restrictions about code generated in stubs.
1307   void set_generating_stub(bool value) { generating_stub_ = value; }
1308   bool generating_stub() { return generating_stub_; }
1309   void set_has_frame(bool value) { has_frame_ = value; }
1310   bool has_frame() { return has_frame_; }
1311   inline bool AllowThisStubCall(CodeStub* stub);
1312
1313   // ---------------------------------------------------------------------------
1314   // Number utilities.
1315
1316   // Check whether the value of reg is a power of two and not zero. If not
1317   // control continues at the label not_power_of_two. If reg is a power of two
1318   // the register scratch contains the value of (reg - 1) when control falls
1319   // through.
1320   void JumpIfNotPowerOfTwoOrZero(Register reg,
1321                                  Register scratch,
1322                                  Label* not_power_of_two_or_zero);
1323
1324   // -------------------------------------------------------------------------
1325   // Smi utilities.
1326
1327   void SmiTag(Register reg) {
1328     Addu(reg, reg, reg);
1329   }
1330
1331   // Test for overflow < 0: use BranchOnOverflow() or BranchOnNoOverflow().
1332   void SmiTagCheckOverflow(Register reg, Register overflow);
1333   void SmiTagCheckOverflow(Register dst, Register src, Register overflow);
1334
1335   void SmiTag(Register dst, Register src) {
1336     Addu(dst, src, src);
1337   }
1338
1339   // Try to convert int32 to smi. If the value is to large, preserve
1340   // the original value and jump to not_a_smi. Destroys scratch and
1341   // sets flags.
1342   void TrySmiTag(Register reg, Register scratch, Label* not_a_smi) {
1343     TrySmiTag(reg, reg, scratch, not_a_smi);
1344   }
1345   void TrySmiTag(Register dst,
1346                  Register src,
1347                  Register scratch,
1348                  Label* not_a_smi) {
1349     SmiTagCheckOverflow(at, src, scratch);
1350     BranchOnOverflow(not_a_smi, scratch);
1351     mov(dst, at);
1352   }
1353
1354   void SmiUntag(Register reg) {
1355     sra(reg, reg, kSmiTagSize);
1356   }
1357
1358   void SmiUntag(Register dst, Register src) {
1359     sra(dst, src, kSmiTagSize);
1360   }
1361
1362   // Test if the register contains a smi.
1363   inline void SmiTst(Register value, Register scratch) {
1364     And(scratch, value, Operand(kSmiTagMask));
1365   }
1366   inline void NonNegativeSmiTst(Register value, Register scratch) {
1367     And(scratch, value, Operand(kSmiTagMask | kSmiSignMask));
1368   }
1369
1370   // Untag the source value into destination and jump if source is a smi.
1371   // Souce and destination can be the same register.
1372   void UntagAndJumpIfSmi(Register dst, Register src, Label* smi_case);
1373
1374   // Untag the source value into destination and jump if source is not a smi.
1375   // Souce and destination can be the same register.
1376   void UntagAndJumpIfNotSmi(Register dst, Register src, Label* non_smi_case);
1377
1378   // Jump the register contains a smi.
1379   void JumpIfSmi(Register value,
1380                  Label* smi_label,
1381                  Register scratch = at,
1382                  BranchDelaySlot bd = PROTECT);
1383
1384   // Jump if the register contains a non-smi.
1385   void JumpIfNotSmi(Register value,
1386                     Label* not_smi_label,
1387                     Register scratch = at,
1388                     BranchDelaySlot bd = PROTECT);
1389
1390   // Jump if either of the registers contain a non-smi.
1391   void JumpIfNotBothSmi(Register reg1, Register reg2, Label* on_not_both_smi);
1392   // Jump if either of the registers contain a smi.
1393   void JumpIfEitherSmi(Register reg1, Register reg2, Label* on_either_smi);
1394
1395   // Abort execution if argument is a smi, enabled via --debug-code.
1396   void AssertNotSmi(Register object);
1397   void AssertSmi(Register object);
1398
1399   // Abort execution if argument is not a string, enabled via --debug-code.
1400   void AssertString(Register object);
1401
1402   // Abort execution if argument is not a name, enabled via --debug-code.
1403   void AssertName(Register object);
1404
1405   // Abort execution if argument is not undefined or an AllocationSite, enabled
1406   // via --debug-code.
1407   void AssertUndefinedOrAllocationSite(Register object, Register scratch);
1408
1409   // Abort execution if reg is not the root value with the given index,
1410   // enabled via --debug-code.
1411   void AssertIsRoot(Register reg, Heap::RootListIndex index);
1412
1413   // ---------------------------------------------------------------------------
1414   // HeapNumber utilities.
1415
1416   void JumpIfNotHeapNumber(Register object,
1417                            Register heap_number_map,
1418                            Register scratch,
1419                            Label* on_not_heap_number);
1420
1421   // -------------------------------------------------------------------------
1422   // String utilities.
1423
1424   // Generate code to do a lookup in the number string cache. If the number in
1425   // the register object is found in the cache the generated code falls through
1426   // with the result in the result register. The object and the result register
1427   // can be the same. If the number is not found in the cache the code jumps to
1428   // the label not_found with only the content of register object unchanged.
1429   void LookupNumberStringCache(Register object,
1430                                Register result,
1431                                Register scratch1,
1432                                Register scratch2,
1433                                Register scratch3,
1434                                Label* not_found);
1435
1436   // Checks if both instance types are sequential ASCII strings and jumps to
1437   // label if either is not.
1438   void JumpIfBothInstanceTypesAreNotSequentialAscii(
1439       Register first_object_instance_type,
1440       Register second_object_instance_type,
1441       Register scratch1,
1442       Register scratch2,
1443       Label* failure);
1444
1445   // Check if instance type is sequential ASCII string and jump to label if
1446   // it is not.
1447   void JumpIfInstanceTypeIsNotSequentialAscii(Register type,
1448                                               Register scratch,
1449                                               Label* failure);
1450
1451   void JumpIfNotUniqueName(Register reg, Label* not_unique_name);
1452
1453   void EmitSeqStringSetCharCheck(Register string,
1454                                  Register index,
1455                                  Register value,
1456                                  Register scratch,
1457                                  uint32_t encoding_mask);
1458
1459   // Test that both first and second are sequential ASCII strings.
1460   // Assume that they are non-smis.
1461   void JumpIfNonSmisNotBothSequentialAsciiStrings(Register first,
1462                                                   Register second,
1463                                                   Register scratch1,
1464                                                   Register scratch2,
1465                                                   Label* failure);
1466
1467   // Test that both first and second are sequential ASCII strings.
1468   // Check that they are non-smis.
1469   void JumpIfNotBothSequentialAsciiStrings(Register first,
1470                                            Register second,
1471                                            Register scratch1,
1472                                            Register scratch2,
1473                                            Label* failure);
1474
1475   void ClampUint8(Register output_reg, Register input_reg);
1476
1477   void ClampDoubleToUint8(Register result_reg,
1478                           DoubleRegister input_reg,
1479                           DoubleRegister temp_double_reg);
1480
1481
1482   void LoadInstanceDescriptors(Register map, Register descriptors);
1483   void EnumLength(Register dst, Register map);
1484   void NumberOfOwnDescriptors(Register dst, Register map);
1485
1486   template<typename Field>
1487   void DecodeField(Register dst, Register src) {
1488     Ext(dst, src, Field::kShift, Field::kSize);
1489   }
1490
1491   template<typename Field>
1492   void DecodeField(Register reg) {
1493     DecodeField<Field>(reg, reg);
1494   }
1495
1496   template<typename Field>
1497   void DecodeFieldToSmi(Register dst, Register src) {
1498     static const int shift = Field::kShift;
1499     static const int mask = Field::kMask >> shift << kSmiTagSize;
1500     STATIC_ASSERT((mask & (0x80000000u >> (kSmiTagSize - 1))) == 0);
1501     STATIC_ASSERT(kSmiTag == 0);
1502     if (shift < kSmiTagSize) {
1503       sll(dst, src, kSmiTagSize - shift);
1504       And(dst, dst, Operand(mask));
1505     } else if (shift > kSmiTagSize) {
1506       srl(dst, src, shift - kSmiTagSize);
1507       And(dst, dst, Operand(mask));
1508     } else {
1509       And(dst, src, Operand(mask));
1510     }
1511   }
1512
1513   template<typename Field>
1514   void DecodeFieldToSmi(Register reg) {
1515     DecodeField<Field>(reg, reg);
1516   }
1517
1518   // Generates function and stub prologue code.
1519   void StubPrologue();
1520   void Prologue(bool code_pre_aging);
1521
1522   // Activation support.
1523   void EnterFrame(StackFrame::Type type);
1524   void LeaveFrame(StackFrame::Type type);
1525
1526   // Patch the relocated value (lui/ori pair).
1527   void PatchRelocatedValue(Register li_location,
1528                            Register scratch,
1529                            Register new_value);
1530   // Get the relocatad value (loaded data) from the lui/ori pair.
1531   void GetRelocatedValue(Register li_location,
1532                          Register value,
1533                          Register scratch);
1534
1535   // Expects object in a0 and returns map with validated enum cache
1536   // in a0.  Assumes that any other register can be used as a scratch.
1537   void CheckEnumCache(Register null_value, Label* call_runtime);
1538
1539   // AllocationMemento support. Arrays may have an associated
1540   // AllocationMemento object that can be checked for in order to pretransition
1541   // to another type.
1542   // On entry, receiver_reg should point to the array object.
1543   // scratch_reg gets clobbered.
1544   // If allocation info is present, jump to allocation_memento_present.
1545   void TestJSArrayForAllocationMemento(
1546       Register receiver_reg,
1547       Register scratch_reg,
1548       Label* no_memento_found,
1549       Condition cond = al,
1550       Label* allocation_memento_present = NULL);
1551
1552   void JumpIfJSArrayHasAllocationMemento(Register receiver_reg,
1553                                          Register scratch_reg,
1554                                          Label* memento_found) {
1555     Label no_memento_found;
1556     TestJSArrayForAllocationMemento(receiver_reg, scratch_reg,
1557                                     &no_memento_found, eq, memento_found);
1558     bind(&no_memento_found);
1559   }
1560
1561   // Jumps to found label if a prototype map has dictionary elements.
1562   void JumpIfDictionaryInPrototypeChain(Register object, Register scratch0,
1563                                         Register scratch1, Label* found);
1564
1565  private:
1566   void CallCFunctionHelper(Register function,
1567                            int num_reg_arguments,
1568                            int num_double_arguments);
1569
1570   void BranchAndLinkShort(int16_t offset, BranchDelaySlot bdslot = PROTECT);
1571   void BranchAndLinkShort(int16_t offset, Condition cond, Register rs,
1572                           const Operand& rt,
1573                           BranchDelaySlot bdslot = PROTECT);
1574   void BranchAndLinkShort(Label* L, BranchDelaySlot bdslot = PROTECT);
1575   void BranchAndLinkShort(Label* L, Condition cond, Register rs,
1576                           const Operand& rt,
1577                           BranchDelaySlot bdslot = PROTECT);
1578   void J(Label* L, BranchDelaySlot bdslot);
1579   void Jr(Label* L, BranchDelaySlot bdslot);
1580   void Jalr(Label* L, BranchDelaySlot bdslot);
1581
1582   // Helper functions for generating invokes.
1583   void InvokePrologue(const ParameterCount& expected,
1584                       const ParameterCount& actual,
1585                       Handle<Code> code_constant,
1586                       Register code_reg,
1587                       Label* done,
1588                       bool* definitely_mismatches,
1589                       InvokeFlag flag,
1590                       const CallWrapper& call_wrapper);
1591
1592   // Get the code for the given builtin. Returns if able to resolve
1593   // the function in the 'resolved' flag.
1594   Handle<Code> ResolveBuiltin(Builtins::JavaScript id, bool* resolved);
1595
1596   void InitializeNewString(Register string,
1597                            Register length,
1598                            Heap::RootListIndex map_index,
1599                            Register scratch1,
1600                            Register scratch2);
1601
1602   // Helper for implementing JumpIfNotInNewSpace and JumpIfInNewSpace.
1603   void InNewSpace(Register object,
1604                   Register scratch,
1605                   Condition cond,  // eq for new space, ne otherwise.
1606                   Label* branch);
1607
1608   // Helper for finding the mark bits for an address.  Afterwards, the
1609   // bitmap register points at the word with the mark bits and the mask
1610   // the position of the first bit.  Leaves addr_reg unchanged.
1611   inline void GetMarkBits(Register addr_reg,
1612                           Register bitmap_reg,
1613                           Register mask_reg);
1614
1615   // Helper for throwing exceptions.  Compute a handler address and jump to
1616   // it.  See the implementation for register usage.
1617   void JumpToHandlerEntry();
1618
1619   // Compute memory operands for safepoint stack slots.
1620   static int SafepointRegisterStackIndex(int reg_code);
1621   MemOperand SafepointRegisterSlot(Register reg);
1622   MemOperand SafepointRegistersAndDoublesSlot(Register reg);
1623
1624   bool generating_stub_;
1625   bool has_frame_;
1626   // This handle will be patched with the code object on installation.
1627   Handle<Object> code_object_;
1628
1629   // Needs access to SafepointRegisterStackIndex for compiled frame
1630   // traversal.
1631   friend class StandardFrame;
1632 };
1633
1634
1635 // The code patcher is used to patch (typically) small parts of code e.g. for
1636 // debugging and other types of instrumentation. When using the code patcher
1637 // the exact number of bytes specified must be emitted. It is not legal to emit
1638 // relocation information. If any of these constraints are violated it causes
1639 // an assertion to fail.
1640 class CodePatcher {
1641  public:
1642   enum FlushICache {
1643     FLUSH,
1644     DONT_FLUSH
1645   };
1646
1647   CodePatcher(byte* address,
1648               int instructions,
1649               FlushICache flush_cache = FLUSH);
1650   virtual ~CodePatcher();
1651
1652   // Macro assembler to emit code.
1653   MacroAssembler* masm() { return &masm_; }
1654
1655   // Emit an instruction directly.
1656   void Emit(Instr instr);
1657
1658   // Emit an address directly.
1659   void Emit(Address addr);
1660
1661   // Change the condition part of an instruction leaving the rest of the current
1662   // instruction unchanged.
1663   void ChangeBranchCondition(Condition cond);
1664
1665  private:
1666   byte* address_;  // The address of the code being patched.
1667   int size_;  // Number of bytes of the expected patch size.
1668   MacroAssembler masm_;  // Macro assembler used to generate the code.
1669   FlushICache flush_cache_;  // Whether to flush the I cache after patching.
1670 };
1671
1672
1673
1674 #ifdef GENERATED_CODE_COVERAGE
1675 #define CODE_COVERAGE_STRINGIFY(x) #x
1676 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
1677 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1678 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1679 #else
1680 #define ACCESS_MASM(masm) masm->
1681 #endif
1682
1683 } }  // namespace v8::internal
1684
1685 #endif  // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_