blob: 64f35e10de3e50df682d9f6830410be0d30b8146 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2009 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_X64_MACRO_ASSEMBLER_X64_H_
29#define V8_X64_MACRO_ASSEMBLER_X64_H_
30
31#include "assembler.h"
32
33namespace v8 {
34namespace internal {
35
Kristian Monsen25f61362010-05-21 11:50:48 +010036// Flags used for the AllocateInNewSpace functions.
37enum AllocationFlags {
38 // No special flags.
39 NO_ALLOCATION_FLAGS = 0,
40 // Return the pointer to the allocated already tagged as a heap object.
41 TAG_OBJECT = 1 << 0,
42 // The content of the result register already contains the allocation top in
43 // new space.
44 RESULT_CONTAINS_TOP = 1 << 1
45};
46
Steve Blocka7e24c12009-10-30 11:49:00 +000047// Default scratch register used by MacroAssembler (and other code that needs
48// a spare register). The register isn't callee save, and not used by the
49// function calling convention.
Steve Block8defd9f2010-07-08 12:39:36 +010050static const Register kScratchRegister = { 10 }; // r10.
51static const Register kSmiConstantRegister = { 15 }; // r15 (callee save).
52static const Register kRootRegister = { 13 }; // r13 (callee save).
53// Value of smi in kSmiConstantRegister.
54static const int kSmiConstantRegisterValue = 1;
Steve Blocka7e24c12009-10-30 11:49:00 +000055
Leon Clarkee46be812010-01-19 14:06:41 +000056// Convenience for platform-independent signatures.
57typedef Operand MemOperand;
58
Steve Blocka7e24c12009-10-30 11:49:00 +000059// Forward declaration.
60class JumpTarget;
61
62struct SmiIndex {
63 SmiIndex(Register index_register, ScaleFactor scale)
64 : reg(index_register),
65 scale(scale) {}
66 Register reg;
67 ScaleFactor scale;
68};
69
70// MacroAssembler implements a collection of frequently used macros.
71class MacroAssembler: public Assembler {
72 public:
73 MacroAssembler(void* buffer, int size);
74
75 void LoadRoot(Register destination, Heap::RootListIndex index);
76 void CompareRoot(Register with, Heap::RootListIndex index);
77 void CompareRoot(Operand with, Heap::RootListIndex index);
78 void PushRoot(Heap::RootListIndex index);
Kristian Monsen25f61362010-05-21 11:50:48 +010079 void StoreRoot(Register source, Heap::RootListIndex index);
Steve Blocka7e24c12009-10-30 11:49:00 +000080
81 // ---------------------------------------------------------------------------
82 // GC Support
83
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010084 // For page containing |object| mark region covering |addr| dirty.
85 // RecordWriteHelper only works if the object is not in new
Steve Block6ded16b2010-05-10 14:33:55 +010086 // space.
87 void RecordWriteHelper(Register object,
88 Register addr,
89 Register scratch);
90
91 // Check if object is in new space. The condition cc can be equal or
92 // not_equal. If it is equal a jump will be done if the object is on new
93 // space. The register scratch can be object itself, but it will be clobbered.
94 void InNewSpace(Register object,
95 Register scratch,
96 Condition cc,
97 Label* branch);
98
Steve Block8defd9f2010-07-08 12:39:36 +010099 // For page containing |object| mark region covering [object+offset]
100 // dirty. |object| is the object being stored into, |value| is the
101 // object being stored. If |offset| is zero, then the |scratch|
102 // register contains the array index into the elements array
103 // represented as a Smi. All registers are clobbered by the
104 // operation. RecordWrite filters out smis so it does not update the
105 // write barrier if the value is a smi.
Steve Blocka7e24c12009-10-30 11:49:00 +0000106 void RecordWrite(Register object,
107 int offset,
108 Register value,
109 Register scratch);
110
Steve Block8defd9f2010-07-08 12:39:36 +0100111 // For page containing |object| mark region covering [address]
112 // dirty. |object| is the object being stored into, |value| is the
113 // object being stored. All registers are clobbered by the
114 // operation. RecordWrite filters out smis so it does not update
115 // the write barrier if the value is a smi.
116 void RecordWrite(Register object,
117 Register address,
118 Register value);
119
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100120 // For page containing |object| mark region covering [object+offset] dirty.
Steve Block3ce2e202009-11-05 08:53:23 +0000121 // The value is known to not be a smi.
122 // object is the object being stored into, value is the object being stored.
123 // If offset is zero, then the scratch register contains the array index into
124 // the elements array represented as a Smi.
125 // All registers are clobbered by the operation.
126 void RecordWriteNonSmi(Register object,
127 int offset,
128 Register value,
129 Register scratch);
130
Steve Blocka7e24c12009-10-30 11:49:00 +0000131#ifdef ENABLE_DEBUGGER_SUPPORT
132 // ---------------------------------------------------------------------------
133 // Debugger Support
134
135 void SaveRegistersToMemory(RegList regs);
136 void RestoreRegistersFromMemory(RegList regs);
137 void PushRegistersFromMemory(RegList regs);
138 void PopRegistersToMemory(RegList regs);
139 void CopyRegistersFromStackToMemory(Register base,
140 Register scratch,
141 RegList regs);
Andrei Popescu402d9372010-02-26 13:31:12 +0000142 void DebugBreak();
Steve Blocka7e24c12009-10-30 11:49:00 +0000143#endif
144
145 // ---------------------------------------------------------------------------
Steve Blockd0582a62009-12-15 09:54:21 +0000146 // Stack limit support
147
148 // Do simple test for stack overflow. This doesn't handle an overflow.
149 void StackLimitCheck(Label* on_stack_limit_hit);
150
151 // ---------------------------------------------------------------------------
Steve Blocka7e24c12009-10-30 11:49:00 +0000152 // Activation frames
153
154 void EnterInternalFrame() { EnterFrame(StackFrame::INTERNAL); }
155 void LeaveInternalFrame() { LeaveFrame(StackFrame::INTERNAL); }
156
157 void EnterConstructFrame() { EnterFrame(StackFrame::CONSTRUCT); }
158 void LeaveConstructFrame() { LeaveFrame(StackFrame::CONSTRUCT); }
159
Steve Blockd0582a62009-12-15 09:54:21 +0000160 // Enter specific kind of exit frame; either in normal or
161 // debug mode. Expects the number of arguments in register rax and
Steve Blocka7e24c12009-10-30 11:49:00 +0000162 // sets up the number of arguments in register rdi and the pointer
163 // to the first argument in register rsi.
Steve Blockd0582a62009-12-15 09:54:21 +0000164 void EnterExitFrame(ExitFrame::Mode mode, int result_size = 1);
Steve Blocka7e24c12009-10-30 11:49:00 +0000165
166 // Leave the current exit frame. Expects/provides the return value in
167 // register rax:rdx (untouched) and the pointer to the first
168 // argument in register rsi.
Steve Blockd0582a62009-12-15 09:54:21 +0000169 void LeaveExitFrame(ExitFrame::Mode mode, int result_size = 1);
Steve Blocka7e24c12009-10-30 11:49:00 +0000170
171
172 // ---------------------------------------------------------------------------
173 // JavaScript invokes
174
175 // Invoke the JavaScript function code by either calling or jumping.
176 void InvokeCode(Register code,
177 const ParameterCount& expected,
178 const ParameterCount& actual,
179 InvokeFlag flag);
180
181 void InvokeCode(Handle<Code> code,
182 const ParameterCount& expected,
183 const ParameterCount& actual,
184 RelocInfo::Mode rmode,
185 InvokeFlag flag);
186
187 // Invoke the JavaScript function in the given register. Changes the
188 // current context to the context in the function before invoking.
189 void InvokeFunction(Register function,
190 const ParameterCount& actual,
191 InvokeFlag flag);
192
Andrei Popescu402d9372010-02-26 13:31:12 +0000193 void InvokeFunction(JSFunction* function,
194 const ParameterCount& actual,
195 InvokeFlag flag);
196
Steve Blocka7e24c12009-10-30 11:49:00 +0000197 // Invoke specified builtin JavaScript function. Adds an entry to
198 // the unresolved list if the name does not resolve.
199 void InvokeBuiltin(Builtins::JavaScript id, InvokeFlag flag);
200
201 // Store the code object for the given builtin in the target register.
202 void GetBuiltinEntry(Register target, Builtins::JavaScript id);
203
204
205 // ---------------------------------------------------------------------------
206 // Smi tagging, untagging and operations on tagged smis.
207
Steve Block8defd9f2010-07-08 12:39:36 +0100208 void InitializeSmiConstantRegister() {
209 movq(kSmiConstantRegister,
210 reinterpret_cast<uint64_t>(Smi::FromInt(kSmiConstantRegisterValue)),
211 RelocInfo::NONE);
212 }
213
Steve Blocka7e24c12009-10-30 11:49:00 +0000214 // Conversions between tagged smi values and non-tagged integer values.
215
216 // Tag an integer value. The result must be known to be a valid smi value.
Leon Clarke4515c472010-02-03 11:58:03 +0000217 // Only uses the low 32 bits of the src register. Sets the N and Z flags
218 // based on the value of the resulting integer.
Steve Blocka7e24c12009-10-30 11:49:00 +0000219 void Integer32ToSmi(Register dst, Register src);
220
221 // Tag an integer value if possible, or jump the integer value cannot be
222 // represented as a smi. Only uses the low 32 bit of the src registers.
Steve Block3ce2e202009-11-05 08:53:23 +0000223 // NOTICE: Destroys the dst register even if unsuccessful!
Steve Blocka7e24c12009-10-30 11:49:00 +0000224 void Integer32ToSmi(Register dst, Register src, Label* on_overflow);
225
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100226 // Stores an integer32 value into a memory field that already holds a smi.
227 void Integer32ToSmiField(const Operand& dst, Register src);
228
Steve Blocka7e24c12009-10-30 11:49:00 +0000229 // Adds constant to src and tags the result as a smi.
230 // Result must be a valid smi.
Steve Block3ce2e202009-11-05 08:53:23 +0000231 void Integer64PlusConstantToSmi(Register dst, Register src, int constant);
Steve Blocka7e24c12009-10-30 11:49:00 +0000232
233 // Convert smi to 32-bit integer. I.e., not sign extended into
234 // high 32 bits of destination.
235 void SmiToInteger32(Register dst, Register src);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100236 void SmiToInteger32(Register dst, const Operand& src);
Steve Blocka7e24c12009-10-30 11:49:00 +0000237
238 // Convert smi to 64-bit integer (sign extended if necessary).
239 void SmiToInteger64(Register dst, Register src);
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100240 void SmiToInteger64(Register dst, const Operand& src);
Steve Blocka7e24c12009-10-30 11:49:00 +0000241
242 // Multiply a positive smi's integer value by a power of two.
243 // Provides result as 64-bit integer value.
244 void PositiveSmiTimesPowerOfTwoToInteger64(Register dst,
245 Register src,
246 int power);
247
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100248 // Divide a positive smi's integer value by a power of two.
249 // Provides result as 32-bit integer value.
250 void PositiveSmiDivPowerOfTwoToInteger32(Register dst,
251 Register src,
252 int power);
253
254
Steve Block3ce2e202009-11-05 08:53:23 +0000255 // Simple comparison of smis.
256 void SmiCompare(Register dst, Register src);
257 void SmiCompare(Register dst, Smi* src);
Steve Block6ded16b2010-05-10 14:33:55 +0100258 void SmiCompare(Register dst, const Operand& src);
Steve Block3ce2e202009-11-05 08:53:23 +0000259 void SmiCompare(const Operand& dst, Register src);
260 void SmiCompare(const Operand& dst, Smi* src);
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100261 // Compare the int32 in src register to the value of the smi stored at dst.
262 void SmiCompareInteger32(const Operand& dst, Register src);
Steve Block3ce2e202009-11-05 08:53:23 +0000263 // Sets sign and zero flags depending on value of smi in register.
264 void SmiTest(Register src);
265
Steve Blocka7e24c12009-10-30 11:49:00 +0000266 // Functions performing a check on a known or potential smi. Returns
267 // a condition that is satisfied if the check is successful.
268
269 // Is the value a tagged smi.
270 Condition CheckSmi(Register src);
271
Steve Blocka7e24c12009-10-30 11:49:00 +0000272 // Is the value a positive tagged smi.
273 Condition CheckPositiveSmi(Register src);
274
Leon Clarkee46be812010-01-19 14:06:41 +0000275 // Are both values tagged smis.
Steve Blocka7e24c12009-10-30 11:49:00 +0000276 Condition CheckBothSmi(Register first, Register second);
277
Leon Clarked91b9f72010-01-27 17:25:45 +0000278 // Are both values tagged smis.
279 Condition CheckBothPositiveSmi(Register first, Register second);
280
Leon Clarkee46be812010-01-19 14:06:41 +0000281 // Are either value a tagged smi.
282 Condition CheckEitherSmi(Register first, Register second);
283
Steve Blocka7e24c12009-10-30 11:49:00 +0000284 // Is the value the minimum smi value (since we are using
285 // two's complement numbers, negating the value is known to yield
286 // a non-smi value).
287 Condition CheckIsMinSmi(Register src);
288
Steve Blocka7e24c12009-10-30 11:49:00 +0000289 // Checks whether an 32-bit integer value is a valid for conversion
290 // to a smi.
291 Condition CheckInteger32ValidSmiValue(Register src);
292
Steve Block3ce2e202009-11-05 08:53:23 +0000293 // Checks whether an 32-bit unsigned integer value is a valid for
294 // conversion to a smi.
295 Condition CheckUInteger32ValidSmiValue(Register src);
296
Steve Blocka7e24c12009-10-30 11:49:00 +0000297 // Test-and-jump functions. Typically combines a check function
298 // above with a conditional jump.
299
300 // Jump if the value cannot be represented by a smi.
301 void JumpIfNotValidSmiValue(Register src, Label* on_invalid);
302
Steve Block3ce2e202009-11-05 08:53:23 +0000303 // Jump if the unsigned integer value cannot be represented by a smi.
304 void JumpIfUIntNotValidSmiValue(Register src, Label* on_invalid);
305
Steve Blocka7e24c12009-10-30 11:49:00 +0000306 // Jump to label if the value is a tagged smi.
307 void JumpIfSmi(Register src, Label* on_smi);
308
309 // Jump to label if the value is not a tagged smi.
310 void JumpIfNotSmi(Register src, Label* on_not_smi);
311
312 // Jump to label if the value is not a positive tagged smi.
313 void JumpIfNotPositiveSmi(Register src, Label* on_not_smi);
314
Steve Block3ce2e202009-11-05 08:53:23 +0000315 // Jump to label if the value, which must be a tagged smi, has value equal
Steve Blocka7e24c12009-10-30 11:49:00 +0000316 // to the constant.
Steve Block3ce2e202009-11-05 08:53:23 +0000317 void JumpIfSmiEqualsConstant(Register src, Smi* constant, Label* on_equals);
Steve Blocka7e24c12009-10-30 11:49:00 +0000318
319 // Jump if either or both register are not smi values.
320 void JumpIfNotBothSmi(Register src1, Register src2, Label* on_not_both_smi);
321
Leon Clarked91b9f72010-01-27 17:25:45 +0000322 // Jump if either or both register are not positive smi values.
323 void JumpIfNotBothPositiveSmi(Register src1, Register src2,
324 Label* on_not_both_smi);
325
Steve Blocka7e24c12009-10-30 11:49:00 +0000326 // Operations on tagged smi values.
327
328 // Smis represent a subset of integers. The subset is always equivalent to
329 // a two's complement interpretation of a fixed number of bits.
330
331 // Optimistically adds an integer constant to a supposed smi.
332 // If the src is not a smi, or the result is not a smi, jump to
333 // the label.
334 void SmiTryAddConstant(Register dst,
335 Register src,
Steve Block3ce2e202009-11-05 08:53:23 +0000336 Smi* constant,
Steve Blocka7e24c12009-10-30 11:49:00 +0000337 Label* on_not_smi_result);
338
Steve Block3ce2e202009-11-05 08:53:23 +0000339 // Add an integer constant to a tagged smi, giving a tagged smi as result.
340 // No overflow testing on the result is done.
341 void SmiAddConstant(Register dst, Register src, Smi* constant);
342
Leon Clarkef7060e22010-06-03 12:02:55 +0100343 // Add an integer constant to a tagged smi, giving a tagged smi as result.
344 // No overflow testing on the result is done.
345 void SmiAddConstant(const Operand& dst, Smi* constant);
346
Steve Blocka7e24c12009-10-30 11:49:00 +0000347 // Add an integer constant to a tagged smi, giving a tagged smi as result,
348 // or jumping to a label if the result cannot be represented by a smi.
Steve Blocka7e24c12009-10-30 11:49:00 +0000349 void SmiAddConstant(Register dst,
350 Register src,
Steve Block3ce2e202009-11-05 08:53:23 +0000351 Smi* constant,
Steve Blocka7e24c12009-10-30 11:49:00 +0000352 Label* on_not_smi_result);
353
354 // Subtract an integer constant from a tagged smi, giving a tagged smi as
Steve Block6ded16b2010-05-10 14:33:55 +0100355 // result. No testing on the result is done. Sets the N and Z flags
356 // based on the value of the resulting integer.
Steve Block3ce2e202009-11-05 08:53:23 +0000357 void SmiSubConstant(Register dst, Register src, Smi* constant);
358
359 // Subtract an integer constant from a tagged smi, giving a tagged smi as
Steve Blocka7e24c12009-10-30 11:49:00 +0000360 // result, or jumping to a label if the result cannot be represented by a smi.
Steve Blocka7e24c12009-10-30 11:49:00 +0000361 void SmiSubConstant(Register dst,
362 Register src,
Steve Block3ce2e202009-11-05 08:53:23 +0000363 Smi* constant,
Steve Blocka7e24c12009-10-30 11:49:00 +0000364 Label* on_not_smi_result);
365
366 // Negating a smi can give a negative zero or too large positive value.
Steve Block3ce2e202009-11-05 08:53:23 +0000367 // NOTICE: This operation jumps on success, not failure!
Steve Blocka7e24c12009-10-30 11:49:00 +0000368 void SmiNeg(Register dst,
369 Register src,
Steve Block3ce2e202009-11-05 08:53:23 +0000370 Label* on_smi_result);
Steve Blocka7e24c12009-10-30 11:49:00 +0000371
372 // Adds smi values and return the result as a smi.
373 // If dst is src1, then src1 will be destroyed, even if
374 // the operation is unsuccessful.
375 void SmiAdd(Register dst,
376 Register src1,
377 Register src2,
378 Label* on_not_smi_result);
379
380 // Subtracts smi values and return the result as a smi.
381 // If dst is src1, then src1 will be destroyed, even if
382 // the operation is unsuccessful.
383 void SmiSub(Register dst,
384 Register src1,
385 Register src2,
386 Label* on_not_smi_result);
387
Steve Block6ded16b2010-05-10 14:33:55 +0100388 void SmiSub(Register dst,
389 Register src1,
Leon Clarkef7060e22010-06-03 12:02:55 +0100390 const Operand& src2,
Steve Block6ded16b2010-05-10 14:33:55 +0100391 Label* on_not_smi_result);
392
Steve Blocka7e24c12009-10-30 11:49:00 +0000393 // Multiplies smi values and return the result as a smi,
394 // if possible.
395 // If dst is src1, then src1 will be destroyed, even if
396 // the operation is unsuccessful.
397 void SmiMul(Register dst,
398 Register src1,
399 Register src2,
400 Label* on_not_smi_result);
401
402 // Divides one smi by another and returns the quotient.
403 // Clobbers rax and rdx registers.
404 void SmiDiv(Register dst,
405 Register src1,
406 Register src2,
407 Label* on_not_smi_result);
408
409 // Divides one smi by another and returns the remainder.
410 // Clobbers rax and rdx registers.
411 void SmiMod(Register dst,
412 Register src1,
413 Register src2,
414 Label* on_not_smi_result);
415
416 // Bitwise operations.
417 void SmiNot(Register dst, Register src);
418 void SmiAnd(Register dst, Register src1, Register src2);
419 void SmiOr(Register dst, Register src1, Register src2);
420 void SmiXor(Register dst, Register src1, Register src2);
Steve Block3ce2e202009-11-05 08:53:23 +0000421 void SmiAndConstant(Register dst, Register src1, Smi* constant);
422 void SmiOrConstant(Register dst, Register src1, Smi* constant);
423 void SmiXorConstant(Register dst, Register src1, Smi* constant);
Steve Blocka7e24c12009-10-30 11:49:00 +0000424
425 void SmiShiftLeftConstant(Register dst,
426 Register src,
Kristian Monsen25f61362010-05-21 11:50:48 +0100427 int shift_value);
Steve Blocka7e24c12009-10-30 11:49:00 +0000428 void SmiShiftLogicalRightConstant(Register dst,
429 Register src,
430 int shift_value,
431 Label* on_not_smi_result);
432 void SmiShiftArithmeticRightConstant(Register dst,
433 Register src,
434 int shift_value);
435
436 // Shifts a smi value to the left, and returns the result if that is a smi.
437 // Uses and clobbers rcx, so dst may not be rcx.
438 void SmiShiftLeft(Register dst,
439 Register src1,
Kristian Monsen25f61362010-05-21 11:50:48 +0100440 Register src2);
Steve Blocka7e24c12009-10-30 11:49:00 +0000441 // Shifts a smi value to the right, shifting in zero bits at the top, and
442 // returns the unsigned intepretation of the result if that is a smi.
443 // Uses and clobbers rcx, so dst may not be rcx.
444 void SmiShiftLogicalRight(Register dst,
445 Register src1,
446 Register src2,
447 Label* on_not_smi_result);
448 // Shifts a smi value to the right, sign extending the top, and
449 // returns the signed intepretation of the result. That will always
450 // be a valid smi value, since it's numerically smaller than the
451 // original.
452 // Uses and clobbers rcx, so dst may not be rcx.
453 void SmiShiftArithmeticRight(Register dst,
454 Register src1,
455 Register src2);
456
457 // Specialized operations
458
459 // Select the non-smi register of two registers where exactly one is a
460 // smi. If neither are smis, jump to the failure label.
461 void SelectNonSmi(Register dst,
462 Register src1,
463 Register src2,
464 Label* on_not_smis);
465
466 // Converts, if necessary, a smi to a combination of number and
467 // multiplier to be used as a scaled index.
468 // The src register contains a *positive* smi value. The shift is the
469 // power of two to multiply the index value by (e.g.
470 // to index by smi-value * kPointerSize, pass the smi and kPointerSizeLog2).
471 // The returned index register may be either src or dst, depending
472 // on what is most efficient. If src and dst are different registers,
473 // src is always unchanged.
474 SmiIndex SmiToIndex(Register dst, Register src, int shift);
475
476 // Converts a positive smi to a negative index.
477 SmiIndex SmiToNegativeIndex(Register dst, Register src, int shift);
478
Steve Block3ce2e202009-11-05 08:53:23 +0000479 // Basic Smi operations.
480 void Move(Register dst, Smi* source) {
Steve Block8defd9f2010-07-08 12:39:36 +0100481 LoadSmiConstant(dst, source);
Steve Block3ce2e202009-11-05 08:53:23 +0000482 }
483
484 void Move(const Operand& dst, Smi* source) {
Steve Block8defd9f2010-07-08 12:39:36 +0100485 Register constant = GetSmiConstant(source);
486 movq(dst, constant);
Steve Block3ce2e202009-11-05 08:53:23 +0000487 }
488
489 void Push(Smi* smi);
490 void Test(const Operand& dst, Smi* source);
491
Steve Blocka7e24c12009-10-30 11:49:00 +0000492 // ---------------------------------------------------------------------------
Leon Clarkee46be812010-01-19 14:06:41 +0000493 // String macros.
494 void JumpIfNotBothSequentialAsciiStrings(Register first_object,
495 Register second_object,
496 Register scratch1,
497 Register scratch2,
498 Label* on_not_both_flat_ascii);
499
Steve Block6ded16b2010-05-10 14:33:55 +0100500 // Check whether the instance type represents a flat ascii string. Jump to the
501 // label if not. If the instance type can be scratched specify same register
502 // for both instance type and scratch.
503 void JumpIfInstanceTypeIsNotSequentialAscii(Register instance_type,
504 Register scratch,
505 Label *on_not_flat_ascii_string);
506
507 void JumpIfBothInstanceTypesAreNotSequentialAscii(
508 Register first_object_instance_type,
509 Register second_object_instance_type,
510 Register scratch1,
511 Register scratch2,
512 Label* on_fail);
513
Leon Clarkee46be812010-01-19 14:06:41 +0000514 // ---------------------------------------------------------------------------
515 // Macro instructions.
Steve Blocka7e24c12009-10-30 11:49:00 +0000516
Steve Block3ce2e202009-11-05 08:53:23 +0000517 // Load a register with a long value as efficiently as possible.
Steve Blocka7e24c12009-10-30 11:49:00 +0000518 void Set(Register dst, int64_t x);
519 void Set(const Operand& dst, int64_t x);
520
521 // Handle support
Steve Blocka7e24c12009-10-30 11:49:00 +0000522 void Move(Register dst, Handle<Object> source);
523 void Move(const Operand& dst, Handle<Object> source);
524 void Cmp(Register dst, Handle<Object> source);
525 void Cmp(const Operand& dst, Handle<Object> source);
526 void Push(Handle<Object> source);
Steve Blocka7e24c12009-10-30 11:49:00 +0000527
Leon Clarkee46be812010-01-19 14:06:41 +0000528 // Emit code to discard a non-negative number of pointer-sized elements
529 // from the stack, clobbering only the rsp register.
530 void Drop(int stack_elements);
531
532 void Call(Label* target) { call(target); }
533
Steve Blocka7e24c12009-10-30 11:49:00 +0000534 // Control Flow
535 void Jump(Address destination, RelocInfo::Mode rmode);
536 void Jump(ExternalReference ext);
537 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode);
538
539 void Call(Address destination, RelocInfo::Mode rmode);
540 void Call(ExternalReference ext);
541 void Call(Handle<Code> code_object, RelocInfo::Mode rmode);
542
543 // Compare object type for heap object.
544 // Always use unsigned comparisons: above and below, not less and greater.
545 // Incoming register is heap_object and outgoing register is map.
546 // They may be the same register, and may be kScratchRegister.
547 void CmpObjectType(Register heap_object, InstanceType type, Register map);
548
549 // Compare instance type for map.
550 // Always use unsigned comparisons: above and below, not less and greater.
551 void CmpInstanceType(Register map, InstanceType type);
552
Andrei Popescu31002712010-02-23 13:46:05 +0000553 // Check if the map of an object is equal to a specified map and
554 // branch to label if not. Skip the smi check if not required
555 // (object is known to be a heap object)
556 void CheckMap(Register obj,
557 Handle<Map> map,
558 Label* fail,
559 bool is_heap_object);
560
Leon Clarked91b9f72010-01-27 17:25:45 +0000561 // Check if the object in register heap_object is a string. Afterwards the
562 // register map contains the object map and the register instance_type
563 // contains the instance_type. The registers map and instance_type can be the
564 // same in which case it contains the instance type afterwards. Either of the
565 // registers map and instance_type can be the same as heap_object.
566 Condition IsObjectStringType(Register heap_object,
567 Register map,
568 Register instance_type);
569
Steve Block8defd9f2010-07-08 12:39:36 +0100570 // FCmp compares and pops the two values on top of the FPU stack.
571 // The flag results are similar to integer cmp, but requires unsigned
Steve Blocka7e24c12009-10-30 11:49:00 +0000572 // jcc instructions (je, ja, jae, jb, jbe, je, and jz).
573 void FCmp();
574
Andrei Popescu402d9372010-02-26 13:31:12 +0000575 // Abort execution if argument is not a number. Used in debug code.
Leon Clarkef7060e22010-06-03 12:02:55 +0100576 void AbortIfNotNumber(Register object);
Andrei Popescu402d9372010-02-26 13:31:12 +0000577
Steve Block6ded16b2010-05-10 14:33:55 +0100578 // Abort execution if argument is not a smi. Used in debug code.
Leon Clarkef7060e22010-06-03 12:02:55 +0100579 void AbortIfNotSmi(Register object);
Steve Block6ded16b2010-05-10 14:33:55 +0100580
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100581 // Abort execution if argument is not the root value with the given index.
582 void AbortIfNotRootValue(Register src,
583 Heap::RootListIndex root_value_index,
584 const char* message);
585
Steve Blocka7e24c12009-10-30 11:49:00 +0000586 // ---------------------------------------------------------------------------
587 // Exception handling
588
589 // Push a new try handler and link into try handler chain. The return
590 // address must be pushed before calling this helper.
591 void PushTryHandler(CodeLocation try_location, HandlerType type);
592
Leon Clarkee46be812010-01-19 14:06:41 +0000593 // Unlink the stack handler on top of the stack from the try handler chain.
594 void PopTryHandler();
Steve Blocka7e24c12009-10-30 11:49:00 +0000595
596 // ---------------------------------------------------------------------------
597 // Inline caching support
598
Steve Blocka7e24c12009-10-30 11:49:00 +0000599 // Generate code for checking access rights - used for security checks
600 // on access to global objects across environments. The holder register
601 // is left untouched, but the scratch register and kScratchRegister,
602 // which must be different, are clobbered.
603 void CheckAccessGlobalProxy(Register holder_reg,
604 Register scratch,
605 Label* miss);
606
607
608 // ---------------------------------------------------------------------------
609 // Allocation support
610
611 // Allocate an object in new space. If the new space is exhausted control
612 // continues at the gc_required label. The allocated object is returned in
613 // result and end of the new object is returned in result_end. The register
614 // scratch can be passed as no_reg in which case an additional object
615 // reference will be added to the reloc info. The returned pointers in result
616 // and result_end have not yet been tagged as heap objects. If
617 // result_contains_top_on_entry is true the content of result is known to be
618 // the allocation top on entry (could be result_end from a previous call to
619 // AllocateInNewSpace). If result_contains_top_on_entry is true scratch
620 // should be no_reg as it is never used.
621 void AllocateInNewSpace(int object_size,
622 Register result,
623 Register result_end,
624 Register scratch,
625 Label* gc_required,
626 AllocationFlags flags);
627
628 void AllocateInNewSpace(int header_size,
629 ScaleFactor element_size,
630 Register element_count,
631 Register result,
632 Register result_end,
633 Register scratch,
634 Label* gc_required,
635 AllocationFlags flags);
636
637 void AllocateInNewSpace(Register object_size,
638 Register result,
639 Register result_end,
640 Register scratch,
641 Label* gc_required,
642 AllocationFlags flags);
643
644 // Undo allocation in new space. The object passed and objects allocated after
645 // it will no longer be allocated. Make sure that no pointers are left to the
646 // object(s) no longer allocated as they would be invalid when allocation is
647 // un-done.
648 void UndoAllocationInNewSpace(Register object);
649
Steve Block3ce2e202009-11-05 08:53:23 +0000650 // Allocate a heap number in new space with undefined value. Returns
651 // tagged pointer in result register, or jumps to gc_required if new
652 // space is full.
653 void AllocateHeapNumber(Register result,
654 Register scratch,
655 Label* gc_required);
656
Leon Clarkee46be812010-01-19 14:06:41 +0000657 // Allocate a sequential string. All the header fields of the string object
658 // are initialized.
659 void AllocateTwoByteString(Register result,
660 Register length,
661 Register scratch1,
662 Register scratch2,
663 Register scratch3,
664 Label* gc_required);
665 void AllocateAsciiString(Register result,
666 Register length,
667 Register scratch1,
668 Register scratch2,
669 Register scratch3,
670 Label* gc_required);
671
672 // Allocate a raw cons string object. Only the map field of the result is
673 // initialized.
674 void AllocateConsString(Register result,
675 Register scratch1,
676 Register scratch2,
677 Label* gc_required);
678 void AllocateAsciiConsString(Register result,
679 Register scratch1,
680 Register scratch2,
681 Label* gc_required);
682
Steve Blocka7e24c12009-10-30 11:49:00 +0000683 // ---------------------------------------------------------------------------
684 // Support functions.
685
686 // Check if result is zero and op is negative.
687 void NegativeZeroTest(Register result, Register op, Label* then_label);
688
689 // Check if result is zero and op is negative in code using jump targets.
690 void NegativeZeroTest(CodeGenerator* cgen,
691 Register result,
692 Register op,
693 JumpTarget* then_target);
694
695 // Check if result is zero and any of op1 and op2 are negative.
696 // Register scratch is destroyed, and it must be different from op2.
697 void NegativeZeroTest(Register result, Register op1, Register op2,
698 Register scratch, Label* then_label);
699
700 // Try to get function prototype of a function and puts the value in
701 // the result register. Checks that the function really is a
702 // function and jumps to the miss label if the fast checks fail. The
703 // function register will be untouched; the other register may be
704 // clobbered.
705 void TryGetFunctionPrototype(Register function,
706 Register result,
707 Label* miss);
708
709 // Generates code for reporting that an illegal operation has
710 // occurred.
711 void IllegalOperation(int num_arguments);
712
Steve Blockd0582a62009-12-15 09:54:21 +0000713 // Find the function context up the context chain.
714 void LoadContext(Register dst, int context_chain_length);
715
Steve Blocka7e24c12009-10-30 11:49:00 +0000716 // ---------------------------------------------------------------------------
717 // Runtime calls
718
719 // Call a code stub.
720 void CallStub(CodeStub* stub);
721
Leon Clarkee46be812010-01-19 14:06:41 +0000722 // Tail call a code stub (jump).
723 void TailCallStub(CodeStub* stub);
724
Steve Blocka7e24c12009-10-30 11:49:00 +0000725 // Return from a code stub after popping its arguments.
726 void StubReturn(int argc);
727
728 // Call a runtime routine.
Steve Blocka7e24c12009-10-30 11:49:00 +0000729 void CallRuntime(Runtime::Function* f, int num_arguments);
730
731 // Convenience function: Same as above, but takes the fid instead.
732 void CallRuntime(Runtime::FunctionId id, int num_arguments);
733
Andrei Popescu402d9372010-02-26 13:31:12 +0000734 // Convenience function: call an external reference.
735 void CallExternalReference(const ExternalReference& ext,
736 int num_arguments);
737
Steve Blocka7e24c12009-10-30 11:49:00 +0000738 // Tail call of a runtime routine (jump).
Steve Block6ded16b2010-05-10 14:33:55 +0100739 // Like JumpToExternalReference, but also takes care of passing the number
740 // of parameters.
741 void TailCallExternalReference(const ExternalReference& ext,
742 int num_arguments,
743 int result_size);
744
745 // Convenience function: tail call a runtime routine (jump).
746 void TailCallRuntime(Runtime::FunctionId fid,
Steve Blocka7e24c12009-10-30 11:49:00 +0000747 int num_arguments,
748 int result_size);
749
750 // Jump to a runtime routine.
Steve Block6ded16b2010-05-10 14:33:55 +0100751 void JumpToExternalReference(const ExternalReference& ext, int result_size);
Steve Blocka7e24c12009-10-30 11:49:00 +0000752
Leon Clarke4515c472010-02-03 11:58:03 +0000753 // Before calling a C-function from generated code, align arguments on stack.
754 // After aligning the frame, arguments must be stored in esp[0], esp[4],
755 // etc., not pushed. The argument count assumes all arguments are word sized.
756 // The number of slots reserved for arguments depends on platform. On Windows
757 // stack slots are reserved for the arguments passed in registers. On other
758 // platforms stack slots are only reserved for the arguments actually passed
759 // on the stack.
760 void PrepareCallCFunction(int num_arguments);
761
762 // Calls a C function and cleans up the space for arguments allocated
763 // by PrepareCallCFunction. The called function is not allowed to trigger a
764 // garbage collection, since that might move the code and invalidate the
765 // return address (unless this is somehow accounted for by the called
766 // function).
767 void CallCFunction(ExternalReference function, int num_arguments);
768 void CallCFunction(Register function, int num_arguments);
769
770 // Calculate the number of stack slots to reserve for arguments when calling a
771 // C function.
772 int ArgumentStackSlotsForCFunctionCall(int num_arguments);
Steve Blocka7e24c12009-10-30 11:49:00 +0000773
774 // ---------------------------------------------------------------------------
775 // Utilities
776
777 void Ret();
778
Steve Blocka7e24c12009-10-30 11:49:00 +0000779 Handle<Object> CodeObject() { return code_object_; }
780
781
782 // ---------------------------------------------------------------------------
783 // StatsCounter support
784
785 void SetCounter(StatsCounter* counter, int value);
786 void IncrementCounter(StatsCounter* counter, int value);
787 void DecrementCounter(StatsCounter* counter, int value);
788
789
790 // ---------------------------------------------------------------------------
791 // Debugging
792
793 // Calls Abort(msg) if the condition cc is not satisfied.
794 // Use --debug_code to enable.
795 void Assert(Condition cc, const char* msg);
796
797 // Like Assert(), but always enabled.
798 void Check(Condition cc, const char* msg);
799
800 // Print a message to stdout and abort execution.
801 void Abort(const char* msg);
802
Steve Block6ded16b2010-05-10 14:33:55 +0100803 // Check that the stack is aligned.
804 void CheckStackAlignment();
805
Steve Blocka7e24c12009-10-30 11:49:00 +0000806 // Verify restrictions about code generated in stubs.
807 void set_generating_stub(bool value) { generating_stub_ = value; }
808 bool generating_stub() { return generating_stub_; }
809 void set_allow_stub_calls(bool value) { allow_stub_calls_ = value; }
810 bool allow_stub_calls() { return allow_stub_calls_; }
811
812 private:
Steve Blocka7e24c12009-10-30 11:49:00 +0000813 bool generating_stub_;
814 bool allow_stub_calls_;
Steve Block8defd9f2010-07-08 12:39:36 +0100815
816 // Returns a register holding the smi value. The register MUST NOT be
817 // modified. It may be the "smi 1 constant" register.
818 Register GetSmiConstant(Smi* value);
819
820 // Moves the smi value to the destination register.
821 void LoadSmiConstant(Register dst, Smi* value);
822
Andrei Popescu31002712010-02-23 13:46:05 +0000823 // This handle will be patched with the code object on installation.
824 Handle<Object> code_object_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000825
826 // Helper functions for generating invokes.
827 void InvokePrologue(const ParameterCount& expected,
828 const ParameterCount& actual,
829 Handle<Code> code_constant,
830 Register code_register,
831 Label* done,
832 InvokeFlag flag);
833
Steve Blocka7e24c12009-10-30 11:49:00 +0000834 // Activation support.
835 void EnterFrame(StackFrame::Type type);
836 void LeaveFrame(StackFrame::Type type);
837
838 // Allocation support helpers.
Steve Block6ded16b2010-05-10 14:33:55 +0100839 // Loads the top of new-space into the result register.
840 // If flags contains RESULT_CONTAINS_TOP then result_end is valid and
841 // already contains the top of new-space, and scratch is invalid.
842 // Otherwise the address of the new-space top is loaded into scratch (if
843 // scratch is valid), and the new-space top is loaded into result.
Steve Blocka7e24c12009-10-30 11:49:00 +0000844 void LoadAllocationTopHelper(Register result,
845 Register result_end,
846 Register scratch,
847 AllocationFlags flags);
Steve Block6ded16b2010-05-10 14:33:55 +0100848 // Update allocation top with value in result_end register.
849 // If scratch is valid, it contains the address of the allocation top.
Steve Blocka7e24c12009-10-30 11:49:00 +0000850 void UpdateAllocationTopHelper(Register result_end, Register scratch);
851};
852
853
854// The code patcher is used to patch (typically) small parts of code e.g. for
855// debugging and other types of instrumentation. When using the code patcher
856// the exact number of bytes specified must be emitted. Is not legal to emit
857// relocation information. If any of these constraints are violated it causes
858// an assertion.
859class CodePatcher {
860 public:
861 CodePatcher(byte* address, int size);
862 virtual ~CodePatcher();
863
864 // Macro assembler to emit code.
865 MacroAssembler* masm() { return &masm_; }
866
867 private:
868 byte* address_; // The address of the code being patched.
869 int size_; // Number of bytes of the expected patch size.
870 MacroAssembler masm_; // Macro assembler used to generate the code.
871};
872
873
874// -----------------------------------------------------------------------------
875// Static helper functions.
876
877// Generate an Operand for loading a field from an object.
878static inline Operand FieldOperand(Register object, int offset) {
879 return Operand(object, offset - kHeapObjectTag);
880}
881
882
883// Generate an Operand for loading an indexed field from an object.
884static inline Operand FieldOperand(Register object,
885 Register index,
886 ScaleFactor scale,
887 int offset) {
888 return Operand(object, index, scale, offset - kHeapObjectTag);
889}
890
891
892#ifdef GENERATED_CODE_COVERAGE
893extern void LogGeneratedCodeCoverage(const char* file_line);
894#define CODE_COVERAGE_STRINGIFY(x) #x
895#define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
896#define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
897#define ACCESS_MASM(masm) { \
898 byte* x64_coverage_function = \
899 reinterpret_cast<byte*>(FUNCTION_ADDR(LogGeneratedCodeCoverage)); \
900 masm->pushfd(); \
901 masm->pushad(); \
902 masm->push(Immediate(reinterpret_cast<int>(&__FILE_LINE__))); \
903 masm->call(x64_coverage_function, RelocInfo::RUNTIME_ENTRY); \
904 masm->pop(rax); \
905 masm->popad(); \
906 masm->popfd(); \
907 } \
908 masm->
909#else
910#define ACCESS_MASM(masm) masm->
911#endif
912
913
914} } // namespace v8::internal
915
916#endif // V8_X64_MACRO_ASSEMBLER_X64_H_