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