blob: 62bb0f36343c93019e5dd5ed87076addd6fab91d [file] [log] [blame]
Ben Murdochb0fe1622011-05-05 13:52:32 +01001// Copyright 2010 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_IA32_MACRO_ASSEMBLER_IA32_H_
29#define V8_IA32_MACRO_ASSEMBLER_IA32_H_
30
31#include "assembler.h"
Iain Merrick75681382010-08-19 15:07:18 +010032#include "type-info.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000033
34namespace v8 {
35namespace internal {
36
Kristian Monsen25f61362010-05-21 11:50:48 +010037// Flags used for the AllocateInNewSpace functions.
38enum AllocationFlags {
39 // No special flags.
40 NO_ALLOCATION_FLAGS = 0,
41 // Return the pointer to the allocated already tagged as a heap object.
42 TAG_OBJECT = 1 << 0,
43 // The content of the result register already contains the allocation top in
44 // new space.
45 RESULT_CONTAINS_TOP = 1 << 1
46};
47
Leon Clarkee46be812010-01-19 14:06:41 +000048// Convenience for platform-independent signatures. We do not normally
49// distinguish memory operands from other operands on ia32.
50typedef Operand MemOperand;
51
Steve Blocka7e24c12009-10-30 11:49:00 +000052// Forward declaration.
53class JumpTarget;
Ben Murdochb0fe1622011-05-05 13:52:32 +010054class PostCallGenerator;
Steve Blocka7e24c12009-10-30 11:49:00 +000055
Steve Blocka7e24c12009-10-30 11:49:00 +000056// MacroAssembler implements a collection of frequently used macros.
57class MacroAssembler: public Assembler {
58 public:
59 MacroAssembler(void* buffer, int size);
60
61 // ---------------------------------------------------------------------------
62 // GC Support
63
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010064 // For page containing |object| mark region covering |addr| dirty.
65 // RecordWriteHelper only works if the object is not in new
Steve Block6ded16b2010-05-10 14:33:55 +010066 // space.
67 void RecordWriteHelper(Register object,
68 Register addr,
69 Register scratch);
70
71 // Check if object is in new space.
72 // scratch can be object itself, but it will be clobbered.
Ben Murdochb0fe1622011-05-05 13:52:32 +010073 template <typename LabelType>
Steve Block6ded16b2010-05-10 14:33:55 +010074 void InNewSpace(Register object,
75 Register scratch,
76 Condition cc, // equal for new space, not_equal otherwise.
Ben Murdochb0fe1622011-05-05 13:52:32 +010077 LabelType* branch);
Steve Block6ded16b2010-05-10 14:33:55 +010078
Steve Block8defd9f2010-07-08 12:39:36 +010079 // For page containing |object| mark region covering [object+offset]
80 // dirty. |object| is the object being stored into, |value| is the
81 // object being stored. If offset is zero, then the scratch register
82 // contains the array index into the elements array represented as a
83 // Smi. All registers are clobbered by the operation. RecordWrite
84 // filters out smis so it does not update the write barrier if the
85 // value is a smi.
Steve Blocka7e24c12009-10-30 11:49:00 +000086 void RecordWrite(Register object,
87 int offset,
88 Register value,
89 Register scratch);
90
Steve Block8defd9f2010-07-08 12:39:36 +010091 // For page containing |object| mark region covering |address|
92 // dirty. |object| is the object being stored into, |value| is the
93 // object being stored. All registers are clobbered by the
94 // operation. RecordWrite filters out smis so it does not update the
95 // write barrier if the value is a smi.
96 void RecordWrite(Register object,
97 Register address,
98 Register value);
99
Steve Blocka7e24c12009-10-30 11:49:00 +0000100#ifdef ENABLE_DEBUGGER_SUPPORT
101 // ---------------------------------------------------------------------------
102 // Debugger Support
103
Andrei Popescu402d9372010-02-26 13:31:12 +0000104 void DebugBreak();
Steve Blocka7e24c12009-10-30 11:49:00 +0000105#endif
106
107 // ---------------------------------------------------------------------------
108 // Activation frames
109
110 void EnterInternalFrame() { EnterFrame(StackFrame::INTERNAL); }
111 void LeaveInternalFrame() { LeaveFrame(StackFrame::INTERNAL); }
112
113 void EnterConstructFrame() { EnterFrame(StackFrame::CONSTRUCT); }
114 void LeaveConstructFrame() { LeaveFrame(StackFrame::CONSTRUCT); }
115
Ben Murdochb0fe1622011-05-05 13:52:32 +0100116 // Enter specific kind of exit frame. Expects the number of
117 // arguments in register eax and sets up the number of arguments in
118 // register edi and the pointer to the first argument in register
119 // esi.
120 void EnterExitFrame(bool save_doubles);
Steve Blockd0582a62009-12-15 09:54:21 +0000121
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800122 void EnterApiExitFrame(int argc);
Steve Blocka7e24c12009-10-30 11:49:00 +0000123
124 // Leave the current exit frame. Expects the return value in
125 // register eax:edx (untouched) and the pointer to the first
126 // argument in register esi.
Ben Murdochb0fe1622011-05-05 13:52:32 +0100127 void LeaveExitFrame(bool save_doubles);
Steve Blocka7e24c12009-10-30 11:49:00 +0000128
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800129 // Leave the current exit frame. Expects the return value in
130 // register eax (untouched).
131 void LeaveApiExitFrame();
132
Steve Blockd0582a62009-12-15 09:54:21 +0000133 // Find the function context up the context chain.
134 void LoadContext(Register dst, int context_chain_length);
Steve Blocka7e24c12009-10-30 11:49:00 +0000135
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100136 // Load the global function with the given index.
137 void LoadGlobalFunction(int index, Register function);
138
139 // Load the initial map from the global function. The registers
140 // function and map can be the same.
141 void LoadGlobalFunctionInitialMap(Register function, Register map);
142
Ben Murdochb0fe1622011-05-05 13:52:32 +0100143 // Push and pop the registers that can hold pointers.
144 void PushSafepointRegisters() { pushad(); }
145 void PopSafepointRegisters() { popad(); }
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100146 // Store the value in register/immediate src in the safepoint
147 // register stack slot for register dst.
148 void StoreToSafepointRegisterSlot(Register dst, Register src);
149 void StoreToSafepointRegisterSlot(Register dst, Immediate src);
150 void LoadFromSafepointRegisterSlot(Register dst, Register src);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100151
Steve Blocka7e24c12009-10-30 11:49:00 +0000152 // ---------------------------------------------------------------------------
153 // JavaScript invokes
154
155 // Invoke the JavaScript function code by either calling or jumping.
156 void InvokeCode(const Operand& code,
157 const ParameterCount& expected,
158 const ParameterCount& actual,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100159 InvokeFlag flag,
160 PostCallGenerator* post_call_generator = NULL);
Steve Blocka7e24c12009-10-30 11:49:00 +0000161
162 void InvokeCode(Handle<Code> code,
163 const ParameterCount& expected,
164 const ParameterCount& actual,
165 RelocInfo::Mode rmode,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100166 InvokeFlag flag,
167 PostCallGenerator* post_call_generator = NULL);
Steve Blocka7e24c12009-10-30 11:49:00 +0000168
169 // Invoke the JavaScript function in the given register. Changes the
170 // current context to the context in the function before invoking.
171 void InvokeFunction(Register function,
172 const ParameterCount& actual,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100173 InvokeFlag flag,
174 PostCallGenerator* post_call_generator = NULL);
Steve Blocka7e24c12009-10-30 11:49:00 +0000175
Andrei Popescu402d9372010-02-26 13:31:12 +0000176 void InvokeFunction(JSFunction* function,
177 const ParameterCount& actual,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100178 InvokeFlag flag,
179 PostCallGenerator* post_call_generator = NULL);
Andrei Popescu402d9372010-02-26 13:31:12 +0000180
Steve Blocka7e24c12009-10-30 11:49:00 +0000181 // Invoke specified builtin JavaScript function. Adds an entry to
182 // the unresolved list if the name does not resolve.
Ben Murdochb0fe1622011-05-05 13:52:32 +0100183 void InvokeBuiltin(Builtins::JavaScript id,
184 InvokeFlag flag,
185 PostCallGenerator* post_call_generator = NULL);
Steve Blocka7e24c12009-10-30 11:49:00 +0000186
Steve Block791712a2010-08-27 10:21:07 +0100187 // Store the function for the given builtin in the target register.
188 void GetBuiltinFunction(Register target, Builtins::JavaScript id);
189
Steve Blocka7e24c12009-10-30 11:49:00 +0000190 // Store the code object for the given builtin in the target register.
191 void GetBuiltinEntry(Register target, Builtins::JavaScript id);
192
193 // Expression support
194 void Set(Register dst, const Immediate& x);
195 void Set(const Operand& dst, const Immediate& x);
196
197 // Compare object type for heap object.
198 // Incoming register is heap_object and outgoing register is map.
199 void CmpObjectType(Register heap_object, InstanceType type, Register map);
200
201 // Compare instance type for map.
202 void CmpInstanceType(Register map, InstanceType type);
203
Andrei Popescu31002712010-02-23 13:46:05 +0000204 // Check if the map of an object is equal to a specified map and
205 // branch to label if not. Skip the smi check if not required
206 // (object is known to be a heap object)
207 void CheckMap(Register obj,
208 Handle<Map> map,
209 Label* fail,
210 bool is_heap_object);
211
Leon Clarkee46be812010-01-19 14:06:41 +0000212 // Check if the object in register heap_object is a string. Afterwards the
213 // register map contains the object map and the register instance_type
214 // contains the instance_type. The registers map and instance_type can be the
215 // same in which case it contains the instance type afterwards. Either of the
216 // registers map and instance_type can be the same as heap_object.
217 Condition IsObjectStringType(Register heap_object,
218 Register map,
219 Register instance_type);
220
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100221 // Check if a heap object's type is in the JSObject range, not including
222 // JSFunction. The object's map will be loaded in the map register.
223 // Any or all of the three registers may be the same.
224 // The contents of the scratch register will always be overwritten.
225 void IsObjectJSObjectType(Register heap_object,
226 Register map,
227 Register scratch,
228 Label* fail);
229
230 // The contents of the scratch register will be overwritten.
231 void IsInstanceJSObjectType(Register map, Register scratch, Label* fail);
232
Steve Blocka7e24c12009-10-30 11:49:00 +0000233 // FCmp is similar to integer cmp, but requires unsigned
234 // jcc instructions (je, ja, jae, jb, jbe, je, and jz).
235 void FCmp();
236
Leon Clarkee46be812010-01-19 14:06:41 +0000237 // Smi tagging support.
238 void SmiTag(Register reg) {
239 ASSERT(kSmiTag == 0);
Steve Block6ded16b2010-05-10 14:33:55 +0100240 ASSERT(kSmiTagSize == 1);
241 add(reg, Operand(reg));
Leon Clarkee46be812010-01-19 14:06:41 +0000242 }
243 void SmiUntag(Register reg) {
244 sar(reg, kSmiTagSize);
245 }
246
Iain Merrick75681382010-08-19 15:07:18 +0100247 // Modifies the register even if it does not contain a Smi!
248 void SmiUntag(Register reg, TypeInfo info, Label* non_smi) {
249 ASSERT(kSmiTagSize == 1);
250 sar(reg, kSmiTagSize);
251 if (info.IsSmi()) {
252 ASSERT(kSmiTag == 0);
253 j(carry, non_smi);
254 }
255 }
256
257 // Modifies the register even if it does not contain a Smi!
258 void SmiUntag(Register reg, Label* is_smi) {
259 ASSERT(kSmiTagSize == 1);
260 sar(reg, kSmiTagSize);
261 ASSERT(kSmiTag == 0);
262 j(not_carry, is_smi);
263 }
264
Steve Block1e0659c2011-05-24 12:43:12 +0100265 // Jump the register contains a smi.
266 inline void JumpIfSmi(Register value, Label* smi_label) {
267 test(value, Immediate(kSmiTagMask));
268 j(zero, smi_label, not_taken);
269 }
270 // Jump if register contain a non-smi.
271 inline void JumpIfNotSmi(Register value, Label* not_smi_label) {
272 test(value, Immediate(kSmiTagMask));
273 j(not_zero, not_smi_label, not_taken);
274 }
275
Iain Merrick75681382010-08-19 15:07:18 +0100276 // Assumes input is a heap object.
277 void JumpIfNotNumber(Register reg, TypeInfo info, Label* on_not_number);
278
279 // Assumes input is a heap number. Jumps on things out of range. Also jumps
280 // on the min negative int32. Ignores frational parts.
281 void ConvertToInt32(Register dst,
282 Register src, // Can be the same as dst.
283 Register scratch, // Can be no_reg or dst, but not src.
284 TypeInfo info,
285 Label* on_not_int32);
286
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100287 void LoadPowerOf2(XMMRegister dst, Register scratch, int power);
288
Andrei Popescu402d9372010-02-26 13:31:12 +0000289 // Abort execution if argument is not a number. Used in debug code.
Steve Block6ded16b2010-05-10 14:33:55 +0100290 void AbortIfNotNumber(Register object);
291
292 // Abort execution if argument is not a smi. Used in debug code.
293 void AbortIfNotSmi(Register object);
Andrei Popescu402d9372010-02-26 13:31:12 +0000294
Iain Merrick75681382010-08-19 15:07:18 +0100295 // Abort execution if argument is a smi. Used in debug code.
296 void AbortIfSmi(Register object);
297
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100298 // Abort execution if argument is a string. Used in debug code.
299 void AbortIfNotString(Register object);
300
Steve Blocka7e24c12009-10-30 11:49:00 +0000301 // ---------------------------------------------------------------------------
302 // Exception handling
303
304 // Push a new try handler and link into try handler chain. The return
305 // address must be pushed before calling this helper.
306 void PushTryHandler(CodeLocation try_location, HandlerType type);
307
Leon Clarkee46be812010-01-19 14:06:41 +0000308 // Unlink the stack handler on top of the stack from the try handler chain.
309 void PopTryHandler();
Steve Blocka7e24c12009-10-30 11:49:00 +0000310
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100311 // Activate the top handler in the try hander chain.
312 void Throw(Register value);
313
314 void ThrowUncatchable(UncatchableExceptionType type, Register value);
315
Steve Blocka7e24c12009-10-30 11:49:00 +0000316 // ---------------------------------------------------------------------------
317 // Inline caching support
318
Steve Blocka7e24c12009-10-30 11:49:00 +0000319 // Generate code for checking access rights - used for security checks
320 // on access to global objects across environments. The holder register
321 // is left untouched, but the scratch register is clobbered.
322 void CheckAccessGlobalProxy(Register holder_reg,
323 Register scratch,
324 Label* miss);
325
326
327 // ---------------------------------------------------------------------------
328 // Allocation support
329
330 // Allocate an object in new space. If the new space is exhausted control
331 // continues at the gc_required label. The allocated object is returned in
332 // result and end of the new object is returned in result_end. The register
333 // scratch can be passed as no_reg in which case an additional object
334 // reference will be added to the reloc info. The returned pointers in result
335 // and result_end have not yet been tagged as heap objects. If
Steve Blockd0582a62009-12-15 09:54:21 +0000336 // result_contains_top_on_entry is true the content of result is known to be
Steve Blocka7e24c12009-10-30 11:49:00 +0000337 // the allocation top on entry (could be result_end from a previous call to
338 // AllocateInNewSpace). If result_contains_top_on_entry is true scratch
339 // should be no_reg as it is never used.
340 void AllocateInNewSpace(int object_size,
341 Register result,
342 Register result_end,
343 Register scratch,
344 Label* gc_required,
345 AllocationFlags flags);
346
347 void AllocateInNewSpace(int header_size,
348 ScaleFactor element_size,
349 Register element_count,
350 Register result,
351 Register result_end,
352 Register scratch,
353 Label* gc_required,
354 AllocationFlags flags);
355
356 void AllocateInNewSpace(Register object_size,
357 Register result,
358 Register result_end,
359 Register scratch,
360 Label* gc_required,
361 AllocationFlags flags);
362
363 // Undo allocation in new space. The object passed and objects allocated after
364 // it will no longer be allocated. Make sure that no pointers are left to the
365 // object(s) no longer allocated as they would be invalid when allocation is
366 // un-done.
367 void UndoAllocationInNewSpace(Register object);
368
Steve Block3ce2e202009-11-05 08:53:23 +0000369 // Allocate a heap number in new space with undefined value. The
370 // register scratch2 can be passed as no_reg; the others must be
371 // valid registers. Returns tagged pointer in result register, or
372 // jumps to gc_required if new space is full.
373 void AllocateHeapNumber(Register result,
374 Register scratch1,
375 Register scratch2,
376 Label* gc_required);
377
Steve Blockd0582a62009-12-15 09:54:21 +0000378 // Allocate a sequential string. All the header fields of the string object
379 // are initialized.
380 void AllocateTwoByteString(Register result,
381 Register length,
382 Register scratch1,
383 Register scratch2,
384 Register scratch3,
385 Label* gc_required);
386 void AllocateAsciiString(Register result,
387 Register length,
388 Register scratch1,
389 Register scratch2,
390 Register scratch3,
391 Label* gc_required);
Iain Merrick9ac36c92010-09-13 15:29:50 +0100392 void AllocateAsciiString(Register result,
393 int length,
394 Register scratch1,
395 Register scratch2,
396 Label* gc_required);
Steve Blockd0582a62009-12-15 09:54:21 +0000397
398 // Allocate a raw cons string object. Only the map field of the result is
399 // initialized.
400 void AllocateConsString(Register result,
401 Register scratch1,
402 Register scratch2,
403 Label* gc_required);
404 void AllocateAsciiConsString(Register result,
405 Register scratch1,
406 Register scratch2,
407 Label* gc_required);
408
Ben Murdochb8e0da22011-05-16 14:20:40 +0100409 // Copy memory, byte-by-byte, from source to destination. Not optimized for
410 // long or aligned copies.
411 // The contents of index and scratch are destroyed.
412 void CopyBytes(Register source,
413 Register destination,
414 Register length,
415 Register scratch);
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800416
Steve Blocka7e24c12009-10-30 11:49:00 +0000417 // ---------------------------------------------------------------------------
418 // Support functions.
419
420 // Check if result is zero and op is negative.
421 void NegativeZeroTest(Register result, Register op, Label* then_label);
422
423 // Check if result is zero and op is negative in code using jump targets.
424 void NegativeZeroTest(CodeGenerator* cgen,
425 Register result,
426 Register op,
427 JumpTarget* then_target);
428
429 // Check if result is zero and any of op1 and op2 are negative.
430 // Register scratch is destroyed, and it must be different from op2.
431 void NegativeZeroTest(Register result, Register op1, Register op2,
432 Register scratch, Label* then_label);
433
434 // Try to get function prototype of a function and puts the value in
435 // the result register. Checks that the function really is a
436 // function and jumps to the miss label if the fast checks fail. The
437 // function register will be untouched; the other registers may be
438 // clobbered.
439 void TryGetFunctionPrototype(Register function,
440 Register result,
441 Register scratch,
442 Label* miss);
443
444 // Generates code for reporting that an illegal operation has
445 // occurred.
446 void IllegalOperation(int num_arguments);
447
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100448 // Picks out an array index from the hash field.
449 // Register use:
450 // hash - holds the index's hash. Clobbered.
451 // index - holds the overwritten index on exit.
452 void IndexFromHash(Register hash, Register index);
453
Steve Blocka7e24c12009-10-30 11:49:00 +0000454 // ---------------------------------------------------------------------------
455 // Runtime calls
456
Leon Clarkee46be812010-01-19 14:06:41 +0000457 // Call a code stub. Generate the code if necessary.
Steve Blocka7e24c12009-10-30 11:49:00 +0000458 void CallStub(CodeStub* stub);
459
Leon Clarkee46be812010-01-19 14:06:41 +0000460 // Call a code stub and return the code object called. Try to generate
461 // the code if necessary. Do not perform a GC but instead return a retry
462 // after GC failure.
John Reck59135872010-11-02 12:39:01 -0700463 MUST_USE_RESULT MaybeObject* TryCallStub(CodeStub* stub);
Leon Clarkee46be812010-01-19 14:06:41 +0000464
465 // Tail call a code stub (jump). Generate the code if necessary.
Steve Blockd0582a62009-12-15 09:54:21 +0000466 void TailCallStub(CodeStub* stub);
467
Leon Clarkee46be812010-01-19 14:06:41 +0000468 // Tail call a code stub (jump) and return the code object called. Try to
469 // generate the code if necessary. Do not perform a GC but instead return
470 // a retry after GC failure.
John Reck59135872010-11-02 12:39:01 -0700471 MUST_USE_RESULT MaybeObject* TryTailCallStub(CodeStub* stub);
Leon Clarkee46be812010-01-19 14:06:41 +0000472
Steve Blocka7e24c12009-10-30 11:49:00 +0000473 // Return from a code stub after popping its arguments.
474 void StubReturn(int argc);
475
476 // Call a runtime routine.
Steve Blocka7e24c12009-10-30 11:49:00 +0000477 void CallRuntime(Runtime::Function* f, int num_arguments);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100478 void CallRuntimeSaveDoubles(Runtime::FunctionId id);
Steve Blocka7e24c12009-10-30 11:49:00 +0000479
Leon Clarke4515c472010-02-03 11:58:03 +0000480 // Call a runtime function, returning the CodeStub object called.
Leon Clarkee46be812010-01-19 14:06:41 +0000481 // Try to generate the stub code if necessary. Do not perform a GC
482 // but instead return a retry after GC failure.
John Reck59135872010-11-02 12:39:01 -0700483 MUST_USE_RESULT MaybeObject* TryCallRuntime(Runtime::Function* f,
484 int num_arguments);
Leon Clarkee46be812010-01-19 14:06:41 +0000485
Steve Blocka7e24c12009-10-30 11:49:00 +0000486 // Convenience function: Same as above, but takes the fid instead.
487 void CallRuntime(Runtime::FunctionId id, int num_arguments);
488
Leon Clarkee46be812010-01-19 14:06:41 +0000489 // Convenience function: Same as above, but takes the fid instead.
John Reck59135872010-11-02 12:39:01 -0700490 MUST_USE_RESULT MaybeObject* TryCallRuntime(Runtime::FunctionId id,
491 int num_arguments);
Leon Clarkee46be812010-01-19 14:06:41 +0000492
Ben Murdochbb769b22010-08-11 14:56:33 +0100493 // Convenience function: call an external reference.
494 void CallExternalReference(ExternalReference ref, int num_arguments);
495
Steve Blocka7e24c12009-10-30 11:49:00 +0000496 // Tail call of a runtime routine (jump).
Steve Block6ded16b2010-05-10 14:33:55 +0100497 // Like JumpToExternalReference, but also takes care of passing the number
498 // of parameters.
499 void TailCallExternalReference(const ExternalReference& ext,
500 int num_arguments,
501 int result_size);
502
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800503 // Tail call of a runtime routine (jump). Try to generate the code if
504 // necessary. Do not perform a GC but instead return a retry after GC failure.
505 MUST_USE_RESULT MaybeObject* TryTailCallExternalReference(
506 const ExternalReference& ext, int num_arguments, int result_size);
507
Steve Block6ded16b2010-05-10 14:33:55 +0100508 // Convenience function: tail call a runtime routine (jump).
509 void TailCallRuntime(Runtime::FunctionId fid,
Steve Blocka7e24c12009-10-30 11:49:00 +0000510 int num_arguments,
511 int result_size);
512
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800513 // Convenience function: tail call a runtime routine (jump). Try to generate
514 // the code if necessary. Do not perform a GC but instead return a retry after
515 // GC failure.
516 MUST_USE_RESULT MaybeObject* TryTailCallRuntime(Runtime::FunctionId fid,
517 int num_arguments,
518 int result_size);
519
Steve Block6ded16b2010-05-10 14:33:55 +0100520 // Before calling a C-function from generated code, align arguments on stack.
521 // After aligning the frame, arguments must be stored in esp[0], esp[4],
522 // etc., not pushed. The argument count assumes all arguments are word sized.
523 // Some compilers/platforms require the stack to be aligned when calling
524 // C++ code.
525 // Needs a scratch register to do some arithmetic. This register will be
526 // trashed.
527 void PrepareCallCFunction(int num_arguments, Register scratch);
528
529 // Calls a C function and cleans up the space for arguments allocated
530 // by PrepareCallCFunction. The called function is not allowed to trigger a
531 // garbage collection, since that might move the code and invalidate the
532 // return address (unless this is somehow accounted for by the called
533 // function).
534 void CallCFunction(ExternalReference function, int num_arguments);
535 void CallCFunction(Register function, int num_arguments);
536
John Reck59135872010-11-02 12:39:01 -0700537 // Prepares stack to put arguments (aligns and so on). Reserves
538 // space for return value if needed (assumes the return value is a handle).
539 // Uses callee-saved esi to restore stack state after call. Arguments must be
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800540 // stored in ApiParameterOperand(0), ApiParameterOperand(1) etc. Saves
541 // context (esi).
542 void PrepareCallApiFunction(int argc, Register scratch);
Steve Blockd0582a62009-12-15 09:54:21 +0000543
Russell Brenner90bac252010-11-18 13:33:46 -0800544 // Calls an API function. Allocates HandleScope, extracts
John Reck59135872010-11-02 12:39:01 -0700545 // returned value from handle and propagates exceptions.
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800546 // Clobbers ebx, edi and caller-save registers. Restores context.
547 // On return removes stack_space * kPointerSize (GCed).
548 MaybeObject* TryCallApiFunctionAndReturn(ApiFunction* function,
549 int stack_space);
Leon Clarkee46be812010-01-19 14:06:41 +0000550
Steve Blocka7e24c12009-10-30 11:49:00 +0000551 // Jump to a runtime routine.
Steve Block6ded16b2010-05-10 14:33:55 +0100552 void JumpToExternalReference(const ExternalReference& ext);
Steve Blocka7e24c12009-10-30 11:49:00 +0000553
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800554 MaybeObject* TryJumpToExternalReference(const ExternalReference& ext);
555
Steve Blocka7e24c12009-10-30 11:49:00 +0000556
557 // ---------------------------------------------------------------------------
558 // Utilities
559
560 void Ret();
561
Steve Block1e0659c2011-05-24 12:43:12 +0100562 // Return and drop arguments from stack, where the number of arguments
563 // may be bigger than 2^16 - 1. Requires a scratch register.
564 void Ret(int bytes_dropped, Register scratch);
565
Leon Clarkee46be812010-01-19 14:06:41 +0000566 // Emit code to discard a non-negative number of pointer-sized elements
567 // from the stack, clobbering only the esp register.
568 void Drop(int element_count);
569
570 void Call(Label* target) { call(target); }
571
Ben Murdochb0fe1622011-05-05 13:52:32 +0100572 // Emit call to the code we are currently generating.
573 void CallSelf() {
574 Handle<Code> self(reinterpret_cast<Code**>(CodeObject().location()));
575 call(self, RelocInfo::CODE_TARGET);
576 }
577
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100578 // Move if the registers are not identical.
579 void Move(Register target, Register source);
580
Leon Clarkee46be812010-01-19 14:06:41 +0000581 void Move(Register target, Handle<Object> value);
582
Steve Blocka7e24c12009-10-30 11:49:00 +0000583 Handle<Object> CodeObject() { return code_object_; }
584
585
586 // ---------------------------------------------------------------------------
587 // StatsCounter support
588
589 void SetCounter(StatsCounter* counter, int value);
590 void IncrementCounter(StatsCounter* counter, int value);
591 void DecrementCounter(StatsCounter* counter, int value);
Leon Clarked91b9f72010-01-27 17:25:45 +0000592 void IncrementCounter(Condition cc, StatsCounter* counter, int value);
593 void DecrementCounter(Condition cc, StatsCounter* counter, int value);
Steve Blocka7e24c12009-10-30 11:49:00 +0000594
595
596 // ---------------------------------------------------------------------------
597 // Debugging
598
599 // Calls Abort(msg) if the condition cc is not satisfied.
600 // Use --debug_code to enable.
601 void Assert(Condition cc, const char* msg);
602
Iain Merrick75681382010-08-19 15:07:18 +0100603 void AssertFastElements(Register elements);
604
Steve Blocka7e24c12009-10-30 11:49:00 +0000605 // Like Assert(), but always enabled.
606 void Check(Condition cc, const char* msg);
607
608 // Print a message to stdout and abort execution.
609 void Abort(const char* msg);
610
Steve Block6ded16b2010-05-10 14:33:55 +0100611 // Check that the stack is aligned.
612 void CheckStackAlignment();
613
Steve Blocka7e24c12009-10-30 11:49:00 +0000614 // Verify restrictions about code generated in stubs.
615 void set_generating_stub(bool value) { generating_stub_ = value; }
616 bool generating_stub() { return generating_stub_; }
617 void set_allow_stub_calls(bool value) { allow_stub_calls_ = value; }
618 bool allow_stub_calls() { return allow_stub_calls_; }
619
Leon Clarked91b9f72010-01-27 17:25:45 +0000620 // ---------------------------------------------------------------------------
621 // String utilities.
622
Andrei Popescu402d9372010-02-26 13:31:12 +0000623 // Check whether the instance type represents a flat ascii string. Jump to the
624 // label if not. If the instance type can be scratched specify same register
625 // for both instance type and scratch.
626 void JumpIfInstanceTypeIsNotSequentialAscii(Register instance_type,
627 Register scratch,
Steve Block6ded16b2010-05-10 14:33:55 +0100628 Label* on_not_flat_ascii_string);
Andrei Popescu402d9372010-02-26 13:31:12 +0000629
Leon Clarked91b9f72010-01-27 17:25:45 +0000630 // Checks if both objects are sequential ASCII strings, and jumps to label
631 // if either is not.
632 void JumpIfNotBothSequentialAsciiStrings(Register object1,
633 Register object2,
634 Register scratch1,
635 Register scratch2,
Steve Block6ded16b2010-05-10 14:33:55 +0100636 Label* on_not_flat_ascii_strings);
Leon Clarked91b9f72010-01-27 17:25:45 +0000637
Steve Blocka7e24c12009-10-30 11:49:00 +0000638 private:
Steve Blocka7e24c12009-10-30 11:49:00 +0000639 bool generating_stub_;
640 bool allow_stub_calls_;
Andrei Popescu31002712010-02-23 13:46:05 +0000641 // This handle will be patched with the code object on installation.
642 Handle<Object> code_object_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000643
644 // Helper functions for generating invokes.
645 void InvokePrologue(const ParameterCount& expected,
646 const ParameterCount& actual,
647 Handle<Code> code_constant,
648 const Operand& code_operand,
649 Label* done,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100650 InvokeFlag flag,
651 PostCallGenerator* post_call_generator = NULL);
Steve Blocka7e24c12009-10-30 11:49:00 +0000652
Steve Blocka7e24c12009-10-30 11:49:00 +0000653 // Activation support.
654 void EnterFrame(StackFrame::Type type);
655 void LeaveFrame(StackFrame::Type type);
656
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100657 void EnterExitFramePrologue();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100658 void EnterExitFrameEpilogue(int argc, bool save_doubles);
Steve Blockd0582a62009-12-15 09:54:21 +0000659
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800660 void LeaveExitFrameEpilogue();
661
Steve Blocka7e24c12009-10-30 11:49:00 +0000662 // Allocation support helpers.
663 void LoadAllocationTopHelper(Register result,
Steve Blocka7e24c12009-10-30 11:49:00 +0000664 Register scratch,
665 AllocationFlags flags);
666 void UpdateAllocationTopHelper(Register result_end, Register scratch);
Leon Clarkee46be812010-01-19 14:06:41 +0000667
668 // Helper for PopHandleScope. Allowed to perform a GC and returns
669 // NULL if gc_allowed. Does not perform a GC if !gc_allowed, and
670 // possibly returns a failure object indicating an allocation failure.
John Reck59135872010-11-02 12:39:01 -0700671 MUST_USE_RESULT MaybeObject* PopHandleScopeHelper(Register saved,
672 Register scratch,
673 bool gc_allowed);
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100674
675
676 // Compute memory operands for safepoint stack slots.
677 Operand SafepointRegisterSlot(Register reg);
678 static int SafepointRegisterStackIndex(int reg_code);
679
680 // Needs access to SafepointRegisterStackIndex for optimized frame
681 // traversal.
682 friend class OptimizedFrame;
Steve Blocka7e24c12009-10-30 11:49:00 +0000683};
684
685
Ben Murdochb0fe1622011-05-05 13:52:32 +0100686template <typename LabelType>
687void MacroAssembler::InNewSpace(Register object,
688 Register scratch,
689 Condition cc,
690 LabelType* branch) {
691 ASSERT(cc == equal || cc == not_equal);
692 if (Serializer::enabled()) {
693 // Can't do arithmetic on external references if it might get serialized.
694 mov(scratch, Operand(object));
695 // The mask isn't really an address. We load it as an external reference in
696 // case the size of the new space is different between the snapshot maker
697 // and the running system.
698 and_(Operand(scratch), Immediate(ExternalReference::new_space_mask()));
699 cmp(Operand(scratch), Immediate(ExternalReference::new_space_start()));
700 j(cc, branch);
701 } else {
702 int32_t new_space_start = reinterpret_cast<int32_t>(
703 ExternalReference::new_space_start().address());
704 lea(scratch, Operand(object, -new_space_start));
705 and_(scratch, Heap::NewSpaceMask());
706 j(cc, branch);
707 }
708}
709
710
Steve Blocka7e24c12009-10-30 11:49:00 +0000711// The code patcher is used to patch (typically) small parts of code e.g. for
712// debugging and other types of instrumentation. When using the code patcher
713// the exact number of bytes specified must be emitted. Is not legal to emit
714// relocation information. If any of these constraints are violated it causes
715// an assertion.
716class CodePatcher {
717 public:
718 CodePatcher(byte* address, int size);
719 virtual ~CodePatcher();
720
721 // Macro assembler to emit code.
722 MacroAssembler* masm() { return &masm_; }
723
724 private:
725 byte* address_; // The address of the code being patched.
726 int size_; // Number of bytes of the expected patch size.
727 MacroAssembler masm_; // Macro assembler used to generate the code.
728};
729
730
Ben Murdochb0fe1622011-05-05 13:52:32 +0100731// Helper class for generating code or data associated with the code
732// right after a call instruction. As an example this can be used to
733// generate safepoint data after calls for crankshaft.
734class PostCallGenerator {
735 public:
736 PostCallGenerator() { }
737 virtual ~PostCallGenerator() { }
738 virtual void Generate() = 0;
739};
740
741
Steve Blocka7e24c12009-10-30 11:49:00 +0000742// -----------------------------------------------------------------------------
743// Static helper functions.
744
745// Generate an Operand for loading a field from an object.
746static inline Operand FieldOperand(Register object, int offset) {
747 return Operand(object, offset - kHeapObjectTag);
748}
749
750
751// Generate an Operand for loading an indexed field from an object.
752static inline Operand FieldOperand(Register object,
753 Register index,
754 ScaleFactor scale,
755 int offset) {
756 return Operand(object, index, scale, offset - kHeapObjectTag);
757}
758
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800759
760static inline Operand ContextOperand(Register context, int index) {
761 return Operand(context, Context::SlotOffset(index));
762}
763
764
765static inline Operand GlobalObjectOperand() {
766 return ContextOperand(esi, Context::GLOBAL_INDEX);
767}
768
769
John Reck59135872010-11-02 12:39:01 -0700770// Generates an Operand for saving parameters after PrepareCallApiFunction.
771Operand ApiParameterOperand(int index);
772
Steve Blocka7e24c12009-10-30 11:49:00 +0000773
774#ifdef GENERATED_CODE_COVERAGE
775extern void LogGeneratedCodeCoverage(const char* file_line);
776#define CODE_COVERAGE_STRINGIFY(x) #x
777#define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
778#define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
779#define ACCESS_MASM(masm) { \
780 byte* ia32_coverage_function = \
781 reinterpret_cast<byte*>(FUNCTION_ADDR(LogGeneratedCodeCoverage)); \
782 masm->pushfd(); \
783 masm->pushad(); \
784 masm->push(Immediate(reinterpret_cast<int>(&__FILE_LINE__))); \
785 masm->call(ia32_coverage_function, RelocInfo::RUNTIME_ENTRY); \
786 masm->pop(eax); \
787 masm->popad(); \
788 masm->popfd(); \
789 } \
790 masm->
791#else
792#define ACCESS_MASM(masm) masm->
793#endif
794
795
796} } // namespace v8::internal
797
798#endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_