blob: 76c48900275fafa008adbf312fa4edf7fcf5e646 [file] [log] [blame]
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001// Copyright 2012 the V8 project authors. All rights reserved.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
Steve Blocka7e24c12009-10-30 11:49:00 +00004
5#ifndef V8_IA32_MACRO_ASSEMBLER_IA32_H_
6#define V8_IA32_MACRO_ASSEMBLER_IA32_H_
7
Ben Murdochb8a8cc12014-11-26 15:28:44 +00008#include "src/assembler.h"
9#include "src/bailout-reason.h"
10#include "src/frames.h"
11#include "src/globals.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000012
13namespace v8 {
14namespace internal {
15
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000016// Give alias names to registers for calling conventions.
17const Register kReturnRegister0 = {Register::kCode_eax};
18const Register kReturnRegister1 = {Register::kCode_edx};
19const Register kJSFunctionRegister = {Register::kCode_edi};
20const Register kContextRegister = {Register::kCode_esi};
21const Register kInterpreterAccumulatorRegister = {Register::kCode_eax};
22const Register kInterpreterRegisterFileRegister = {Register::kCode_edx};
23const Register kInterpreterBytecodeOffsetRegister = {Register::kCode_ecx};
24const Register kInterpreterBytecodeArrayRegister = {Register::kCode_edi};
25const Register kJavaScriptCallArgCountRegister = {Register::kCode_eax};
26const Register kJavaScriptCallNewTargetRegister = {Register::kCode_edx};
27const Register kRuntimeCallFunctionRegister = {Register::kCode_ebx};
28const Register kRuntimeCallArgCountRegister = {Register::kCode_eax};
29
30// Spill slots used by interpreter dispatch calling convention.
31const int kInterpreterDispatchTableSpillSlot = -1;
32
Leon Clarkee46be812010-01-19 14:06:41 +000033// Convenience for platform-independent signatures. We do not normally
34// distinguish memory operands from other operands on ia32.
35typedef Operand MemOperand;
36
Ben Murdoch3ef787d2012-04-12 10:51:47 +010037enum RememberedSetAction { EMIT_REMEMBERED_SET, OMIT_REMEMBERED_SET };
38enum SmiCheck { INLINE_SMI_CHECK, OMIT_SMI_CHECK };
Ben Murdochb8a8cc12014-11-26 15:28:44 +000039enum PointersToHereCheck {
40 kPointersToHereMaybeInteresting,
41 kPointersToHereAreAlwaysInteresting
42};
Ben Murdoch3ef787d2012-04-12 10:51:47 +010043
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000044enum RegisterValueType { REGISTER_VALUE_IS_SMI, REGISTER_VALUE_IS_INT32 };
Ben Murdochb8a8cc12014-11-26 15:28:44 +000045
46#ifdef DEBUG
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000047bool AreAliased(Register reg1, Register reg2, Register reg3 = no_reg,
48 Register reg4 = no_reg, Register reg5 = no_reg,
49 Register reg6 = no_reg, Register reg7 = no_reg,
Ben Murdochb8a8cc12014-11-26 15:28:44 +000050 Register reg8 = no_reg);
51#endif
Ben Murdoch3ef787d2012-04-12 10:51:47 +010052
Steve Blocka7e24c12009-10-30 11:49:00 +000053// MacroAssembler implements a collection of frequently used macros.
54class MacroAssembler: public Assembler {
55 public:
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000056 MacroAssembler(Isolate* isolate, void* buffer, int size,
57 CodeObjectRequired create_code_object);
Steve Blocka7e24c12009-10-30 11:49:00 +000058
Ben Murdochb8a8cc12014-11-26 15:28:44 +000059 void Load(Register dst, const Operand& src, Representation r);
60 void Store(Register src, const Operand& dst, Representation r);
61
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000062 // Load a register with a long value as efficiently as possible.
63 void Set(Register dst, int32_t x) {
64 if (x == 0) {
65 xor_(dst, dst);
66 } else {
67 mov(dst, Immediate(x));
68 }
69 }
70 void Set(const Operand& dst, int32_t x) { mov(dst, Immediate(x)); }
71
Ben Murdochb8a8cc12014-11-26 15:28:44 +000072 // Operations on roots in the root-array.
73 void LoadRoot(Register destination, Heap::RootListIndex index);
74 void StoreRoot(Register source, Register scratch, Heap::RootListIndex index);
75 void CompareRoot(Register with, Register scratch, Heap::RootListIndex index);
76 // These methods can only be used with constant roots (i.e. non-writable
77 // and not in new space).
78 void CompareRoot(Register with, Heap::RootListIndex index);
79 void CompareRoot(const Operand& with, Heap::RootListIndex index);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000080 void PushRoot(Heap::RootListIndex index);
81
82 // Compare the object in a register to a value and jump if they are equal.
83 void JumpIfRoot(Register with, Heap::RootListIndex index, Label* if_equal,
84 Label::Distance if_equal_distance = Label::kFar) {
85 CompareRoot(with, index);
86 j(equal, if_equal, if_equal_distance);
87 }
88 void JumpIfRoot(const Operand& with, Heap::RootListIndex index,
89 Label* if_equal,
90 Label::Distance if_equal_distance = Label::kFar) {
91 CompareRoot(with, index);
92 j(equal, if_equal, if_equal_distance);
93 }
94
95 // Compare the object in a register to a value and jump if they are not equal.
96 void JumpIfNotRoot(Register with, Heap::RootListIndex index,
97 Label* if_not_equal,
98 Label::Distance if_not_equal_distance = Label::kFar) {
99 CompareRoot(with, index);
100 j(not_equal, if_not_equal, if_not_equal_distance);
101 }
102 void JumpIfNotRoot(const Operand& with, Heap::RootListIndex index,
103 Label* if_not_equal,
104 Label::Distance if_not_equal_distance = Label::kFar) {
105 CompareRoot(with, index);
106 j(not_equal, if_not_equal, if_not_equal_distance);
107 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000108
Steve Blocka7e24c12009-10-30 11:49:00 +0000109 // ---------------------------------------------------------------------------
110 // GC Support
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000111 enum RememberedSetFinalAction { kReturnAtEnd, kFallThroughAtEnd };
Steve Blocka7e24c12009-10-30 11:49:00 +0000112
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100113 // Record in the remembered set the fact that we have a pointer to new space
114 // at the address pointed to by the addr register. Only works if addr is not
115 // in new space.
116 void RememberedSetHelper(Register object, // Used for debug code.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000117 Register addr, Register scratch,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100118 SaveFPRegsMode save_fp,
119 RememberedSetFinalAction and_then);
Steve Block6ded16b2010-05-10 14:33:55 +0100120
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000121 void CheckPageFlag(Register object, Register scratch, int mask, Condition cc,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100122 Label* condition_met,
123 Label::Distance condition_met_distance = Label::kFar);
Steve Block6ded16b2010-05-10 14:33:55 +0100124
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000125 void CheckPageFlagForMap(
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000126 Handle<Map> map, int mask, Condition cc, Label* condition_met,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000127 Label::Distance condition_met_distance = Label::kFar);
128
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100129 // Check if object is in new space. Jumps if the object is not in new space.
130 // The register scratch can be object itself, but scratch will be clobbered.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000131 void JumpIfNotInNewSpace(Register object, Register scratch, Label* branch,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100132 Label::Distance distance = Label::kFar) {
133 InNewSpace(object, scratch, zero, branch, distance);
134 }
135
136 // Check if object is in new space. Jumps if the object is in new space.
137 // The register scratch can be object itself, but it will be clobbered.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000138 void JumpIfInNewSpace(Register object, Register scratch, Label* branch,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100139 Label::Distance distance = Label::kFar) {
140 InNewSpace(object, scratch, not_zero, branch, distance);
141 }
142
143 // Check if an object has a given incremental marking color. Also uses ecx!
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000144 void HasColor(Register object, Register scratch0, Register scratch1,
145 Label* has_color, Label::Distance has_color_distance,
146 int first_bit, int second_bit);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100147
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000148 void JumpIfBlack(Register object, Register scratch0, Register scratch1,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100149 Label* on_black,
150 Label::Distance on_black_distance = Label::kFar);
151
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000152 // Checks the color of an object. If the object is white we jump to the
153 // incremental marker.
154 void JumpIfWhite(Register value, Register scratch1, Register scratch2,
155 Label* value_is_white, Label::Distance distance);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100156
157 // Notify the garbage collector that we wrote a pointer into an object.
158 // |object| is the object being stored into, |value| is the object being
159 // stored. value and scratch registers are clobbered by the operation.
160 // The offset is the offset from the start of the object, not the offset from
161 // the tagged HeapObject pointer. For use with FieldOperand(reg, off).
162 void RecordWriteField(
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000163 Register object, int offset, Register value, Register scratch,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100164 SaveFPRegsMode save_fp,
165 RememberedSetAction remembered_set_action = EMIT_REMEMBERED_SET,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000166 SmiCheck smi_check = INLINE_SMI_CHECK,
167 PointersToHereCheck pointers_to_here_check_for_value =
168 kPointersToHereMaybeInteresting);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100169
170 // As above, but the offset has the tag presubtracted. For use with
171 // Operand(reg, off).
172 void RecordWriteContextSlot(
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000173 Register context, int offset, Register value, Register scratch,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100174 SaveFPRegsMode save_fp,
175 RememberedSetAction remembered_set_action = EMIT_REMEMBERED_SET,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000176 SmiCheck smi_check = INLINE_SMI_CHECK,
177 PointersToHereCheck pointers_to_here_check_for_value =
178 kPointersToHereMaybeInteresting) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000179 RecordWriteField(context, offset + kHeapObjectTag, value, scratch, save_fp,
180 remembered_set_action, smi_check,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000181 pointers_to_here_check_for_value);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100182 }
183
184 // Notify the garbage collector that we wrote a pointer into a fixed array.
185 // |array| is the array being stored into, |value| is the
186 // object being stored. |index| is the array index represented as a
187 // Smi. All registers are clobbered by the operation RecordWriteArray
Steve Block8defd9f2010-07-08 12:39:36 +0100188 // filters out smis so it does not update the write barrier if the
189 // value is a smi.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100190 void RecordWriteArray(
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000191 Register array, Register value, Register index, SaveFPRegsMode save_fp,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100192 RememberedSetAction remembered_set_action = EMIT_REMEMBERED_SET,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000193 SmiCheck smi_check = INLINE_SMI_CHECK,
194 PointersToHereCheck pointers_to_here_check_for_value =
195 kPointersToHereMaybeInteresting);
Steve Blocka7e24c12009-10-30 11:49:00 +0000196
Steve Block8defd9f2010-07-08 12:39:36 +0100197 // For page containing |object| mark region covering |address|
198 // dirty. |object| is the object being stored into, |value| is the
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100199 // object being stored. The address and value registers are clobbered by the
Steve Block8defd9f2010-07-08 12:39:36 +0100200 // operation. RecordWrite filters out smis so it does not update the
201 // write barrier if the value is a smi.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100202 void RecordWrite(
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000203 Register object, Register address, Register value, SaveFPRegsMode save_fp,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100204 RememberedSetAction remembered_set_action = EMIT_REMEMBERED_SET,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000205 SmiCheck smi_check = INLINE_SMI_CHECK,
206 PointersToHereCheck pointers_to_here_check_for_value =
207 kPointersToHereMaybeInteresting);
Steve Block8defd9f2010-07-08 12:39:36 +0100208
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000209 // For page containing |object| mark the region covering the object's map
210 // dirty. |object| is the object being stored into, |map| is the Map object
211 // that was stored.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000212 void RecordWriteForMap(Register object, Handle<Map> map, Register scratch1,
213 Register scratch2, SaveFPRegsMode save_fp);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000214
Steve Blocka7e24c12009-10-30 11:49:00 +0000215 // ---------------------------------------------------------------------------
216 // Debugger Support
217
Andrei Popescu402d9372010-02-26 13:31:12 +0000218 void DebugBreak();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000219
220 // Generates function and stub prologue code.
221 void StubPrologue();
222 void Prologue(bool code_pre_aging);
Steve Blocka7e24c12009-10-30 11:49:00 +0000223
Ben Murdochb0fe1622011-05-05 13:52:32 +0100224 // Enter specific kind of exit frame. Expects the number of
225 // arguments in register eax and sets up the number of arguments in
226 // register edi and the pointer to the first argument in register
227 // esi.
228 void EnterExitFrame(bool save_doubles);
Steve Blockd0582a62009-12-15 09:54:21 +0000229
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800230 void EnterApiExitFrame(int argc);
Steve Blocka7e24c12009-10-30 11:49:00 +0000231
232 // Leave the current exit frame. Expects the return value in
233 // register eax:edx (untouched) and the pointer to the first
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000234 // argument in register esi (if pop_arguments == true).
235 void LeaveExitFrame(bool save_doubles, bool pop_arguments = true);
Steve Blocka7e24c12009-10-30 11:49:00 +0000236
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800237 // Leave the current exit frame. Expects the return value in
238 // register eax (untouched).
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000239 void LeaveApiExitFrame(bool restore_context);
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800240
Steve Blockd0582a62009-12-15 09:54:21 +0000241 // Find the function context up the context chain.
242 void LoadContext(Register dst, int context_chain_length);
Steve Blocka7e24c12009-10-30 11:49:00 +0000243
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000244 // Load the global proxy from the current context.
245 void LoadGlobalProxy(Register dst);
246
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100247 // Conditionally load the cached Array transitioned map of type
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000248 // transitioned_kind from the native context if the map in register
249 // map_in_out is the cached Array map in the native context of
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100250 // expected_kind.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000251 void LoadTransitionedArrayMapConditional(ElementsKind expected_kind,
252 ElementsKind transitioned_kind,
253 Register map_in_out,
254 Register scratch,
255 Label* no_map_match);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100256
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100257 // Load the global function with the given index.
258 void LoadGlobalFunction(int index, Register function);
259
260 // Load the initial map from the global function. The registers
261 // function and map can be the same.
262 void LoadGlobalFunctionInitialMap(Register function, Register map);
263
Ben Murdochb0fe1622011-05-05 13:52:32 +0100264 // Push and pop the registers that can hold pointers.
265 void PushSafepointRegisters() { pushad(); }
266 void PopSafepointRegisters() { popad(); }
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100267 // Store the value in register/immediate src in the safepoint
268 // register stack slot for register dst.
269 void StoreToSafepointRegisterSlot(Register dst, Register src);
270 void StoreToSafepointRegisterSlot(Register dst, Immediate src);
271 void LoadFromSafepointRegisterSlot(Register dst, Register src);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100272
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100273 void LoadHeapObject(Register result, Handle<HeapObject> object);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000274 void CmpHeapObject(Register reg, Handle<HeapObject> object);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100275 void PushHeapObject(Handle<HeapObject> object);
276
277 void LoadObject(Register result, Handle<Object> object) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000278 AllowDeferredHandleDereference heap_object_check;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100279 if (object->IsHeapObject()) {
280 LoadHeapObject(result, Handle<HeapObject>::cast(object));
281 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000282 Move(result, Immediate(object));
283 }
284 }
285
286 void CmpObject(Register reg, Handle<Object> object) {
287 AllowDeferredHandleDereference heap_object_check;
288 if (object->IsHeapObject()) {
289 CmpHeapObject(reg, Handle<HeapObject>::cast(object));
290 } else {
291 cmp(reg, Immediate(object));
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100292 }
293 }
294
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400295 // Compare the given value and the value of weak cell.
296 void CmpWeakValue(Register value, Handle<WeakCell> cell, Register scratch);
297
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000298 void GetWeakValue(Register value, Handle<WeakCell> cell);
299
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400300 // Load the value of the weak cell in the value register. Branch to the given
301 // miss label if the weak cell was cleared.
302 void LoadWeakValue(Register value, Handle<WeakCell> cell, Label* miss);
303
Steve Blocka7e24c12009-10-30 11:49:00 +0000304 // ---------------------------------------------------------------------------
305 // JavaScript invokes
306
307 // Invoke the JavaScript function code by either calling or jumping.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100308
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000309 void InvokeFunctionCode(Register function, Register new_target,
310 const ParameterCount& expected,
311 const ParameterCount& actual, InvokeFlag flag,
312 const CallWrapper& call_wrapper);
313
314 void FloodFunctionIfStepping(Register fun, Register new_target,
315 const ParameterCount& expected,
316 const ParameterCount& actual);
Steve Blocka7e24c12009-10-30 11:49:00 +0000317
318 // Invoke the JavaScript function in the given register. Changes the
319 // current context to the context in the function before invoking.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000320 void InvokeFunction(Register function, Register new_target,
321 const ParameterCount& actual, InvokeFlag flag,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000322 const CallWrapper& call_wrapper);
Steve Blocka7e24c12009-10-30 11:49:00 +0000323
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000324 void InvokeFunction(Register function, const ParameterCount& expected,
325 const ParameterCount& actual, InvokeFlag flag,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000326 const CallWrapper& call_wrapper);
327
328 void InvokeFunction(Handle<JSFunction> function,
329 const ParameterCount& expected,
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000330 const ParameterCount& actual, InvokeFlag flag,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000331 const CallWrapper& call_wrapper);
Andrei Popescu402d9372010-02-26 13:31:12 +0000332
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000333 // Invoke specified builtin JavaScript function.
334 void InvokeBuiltin(int native_context_index, InvokeFlag flag,
Ben Murdoch257744e2011-11-30 15:57:28 +0000335 const CallWrapper& call_wrapper = NullCallWrapper());
Steve Blocka7e24c12009-10-30 11:49:00 +0000336
Steve Block791712a2010-08-27 10:21:07 +0100337 // Store the function for the given builtin in the target register.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000338 void GetBuiltinFunction(Register target, int native_context_index);
Steve Blocka7e24c12009-10-30 11:49:00 +0000339
340 // Expression support
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000341 // cvtsi2sd instruction only writes to the low 64-bit of dst register, which
342 // hinders register renaming and makes dependence chains longer. So we use
343 // xorps to clear the dst register before cvtsi2sd to solve this issue.
344 void Cvtsi2sd(XMMRegister dst, Register src) { Cvtsi2sd(dst, Operand(src)); }
345 void Cvtsi2sd(XMMRegister dst, const Operand& src);
Steve Blocka7e24c12009-10-30 11:49:00 +0000346
Steve Block053d10c2011-06-13 19:13:29 +0100347 // Support for constant splitting.
348 bool IsUnsafeImmediate(const Immediate& x);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000349 void SafeMove(Register dst, const Immediate& x);
Steve Block053d10c2011-06-13 19:13:29 +0100350 void SafePush(const Immediate& x);
351
Steve Blocka7e24c12009-10-30 11:49:00 +0000352 // Compare object type for heap object.
353 // Incoming register is heap_object and outgoing register is map.
354 void CmpObjectType(Register heap_object, InstanceType type, Register map);
355
356 // Compare instance type for map.
357 void CmpInstanceType(Register map, InstanceType type);
358
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000359 // Check if a map for a JSObject indicates that the object has fast elements.
360 // Jump to the specified label if it does not.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000361 void CheckFastElements(Register map, Label* fail,
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000362 Label::Distance distance = Label::kFar);
363
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100364 // Check if a map for a JSObject indicates that the object can have both smi
365 // and HeapObject elements. Jump to the specified label if it does not.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000366 void CheckFastObjectElements(Register map, Label* fail,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100367 Label::Distance distance = Label::kFar);
368
369 // Check if a map for a JSObject indicates that the object has fast smi only
370 // elements. Jump to the specified label if it does not.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000371 void CheckFastSmiElements(Register map, Label* fail,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000372 Label::Distance distance = Label::kFar);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100373
374 // Check to see if maybe_number can be stored as a double in
375 // FastDoubleElements. If it can, store it at the index specified by key in
376 // the FastDoubleElements array elements, otherwise jump to fail.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000377 void StoreNumberToDoubleElements(Register maybe_number, Register elements,
378 Register key, Register scratch1,
379 XMMRegister scratch2, Label* fail,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000380 int offset = 0);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100381
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000382 // Compare an object's map with the specified map.
383 void CompareMap(Register obj, Handle<Map> map);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100384
Ben Murdoch257744e2011-11-30 15:57:28 +0000385 // Check if the map of an object is equal to a specified map and branch to
386 // label if not. Skip the smi check if not required (object is known to be a
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100387 // heap object). If mode is ALLOW_ELEMENT_TRANSITION_MAPS, then also match
388 // against maps that are ElementsKind transition maps of the specified map.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000389 void CheckMap(Register obj, Handle<Map> map, Label* fail,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000390 SmiCheckType smi_check_type);
Ben Murdoch257744e2011-11-30 15:57:28 +0000391
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400392 // Check if the map of an object is equal to a specified weak map and branch
393 // to a specified target if equal. Skip the smi check if not required
394 // (object is known to be a heap object)
395 void DispatchWeakMap(Register obj, Register scratch1, Register scratch2,
396 Handle<WeakCell> cell, Handle<Code> success,
397 SmiCheckType smi_check_type);
Andrei Popescu31002712010-02-23 13:46:05 +0000398
Leon Clarkee46be812010-01-19 14:06:41 +0000399 // Check if the object in register heap_object is a string. Afterwards the
400 // register map contains the object map and the register instance_type
401 // contains the instance_type. The registers map and instance_type can be the
402 // same in which case it contains the instance type afterwards. Either of the
403 // registers map and instance_type can be the same as heap_object.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000404 Condition IsObjectStringType(Register heap_object, Register map,
Leon Clarkee46be812010-01-19 14:06:41 +0000405 Register instance_type);
406
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000407 // Check if the object in register heap_object is a name. Afterwards the
408 // register map contains the object map and the register instance_type
409 // contains the instance_type. The registers map and instance_type can be the
410 // same in which case it contains the instance type afterwards. Either of the
411 // registers map and instance_type can be the same as heap_object.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000412 Condition IsObjectNameType(Register heap_object, Register map,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000413 Register instance_type);
414
Steve Blocka7e24c12009-10-30 11:49:00 +0000415 // FCmp is similar to integer cmp, but requires unsigned
416 // jcc instructions (je, ja, jae, jb, jbe, je, and jz).
417 void FCmp();
418
Ben Murdoch257744e2011-11-30 15:57:28 +0000419 void ClampUint8(Register reg);
420
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000421 void ClampDoubleToUint8(XMMRegister input_reg, XMMRegister scratch_reg,
Ben Murdoch257744e2011-11-30 15:57:28 +0000422 Register result_reg);
423
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000424 void SlowTruncateToI(Register result_reg, Register input_reg,
425 int offset = HeapNumber::kValueOffset - kHeapObjectTag);
426
427 void TruncateHeapNumberToI(Register result_reg, Register input_reg);
428 void TruncateDoubleToI(Register result_reg, XMMRegister input_reg);
429
430 void DoubleToI(Register result_reg, XMMRegister input_reg,
431 XMMRegister scratch, MinusZeroMode minus_zero_mode,
432 Label* lost_precision, Label* is_nan, Label* minus_zero,
433 Label::Distance dst = Label::kFar);
Ben Murdoch257744e2011-11-30 15:57:28 +0000434
Leon Clarkee46be812010-01-19 14:06:41 +0000435 // Smi tagging support.
436 void SmiTag(Register reg) {
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000437 STATIC_ASSERT(kSmiTag == 0);
438 STATIC_ASSERT(kSmiTagSize == 1);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100439 add(reg, reg);
Leon Clarkee46be812010-01-19 14:06:41 +0000440 }
441 void SmiUntag(Register reg) {
442 sar(reg, kSmiTagSize);
443 }
444
Iain Merrick75681382010-08-19 15:07:18 +0100445 // Modifies the register even if it does not contain a Smi!
Iain Merrick75681382010-08-19 15:07:18 +0100446 void SmiUntag(Register reg, Label* is_smi) {
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000447 STATIC_ASSERT(kSmiTagSize == 1);
Iain Merrick75681382010-08-19 15:07:18 +0100448 sar(reg, kSmiTagSize);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000449 STATIC_ASSERT(kSmiTag == 0);
Iain Merrick75681382010-08-19 15:07:18 +0100450 j(not_carry, is_smi);
451 }
452
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400453 void LoadUint32(XMMRegister dst, Register src) {
454 LoadUint32(dst, Operand(src));
455 }
456 void LoadUint32(XMMRegister dst, const Operand& src);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000457
Steve Block1e0659c2011-05-24 12:43:12 +0100458 // Jump the register contains a smi.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000459 inline void JumpIfSmi(Register value, Label* smi_label,
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000460 Label::Distance distance = Label::kFar) {
Steve Block1e0659c2011-05-24 12:43:12 +0100461 test(value, Immediate(kSmiTagMask));
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000462 j(zero, smi_label, distance);
463 }
464 // Jump if the operand is a smi.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000465 inline void JumpIfSmi(Operand value, Label* smi_label,
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000466 Label::Distance distance = Label::kFar) {
467 test(value, Immediate(kSmiTagMask));
468 j(zero, smi_label, distance);
Steve Block1e0659c2011-05-24 12:43:12 +0100469 }
470 // Jump if register contain a non-smi.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000471 inline void JumpIfNotSmi(Register value, Label* not_smi_label,
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000472 Label::Distance distance = Label::kFar) {
Steve Block1e0659c2011-05-24 12:43:12 +0100473 test(value, Immediate(kSmiTagMask));
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000474 j(not_zero, not_smi_label, distance);
Steve Block1e0659c2011-05-24 12:43:12 +0100475 }
476
Ben Murdoch257744e2011-11-30 15:57:28 +0000477 void LoadInstanceDescriptors(Register map, Register descriptors);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000478 void EnumLength(Register dst, Register map);
479 void NumberOfOwnDescriptors(Register dst, Register map);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000480 void LoadAccessor(Register dst, Register holder, int accessor_index,
481 AccessorComponent accessor);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000482
483 template<typename Field>
484 void DecodeField(Register reg) {
485 static const int shift = Field::kShift;
486 static const int mask = Field::kMask >> Field::kShift;
487 if (shift != 0) {
488 sar(reg, shift);
489 }
490 and_(reg, Immediate(mask));
491 }
492
493 template<typename Field>
494 void DecodeFieldToSmi(Register reg) {
495 static const int shift = Field::kShift;
496 static const int mask = (Field::kMask >> Field::kShift) << kSmiTagSize;
497 STATIC_ASSERT((mask & (0x80000000u >> (kSmiTagSize - 1))) == 0);
498 STATIC_ASSERT(kSmiTag == 0);
499 if (shift < kSmiTagSize) {
500 shl(reg, kSmiTagSize - shift);
501 } else if (shift > kSmiTagSize) {
502 sar(reg, shift - kSmiTagSize);
503 }
504 and_(reg, Immediate(mask));
505 }
Iain Merrick75681382010-08-19 15:07:18 +0100506
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100507 void LoadPowerOf2(XMMRegister dst, Register scratch, int power);
508
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000509 // Abort execution if argument is not a number, enabled via --debug-code.
510 void AssertNumber(Register object);
Steve Block6ded16b2010-05-10 14:33:55 +0100511
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000512 // Abort execution if argument is not a smi, enabled via --debug-code.
513 void AssertSmi(Register object);
Andrei Popescu402d9372010-02-26 13:31:12 +0000514
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000515 // Abort execution if argument is a smi, enabled via --debug-code.
516 void AssertNotSmi(Register object);
Iain Merrick75681382010-08-19 15:07:18 +0100517
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000518 // Abort execution if argument is not a string, enabled via --debug-code.
519 void AssertString(Register object);
520
521 // Abort execution if argument is not a name, enabled via --debug-code.
522 void AssertName(Register object);
523
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000524 // Abort execution if argument is not a JSFunction, enabled via --debug-code.
525 void AssertFunction(Register object);
526
527 // Abort execution if argument is not a JSBoundFunction,
528 // enabled via --debug-code.
529 void AssertBoundFunction(Register object);
530
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000531 // Abort execution if argument is not undefined or an AllocationSite, enabled
532 // via --debug-code.
533 void AssertUndefinedOrAllocationSite(Register object);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100534
Steve Blocka7e24c12009-10-30 11:49:00 +0000535 // ---------------------------------------------------------------------------
536 // Exception handling
537
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000538 // Push a new stack handler and link it into stack handler chain.
539 void PushStackHandler();
Steve Blocka7e24c12009-10-30 11:49:00 +0000540
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000541 // Unlink the stack handler on top of the stack from the stack handler chain.
542 void PopStackHandler();
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100543
Steve Blocka7e24c12009-10-30 11:49:00 +0000544 // ---------------------------------------------------------------------------
545 // Inline caching support
546
Steve Blocka7e24c12009-10-30 11:49:00 +0000547 // Generate code for checking access rights - used for security checks
548 // on access to global objects across environments. The holder register
549 // is left untouched, but the scratch register is clobbered.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000550 void CheckAccessGlobalProxy(Register holder_reg, Register scratch1,
551 Register scratch2, Label* miss);
Steve Blocka7e24c12009-10-30 11:49:00 +0000552
Ben Murdochc7cc0282012-03-05 14:35:55 +0000553 void GetNumberHash(Register r0, Register scratch);
Steve Blocka7e24c12009-10-30 11:49:00 +0000554
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000555 void LoadFromNumberDictionary(Label* miss, Register elements, Register key,
556 Register r0, Register r1, Register r2,
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000557 Register result);
558
Steve Blocka7e24c12009-10-30 11:49:00 +0000559 // ---------------------------------------------------------------------------
560 // Allocation support
561
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000562 // Allocate an object in new space or old space. If the given space
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000563 // is exhausted control continues at the gc_required label. The allocated
564 // object is returned in result and end of the new object is returned in
565 // result_end. The register scratch can be passed as no_reg in which case
566 // an additional object reference will be added to the reloc info. The
567 // returned pointers in result and result_end have not yet been tagged as
568 // heap objects. If result_contains_top_on_entry is true the content of
569 // result is known to be the allocation top on entry (could be result_end
570 // from a previous call). If result_contains_top_on_entry is true scratch
Steve Blocka7e24c12009-10-30 11:49:00 +0000571 // should be no_reg as it is never used.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000572 void Allocate(int object_size, Register result, Register result_end,
573 Register scratch, Label* gc_required, AllocationFlags flags);
Steve Blocka7e24c12009-10-30 11:49:00 +0000574
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000575 void Allocate(int header_size, ScaleFactor element_size,
576 Register element_count, RegisterValueType element_count_type,
577 Register result, Register result_end, Register scratch,
578 Label* gc_required, AllocationFlags flags);
Steve Blocka7e24c12009-10-30 11:49:00 +0000579
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000580 void Allocate(Register object_size, Register result, Register result_end,
581 Register scratch, Label* gc_required, AllocationFlags flags);
Steve Blocka7e24c12009-10-30 11:49:00 +0000582
Steve Block3ce2e202009-11-05 08:53:23 +0000583 // Allocate a heap number in new space with undefined value. The
584 // register scratch2 can be passed as no_reg; the others must be
585 // valid registers. Returns tagged pointer in result register, or
586 // jumps to gc_required if new space is full.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000587 void AllocateHeapNumber(Register result, Register scratch1, Register scratch2,
588 Label* gc_required, MutableMode mode = IMMUTABLE);
Steve Block3ce2e202009-11-05 08:53:23 +0000589
Steve Blockd0582a62009-12-15 09:54:21 +0000590 // Allocate a sequential string. All the header fields of the string object
591 // are initialized.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000592 void AllocateTwoByteString(Register result, Register length,
593 Register scratch1, Register scratch2,
594 Register scratch3, Label* gc_required);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000595 void AllocateOneByteString(Register result, Register length,
596 Register scratch1, Register scratch2,
597 Register scratch3, Label* gc_required);
598 void AllocateOneByteString(Register result, int length, Register scratch1,
599 Register scratch2, Label* gc_required);
Steve Blockd0582a62009-12-15 09:54:21 +0000600
601 // Allocate a raw cons string object. Only the map field of the result is
602 // initialized.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000603 void AllocateTwoByteConsString(Register result, Register scratch1,
604 Register scratch2, Label* gc_required);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000605 void AllocateOneByteConsString(Register result, Register scratch1,
606 Register scratch2, Label* gc_required);
Steve Blockd0582a62009-12-15 09:54:21 +0000607
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000608 // Allocate a raw sliced string object. Only the map field of the result is
609 // initialized.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000610 void AllocateTwoByteSlicedString(Register result, Register scratch1,
611 Register scratch2, Label* gc_required);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000612 void AllocateOneByteSlicedString(Register result, Register scratch1,
613 Register scratch2, Label* gc_required);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000614
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000615 // Allocate and initialize a JSValue wrapper with the specified {constructor}
616 // and {value}.
617 void AllocateJSValue(Register result, Register constructor, Register value,
618 Register scratch, Label* gc_required);
619
Ben Murdochb8e0da22011-05-16 14:20:40 +0100620 // Copy memory, byte-by-byte, from source to destination. Not optimized for
621 // long or aligned copies.
622 // The contents of index and scratch are destroyed.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000623 void CopyBytes(Register source, Register destination, Register length,
Ben Murdochb8e0da22011-05-16 14:20:40 +0100624 Register scratch);
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800625
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000626 // Initialize fields with filler values. Fields starting at |current_address|
627 // not including |end_address| are overwritten with the value in |filler|. At
628 // the end the loop, |current_address| takes the value of |end_address|.
629 void InitializeFieldsWithFiller(Register current_address,
630 Register end_address, Register filler);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100631
Steve Blocka7e24c12009-10-30 11:49:00 +0000632 // ---------------------------------------------------------------------------
633 // Support functions.
634
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100635 // Check a boolean-bit of a Smi field.
636 void BooleanBitTest(Register object, int field_offset, int bit_index);
637
Steve Blocka7e24c12009-10-30 11:49:00 +0000638 // Check if result is zero and op is negative.
639 void NegativeZeroTest(Register result, Register op, Label* then_label);
640
Steve Blocka7e24c12009-10-30 11:49:00 +0000641 // Check if result is zero and any of op1 and op2 are negative.
642 // Register scratch is destroyed, and it must be different from op2.
643 void NegativeZeroTest(Register result, Register op1, Register op2,
644 Register scratch, Label* then_label);
645
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000646 // Machine code version of Map::GetConstructor().
647 // |temp| holds |result|'s map when done.
648 void GetMapConstructor(Register result, Register map, Register temp);
649
Steve Blocka7e24c12009-10-30 11:49:00 +0000650 // Try to get function prototype of a function and puts the value in
651 // the result register. Checks that the function really is a
652 // function and jumps to the miss label if the fast checks fail. The
653 // function register will be untouched; the other registers may be
654 // clobbered.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000655 void TryGetFunctionPrototype(Register function, Register result,
656 Register scratch, Label* miss);
Steve Blocka7e24c12009-10-30 11:49:00 +0000657
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100658 // Picks out an array index from the hash field.
659 // Register use:
660 // hash - holds the index's hash. Clobbered.
661 // index - holds the overwritten index on exit.
662 void IndexFromHash(Register hash, Register index);
663
Steve Blocka7e24c12009-10-30 11:49:00 +0000664 // ---------------------------------------------------------------------------
665 // Runtime calls
666
Leon Clarkee46be812010-01-19 14:06:41 +0000667 // Call a code stub. Generate the code if necessary.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000668 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
Steve Blocka7e24c12009-10-30 11:49:00 +0000669
Leon Clarkee46be812010-01-19 14:06:41 +0000670 // Tail call a code stub (jump). Generate the code if necessary.
Steve Blockd0582a62009-12-15 09:54:21 +0000671 void TailCallStub(CodeStub* stub);
672
Steve Blocka7e24c12009-10-30 11:49:00 +0000673 // Return from a code stub after popping its arguments.
674 void StubReturn(int argc);
675
676 // Call a runtime routine.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000677 void CallRuntime(const Runtime::Function* f, int num_arguments,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000678 SaveFPRegsMode save_doubles = kDontSaveFPRegs);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000679 void CallRuntimeSaveDoubles(Runtime::FunctionId fid) {
680 const Runtime::Function* function = Runtime::FunctionForId(fid);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000681 CallRuntime(function, function->nargs, kSaveFPRegs);
682 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000683
684 // Convenience function: Same as above, but takes the fid instead.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000685 void CallRuntime(Runtime::FunctionId fid,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000686 SaveFPRegsMode save_doubles = kDontSaveFPRegs) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000687 const Runtime::Function* function = Runtime::FunctionForId(fid);
688 CallRuntime(function, function->nargs, save_doubles);
689 }
690
691 // Convenience function: Same as above, but takes the fid instead.
692 void CallRuntime(Runtime::FunctionId fid, int num_arguments,
693 SaveFPRegsMode save_doubles = kDontSaveFPRegs) {
694 CallRuntime(Runtime::FunctionForId(fid), num_arguments, save_doubles);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000695 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000696
Ben Murdochbb769b22010-08-11 14:56:33 +0100697 // Convenience function: call an external reference.
698 void CallExternalReference(ExternalReference ref, int num_arguments);
699
Steve Block6ded16b2010-05-10 14:33:55 +0100700 // Convenience function: tail call a runtime routine (jump).
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000701 void TailCallRuntime(Runtime::FunctionId fid);
Steve Blocka7e24c12009-10-30 11:49:00 +0000702
Steve Block6ded16b2010-05-10 14:33:55 +0100703 // Before calling a C-function from generated code, align arguments on stack.
704 // After aligning the frame, arguments must be stored in esp[0], esp[4],
705 // etc., not pushed. The argument count assumes all arguments are word sized.
706 // Some compilers/platforms require the stack to be aligned when calling
707 // C++ code.
708 // Needs a scratch register to do some arithmetic. This register will be
709 // trashed.
710 void PrepareCallCFunction(int num_arguments, Register scratch);
711
712 // Calls a C function and cleans up the space for arguments allocated
713 // by PrepareCallCFunction. The called function is not allowed to trigger a
714 // garbage collection, since that might move the code and invalidate the
715 // return address (unless this is somehow accounted for by the called
716 // function).
717 void CallCFunction(ExternalReference function, int num_arguments);
718 void CallCFunction(Register function, int num_arguments);
719
Steve Blocka7e24c12009-10-30 11:49:00 +0000720 // Jump to a runtime routine.
Steve Block6ded16b2010-05-10 14:33:55 +0100721 void JumpToExternalReference(const ExternalReference& ext);
Steve Blocka7e24c12009-10-30 11:49:00 +0000722
Steve Blocka7e24c12009-10-30 11:49:00 +0000723 // ---------------------------------------------------------------------------
724 // Utilities
725
726 void Ret();
727
Steve Block1e0659c2011-05-24 12:43:12 +0100728 // Return and drop arguments from stack, where the number of arguments
729 // may be bigger than 2^16 - 1. Requires a scratch register.
730 void Ret(int bytes_dropped, Register scratch);
731
Leon Clarkee46be812010-01-19 14:06:41 +0000732 // Emit code to discard a non-negative number of pointer-sized elements
733 // from the stack, clobbering only the esp register.
734 void Drop(int element_count);
735
736 void Call(Label* target) { call(target); }
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000737 void Call(Handle<Code> target, RelocInfo::Mode rmode) { call(target, rmode); }
738 void Jump(Handle<Code> target, RelocInfo::Mode rmode) { jmp(target, rmode); }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000739 void Push(Register src) { push(src); }
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000740 void Push(const Operand& src) { push(src); }
741 void Push(Immediate value) { push(value); }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000742 void Pop(Register dst) { pop(dst); }
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000743 void Pop(const Operand& dst) { pop(dst); }
744 void PushReturnAddressFrom(Register src) { push(src); }
745 void PopReturnAddressTo(Register dst) { pop(dst); }
746
747 // Non-SSE2 instructions.
748 void Pextrd(Register dst, XMMRegister src, int8_t imm8);
749 void Pinsrd(XMMRegister dst, Register src, int8_t imm8) {
750 Pinsrd(dst, Operand(src), imm8);
751 }
752 void Pinsrd(XMMRegister dst, const Operand& src, int8_t imm8);
753
754 void Lzcnt(Register dst, Register src) { Lzcnt(dst, Operand(src)); }
755 void Lzcnt(Register dst, const Operand& src);
756
757 void Tzcnt(Register dst, Register src) { Tzcnt(dst, Operand(src)); }
758 void Tzcnt(Register dst, const Operand& src);
759
760 void Popcnt(Register dst, Register src) { Popcnt(dst, Operand(src)); }
761 void Popcnt(Register dst, const Operand& src);
Leon Clarkee46be812010-01-19 14:06:41 +0000762
Ben Murdochb0fe1622011-05-05 13:52:32 +0100763 // Emit call to the code we are currently generating.
764 void CallSelf() {
765 Handle<Code> self(reinterpret_cast<Code**>(CodeObject().location()));
766 call(self, RelocInfo::CODE_TARGET);
767 }
768
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100769 // Move if the registers are not identical.
770 void Move(Register target, Register source);
771
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000772 // Move a constant into a destination using the most efficient encoding.
773 void Move(Register dst, const Immediate& x);
774 void Move(const Operand& dst, const Immediate& x);
775
776 // Move an immediate into an XMM register.
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400777 void Move(XMMRegister dst, uint32_t src);
778 void Move(XMMRegister dst, uint64_t src);
779 void Move(XMMRegister dst, double src) { Move(dst, bit_cast<uint64_t>(src)); }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000780
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000781 void Move(Register dst, Smi* source) { Move(dst, Immediate(source)); }
782
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000783 // Push a handle value.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100784 void Push(Handle<Object> handle) { push(Immediate(handle)); }
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000785 void Push(Smi* smi) { Push(Immediate(smi)); }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000786
Ben Murdoch8b112d22011-06-08 16:22:53 +0100787 Handle<Object> CodeObject() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000788 DCHECK(!code_object_.is_null());
Ben Murdoch8b112d22011-06-08 16:22:53 +0100789 return code_object_;
790 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000791
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000792 // Emit code for a truncating division by a constant. The dividend register is
793 // unchanged, the result is in edx, and eax gets clobbered.
794 void TruncatingDiv(Register dividend, int32_t divisor);
Steve Blocka7e24c12009-10-30 11:49:00 +0000795
796 // ---------------------------------------------------------------------------
797 // StatsCounter support
798
799 void SetCounter(StatsCounter* counter, int value);
800 void IncrementCounter(StatsCounter* counter, int value);
801 void DecrementCounter(StatsCounter* counter, int value);
Leon Clarked91b9f72010-01-27 17:25:45 +0000802 void IncrementCounter(Condition cc, StatsCounter* counter, int value);
803 void DecrementCounter(Condition cc, StatsCounter* counter, int value);
Steve Blocka7e24c12009-10-30 11:49:00 +0000804
Steve Blocka7e24c12009-10-30 11:49:00 +0000805 // ---------------------------------------------------------------------------
806 // Debugging
807
808 // Calls Abort(msg) if the condition cc is not satisfied.
809 // Use --debug_code to enable.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000810 void Assert(Condition cc, BailoutReason reason);
Steve Blocka7e24c12009-10-30 11:49:00 +0000811
Iain Merrick75681382010-08-19 15:07:18 +0100812 void AssertFastElements(Register elements);
813
Steve Blocka7e24c12009-10-30 11:49:00 +0000814 // Like Assert(), but always enabled.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000815 void Check(Condition cc, BailoutReason reason);
Steve Blocka7e24c12009-10-30 11:49:00 +0000816
817 // Print a message to stdout and abort execution.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000818 void Abort(BailoutReason reason);
Steve Blocka7e24c12009-10-30 11:49:00 +0000819
Steve Block6ded16b2010-05-10 14:33:55 +0100820 // Check that the stack is aligned.
821 void CheckStackAlignment();
822
Steve Blocka7e24c12009-10-30 11:49:00 +0000823 // Verify restrictions about code generated in stubs.
824 void set_generating_stub(bool value) { generating_stub_ = value; }
825 bool generating_stub() { return generating_stub_; }
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100826 void set_has_frame(bool value) { has_frame_ = value; }
827 bool has_frame() { return has_frame_; }
828 inline bool AllowThisStubCall(CodeStub* stub);
Steve Blocka7e24c12009-10-30 11:49:00 +0000829
Leon Clarked91b9f72010-01-27 17:25:45 +0000830 // ---------------------------------------------------------------------------
831 // String utilities.
832
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000833 // Check whether the instance type represents a flat one-byte string. Jump to
834 // the label if not. If the instance type can be scratched specify same
835 // register for both instance type and scratch.
836 void JumpIfInstanceTypeIsNotSequentialOneByte(
837 Register instance_type, Register scratch,
838 Label* on_not_flat_one_byte_string);
839
840 // Checks if both objects are sequential one-byte strings, and jumps to label
Leon Clarked91b9f72010-01-27 17:25:45 +0000841 // if either is not.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000842 void JumpIfNotBothSequentialOneByteStrings(
843 Register object1, Register object2, Register scratch1, Register scratch2,
844 Label* on_not_flat_one_byte_strings);
845
846 // Checks if the given register or operand is a unique name
847 void JumpIfNotUniqueNameInstanceType(Register reg, Label* not_unique_name,
848 Label::Distance distance = Label::kFar) {
849 JumpIfNotUniqueNameInstanceType(Operand(reg), not_unique_name, distance);
850 }
851
852 void JumpIfNotUniqueNameInstanceType(Operand operand, Label* not_unique_name,
853 Label::Distance distance = Label::kFar);
854
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000855 void EmitSeqStringSetCharCheck(Register string, Register index,
856 Register value, uint32_t encoding_mask);
Leon Clarked91b9f72010-01-27 17:25:45 +0000857
Ben Murdoch8b112d22011-06-08 16:22:53 +0100858 static int SafepointRegisterStackIndex(Register reg) {
859 return SafepointRegisterStackIndex(reg.code());
860 }
861
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000862 // Load the type feedback vector from a JavaScript frame.
863 void EmitLoadTypeFeedbackVector(Register vector);
864
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100865 // Activation support.
866 void EnterFrame(StackFrame::Type type);
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400867 void EnterFrame(StackFrame::Type type, bool load_constant_pool_pointer_reg);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100868 void LeaveFrame(StackFrame::Type type);
869
870 // Expects object in eax and returns map with validated enum cache
871 // in eax. Assumes that any other register can be used as a scratch.
872 void CheckEnumCache(Label* call_runtime);
873
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000874 // AllocationMemento support. Arrays may have an associated
875 // AllocationMemento object that can be checked for in order to pretransition
876 // to another type.
877 // On entry, receiver_reg should point to the array object.
878 // scratch_reg gets clobbered.
879 // If allocation info is present, conditional code is set to equal.
880 void TestJSArrayForAllocationMemento(Register receiver_reg,
881 Register scratch_reg,
882 Label* no_memento_found);
883
884 void JumpIfJSArrayHasAllocationMemento(Register receiver_reg,
885 Register scratch_reg,
886 Label* memento_found) {
887 Label no_memento_found;
888 TestJSArrayForAllocationMemento(receiver_reg, scratch_reg,
889 &no_memento_found);
890 j(equal, memento_found);
891 bind(&no_memento_found);
892 }
893
894 // Jumps to found label if a prototype map has dictionary elements.
895 void JumpIfDictionaryInPrototypeChain(Register object, Register scratch0,
896 Register scratch1, Label* found);
897
Steve Blocka7e24c12009-10-30 11:49:00 +0000898 private:
Steve Blocka7e24c12009-10-30 11:49:00 +0000899 bool generating_stub_;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100900 bool has_frame_;
Andrei Popescu31002712010-02-23 13:46:05 +0000901 // This handle will be patched with the code object on installation.
902 Handle<Object> code_object_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000903
904 // Helper functions for generating invokes.
905 void InvokePrologue(const ParameterCount& expected,
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000906 const ParameterCount& actual, Label* done,
907 bool* definitely_mismatches, InvokeFlag flag,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100908 Label::Distance done_distance,
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000909 const CallWrapper& call_wrapper);
Steve Blocka7e24c12009-10-30 11:49:00 +0000910
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100911 void EnterExitFramePrologue();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100912 void EnterExitFrameEpilogue(int argc, bool save_doubles);
Steve Blockd0582a62009-12-15 09:54:21 +0000913
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000914 void LeaveExitFrameEpilogue(bool restore_context);
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800915
Steve Blocka7e24c12009-10-30 11:49:00 +0000916 // Allocation support helpers.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000917 void LoadAllocationTopHelper(Register result, Register scratch,
Steve Blocka7e24c12009-10-30 11:49:00 +0000918 AllocationFlags flags);
Leon Clarkee46be812010-01-19 14:06:41 +0000919
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000920 void UpdateAllocationTopHelper(Register result_end, Register scratch,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000921 AllocationFlags flags);
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100922
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100923 // Helper for implementing JumpIfNotInNewSpace and JumpIfInNewSpace.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000924 void InNewSpace(Register object, Register scratch, Condition cc,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100925 Label* condition_met,
926 Label::Distance condition_met_distance = Label::kFar);
927
928 // Helper for finding the mark bits for an address. Afterwards, the
929 // bitmap register points at the word with the mark bits and the mask
930 // the position of the first bit. Uses ecx as scratch and leaves addr_reg
931 // unchanged.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000932 inline void GetMarkBits(Register addr_reg, Register bitmap_reg,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100933 Register mask_reg);
934
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100935 // Compute memory operands for safepoint stack slots.
936 Operand SafepointRegisterSlot(Register reg);
937 static int SafepointRegisterStackIndex(int reg_code);
938
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000939 // Needs access to SafepointRegisterStackIndex for compiled frame
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100940 // traversal.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000941 friend class StandardFrame;
Steve Blocka7e24c12009-10-30 11:49:00 +0000942};
943
Steve Blocka7e24c12009-10-30 11:49:00 +0000944// The code patcher is used to patch (typically) small parts of code e.g. for
945// debugging and other types of instrumentation. When using the code patcher
946// the exact number of bytes specified must be emitted. Is not legal to emit
947// relocation information. If any of these constraints are violated it causes
948// an assertion.
949class CodePatcher {
950 public:
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000951 CodePatcher(Isolate* isolate, byte* address, int size);
952 ~CodePatcher();
Steve Blocka7e24c12009-10-30 11:49:00 +0000953
954 // Macro assembler to emit code.
955 MacroAssembler* masm() { return &masm_; }
956
957 private:
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000958 byte* address_; // The address of the code being patched.
959 int size_; // Number of bytes of the expected patch size.
Steve Blocka7e24c12009-10-30 11:49:00 +0000960 MacroAssembler masm_; // Macro assembler used to generate the code.
961};
962
Steve Blocka7e24c12009-10-30 11:49:00 +0000963// -----------------------------------------------------------------------------
964// Static helper functions.
965
966// Generate an Operand for loading a field from an object.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100967inline Operand FieldOperand(Register object, int offset) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000968 return Operand(object, offset - kHeapObjectTag);
969}
970
Steve Blocka7e24c12009-10-30 11:49:00 +0000971// Generate an Operand for loading an indexed field from an object.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000972inline Operand FieldOperand(Register object, Register index, ScaleFactor scale,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100973 int offset) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000974 return Operand(object, index, scale, offset - kHeapObjectTag);
975}
976
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000977inline Operand FixedArrayElementOperand(Register array, Register index_as_smi,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000978 int additional_offset = 0) {
979 int offset = FixedArray::kHeaderSize + additional_offset * kPointerSize;
980 return FieldOperand(array, index_as_smi, times_half_pointer_size, offset);
981}
982
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100983inline Operand ContextOperand(Register context, int index) {
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800984 return Operand(context, Context::SlotOffset(index));
985}
986
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000987inline Operand ContextOperand(Register context, Register index) {
988 return Operand(context, index, times_pointer_size, Context::SlotOffset(0));
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800989}
990
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000991inline Operand NativeContextOperand() {
992 return ContextOperand(esi, Context::NATIVE_CONTEXT_INDEX);
993}
Steve Blocka7e24c12009-10-30 11:49:00 +0000994
995#ifdef GENERATED_CODE_COVERAGE
996extern void LogGeneratedCodeCoverage(const char* file_line);
997#define CODE_COVERAGE_STRINGIFY(x) #x
998#define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
999#define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1000#define ACCESS_MASM(masm) { \
1001 byte* ia32_coverage_function = \
1002 reinterpret_cast<byte*>(FUNCTION_ADDR(LogGeneratedCodeCoverage)); \
1003 masm->pushfd(); \
1004 masm->pushad(); \
1005 masm->push(Immediate(reinterpret_cast<int>(&__FILE_LINE__))); \
1006 masm->call(ia32_coverage_function, RelocInfo::RUNTIME_ENTRY); \
1007 masm->pop(eax); \
1008 masm->popad(); \
1009 masm->popfd(); \
1010 } \
1011 masm->
1012#else
1013#define ACCESS_MASM(masm) masm->
1014#endif
1015
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001016} // namespace internal
1017} // namespace v8
Steve Blocka7e24c12009-10-30 11:49:00 +00001018
1019#endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_