]> git.saurik.com Git - apple/javascriptcore.git/blame - jit/JITInlines.h
JavaScriptCore-7600.1.4.16.1.tar.gz
[apple/javascriptcore.git] / jit / JITInlines.h
CommitLineData
9dae56ea 1/*
81345200 2 * Copyright (C) 2008, 2012, 2013 Apple Inc. All rights reserved.
9dae56ea
A
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
93a37866
A
26#ifndef JITInlines_h
27#define JITInlines_h
9dae56ea 28
9dae56ea
A
29#if ENABLE(JIT)
30
81345200
A
31#include "JSCInlines.h"
32
ba379fdc
A
33namespace JSC {
34
81345200 35ALWAYS_INLINE bool JIT::isOperandConstantImmediateDouble(int src)
f9bf01c6
A
36{
37 return m_codeBlock->isConstantRegisterIndex(src) && getConstantOperand(src).isDouble();
ba379fdc
A
38}
39
81345200 40ALWAYS_INLINE JSValue JIT::getConstantOperand(int src)
ba379fdc
A
41{
42 ASSERT(m_codeBlock->isConstantRegisterIndex(src));
43 return m_codeBlock->getConstant(src);
44}
45
93a37866 46ALWAYS_INLINE void JIT::emitPutIntToCallFrameHeader(RegisterID from, JSStack::CallFrameHeaderEntry entry)
14957cd0
A
47{
48#if USE(JSVALUE32_64)
14957cd0
A
49 store32(TrustedImm32(Int32Tag), intTagFor(entry, callFrameRegister));
50 store32(from, intPayloadFor(entry, callFrameRegister));
93a37866
A
51#else
52 store64(from, addressFor(entry, callFrameRegister));
53#endif
ba379fdc
A
54}
55
93a37866 56ALWAYS_INLINE void JIT::emitGetFromCallFrameHeaderPtr(JSStack::CallFrameHeaderEntry entry, RegisterID to, RegisterID from)
ba379fdc 57{
93a37866 58 loadPtr(Address(from, entry * sizeof(Register)), to);
ba379fdc
A
59}
60
93a37866 61ALWAYS_INLINE void JIT::emitGetFromCallFrameHeader32(JSStack::CallFrameHeaderEntry entry, RegisterID to, RegisterID from)
ba379fdc 62{
93a37866 63 load32(Address(from, entry * sizeof(Register)), to);
ba379fdc 64}
9dae56ea 65
93a37866
A
66#if USE(JSVALUE64)
67ALWAYS_INLINE void JIT::emitGetFromCallFrameHeader64(JSStack::CallFrameHeaderEntry entry, RegisterID to, RegisterID from)
68{
69 load64(Address(from, entry * sizeof(Register)), to);
93a37866
A
70}
71#endif
72
4e4e5a6f
A
73ALWAYS_INLINE void JIT::emitLoadCharacterString(RegisterID src, RegisterID dst, JumpList& failures)
74{
81345200 75 failures.append(branchStructure(NotEqual, Address(src, JSCell::structureIDOffset()), m_vm->stringStructure.get()));
14957cd0 76 failures.append(branch32(NotEqual, MacroAssembler::Address(src, ThunkHelpers::jsStringLengthOffset()), TrustedImm32(1)));
4e4e5a6f 77 loadPtr(MacroAssembler::Address(src, ThunkHelpers::jsStringValueOffset()), dst);
6fe7ccc8 78 failures.append(branchTest32(Zero, dst));
93a37866
A
79 loadPtr(MacroAssembler::Address(dst, StringImpl::flagsOffset()), regT1);
80 loadPtr(MacroAssembler::Address(dst, StringImpl::dataOffset()), dst);
6fe7ccc8
A
81
82 JumpList is16Bit;
83 JumpList cont8Bit;
93a37866 84 is16Bit.append(branchTest32(Zero, regT1, TrustedImm32(StringImpl::flagIs8Bit())));
6fe7ccc8
A
85 load8(MacroAssembler::Address(dst, 0), dst);
86 cont8Bit.append(jump());
87 is16Bit.link(this);
4e4e5a6f 88 load16(MacroAssembler::Address(dst, 0), dst);
6fe7ccc8 89 cont8Bit.link(this);
4e4e5a6f
A
90}
91
ba379fdc
A
92ALWAYS_INLINE JIT::Call JIT::emitNakedCall(CodePtr function)
93{
14957cd0 94 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeOffset is set.
ba379fdc 95 Call nakedCall = nearCall();
14957cd0 96 m_calls.append(CallRecord(nakedCall, m_bytecodeOffset, function.executableAddress()));
ba379fdc
A
97 return nakedCall;
98}
99
81345200 100ALWAYS_INLINE void JIT::updateTopCallFrame()
14957cd0 101{
81345200
A
102 ASSERT(static_cast<int>(m_bytecodeOffset) >= 0);
103#if USE(JSVALUE32_64)
104 Instruction* instruction = m_codeBlock->instructions().begin() + m_bytecodeOffset + 1;
105 uint32_t locationBits = CallFrame::Location::encodeAsBytecodeInstruction(instruction);
106#else
107 uint32_t locationBits = CallFrame::Location::encodeAsBytecodeOffset(m_bytecodeOffset + 1);
108#endif
109 store32(TrustedImm32(locationBits), intTagFor(JSStack::ArgumentCount));
110 storePtr(callFrameRegister, &m_vm->topCallFrame);
14957cd0
A
111}
112
81345200
A
113ALWAYS_INLINE MacroAssembler::Call JIT::appendCallWithExceptionCheck(const FunctionPtr& function)
114{
115 updateTopCallFrame();
116 MacroAssembler::Call call = appendCall(function);
117 exceptionCheck();
118 return call;
119}
f9bf01c6 120
81345200
A
121#if OS(WINDOWS) && CPU(X86_64)
122ALWAYS_INLINE MacroAssembler::Call JIT::appendCallWithExceptionCheckAndSlowPathReturnType(const FunctionPtr& function)
f9bf01c6 123{
81345200
A
124 updateTopCallFrame();
125 MacroAssembler::Call call = appendCallWithSlowPathReturnType(function);
126 exceptionCheck();
127 return call;
128}
f9bf01c6
A
129#endif
130
81345200
A
131ALWAYS_INLINE MacroAssembler::Call JIT::appendCallWithCallFrameRollbackOnException(const FunctionPtr& function)
132{
133 updateTopCallFrame(); // The callee is responsible for setting topCallFrame to their caller
134 MacroAssembler::Call call = appendCall(function);
135 exceptionCheckWithCallFrameRollback();
136 return call;
137}
f9bf01c6 138
81345200
A
139ALWAYS_INLINE MacroAssembler::Call JIT::appendCallWithExceptionCheckSetJSValueResult(const FunctionPtr& function, int dst)
140{
141 MacroAssembler::Call call = appendCallWithExceptionCheck(function);
142#if USE(JSVALUE64)
143 emitPutVirtualRegister(dst, returnValueGPR);
144#else
145 emitStore(dst, returnValueGPR2, returnValueGPR);
14957cd0 146#endif
81345200
A
147 return call;
148}
14957cd0 149
81345200
A
150ALWAYS_INLINE MacroAssembler::Call JIT::appendCallWithExceptionCheckSetJSValueResultWithProfile(const FunctionPtr& function, int dst)
151{
152 MacroAssembler::Call call = appendCallWithExceptionCheck(function);
153 emitValueProfilingSite();
154#if USE(JSVALUE64)
155 emitPutVirtualRegister(dst, returnValueGPR);
156#else
157 emitStore(dst, returnValueGPR2, returnValueGPR);
f9bf01c6 158#endif
81345200
A
159 return call;
160}
161
162ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(C_JITOperation_E operation)
163{
164 setupArgumentsExecState();
165 return appendCallWithExceptionCheck(operation);
166}
167
168ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(C_JITOperation_EO operation, GPRReg arg)
169{
170 setupArgumentsWithExecState(arg);
171 return appendCallWithExceptionCheck(operation);
172}
173
174ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(C_JITOperation_ESt operation, Structure* structure)
175{
176 setupArgumentsWithExecState(TrustedImmPtr(structure));
177 return appendCallWithExceptionCheck(operation);
178}
179
180ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(C_JITOperation_EZ operation, int32_t arg)
181{
182 setupArgumentsWithExecState(TrustedImm32(arg));
183 return appendCallWithExceptionCheck(operation);
184}
f9bf01c6 185
81345200
A
186ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_E operation, int dst)
187{
188 setupArgumentsExecState();
189 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
190}
191
192ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EAapJcpZ operation, int dst, ArrayAllocationProfile* arg1, GPRReg arg2, int32_t arg3)
193{
194 setupArgumentsWithExecState(TrustedImmPtr(arg1), arg2, TrustedImm32(arg3));
195 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
196}
197
198ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EAapJcpZ operation, int dst, ArrayAllocationProfile* arg1, const JSValue* arg2, int32_t arg3)
199{
200 setupArgumentsWithExecState(TrustedImmPtr(arg1), TrustedImmPtr(arg2), TrustedImm32(arg3));
201 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
202}
203
204ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EC operation, int dst, JSCell* cell)
205{
206 setupArgumentsWithExecState(TrustedImmPtr(cell));
207 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
208}
209
210ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EC operation, JSCell* cell)
211{
212 setupArgumentsWithExecState(TrustedImmPtr(cell));
213 return appendCallWithExceptionCheck(operation);
214}
215
216ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EP operation, int dst, void* pointer)
217{
218 setupArgumentsWithExecState(TrustedImmPtr(pointer));
219 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
220}
221
222ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(WithProfileTag, J_JITOperation_EPc operation, int dst, Instruction* bytecodePC)
223{
224 setupArgumentsWithExecState(TrustedImmPtr(bytecodePC));
225 return appendCallWithExceptionCheckSetJSValueResultWithProfile(operation, dst);
226}
227
228ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EZ operation, int dst, int32_t arg)
229{
230 setupArgumentsWithExecState(TrustedImm32(arg));
231 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
232}
233
234ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(S_JITOperation_ECC operation, RegisterID regOp1, RegisterID regOp2)
235{
236 setupArgumentsWithExecState(regOp1, regOp2);
237 return appendCallWithExceptionCheck(operation);
238}
239
240ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(S_JITOperation_EOJss operation, RegisterID regOp1, RegisterID regOp2)
241{
242 setupArgumentsWithExecState(regOp1, regOp2);
243 return appendCallWithExceptionCheck(operation);
244}
245
246ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(Sprt_JITOperation_EZ operation, int32_t op)
247{
248#if OS(WINDOWS) && CPU(X86_64)
249 setupArgumentsWithExecStateForCallWithSlowPathReturnType(TrustedImm32(op));
250 return appendCallWithExceptionCheckAndSlowPathReturnType(operation);
251#else
252 setupArgumentsWithExecState(TrustedImm32(op));
253 return appendCallWithExceptionCheck(operation);
f9bf01c6 254#endif
f9bf01c6
A
255}
256
81345200 257ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_E operation)
f9bf01c6 258{
81345200
A
259 setupArgumentsExecState();
260 return appendCallWithExceptionCheck(operation);
261}
93a37866 262
81345200
A
263ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EC operation, RegisterID regOp)
264{
265 setupArgumentsWithExecState(regOp);
266 return appendCallWithExceptionCheck(operation);
267}
268
269ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_ECC operation, RegisterID regOp1, RegisterID regOp2)
270{
271 setupArgumentsWithExecState(regOp1, regOp2);
272 return appendCallWithExceptionCheck(operation);
273}
274
275ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EPc operation, Instruction* bytecodePC)
276{
277 setupArgumentsWithExecState(TrustedImmPtr(bytecodePC));
278 return appendCallWithExceptionCheck(operation);
279}
280
281ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EZ operation, int32_t op)
282{
283 setupArgumentsWithExecState(TrustedImm32(op));
284 return appendCallWithExceptionCheck(operation);
285}
286
287ALWAYS_INLINE MacroAssembler::Call JIT::callOperationWithCallFrameRollbackOnException(J_JITOperation_E operation)
288{
289 setupArgumentsExecState();
290 return appendCallWithCallFrameRollbackOnException(operation);
291}
292
293ALWAYS_INLINE MacroAssembler::Call JIT::callOperationNoExceptionCheck(J_JITOperation_EE operation, RegisterID regOp)
294{
295 setupArgumentsWithExecState(regOp);
296 updateTopCallFrame();
297 return appendCall(operation);
298}
299
300ALWAYS_INLINE MacroAssembler::Call JIT::callOperationWithCallFrameRollbackOnException(V_JITOperation_ECb operation, CodeBlock* pointer)
301{
302 setupArgumentsWithExecState(TrustedImmPtr(pointer));
303 return appendCallWithCallFrameRollbackOnException(operation);
304}
305
306ALWAYS_INLINE MacroAssembler::Call JIT::callOperationWithCallFrameRollbackOnException(Z_JITOperation_E operation)
307{
308 setupArgumentsExecState();
309 return appendCallWithCallFrameRollbackOnException(operation);
310}
311
312
313#if USE(JSVALUE64)
314ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(F_JITOperation_EJZZ operation, GPRReg arg1, int32_t arg2, int32_t arg3)
315{
316 setupArgumentsWithExecState(arg1, TrustedImm32(arg2), TrustedImm32(arg3));
317 return appendCallWithExceptionCheck(operation);
318}
319
320ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(F_JITOperation_EFJJZ operation, GPRReg arg1, GPRReg arg2, GPRReg arg3, int32_t arg4)
321{
322 setupArgumentsWithExecState(arg1, arg2, arg3, TrustedImm32(arg4));
323 return appendCallWithExceptionCheck(operation);
324}
325
326ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_ESsiJJI operation, StructureStubInfo* stubInfo, RegisterID regOp1, RegisterID regOp2, StringImpl* uid)
327{
328 setupArgumentsWithExecState(TrustedImmPtr(stubInfo), regOp1, regOp2, TrustedImmPtr(uid));
329 return appendCallWithExceptionCheck(operation);
330}
331
332ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EJJJ operation, RegisterID regOp1, RegisterID regOp2, RegisterID regOp3)
333{
334 setupArgumentsWithExecState(regOp1, regOp2, regOp3);
335 return appendCallWithExceptionCheck(operation);
336}
337
338ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(JIT::WithProfileTag, J_JITOperation_ESsiJI operation, int dst, StructureStubInfo* stubInfo, GPRReg arg1, StringImpl* uid)
339{
340 setupArgumentsWithExecState(TrustedImmPtr(stubInfo), arg1, TrustedImmPtr(uid));
341 return appendCallWithExceptionCheckSetJSValueResultWithProfile(operation, dst);
342}
343
344ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(JIT::WithProfileTag, J_JITOperation_EJJ operation, int dst, GPRReg arg1, GPRReg arg2)
345{
346 setupArgumentsWithExecState(arg1, arg2);
347 return appendCallWithExceptionCheckSetJSValueResultWithProfile(operation, dst);
348}
349
350ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EAapJ operation, int dst, ArrayAllocationProfile* arg1, GPRReg arg2)
351{
352 setupArgumentsWithExecState(TrustedImmPtr(arg1), arg2);
353 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
354}
355
356ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EJ operation, int dst, GPRReg arg1)
357{
358 setupArgumentsWithExecState(arg1);
359 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
360}
361
362ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EJIdc operation, int dst, GPRReg arg1, const Identifier* arg2)
363{
364 setupArgumentsWithExecState(arg1, TrustedImmPtr(arg2));
365 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
366}
367
368ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EJJ operation, int dst, GPRReg arg1, GPRReg arg2)
369{
370 setupArgumentsWithExecState(arg1, arg2);
371 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
372}
373
374ALWAYS_INLINE MacroAssembler::Call JIT::callOperationNoExceptionCheck(V_JITOperation_EJ operation, GPRReg arg1)
375{
376 setupArgumentsWithExecState(arg1);
377 updateTopCallFrame();
378 return appendCall(operation);
379}
380
381ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(P_JITOperation_EJS operation, GPRReg arg1, size_t arg2)
382{
383 setupArgumentsWithExecState(arg1, TrustedImmPtr(arg2));
384 return appendCallWithExceptionCheck(operation);
385}
386
387ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(S_JITOperation_EJ operation, RegisterID regOp)
388{
389 setupArgumentsWithExecState(regOp);
390 return appendCallWithExceptionCheck(operation);
391}
392
393ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(S_JITOperation_EJJ operation, RegisterID regOp1, RegisterID regOp2)
394{
395 setupArgumentsWithExecState(regOp1, regOp2);
396 return appendCallWithExceptionCheck(operation);
397}
398
399ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EIdJZ operation, const Identifier* identOp1, RegisterID regOp2, int32_t op3)
400{
401 setupArgumentsWithExecState(TrustedImmPtr(identOp1), regOp2, TrustedImm32(op3));
402 return appendCallWithExceptionCheck(operation);
403}
404
405ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EJ operation, RegisterID regOp)
406{
407 setupArgumentsWithExecState(regOp);
408 return appendCallWithExceptionCheck(operation);
409}
410
411ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EJIdJJ operation, RegisterID regOp1, const Identifier* identOp2, RegisterID regOp3, RegisterID regOp4)
412{
413 setupArgumentsWithExecState(regOp1, TrustedImmPtr(identOp2), regOp3, regOp4);
414 return appendCallWithExceptionCheck(operation);
415}
416
417ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EJZ operation, RegisterID regOp1, int32_t op2)
418{
419 setupArgumentsWithExecState(regOp1, TrustedImm32(op2));
420 return appendCallWithExceptionCheck(operation);
421}
422
423ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EJZJ operation, RegisterID regOp1, int32_t op2, RegisterID regOp3)
424{
425 setupArgumentsWithExecState(regOp1, TrustedImm32(op2), regOp3);
426 return appendCallWithExceptionCheck(operation);
427}
14957cd0 428
81345200
A
429#else // USE(JSVALUE32_64)
430
431// EncodedJSValue in JSVALUE32_64 is a 64-bit integer. When being compiled in ARM EABI, it must be aligned even-numbered register (r0, r2 or [sp]).
432// To avoid assemblies from using wrong registers, let's occupy r1 or r3 with a dummy argument when necessary.
433#if (COMPILER_SUPPORTS(EABI) && CPU(ARM)) || CPU(MIPS)
434#define EABI_32BIT_DUMMY_ARG TrustedImm32(0),
93a37866 435#else
81345200 436#define EABI_32BIT_DUMMY_ARG
14957cd0 437#endif
93a37866 438
81345200
A
439// JSVALUE32_64 is a 64-bit integer that cannot be put half in an argument register and half on stack when using SH4 architecture.
440// To avoid this, let's occupy the 4th argument register (r7) with a dummy argument when necessary. This must only be done when there
441// is no other 32-bit value argument behind this 64-bit JSValue.
442#if CPU(SH4)
443#define SH4_32BIT_DUMMY_ARG TrustedImm32(0),
93a37866 444#else
81345200 445#define SH4_32BIT_DUMMY_ARG
f9bf01c6 446#endif
81345200
A
447
448ALWAYS_INLINE MacroAssembler::Call JIT::callOperationNoExceptionCheck(V_JITOperation_EJ operation, GPRReg arg1Tag, GPRReg arg1Payload)
449{
450 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG arg1Payload, arg1Tag);
451 updateTopCallFrame();
452 return appendCall(operation);
f9bf01c6
A
453}
454
81345200
A
455ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(F_JITOperation_EJZZ operation, GPRReg arg1Tag, GPRReg arg1Payload, int32_t arg2, int32_t arg3)
456{
457 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG arg1Payload, arg1Tag, TrustedImm32(arg2), TrustedImm32(arg3));
458 return appendCallWithExceptionCheck(operation);
459}
14957cd0 460
81345200 461ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(F_JITOperation_EFJJZ operation, GPRReg arg1, GPRReg arg2Tag, GPRReg arg2Payload, GPRReg arg3Tag, GPRReg arg3Payload, int32_t arg4)
6fe7ccc8 462{
81345200
A
463 setupArgumentsWithExecState(arg1, arg2Payload, arg2Tag, arg3Payload, arg3Tag, TrustedImm32(arg4));
464 return appendCallWithExceptionCheck(operation);
465}
466
467ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EAapJ operation, int dst, ArrayAllocationProfile* arg1, GPRReg arg2Tag, GPRReg arg2Payload)
468{
469 setupArgumentsWithExecState(TrustedImmPtr(arg1), arg2Payload, arg2Tag);
470 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
6fe7ccc8
A
471}
472
81345200 473ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EJ operation, int dst, GPRReg arg1Tag, GPRReg arg1Payload)
ba379fdc 474{
81345200
A
475 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG arg1Payload, arg1Tag);
476 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
477}
478
479ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(JIT::WithProfileTag, J_JITOperation_ESsiJI operation, int dst, StructureStubInfo* stubInfo, GPRReg arg1Tag, GPRReg arg1Payload, StringImpl* uid)
480{
481 setupArgumentsWithExecState(TrustedImmPtr(stubInfo), arg1Payload, arg1Tag, TrustedImmPtr(uid));
482 return appendCallWithExceptionCheckSetJSValueResultWithProfile(operation, dst);
483}
484
485ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EJIdc operation, int dst, GPRReg arg1Tag, GPRReg arg1Payload, const Identifier* arg2)
486{
487 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG arg1Payload, arg1Tag, TrustedImmPtr(arg2));
488 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
489}
490
491ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(J_JITOperation_EJJ operation, int dst, GPRReg arg1Tag, GPRReg arg1Payload, GPRReg arg2Tag, GPRReg arg2Payload)
492{
493 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG arg1Payload, arg1Tag, SH4_32BIT_DUMMY_ARG arg2Payload, arg2Tag);
494 return appendCallWithExceptionCheckSetJSValueResult(operation, dst);
495}
496
497ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(JIT::WithProfileTag, J_JITOperation_EJJ operation, int dst, GPRReg arg1Tag, GPRReg arg1Payload, GPRReg arg2Tag, GPRReg arg2Payload)
498{
499 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG arg1Payload, arg1Tag, SH4_32BIT_DUMMY_ARG arg2Payload, arg2Tag);
500 return appendCallWithExceptionCheckSetJSValueResultWithProfile(operation, dst);
501}
502
503ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(P_JITOperation_EJS operation, GPRReg arg1Tag, GPRReg arg1Payload, size_t arg2)
504{
505 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG arg1Payload, arg1Tag, TrustedImmPtr(arg2));
506 return appendCallWithExceptionCheck(operation);
507}
508
509ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(S_JITOperation_EJ operation, RegisterID argTag, RegisterID argPayload)
510{
511 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG argPayload, argTag);
512 return appendCallWithExceptionCheck(operation);
513}
514
515ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(S_JITOperation_EJJ operation, RegisterID arg1Tag, RegisterID arg1Payload, RegisterID arg2Tag, RegisterID arg2Payload)
516{
517 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG arg1Payload, arg1Tag, SH4_32BIT_DUMMY_ARG arg2Payload, arg2Tag);
518 return appendCallWithExceptionCheck(operation);
ba379fdc 519}
ba379fdc 520
81345200
A
521ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_ECICC operation, RegisterID regOp1, const Identifier* identOp2, RegisterID regOp3, RegisterID regOp4)
522{
523 setupArgumentsWithExecState(regOp1, TrustedImmPtr(identOp2), regOp3, regOp4);
524 return appendCallWithExceptionCheck(operation);
525}
526
527ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EJ operation, RegisterID regOp1Tag, RegisterID regOp1Payload)
528{
529 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG regOp1Payload, regOp1Tag);
530 return appendCallWithExceptionCheck(operation);
531}
532
533ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EIdJZ operation, const Identifier* identOp1, RegisterID regOp2Tag, RegisterID regOp2Payload, int32_t op3)
534{
535 setupArgumentsWithExecState(TrustedImmPtr(identOp1), regOp2Payload, regOp2Tag, TrustedImm32(op3));
536 return appendCallWithExceptionCheck(operation);
537}
538
539ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_ESsiJJI operation, StructureStubInfo* stubInfo, RegisterID regOp1Tag, RegisterID regOp1Payload, RegisterID regOp2Tag, RegisterID regOp2Payload, StringImpl* uid)
540{
541 setupArgumentsWithExecState(TrustedImmPtr(stubInfo), regOp1Payload, regOp1Tag, regOp2Payload, regOp2Tag, TrustedImmPtr(uid));
542 return appendCallWithExceptionCheck(operation);
543}
544
545ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EJJJ operation, RegisterID regOp1Tag, RegisterID regOp1Payload, RegisterID regOp2Tag, RegisterID regOp2Payload, RegisterID regOp3Tag, RegisterID regOp3Payload)
546{
547 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG regOp1Payload, regOp1Tag, SH4_32BIT_DUMMY_ARG regOp2Payload, regOp2Tag, regOp3Payload, regOp3Tag);
548 return appendCallWithExceptionCheck(operation);
549}
550
551ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EJZ operation, RegisterID regOp1Tag, RegisterID regOp1Payload, int32_t op2)
552{
553 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG regOp1Payload, regOp1Tag, TrustedImm32(op2));
554 return appendCallWithExceptionCheck(operation);
555}
556
557ALWAYS_INLINE MacroAssembler::Call JIT::callOperation(V_JITOperation_EJZJ operation, RegisterID regOp1Tag, RegisterID regOp1Payload, int32_t op2, RegisterID regOp3Tag, RegisterID regOp3Payload)
558{
559 setupArgumentsWithExecState(EABI_32BIT_DUMMY_ARG regOp1Payload, regOp1Tag, TrustedImm32(op2), EABI_32BIT_DUMMY_ARG regOp3Payload, regOp3Tag);
560 return appendCallWithExceptionCheck(operation);
561}
562
563#undef EABI_32BIT_DUMMY_ARG
564#undef SH4_32BIT_DUMMY_ARG
565
566#endif // USE(JSVALUE32_64)
567
ba379fdc
A
568ALWAYS_INLINE JIT::Jump JIT::checkStructure(RegisterID reg, Structure* structure)
569{
81345200 570 return branchStructure(NotEqual, Address(reg, JSCell::structureIDOffset()), structure);
ba379fdc
A
571}
572
573ALWAYS_INLINE void JIT::linkSlowCaseIfNotJSCell(Vector<SlowCaseEntry>::iterator& iter, int vReg)
574{
575 if (!m_codeBlock->isKnownNotImmediate(vReg))
576 linkSlowCase(iter);
577}
578
579ALWAYS_INLINE void JIT::addSlowCase(Jump jump)
9dae56ea 580{
14957cd0 581 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeOffset is set.
9dae56ea 582
14957cd0 583 m_slowCases.append(SlowCaseEntry(jump, m_bytecodeOffset));
ba379fdc
A
584}
585
586ALWAYS_INLINE void JIT::addSlowCase(JumpList jumpList)
587{
14957cd0 588 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeOffset is set.
ba379fdc
A
589
590 const JumpList::JumpVector& jumpVector = jumpList.jumps();
591 size_t size = jumpVector.size();
592 for (size_t i = 0; i < size; ++i)
14957cd0 593 m_slowCases.append(SlowCaseEntry(jumpVector[i], m_bytecodeOffset));
ba379fdc
A
594}
595
6fe7ccc8
A
596ALWAYS_INLINE void JIT::addSlowCase()
597{
598 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeOffset is set.
599
600 Jump emptyJump; // Doing it this way to make Windows happy.
601 m_slowCases.append(SlowCaseEntry(emptyJump, m_bytecodeOffset));
602}
603
ba379fdc
A
604ALWAYS_INLINE void JIT::addJump(Jump jump, int relativeOffset)
605{
14957cd0 606 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeOffset is set.
ba379fdc 607
14957cd0 608 m_jmpTable.append(JumpTable(jump, m_bytecodeOffset + relativeOffset));
ba379fdc
A
609}
610
611ALWAYS_INLINE void JIT::emitJumpSlowToHot(Jump jump, int relativeOffset)
612{
14957cd0 613 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeOffset is set.
ba379fdc 614
14957cd0 615 jump.linkTo(m_labels[m_bytecodeOffset + relativeOffset], this);
ba379fdc
A
616}
617
81345200 618ALWAYS_INLINE JIT::Jump JIT::emitJumpIfCellNotObject(RegisterID cellReg)
6fe7ccc8 619{
81345200 620 return branch8(Below, Address(cellReg, JSCell::typeInfoTypeOffset()), TrustedImm32(ObjectType));
6fe7ccc8
A
621}
622
ba379fdc
A
623#if ENABLE(SAMPLING_FLAGS)
624ALWAYS_INLINE void JIT::setSamplingFlag(int32_t flag)
625{
626 ASSERT(flag >= 1);
627 ASSERT(flag <= 32);
14957cd0 628 or32(TrustedImm32(1u << (flag - 1)), AbsoluteAddress(SamplingFlags::addressOfFlags()));
ba379fdc
A
629}
630
631ALWAYS_INLINE void JIT::clearSamplingFlag(int32_t flag)
632{
633 ASSERT(flag >= 1);
634 ASSERT(flag <= 32);
14957cd0 635 and32(TrustedImm32(~(1u << (flag - 1))), AbsoluteAddress(SamplingFlags::addressOfFlags()));
ba379fdc
A
636}
637#endif
638
639#if ENABLE(SAMPLING_COUNTERS)
6fe7ccc8
A
640ALWAYS_INLINE void JIT::emitCount(AbstractSamplingCounter& counter, int32_t count)
641{
642 add64(TrustedImm32(count), AbsoluteAddress(counter.addressOfCounter()));
ba379fdc
A
643}
644#endif
645
646#if ENABLE(OPCODE_SAMPLING)
f9bf01c6 647#if CPU(X86_64)
ba379fdc
A
648ALWAYS_INLINE void JIT::sampleInstruction(Instruction* instruction, bool inHostFunction)
649{
14957cd0
A
650 move(TrustedImmPtr(m_interpreter->sampler()->sampleSlot()), X86Registers::ecx);
651 storePtr(TrustedImmPtr(m_interpreter->sampler()->encodeSample(instruction, inHostFunction)), X86Registers::ecx);
ba379fdc
A
652}
653#else
654ALWAYS_INLINE void JIT::sampleInstruction(Instruction* instruction, bool inHostFunction)
655{
14957cd0 656 storePtr(TrustedImmPtr(m_interpreter->sampler()->encodeSample(instruction, inHostFunction)), m_interpreter->sampler()->sampleSlot());
ba379fdc
A
657}
658#endif
659#endif
660
661#if ENABLE(CODEBLOCK_SAMPLING)
f9bf01c6 662#if CPU(X86_64)
ba379fdc
A
663ALWAYS_INLINE void JIT::sampleCodeBlock(CodeBlock* codeBlock)
664{
14957cd0
A
665 move(TrustedImmPtr(m_interpreter->sampler()->codeBlockSlot()), X86Registers::ecx);
666 storePtr(TrustedImmPtr(codeBlock), X86Registers::ecx);
ba379fdc
A
667}
668#else
669ALWAYS_INLINE void JIT::sampleCodeBlock(CodeBlock* codeBlock)
670{
14957cd0 671 storePtr(TrustedImmPtr(codeBlock), m_interpreter->sampler()->codeBlockSlot());
ba379fdc
A
672}
673#endif
674#endif
675
81345200 676ALWAYS_INLINE bool JIT::isOperandConstantImmediateChar(int src)
f9bf01c6 677{
4e4e5a6f 678 return m_codeBlock->isConstantRegisterIndex(src) && getConstantOperand(src).isString() && asString(getConstantOperand(src).asCell())->length() == 1;
f9bf01c6
A
679}
680
93a37866
A
681template<typename StructureType>
682inline void JIT::emitAllocateJSObject(RegisterID allocator, StructureType structure, RegisterID result, RegisterID scratch)
6fe7ccc8 683{
93a37866 684 loadPtr(Address(allocator, MarkedAllocator::offsetOfFreeListHead()), result);
6fe7ccc8
A
685 addSlowCase(branchTestPtr(Zero, result));
686
687 // remove the object from the free list
93a37866
A
688 loadPtr(Address(result), scratch);
689 storePtr(scratch, Address(allocator, MarkedAllocator::offsetOfFreeListHead()));
6fe7ccc8 690
6fe7ccc8 691 // initialize the object's property storage pointer
93a37866 692 storePtr(TrustedImmPtr(0), Address(result, JSObject::butterflyOffset()));
81345200
A
693
694 // initialize the object's structure
695 emitStoreStructureWithTypeInfo(structure, result, scratch);
6fe7ccc8
A
696}
697
6fe7ccc8
A
698inline void JIT::emitValueProfilingSite(ValueProfile* valueProfile)
699{
700 ASSERT(shouldEmitProfiling());
701 ASSERT(valueProfile);
702
703 const RegisterID value = regT0;
704#if USE(JSVALUE32_64)
705 const RegisterID valueTag = regT1;
706#endif
6fe7ccc8 707
81345200
A
708 // We're in a simple configuration: only one bucket, so we can just do a direct
709 // store.
6fe7ccc8 710#if USE(JSVALUE64)
81345200 711 store64(value, valueProfile->m_buckets);
6fe7ccc8 712#else
81345200
A
713 EncodedValueDescriptor* descriptor = bitwise_cast<EncodedValueDescriptor*>(valueProfile->m_buckets);
714 store32(value, &descriptor->asBits.payload);
715 store32(valueTag, &descriptor->asBits.tag);
6fe7ccc8
A
716#endif
717}
718
719inline void JIT::emitValueProfilingSite(unsigned bytecodeOffset)
720{
721 if (!shouldEmitProfiling())
722 return;
723 emitValueProfilingSite(m_codeBlock->valueProfileForBytecodeOffset(bytecodeOffset));
724}
725
726inline void JIT::emitValueProfilingSite()
727{
728 emitValueProfilingSite(m_bytecodeOffset);
729}
93a37866 730
81345200 731inline void JIT::emitArrayProfilingSiteWithCell(RegisterID cell, RegisterID indexingType, ArrayProfile* arrayProfile)
93a37866 732{
81345200
A
733 if (shouldEmitProfiling()) {
734 load32(MacroAssembler::Address(cell, JSCell::structureIDOffset()), indexingType);
735 store32(indexingType, arrayProfile->addressOfLastSeenStructureID());
736 }
93a37866 737
81345200 738 load8(Address(cell, JSCell::indexingTypeOffset()), indexingType);
93a37866
A
739}
740
81345200 741inline void JIT::emitArrayProfilingSiteForBytecodeIndexWithCell(RegisterID cell, RegisterID indexingType, unsigned bytecodeIndex)
93a37866 742{
81345200 743 emitArrayProfilingSiteWithCell(cell, indexingType, m_codeBlock->getOrAddArrayProfile(bytecodeIndex));
93a37866
A
744}
745
746inline void JIT::emitArrayProfileStoreToHoleSpecialCase(ArrayProfile* arrayProfile)
747{
93a37866 748 store8(TrustedImm32(1), arrayProfile->addressOfMayStoreToHole());
93a37866
A
749}
750
751inline void JIT::emitArrayProfileOutOfBoundsSpecialCase(ArrayProfile* arrayProfile)
752{
93a37866 753 store8(TrustedImm32(1), arrayProfile->addressOfOutOfBounds());
93a37866
A
754}
755
756static inline bool arrayProfileSaw(ArrayModes arrayModes, IndexingType capability)
757{
93a37866 758 return arrayModesInclude(arrayModes, capability);
93a37866
A
759}
760
761inline JITArrayMode JIT::chooseArrayMode(ArrayProfile* profile)
762{
81345200
A
763 ConcurrentJITLocker locker(m_codeBlock->m_lock);
764 profile->computeUpdatedPrediction(locker, m_codeBlock);
765 ArrayModes arrayModes = profile->observedArrayModes(locker);
93a37866
A
766 if (arrayProfileSaw(arrayModes, DoubleShape))
767 return JITDouble;
768 if (arrayProfileSaw(arrayModes, Int32Shape))
769 return JITInt32;
770 if (arrayProfileSaw(arrayModes, ArrayStorageShape))
771 return JITArrayStorage;
772 return JITContiguous;
93a37866 773}
6fe7ccc8 774
ba379fdc
A
775#if USE(JSVALUE32_64)
776
6fe7ccc8 777inline void JIT::emitLoadTag(int index, RegisterID tag)
ba379fdc 778{
ba379fdc
A
779 if (m_codeBlock->isConstantRegisterIndex(index)) {
780 move(Imm32(getConstantOperand(index).tag()), tag);
ba379fdc
A
781 return;
782 }
9dae56ea 783
ba379fdc 784 load32(tagFor(index), tag);
ba379fdc
A
785}
786
6fe7ccc8 787inline void JIT::emitLoadPayload(int index, RegisterID payload)
ba379fdc 788{
ba379fdc
A
789 if (m_codeBlock->isConstantRegisterIndex(index)) {
790 move(Imm32(getConstantOperand(index).payload()), payload);
ba379fdc
A
791 return;
792 }
793
794 load32(payloadFor(index), payload);
9dae56ea
A
795}
796
ba379fdc 797inline void JIT::emitLoad(const JSValue& v, RegisterID tag, RegisterID payload)
9dae56ea 798{
ba379fdc
A
799 move(Imm32(v.payload()), payload);
800 move(Imm32(v.tag()), tag);
801}
802
6fe7ccc8 803inline void JIT::emitLoad(int index, RegisterID tag, RegisterID payload, RegisterID base)
ba379fdc 804{
93a37866 805 RELEASE_ASSERT(tag != payload);
ba379fdc
A
806
807 if (base == callFrameRegister) {
93a37866 808 RELEASE_ASSERT(payload != base);
ba379fdc
A
809 emitLoadPayload(index, payload);
810 emitLoadTag(index, tag);
811 return;
9dae56ea 812 }
ba379fdc
A
813
814 if (payload == base) { // avoid stomping base
815 load32(tagFor(index, base), tag);
816 load32(payloadFor(index, base), payload);
817 return;
818 }
819
820 load32(payloadFor(index, base), payload);
821 load32(tagFor(index, base), tag);
9dae56ea
A
822}
823
6fe7ccc8 824inline void JIT::emitLoad2(int index1, RegisterID tag1, RegisterID payload1, int index2, RegisterID tag2, RegisterID payload2)
9dae56ea 825{
ba379fdc
A
826 emitLoad(index2, tag2, payload2);
827 emitLoad(index1, tag1, payload1);
9dae56ea
A
828}
829
6fe7ccc8 830inline void JIT::emitLoadDouble(int index, FPRegisterID value)
9dae56ea 831{
ba379fdc 832 if (m_codeBlock->isConstantRegisterIndex(index)) {
14957cd0 833 WriteBarrier<Unknown>& inConstantPool = m_codeBlock->constantRegister(index);
81345200 834 loadDouble(TrustedImmPtr(&inConstantPool), value);
ba379fdc
A
835 } else
836 loadDouble(addressFor(index), value);
9dae56ea
A
837}
838
6fe7ccc8 839inline void JIT::emitLoadInt32ToDouble(int index, FPRegisterID value)
9dae56ea 840{
ba379fdc 841 if (m_codeBlock->isConstantRegisterIndex(index)) {
14957cd0 842 WriteBarrier<Unknown>& inConstantPool = m_codeBlock->constantRegister(index);
ba379fdc
A
843 char* bytePointer = reinterpret_cast<char*>(&inConstantPool);
844 convertInt32ToDouble(AbsoluteAddress(bytePointer + OBJECT_OFFSETOF(JSValue, u.asBits.payload)), value);
845 } else
846 convertInt32ToDouble(payloadFor(index), value);
9dae56ea
A
847}
848
6fe7ccc8 849inline void JIT::emitStore(int index, RegisterID tag, RegisterID payload, RegisterID base)
9dae56ea 850{
ba379fdc
A
851 store32(payload, payloadFor(index, base));
852 store32(tag, tagFor(index, base));
9dae56ea
A
853}
854
6fe7ccc8 855inline void JIT::emitStoreInt32(int index, RegisterID payload, bool indexIsInt32)
9dae56ea 856{
ba379fdc
A
857 store32(payload, payloadFor(index, callFrameRegister));
858 if (!indexIsInt32)
14957cd0 859 store32(TrustedImm32(JSValue::Int32Tag), tagFor(index, callFrameRegister));
9dae56ea
A
860}
861
6fe7ccc8 862inline void JIT::emitStoreInt32(int index, TrustedImm32 payload, bool indexIsInt32)
9dae56ea 863{
ba379fdc
A
864 store32(payload, payloadFor(index, callFrameRegister));
865 if (!indexIsInt32)
14957cd0 866 store32(TrustedImm32(JSValue::Int32Tag), tagFor(index, callFrameRegister));
9dae56ea
A
867}
868
6fe7ccc8 869inline void JIT::emitStoreCell(int index, RegisterID payload, bool indexIsCell)
9dae56ea 870{
ba379fdc
A
871 store32(payload, payloadFor(index, callFrameRegister));
872 if (!indexIsCell)
14957cd0 873 store32(TrustedImm32(JSValue::CellTag), tagFor(index, callFrameRegister));
9dae56ea
A
874}
875
6fe7ccc8 876inline void JIT::emitStoreBool(int index, RegisterID payload, bool indexIsBool)
9dae56ea 877{
14957cd0 878 store32(payload, payloadFor(index, callFrameRegister));
ba379fdc 879 if (!indexIsBool)
14957cd0 880 store32(TrustedImm32(JSValue::BooleanTag), tagFor(index, callFrameRegister));
ba379fdc 881}
9dae56ea 882
6fe7ccc8 883inline void JIT::emitStoreDouble(int index, FPRegisterID value)
ba379fdc
A
884{
885 storeDouble(value, addressFor(index));
9dae56ea
A
886}
887
6fe7ccc8 888inline void JIT::emitStore(int index, const JSValue constant, RegisterID base)
9dae56ea 889{
ba379fdc
A
890 store32(Imm32(constant.payload()), payloadFor(index, base));
891 store32(Imm32(constant.tag()), tagFor(index, base));
9dae56ea
A
892}
893
81345200 894ALWAYS_INLINE void JIT::emitInitRegister(int dst)
9dae56ea 895{
ba379fdc 896 emitStore(dst, jsUndefined());
9dae56ea
A
897}
898
6fe7ccc8 899inline void JIT::emitJumpSlowCaseIfNotJSCell(int virtualRegisterIndex)
ba379fdc 900{
4e4e5a6f
A
901 if (!m_codeBlock->isKnownNotImmediate(virtualRegisterIndex)) {
902 if (m_codeBlock->isConstantRegisterIndex(virtualRegisterIndex))
903 addSlowCase(jump());
904 else
905 addSlowCase(emitJumpIfNotJSCell(virtualRegisterIndex));
906 }
9dae56ea
A
907}
908
6fe7ccc8 909inline void JIT::emitJumpSlowCaseIfNotJSCell(int virtualRegisterIndex, RegisterID tag)
9dae56ea 910{
4e4e5a6f
A
911 if (!m_codeBlock->isKnownNotImmediate(virtualRegisterIndex)) {
912 if (m_codeBlock->isConstantRegisterIndex(virtualRegisterIndex))
913 addSlowCase(jump());
914 else
14957cd0 915 addSlowCase(branch32(NotEqual, tag, TrustedImm32(JSValue::CellTag)));
4e4e5a6f 916 }
ba379fdc 917}
9dae56ea 918
81345200 919ALWAYS_INLINE bool JIT::isOperandConstantImmediateInt(int src)
9dae56ea 920{
ba379fdc 921 return m_codeBlock->isConstantRegisterIndex(src) && getConstantOperand(src).isInt32();
9dae56ea 922}
ba379fdc 923
81345200 924ALWAYS_INLINE bool JIT::getOperandConstantImmediateInt(int op1, int op2, int& op, int32_t& constant)
9dae56ea 925{
ba379fdc
A
926 if (isOperandConstantImmediateInt(op1)) {
927 constant = getConstantOperand(op1).asInt32();
928 op = op2;
929 return true;
930 }
931
932 if (isOperandConstantImmediateInt(op2)) {
933 constant = getConstantOperand(op2).asInt32();
934 op = op1;
935 return true;
936 }
937
938 return false;
9dae56ea 939}
ba379fdc 940
ba379fdc
A
941#else // USE(JSVALUE32_64)
942
ba379fdc
A
943// get arg puts an arg from the SF register array into a h/w register
944ALWAYS_INLINE void JIT::emitGetVirtualRegister(int src, RegisterID dst)
9dae56ea 945{
14957cd0 946 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeOffset is set.
9dae56ea 947
ba379fdc
A
948 // TODO: we want to reuse values that are already in registers if we can - add a register allocator!
949 if (m_codeBlock->isConstantRegisterIndex(src)) {
950 JSValue value = m_codeBlock->getConstant(src);
6fe7ccc8 951 if (!value.isNumber())
93a37866 952 move(TrustedImm64(JSValue::encode(value)), dst);
6fe7ccc8 953 else
93a37866 954 move(Imm64(JSValue::encode(value)), dst);
14957cd0 955 return;
ba379fdc
A
956 }
957
93a37866 958 load64(Address(callFrameRegister, src * sizeof(Register)), dst);
81345200
A
959}
960
961ALWAYS_INLINE void JIT::emitGetVirtualRegister(VirtualRegister src, RegisterID dst)
962{
963 emitGetVirtualRegister(src.offset(), dst);
ba379fdc
A
964}
965
966ALWAYS_INLINE void JIT::emitGetVirtualRegisters(int src1, RegisterID dst1, int src2, RegisterID dst2)
967{
81345200
A
968 emitGetVirtualRegister(src1, dst1);
969 emitGetVirtualRegister(src2, dst2);
ba379fdc 970}
9dae56ea 971
81345200
A
972ALWAYS_INLINE void JIT::emitGetVirtualRegisters(VirtualRegister src1, RegisterID dst1, VirtualRegister src2, RegisterID dst2)
973{
974 emitGetVirtualRegisters(src1.offset(), dst1, src2.offset(), dst2);
975}
976
977ALWAYS_INLINE int32_t JIT::getConstantOperandImmediateInt(int src)
ba379fdc
A
978{
979 return getConstantOperand(src).asInt32();
9dae56ea
A
980}
981
81345200 982ALWAYS_INLINE bool JIT::isOperandConstantImmediateInt(int src)
ba379fdc
A
983{
984 return m_codeBlock->isConstantRegisterIndex(src) && getConstantOperand(src).isInt32();
985}
986
81345200 987ALWAYS_INLINE void JIT::emitPutVirtualRegister(int dst, RegisterID from)
9dae56ea 988{
93a37866 989 store64(from, Address(callFrameRegister, dst * sizeof(Register)));
ba379fdc
A
990}
991
81345200
A
992ALWAYS_INLINE void JIT::emitPutVirtualRegister(VirtualRegister dst, RegisterID from)
993{
994 emitPutVirtualRegister(dst.offset(), from);
995}
996
997ALWAYS_INLINE void JIT::emitInitRegister(int dst)
ba379fdc 998{
93a37866 999 store64(TrustedImm64(JSValue::encode(jsUndefined())), Address(callFrameRegister, dst * sizeof(Register)));
9dae56ea
A
1000}
1001
1002ALWAYS_INLINE JIT::Jump JIT::emitJumpIfJSCell(RegisterID reg)
1003{
93a37866 1004 return branchTest64(Zero, reg, tagMaskRegister);
9dae56ea
A
1005}
1006
1007ALWAYS_INLINE JIT::Jump JIT::emitJumpIfBothJSCells(RegisterID reg1, RegisterID reg2, RegisterID scratch)
1008{
1009 move(reg1, scratch);
93a37866 1010 or64(reg2, scratch);
9dae56ea
A
1011 return emitJumpIfJSCell(scratch);
1012}
1013
1014ALWAYS_INLINE void JIT::emitJumpSlowCaseIfJSCell(RegisterID reg)
1015{
1016 addSlowCase(emitJumpIfJSCell(reg));
1017}
1018
9dae56ea
A
1019ALWAYS_INLINE void JIT::emitJumpSlowCaseIfNotJSCell(RegisterID reg)
1020{
1021 addSlowCase(emitJumpIfNotJSCell(reg));
1022}
1023
1024ALWAYS_INLINE void JIT::emitJumpSlowCaseIfNotJSCell(RegisterID reg, int vReg)
1025{
1026 if (!m_codeBlock->isKnownNotImmediate(vReg))
1027 emitJumpSlowCaseIfNotJSCell(reg);
1028}
1029
6fe7ccc8 1030inline void JIT::emitLoadDouble(int index, FPRegisterID value)
f9bf01c6
A
1031{
1032 if (m_codeBlock->isConstantRegisterIndex(index)) {
14957cd0 1033 WriteBarrier<Unknown>& inConstantPool = m_codeBlock->constantRegister(index);
81345200 1034 loadDouble(TrustedImmPtr(&inConstantPool), value);
f9bf01c6
A
1035 } else
1036 loadDouble(addressFor(index), value);
1037}
1038
6fe7ccc8 1039inline void JIT::emitLoadInt32ToDouble(int index, FPRegisterID value)
f9bf01c6
A
1040{
1041 if (m_codeBlock->isConstantRegisterIndex(index)) {
14957cd0
A
1042 ASSERT(isOperandConstantImmediateInt(index));
1043 convertInt32ToDouble(Imm32(getConstantOperand(index).asInt32()), value);
f9bf01c6
A
1044 } else
1045 convertInt32ToDouble(addressFor(index), value);
1046}
9dae56ea
A
1047
1048ALWAYS_INLINE JIT::Jump JIT::emitJumpIfImmediateInteger(RegisterID reg)
1049{
93a37866 1050 return branch64(AboveOrEqual, reg, tagTypeNumberRegister);
9dae56ea
A
1051}
1052
1053ALWAYS_INLINE JIT::Jump JIT::emitJumpIfNotImmediateInteger(RegisterID reg)
1054{
93a37866 1055 return branch64(Below, reg, tagTypeNumberRegister);
9dae56ea
A
1056}
1057
1058ALWAYS_INLINE JIT::Jump JIT::emitJumpIfNotImmediateIntegers(RegisterID reg1, RegisterID reg2, RegisterID scratch)
1059{
1060 move(reg1, scratch);
93a37866 1061 and64(reg2, scratch);
9dae56ea
A
1062 return emitJumpIfNotImmediateInteger(scratch);
1063}
1064
1065ALWAYS_INLINE void JIT::emitJumpSlowCaseIfNotImmediateInteger(RegisterID reg)
1066{
1067 addSlowCase(emitJumpIfNotImmediateInteger(reg));
1068}
1069
1070ALWAYS_INLINE void JIT::emitJumpSlowCaseIfNotImmediateIntegers(RegisterID reg1, RegisterID reg2, RegisterID scratch)
1071{
1072 addSlowCase(emitJumpIfNotImmediateIntegers(reg1, reg2, scratch));
1073}
1074
f9bf01c6
A
1075ALWAYS_INLINE void JIT::emitJumpSlowCaseIfNotImmediateNumber(RegisterID reg)
1076{
1077 addSlowCase(emitJumpIfNotImmediateNumber(reg));
1078}
1079
9dae56ea
A
1080ALWAYS_INLINE void JIT::emitFastArithReTagImmediate(RegisterID src, RegisterID dest)
1081{
9dae56ea 1082 emitFastArithIntToImmNoCheck(src, dest);
9dae56ea
A
1083}
1084
1085ALWAYS_INLINE void JIT::emitTagAsBoolImmediate(RegisterID reg)
1086{
14957cd0 1087 or32(TrustedImm32(static_cast<int32_t>(ValueFalse)), reg);
9dae56ea
A
1088}
1089
ba379fdc 1090#endif // USE(JSVALUE32_64)
9dae56ea 1091
81345200
A
1092template <typename T>
1093JIT::Jump JIT::branchStructure(RelationalCondition condition, T leftHandSide, Structure* structure)
1094{
1095#if USE(JSVALUE64)
1096 return branch32(condition, leftHandSide, TrustedImm32(structure->id()));
1097#else
1098 return branchPtr(condition, leftHandSide, TrustedImmPtr(structure));
1099#endif
1100}
1101
1102template <typename T>
1103MacroAssembler::Jump branchStructure(MacroAssembler& jit, MacroAssembler::RelationalCondition condition, T leftHandSide, Structure* structure)
1104{
1105#if USE(JSVALUE64)
1106 return jit.branch32(condition, leftHandSide, MacroAssembler::TrustedImm32(structure->id()));
1107#else
1108 return jit.branchPtr(condition, leftHandSide, MacroAssembler::TrustedImmPtr(structure));
1109#endif
1110}
1111
ba379fdc 1112} // namespace JSC
9dae56ea
A
1113
1114#endif // ENABLE(JIT)
1115
93a37866
A
1116#endif // JITInlines_h
1117