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