blob: 4e0801a1b72f748b664395b50d4cc55d24079923 [file] [log] [blame]
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001// Copyright 2010 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +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#include "v8.h"
29
30#include "bootstrapper.h"
31#include "codegen-inl.h"
ager@chromium.orgc4c92722009-11-18 14:12:51 +000032#include "compiler.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000033#include "debug.h"
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000034#include "ic-inl.h"
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000035#include "parser.h"
36#include "register-allocator-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000037#include "runtime.h"
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000038#include "scopes.h"
sgjesse@chromium.org833cdd72010-02-26 10:06:16 +000039#include "virtual-frame-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000040
kasperl@chromium.org71affb52009-05-26 05:44:31 +000041namespace v8 {
42namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000043
ager@chromium.org65dad4b2009-04-23 08:48:43 +000044#define __ ACCESS_MASM(masm_)
45
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000046static void EmitIdenticalObjectComparison(MacroAssembler* masm,
47 Label* slow,
fschneider@chromium.org0c20e672010-01-14 15:28:53 +000048 Condition cc,
49 bool never_nan_nan);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000050static void EmitSmiNonsmiComparison(MacroAssembler* masm,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000051 Label* lhs_not_nan,
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000052 Label* slow,
53 bool strict);
54static void EmitTwoNonNanDoubleComparison(MacroAssembler* masm, Condition cc);
55static void EmitStrictTwoHeapObjectCompare(MacroAssembler* masm);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000056static void MultiplyByKnownInt(MacroAssembler* masm,
57 Register source,
58 Register destination,
59 int known_int);
60static bool IsEasyToMultiplyBy(int x);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000061
62
63
ager@chromium.orge2902be2009-06-08 12:21:35 +000064// -------------------------------------------------------------------------
65// Platform-specific DeferredCode functions.
66
67void DeferredCode::SaveRegisters() {
68 for (int i = 0; i < RegisterAllocator::kNumRegisters; i++) {
69 int action = registers_[i];
70 if (action == kPush) {
71 __ push(RegisterAllocator::ToRegister(i));
72 } else if (action != kIgnore && (action & kSyncedFlag) == 0) {
73 __ str(RegisterAllocator::ToRegister(i), MemOperand(fp, action));
74 }
75 }
76}
77
78
79void DeferredCode::RestoreRegisters() {
80 // Restore registers in reverse order due to the stack.
81 for (int i = RegisterAllocator::kNumRegisters - 1; i >= 0; i--) {
82 int action = registers_[i];
83 if (action == kPush) {
84 __ pop(RegisterAllocator::ToRegister(i));
85 } else if (action != kIgnore) {
86 action &= ~kSyncedFlag;
87 __ ldr(RegisterAllocator::ToRegister(i), MemOperand(fp, action));
88 }
89 }
90}
91
ager@chromium.org3bf7b912008-11-17 09:09:45 +000092
93// -------------------------------------------------------------------------
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000094// CodeGenState implementation.
95
ager@chromium.org7c537e22008-10-16 08:43:32 +000096CodeGenState::CodeGenState(CodeGenerator* owner)
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000097 : owner_(owner),
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000098 true_target_(NULL),
99 false_target_(NULL),
100 previous_(NULL) {
101 owner_->set_state(this);
102}
103
104
ager@chromium.org7c537e22008-10-16 08:43:32 +0000105CodeGenState::CodeGenState(CodeGenerator* owner,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000106 JumpTarget* true_target,
107 JumpTarget* false_target)
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000108 : owner_(owner),
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000109 true_target_(true_target),
110 false_target_(false_target),
111 previous_(owner->state()) {
112 owner_->set_state(this);
113}
114
115
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000116CodeGenState::~CodeGenState() {
117 ASSERT(owner_->state() == this);
118 owner_->set_state(previous_);
119}
120
121
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000122// -------------------------------------------------------------------------
ager@chromium.org7c537e22008-10-16 08:43:32 +0000123// CodeGenerator implementation
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000124
ager@chromium.org5c838252010-02-19 08:53:10 +0000125CodeGenerator::CodeGenerator(MacroAssembler* masm)
126 : deferred_(8),
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000127 masm_(masm),
ager@chromium.org5c838252010-02-19 08:53:10 +0000128 info_(NULL),
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000129 frame_(NULL),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000130 allocator_(NULL),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000131 cc_reg_(al),
132 state_(NULL),
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +0000133 function_return_is_shadowed_(false) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000134}
135
136
137// Calling conventions:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000138// fp: caller's frame pointer
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000139// sp: stack pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000140// r1: called JS function
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000141// cp: callee's context
142
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000143void CodeGenerator::Generate(CompilationInfo* info) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000144 // Record the position for debugging purposes.
ager@chromium.org5c838252010-02-19 08:53:10 +0000145 CodeForFunctionPosition(info->function());
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000146 Comment cmnt(masm_, "[ function compiled by virtual frame code generator");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000147
148 // Initialize state.
ager@chromium.org5c838252010-02-19 08:53:10 +0000149 info_ = info;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000150 ASSERT(allocator_ == NULL);
151 RegisterAllocator register_allocator(this);
152 allocator_ = &register_allocator;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000153 ASSERT(frame_ == NULL);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000154 frame_ = new VirtualFrame();
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000155 cc_reg_ = al;
156 {
157 CodeGenState state(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000158
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000159 // Entry:
160 // Stack: receiver, arguments
161 // lr: return address
162 // fp: caller's frame pointer
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000163 // sp: stack pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000164 // r1: called JS function
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000165 // cp: callee's context
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000166 allocator_->Initialize();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000167
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000168#ifdef DEBUG
169 if (strlen(FLAG_stop_at) > 0 &&
ager@chromium.org5c838252010-02-19 08:53:10 +0000170 info->function()->name()->IsEqualTo(CStrVector(FLAG_stop_at))) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000171 frame_->SpillAll();
kasper.lund7276f142008-07-30 08:49:36 +0000172 __ stop("stop-at");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000173 }
174#endif
175
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000176 if (info->mode() == CompilationInfo::PRIMARY) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000177 frame_->Enter();
178 // tos: code slot
179
180 // Allocate space for locals and initialize them. This also checks
181 // for stack overflow.
182 frame_->AllocateStackSlots();
183
184 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org5c838252010-02-19 08:53:10 +0000185 int heap_slots = scope()->num_heap_slots();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000186 if (heap_slots > 0) {
187 // Allocate local context.
188 // Get outer context and create a new context based on it.
189 __ ldr(r0, frame_->Function());
190 frame_->EmitPush(r0);
191 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
192 FastNewContextStub stub(heap_slots);
193 frame_->CallStub(&stub, 1);
194 } else {
195 frame_->CallRuntime(Runtime::kNewContext, 1);
196 }
197
198#ifdef DEBUG
199 JumpTarget verified_true;
200 __ cmp(r0, Operand(cp));
201 verified_true.Branch(eq);
202 __ stop("NewContext: r0 is expected to be the same as cp");
203 verified_true.Bind();
204#endif
205 // Update context local.
206 __ str(cp, frame_->Context());
207 }
208
209 // TODO(1241774): Improve this code:
210 // 1) only needed if we have a context
211 // 2) no need to recompute context ptr every single time
212 // 3) don't copy parameter operand code from SlotOperand!
213 {
214 Comment cmnt2(masm_, "[ copy context parameters into .context");
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000215 // Note that iteration order is relevant here! If we have the same
216 // parameter twice (e.g., function (x, y, x)), and that parameter
217 // needs to be copied into the context, it must be the last argument
218 // passed to the parameter that needs to be copied. This is a rare
219 // case so we don't check for it, instead we rely on the copying
220 // order: such a parameter is copied repeatedly into the same
221 // context location and thus the last value is what is seen inside
222 // the function.
ager@chromium.org5c838252010-02-19 08:53:10 +0000223 for (int i = 0; i < scope()->num_parameters(); i++) {
224 Variable* par = scope()->parameter(i);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000225 Slot* slot = par->slot();
226 if (slot != NULL && slot->type() == Slot::CONTEXT) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000227 ASSERT(!scope()->is_global_scope()); // No params in global scope.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000228 __ ldr(r1, frame_->ParameterAt(i));
229 // Loads r2 with context; used below in RecordWrite.
230 __ str(r1, SlotOperand(slot, r2));
231 // Load the offset into r3.
232 int slot_offset =
233 FixedArray::kHeaderSize + slot->index() * kPointerSize;
234 __ mov(r3, Operand(slot_offset));
235 __ RecordWrite(r2, r3, r1);
236 }
237 }
238 }
239
240 // Store the arguments object. This must happen after context
241 // initialization because the arguments object may be stored in the
242 // context.
ager@chromium.org5c838252010-02-19 08:53:10 +0000243 if (scope()->arguments() != NULL) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000244 Comment cmnt(masm_, "[ allocate arguments object");
ager@chromium.org5c838252010-02-19 08:53:10 +0000245 ASSERT(scope()->arguments_shadow() != NULL);
246 Variable* arguments = scope()->arguments()->var();
247 Variable* shadow = scope()->arguments_shadow()->var();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000248 ASSERT(arguments != NULL && arguments->slot() != NULL);
249 ASSERT(shadow != NULL && shadow->slot() != NULL);
250 ArgumentsAccessStub stub(ArgumentsAccessStub::NEW_OBJECT);
251 __ ldr(r2, frame_->Function());
252 // The receiver is below the arguments, the return address, and the
253 // frame pointer on the stack.
ager@chromium.org5c838252010-02-19 08:53:10 +0000254 const int kReceiverDisplacement = 2 + scope()->num_parameters();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000255 __ add(r1, fp, Operand(kReceiverDisplacement * kPointerSize));
ager@chromium.org5c838252010-02-19 08:53:10 +0000256 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000257 frame_->Adjust(3);
258 __ stm(db_w, sp, r0.bit() | r1.bit() | r2.bit());
259 frame_->CallStub(&stub, 3);
260 frame_->EmitPush(r0);
261 StoreToSlot(arguments->slot(), NOT_CONST_INIT);
262 StoreToSlot(shadow->slot(), NOT_CONST_INIT);
263 frame_->Drop(); // Value is no longer needed.
264 }
265
266 // Initialize ThisFunction reference if present.
ager@chromium.org5c838252010-02-19 08:53:10 +0000267 if (scope()->is_function_scope() && scope()->function() != NULL) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000268 __ mov(ip, Operand(Factory::the_hole_value()));
269 frame_->EmitPush(ip);
ager@chromium.org5c838252010-02-19 08:53:10 +0000270 StoreToSlot(scope()->function()->slot(), NOT_CONST_INIT);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000271 }
272 } else {
273 // When used as the secondary compiler for splitting, r1, cp,
274 // fp, and lr have been pushed on the stack. Adjust the virtual
275 // frame to match this state.
276 frame_->Adjust(4);
277 allocator_->Unuse(r1);
278 allocator_->Unuse(lr);
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000279
280 // Bind all the bailout labels to the beginning of the function.
281 List<CompilationInfo::Bailout*>* bailouts = info->bailouts();
282 for (int i = 0; i < bailouts->length(); i++) {
283 __ bind(bailouts->at(i)->label());
284 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000285 }
286
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000287 // Initialize the function return target after the locals are set
288 // up, because it needs the expected frame height from the frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000289 function_return_.set_direction(JumpTarget::BIDIRECTIONAL);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000290 function_return_is_shadowed_ = false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000291
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000292 // Generate code to 'execute' declarations and initialize functions
293 // (source elements). In case of an illegal redeclaration we need to
294 // handle that instead of processing the declarations.
ager@chromium.org5c838252010-02-19 08:53:10 +0000295 if (scope()->HasIllegalRedeclaration()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000296 Comment cmnt(masm_, "[ illegal redeclarations");
ager@chromium.org5c838252010-02-19 08:53:10 +0000297 scope()->VisitIllegalRedeclaration(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000298 } else {
299 Comment cmnt(masm_, "[ declarations");
ager@chromium.org5c838252010-02-19 08:53:10 +0000300 ProcessDeclarations(scope()->declarations());
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000301 // Bail out if a stack-overflow exception occurred when processing
302 // declarations.
kasper.lund212ac232008-07-16 07:07:30 +0000303 if (HasStackOverflow()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000304 }
305
mads.s.ager31e71382008-08-13 09:32:07 +0000306 if (FLAG_trace) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000307 frame_->CallRuntime(Runtime::kTraceEnter, 0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000308 // Ignore the return value.
mads.s.ager31e71382008-08-13 09:32:07 +0000309 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000310
311 // Compile the body of the function in a vanilla state. Don't
312 // bother compiling all the code if the scope has an illegal
313 // redeclaration.
ager@chromium.org5c838252010-02-19 08:53:10 +0000314 if (!scope()->HasIllegalRedeclaration()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000315 Comment cmnt(masm_, "[ function body");
316#ifdef DEBUG
317 bool is_builtin = Bootstrapper::IsActive();
318 bool should_trace =
319 is_builtin ? FLAG_trace_builtin_calls : FLAG_trace_calls;
mads.s.ager31e71382008-08-13 09:32:07 +0000320 if (should_trace) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000321 frame_->CallRuntime(Runtime::kDebugTrace, 0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000322 // Ignore the return value.
mads.s.ager31e71382008-08-13 09:32:07 +0000323 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000324#endif
ager@chromium.org5c838252010-02-19 08:53:10 +0000325 VisitStatementsAndSpill(info->function()->body());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000326 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000327 }
328
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000329 // Generate the return sequence if necessary.
ager@chromium.org4af710e2009-09-15 12:20:11 +0000330 if (has_valid_frame() || function_return_.is_linked()) {
331 if (!function_return_.is_linked()) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000332 CodeForReturnPosition(info->function());
ager@chromium.org4af710e2009-09-15 12:20:11 +0000333 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000334 // exit
335 // r0: result
336 // sp: stack pointer
337 // fp: frame pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000338 // cp: callee's context
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000339 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
mads.s.ager31e71382008-08-13 09:32:07 +0000340
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000341 function_return_.Bind();
342 if (FLAG_trace) {
343 // Push the return value on the stack as the parameter.
344 // Runtime::TraceExit returns the parameter as it is.
345 frame_->EmitPush(r0);
346 frame_->CallRuntime(Runtime::kTraceExit, 1);
347 }
348
ager@chromium.org4af710e2009-09-15 12:20:11 +0000349 // Add a label for checking the size of the code used for returning.
350 Label check_exit_codesize;
351 masm_->bind(&check_exit_codesize);
352
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000353 // Calculate the exact length of the return sequence and make sure that
354 // the constant pool is not emitted inside of the return sequence.
ager@chromium.org5c838252010-02-19 08:53:10 +0000355 int32_t sp_delta = (scope()->num_parameters() + 1) * kPointerSize;
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000356 int return_sequence_length = Assembler::kJSReturnSequenceLength;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000357 if (!masm_->ImmediateFitsAddrMode1Instruction(sp_delta)) {
358 // Additional mov instruction generated.
359 return_sequence_length++;
360 }
361 masm_->BlockConstPoolFor(return_sequence_length);
362
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000363 // Tear down the frame which will restore the caller's frame pointer and
364 // the link register.
365 frame_->Exit();
366
ager@chromium.org4af710e2009-09-15 12:20:11 +0000367 // Here we use masm_-> instead of the __ macro to avoid the code coverage
368 // tool from instrumenting as we rely on the code size here.
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000369 masm_->add(sp, sp, Operand(sp_delta));
ager@chromium.org4af710e2009-09-15 12:20:11 +0000370 masm_->Jump(lr);
371
372 // Check that the size of the code used for returning matches what is
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000373 // expected by the debugger. The add instruction above is an addressing
374 // mode 1 instruction where there are restrictions on which immediate values
375 // can be encoded in the instruction and which immediate values requires
376 // use of an additional instruction for moving the immediate to a temporary
377 // register.
378 ASSERT_EQ(return_sequence_length,
ager@chromium.org4af710e2009-09-15 12:20:11 +0000379 masm_->InstructionsGeneratedSince(&check_exit_codesize));
mads.s.ager31e71382008-08-13 09:32:07 +0000380 }
381
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000382 // Code generation state must be reset.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000383 ASSERT(!has_cc());
384 ASSERT(state_ == NULL);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000385 ASSERT(!function_return_is_shadowed_);
386 function_return_.Unuse();
387 DeleteFrame();
388
389 // Process any deferred code using the register allocator.
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000390 if (!HasStackOverflow()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000391 ProcessDeferred();
392 }
393
394 allocator_ = NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000395}
396
397
ager@chromium.org7c537e22008-10-16 08:43:32 +0000398MemOperand CodeGenerator::SlotOperand(Slot* slot, Register tmp) {
399 // Currently, this assertion will fail if we try to assign to
400 // a constant variable that is constant because it is read-only
401 // (such as the variable referring to a named function expression).
402 // We need to implement assignments to read-only variables.
403 // Ideally, we should do this during AST generation (by converting
404 // such assignments into expression statements); however, in general
405 // we may not be able to make the decision until past AST generation,
406 // that is when the entire program is known.
407 ASSERT(slot != NULL);
408 int index = slot->index();
409 switch (slot->type()) {
410 case Slot::PARAMETER:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000411 return frame_->ParameterAt(index);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000412
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000413 case Slot::LOCAL:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000414 return frame_->LocalAt(index);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000415
416 case Slot::CONTEXT: {
417 // Follow the context chain if necessary.
418 ASSERT(!tmp.is(cp)); // do not overwrite context register
419 Register context = cp;
420 int chain_length = scope()->ContextChainLength(slot->var()->scope());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000421 for (int i = 0; i < chain_length; i++) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000422 // Load the closure.
423 // (All contexts, even 'with' contexts, have a closure,
424 // and it is the same for all contexts inside a function.
425 // There is no need to go to the function context first.)
426 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
427 // Load the function context (which is the incoming, outer context).
428 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
429 context = tmp;
430 }
431 // We may have a 'with' context now. Get the function context.
432 // (In fact this mov may never be the needed, since the scope analysis
433 // may not permit a direct context access in this case and thus we are
434 // always at a function context. However it is safe to dereference be-
435 // cause the function context of a function context is itself. Before
436 // deleting this mov we should try to create a counter-example first,
437 // though...)
438 __ ldr(tmp, ContextOperand(context, Context::FCONTEXT_INDEX));
439 return ContextOperand(tmp, index);
440 }
441
442 default:
443 UNREACHABLE();
444 return MemOperand(r0, 0);
445 }
446}
447
448
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000449MemOperand CodeGenerator::ContextSlotOperandCheckExtensions(
450 Slot* slot,
451 Register tmp,
452 Register tmp2,
453 JumpTarget* slow) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000454 ASSERT(slot->type() == Slot::CONTEXT);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000455 Register context = cp;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000456
ager@chromium.org381abbb2009-02-25 13:23:22 +0000457 for (Scope* s = scope(); s != slot->var()->scope(); s = s->outer_scope()) {
458 if (s->num_heap_slots() > 0) {
459 if (s->calls_eval()) {
460 // Check that extension is NULL.
461 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
462 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000463 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000464 }
465 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
466 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
467 context = tmp;
468 }
469 }
470 // Check that last extension is NULL.
471 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
472 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000473 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000474 __ ldr(tmp, ContextOperand(context, Context::FCONTEXT_INDEX));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000475 return ContextOperand(tmp, slot->index());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000476}
477
478
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000479// Loads a value on TOS. If it is a boolean value, the result may have been
480// (partially) translated into branches, or it may have set the condition
481// code register. If force_cc is set, the value is forced to set the
482// condition code register and no value is pushed. If the condition code
483// register was set, has_cc() is true and cc_reg_ contains the condition to
484// test for 'true'.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000485void CodeGenerator::LoadCondition(Expression* x,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000486 JumpTarget* true_target,
487 JumpTarget* false_target,
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000488 bool force_cc) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000489 ASSERT(!has_cc());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000490 int original_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000491
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000492 { CodeGenState new_state(this, true_target, false_target);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000493 Visit(x);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000494
495 // If we hit a stack overflow, we may not have actually visited
496 // the expression. In that case, we ensure that we have a
497 // valid-looking frame state because we will continue to generate
498 // code as we unwind the C++ stack.
499 //
500 // It's possible to have both a stack overflow and a valid frame
501 // state (eg, a subexpression overflowed, visiting it returned
502 // with a dummied frame state, and visiting this expression
503 // returned with a normal-looking state).
504 if (HasStackOverflow() &&
505 has_valid_frame() &&
506 !has_cc() &&
507 frame_->height() == original_height) {
508 true_target->Jump();
509 }
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000510 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000511 if (force_cc && frame_ != NULL && !has_cc()) {
mads.s.ager31e71382008-08-13 09:32:07 +0000512 // Convert the TOS value to a boolean in the condition code register.
513 ToBoolean(true_target, false_target);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000514 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000515 ASSERT(!force_cc || !has_valid_frame() || has_cc());
516 ASSERT(!has_valid_frame() ||
517 (has_cc() && frame_->height() == original_height) ||
518 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000519}
520
521
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000522void CodeGenerator::Load(Expression* expr) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000523#ifdef DEBUG
524 int original_height = frame_->height();
525#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000526 JumpTarget true_target;
527 JumpTarget false_target;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000528 LoadCondition(expr, &true_target, &false_target, false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000529
530 if (has_cc()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000531 // Convert cc_reg_ into a boolean value.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000532 JumpTarget loaded;
533 JumpTarget materialize_true;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000534 materialize_true.Branch(cc_reg_);
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000535 __ LoadRoot(r0, Heap::kFalseValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000536 frame_->EmitPush(r0);
537 loaded.Jump();
538 materialize_true.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000539 __ LoadRoot(r0, Heap::kTrueValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000540 frame_->EmitPush(r0);
541 loaded.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000542 cc_reg_ = al;
543 }
544
545 if (true_target.is_linked() || false_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000546 // We have at least one condition value that has been "translated"
547 // into a branch, thus it needs to be loaded explicitly.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000548 JumpTarget loaded;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000549 if (frame_ != NULL) {
550 loaded.Jump(); // Don't lose the current TOS.
551 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000552 bool both = true_target.is_linked() && false_target.is_linked();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000553 // Load "true" if necessary.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000554 if (true_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000555 true_target.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000556 __ LoadRoot(r0, Heap::kTrueValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000557 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000558 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000559 // If both "true" and "false" need to be loaded jump across the code for
560 // "false".
561 if (both) {
562 loaded.Jump();
563 }
564 // Load "false" if necessary.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000565 if (false_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000566 false_target.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000567 __ LoadRoot(r0, Heap::kFalseValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000568 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000569 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000570 // A value is loaded on all paths reaching this point.
571 loaded.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000572 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000573 ASSERT(has_valid_frame());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000574 ASSERT(!has_cc());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000575 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000576}
577
578
ager@chromium.org7c537e22008-10-16 08:43:32 +0000579void CodeGenerator::LoadGlobal() {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000580 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +0000581 __ ldr(r0, GlobalObject());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000582 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000583}
584
585
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000586void CodeGenerator::LoadGlobalReceiver(Register scratch) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000587 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000588 __ ldr(scratch, ContextOperand(cp, Context::GLOBAL_INDEX));
589 __ ldr(scratch,
590 FieldMemOperand(scratch, GlobalObject::kGlobalReceiverOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000591 frame_->EmitPush(scratch);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000592}
593
594
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000595void CodeGenerator::LoadTypeofExpression(Expression* expr) {
596 // Special handling of identifiers as subexpressions of typeof.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000597 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000598 Variable* variable = expr->AsVariableProxy()->AsVariable();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000599 if (variable != NULL && !variable->is_this() && variable->is_global()) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000600 // For a global variable we build the property reference
601 // <global>.<variable> and perform a (regular non-contextual) property
602 // load to make sure we do not get reference errors.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000603 Slot global(variable, Slot::CONTEXT, Context::GLOBAL_INDEX);
604 Literal key(variable->name());
ager@chromium.org236ad962008-09-25 09:45:57 +0000605 Property property(&global, &key, RelocInfo::kNoPosition);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000606 Reference ref(this, &property);
607 ref.GetValueAndSpill();
608 } else if (variable != NULL && variable->slot() != NULL) {
609 // For a variable that rewrites to a slot, we signal it is the immediate
610 // subexpression of a typeof.
611 LoadFromSlot(variable->slot(), INSIDE_TYPEOF);
612 frame_->SpillAll();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000613 } else {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000614 // Anything else can be handled normally.
615 LoadAndSpill(expr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000616 }
617}
618
619
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000620Reference::Reference(CodeGenerator* cgen,
621 Expression* expression,
622 bool persist_after_get)
623 : cgen_(cgen),
624 expression_(expression),
625 type_(ILLEGAL),
626 persist_after_get_(persist_after_get) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000627 cgen->LoadReference(this);
628}
629
630
631Reference::~Reference() {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000632 ASSERT(is_unloaded() || is_illegal());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000633}
634
635
ager@chromium.org7c537e22008-10-16 08:43:32 +0000636void CodeGenerator::LoadReference(Reference* ref) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000637 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +0000638 Comment cmnt(masm_, "[ LoadReference");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000639 Expression* e = ref->expression();
640 Property* property = e->AsProperty();
641 Variable* var = e->AsVariableProxy()->AsVariable();
642
643 if (property != NULL) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000644 // The expression is either a property or a variable proxy that rewrites
645 // to a property.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000646 LoadAndSpill(property->obj());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000647 if (property->key()->IsPropertyName()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000648 ref->set_type(Reference::NAMED);
649 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000650 LoadAndSpill(property->key());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000651 ref->set_type(Reference::KEYED);
652 }
653 } else if (var != NULL) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000654 // The expression is a variable proxy that does not rewrite to a
655 // property. Global variables are treated as named property references.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000656 if (var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000657 LoadGlobal();
658 ref->set_type(Reference::NAMED);
659 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000660 ASSERT(var->slot() != NULL);
661 ref->set_type(Reference::SLOT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000662 }
663 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000664 // Anything else is a runtime error.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000665 LoadAndSpill(e);
666 frame_->CallRuntime(Runtime::kThrowReferenceError, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000667 }
668}
669
670
ager@chromium.org7c537e22008-10-16 08:43:32 +0000671void CodeGenerator::UnloadReference(Reference* ref) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000672 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000673 // Pop a reference from the stack while preserving TOS.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000674 Comment cmnt(masm_, "[ UnloadReference");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000675 int size = ref->size();
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000676 if (size > 0) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000677 frame_->EmitPop(r0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000678 frame_->Drop(size);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000679 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000680 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000681 ref->set_unloaded();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000682}
683
684
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000685// ECMA-262, section 9.2, page 30: ToBoolean(). Convert the given
686// register to a boolean in the condition code register. The code
687// may jump to 'false_target' in case the register converts to 'false'.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000688void CodeGenerator::ToBoolean(JumpTarget* true_target,
689 JumpTarget* false_target) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000690 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +0000691 // Note: The generated code snippet does not change stack variables.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000692 // Only the condition code should be set.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000693 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000694
695 // Fast case checks
696
mads.s.ager31e71382008-08-13 09:32:07 +0000697 // Check if the value is 'false'.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000698 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
699 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000700 false_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000701
mads.s.ager31e71382008-08-13 09:32:07 +0000702 // Check if the value is 'true'.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000703 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
704 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000705 true_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000706
mads.s.ager31e71382008-08-13 09:32:07 +0000707 // Check if the value is 'undefined'.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000708 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
709 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000710 false_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000711
mads.s.ager31e71382008-08-13 09:32:07 +0000712 // Check if the value is a smi.
713 __ cmp(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000714 false_target->Branch(eq);
mads.s.ager31e71382008-08-13 09:32:07 +0000715 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000716 true_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000717
718 // Slow case: call the runtime.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000719 frame_->EmitPush(r0);
720 frame_->CallRuntime(Runtime::kToBool, 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000721 // Convert the result (r0) to a condition code.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000722 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
723 __ cmp(r0, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000724
725 cc_reg_ = ne;
726}
727
728
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000729void CodeGenerator::GenericBinaryOperation(Token::Value op,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000730 OverwriteMode overwrite_mode,
731 int constant_rhs) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000732 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +0000733 // sp[0] : y
734 // sp[1] : x
735 // result : r0
736
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000737 // Stub is entered with a call: 'return address' is in lr.
738 switch (op) {
739 case Token::ADD: // fall through.
740 case Token::SUB: // fall through.
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000741 case Token::MUL:
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000742 case Token::DIV:
743 case Token::MOD:
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000744 case Token::BIT_OR:
745 case Token::BIT_AND:
746 case Token::BIT_XOR:
747 case Token::SHL:
748 case Token::SHR:
749 case Token::SAR: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000750 frame_->EmitPop(r0); // r0 : y
751 frame_->EmitPop(r1); // r1 : x
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000752 GenericBinaryOpStub stub(op, overwrite_mode, constant_rhs);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000753 frame_->CallStub(&stub, 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000754 break;
755 }
756
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000757 case Token::COMMA:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000758 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000759 // simply discard left value
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000760 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000761 break;
762
763 default:
764 // Other cases should have been handled before this point.
765 UNREACHABLE();
766 break;
767 }
768}
769
770
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000771class DeferredInlineSmiOperation: public DeferredCode {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000772 public:
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000773 DeferredInlineSmiOperation(Token::Value op,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000774 int value,
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000775 bool reversed,
776 OverwriteMode overwrite_mode)
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000777 : op_(op),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000778 value_(value),
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000779 reversed_(reversed),
780 overwrite_mode_(overwrite_mode) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000781 set_comment("[ DeferredInlinedSmiOperation");
782 }
783
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000784 virtual void Generate();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000785
786 private:
787 Token::Value op_;
788 int value_;
789 bool reversed_;
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000790 OverwriteMode overwrite_mode_;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000791};
792
793
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000794void DeferredInlineSmiOperation::Generate() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000795 switch (op_) {
796 case Token::ADD: {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000797 // Revert optimistic add.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000798 if (reversed_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000799 __ sub(r0, r0, Operand(Smi::FromInt(value_)));
800 __ mov(r1, Operand(Smi::FromInt(value_)));
801 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000802 __ sub(r1, r0, Operand(Smi::FromInt(value_)));
803 __ mov(r0, Operand(Smi::FromInt(value_)));
804 }
805 break;
806 }
807
808 case Token::SUB: {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000809 // Revert optimistic sub.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000810 if (reversed_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000811 __ rsb(r0, r0, Operand(Smi::FromInt(value_)));
812 __ mov(r1, Operand(Smi::FromInt(value_)));
813 } else {
814 __ add(r1, r0, Operand(Smi::FromInt(value_)));
815 __ mov(r0, Operand(Smi::FromInt(value_)));
816 }
817 break;
818 }
819
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000820 // For these operations there is no optimistic operation that needs to be
821 // reverted.
822 case Token::MUL:
823 case Token::MOD:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000824 case Token::BIT_OR:
825 case Token::BIT_XOR:
826 case Token::BIT_AND: {
827 if (reversed_) {
828 __ mov(r1, Operand(Smi::FromInt(value_)));
829 } else {
830 __ mov(r1, Operand(r0));
831 __ mov(r0, Operand(Smi::FromInt(value_)));
832 }
833 break;
834 }
835
836 case Token::SHL:
837 case Token::SHR:
838 case Token::SAR: {
839 if (!reversed_) {
840 __ mov(r1, Operand(r0));
841 __ mov(r0, Operand(Smi::FromInt(value_)));
842 } else {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000843 UNREACHABLE(); // Should have been handled in SmiOperation.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000844 }
845 break;
846 }
847
848 default:
ager@chromium.orge2902be2009-06-08 12:21:35 +0000849 // Other cases should have been handled before this point.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000850 UNREACHABLE();
851 break;
852 }
853
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000854 GenericBinaryOpStub stub(op_, overwrite_mode_, value_);
ager@chromium.orge2902be2009-06-08 12:21:35 +0000855 __ CallStub(&stub);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000856}
857
858
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000859static bool PopCountLessThanEqual2(unsigned int x) {
860 x &= x - 1;
861 return (x & (x - 1)) == 0;
862}
863
864
865// Returns the index of the lowest bit set.
866static int BitPosition(unsigned x) {
867 int bit_posn = 0;
868 while ((x & 0xf) == 0) {
869 bit_posn += 4;
870 x >>= 4;
871 }
872 while ((x & 1) == 0) {
873 bit_posn++;
874 x >>= 1;
875 }
876 return bit_posn;
877}
878
879
ager@chromium.org7c537e22008-10-16 08:43:32 +0000880void CodeGenerator::SmiOperation(Token::Value op,
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000881 Handle<Object> value,
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000882 bool reversed,
883 OverwriteMode mode) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000884 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000885 // NOTE: This is an attempt to inline (a bit) more of the code for
886 // some possible smi operations (like + and -) when (at least) one
887 // of the operands is a literal smi. With this optimization, the
888 // performance of the system is increased by ~15%, and the generated
889 // code size is increased by ~1% (measured on a combination of
890 // different benchmarks).
891
mads.s.ager31e71382008-08-13 09:32:07 +0000892 // sp[0] : operand
893
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000894 int int_value = Smi::cast(*value)->value();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000895
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000896 JumpTarget exit;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000897 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000898
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000899 bool something_to_inline = true;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000900 switch (op) {
901 case Token::ADD: {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000902 DeferredCode* deferred =
ager@chromium.orge2902be2009-06-08 12:21:35 +0000903 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000904
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000905 __ add(r0, r0, Operand(value), SetCC);
ager@chromium.orge2902be2009-06-08 12:21:35 +0000906 deferred->Branch(vs);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000907 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orge2902be2009-06-08 12:21:35 +0000908 deferred->Branch(ne);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000909 deferred->BindExit();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000910 break;
911 }
912
913 case Token::SUB: {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000914 DeferredCode* deferred =
ager@chromium.orge2902be2009-06-08 12:21:35 +0000915 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000916
ager@chromium.orge2902be2009-06-08 12:21:35 +0000917 if (reversed) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000918 __ rsb(r0, r0, Operand(value), SetCC);
ager@chromium.orge2902be2009-06-08 12:21:35 +0000919 } else {
920 __ sub(r0, r0, Operand(value), SetCC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000921 }
ager@chromium.orge2902be2009-06-08 12:21:35 +0000922 deferred->Branch(vs);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000923 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orge2902be2009-06-08 12:21:35 +0000924 deferred->Branch(ne);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000925 deferred->BindExit();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000926 break;
927 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000928
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000929
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000930 case Token::BIT_OR:
931 case Token::BIT_XOR:
932 case Token::BIT_AND: {
933 DeferredCode* deferred =
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000934 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000935 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orge2902be2009-06-08 12:21:35 +0000936 deferred->Branch(ne);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000937 switch (op) {
938 case Token::BIT_OR: __ orr(r0, r0, Operand(value)); break;
939 case Token::BIT_XOR: __ eor(r0, r0, Operand(value)); break;
940 case Token::BIT_AND: __ and_(r0, r0, Operand(value)); break;
941 default: UNREACHABLE();
942 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000943 deferred->BindExit();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000944 break;
945 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000946
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000947 case Token::SHL:
948 case Token::SHR:
949 case Token::SAR: {
950 if (reversed) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000951 something_to_inline = false;
952 break;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000953 }
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000954 int shift_value = int_value & 0x1f; // least significant 5 bits
955 DeferredCode* deferred =
956 new DeferredInlineSmiOperation(op, shift_value, false, mode);
957 __ tst(r0, Operand(kSmiTagMask));
958 deferred->Branch(ne);
959 __ mov(r2, Operand(r0, ASR, kSmiTagSize)); // remove tags
960 switch (op) {
961 case Token::SHL: {
962 if (shift_value != 0) {
963 __ mov(r2, Operand(r2, LSL, shift_value));
964 }
965 // check that the *unsigned* result fits in a smi
966 __ add(r3, r2, Operand(0x40000000), SetCC);
967 deferred->Branch(mi);
968 break;
969 }
970 case Token::SHR: {
971 // LSR by immediate 0 means shifting 32 bits.
972 if (shift_value != 0) {
973 __ mov(r2, Operand(r2, LSR, shift_value));
974 }
975 // check that the *unsigned* result fits in a smi
976 // neither of the two high-order bits can be set:
977 // - 0x80000000: high bit would be lost when smi tagging
978 // - 0x40000000: this number would convert to negative when
979 // smi tagging these two cases can only happen with shifts
980 // by 0 or 1 when handed a valid smi
981 __ and_(r3, r2, Operand(0xc0000000), SetCC);
982 deferred->Branch(ne);
983 break;
984 }
985 case Token::SAR: {
986 if (shift_value != 0) {
987 // ASR by immediate 0 means shifting 32 bits.
988 __ mov(r2, Operand(r2, ASR, shift_value));
989 }
990 break;
991 }
992 default: UNREACHABLE();
993 }
994 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
995 deferred->BindExit();
996 break;
997 }
998
999 case Token::MOD: {
1000 if (reversed || int_value < 2 || !IsPowerOf2(int_value)) {
1001 something_to_inline = false;
1002 break;
1003 }
1004 DeferredCode* deferred =
1005 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
1006 unsigned mask = (0x80000000u | kSmiTagMask);
1007 __ tst(r0, Operand(mask));
1008 deferred->Branch(ne); // Go to deferred code on non-Smis and negative.
1009 mask = (int_value << kSmiTagSize) - 1;
1010 __ and_(r0, r0, Operand(mask));
1011 deferred->BindExit();
1012 break;
1013 }
1014
1015 case Token::MUL: {
1016 if (!IsEasyToMultiplyBy(int_value)) {
1017 something_to_inline = false;
1018 break;
1019 }
1020 DeferredCode* deferred =
1021 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
1022 unsigned max_smi_that_wont_overflow = Smi::kMaxValue / int_value;
1023 max_smi_that_wont_overflow <<= kSmiTagSize;
1024 unsigned mask = 0x80000000u;
1025 while ((mask & max_smi_that_wont_overflow) == 0) {
1026 mask |= mask >> 1;
1027 }
1028 mask |= kSmiTagMask;
1029 // This does a single mask that checks for a too high value in a
1030 // conservative way and for a non-Smi. It also filters out negative
1031 // numbers, unfortunately, but since this code is inline we prefer
1032 // brevity to comprehensiveness.
1033 __ tst(r0, Operand(mask));
1034 deferred->Branch(ne);
1035 MultiplyByKnownInt(masm_, r0, r0, int_value);
1036 deferred->BindExit();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001037 break;
1038 }
1039
1040 default:
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001041 something_to_inline = false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001042 break;
1043 }
1044
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001045 if (!something_to_inline) {
1046 if (!reversed) {
1047 frame_->EmitPush(r0);
1048 __ mov(r0, Operand(value));
1049 frame_->EmitPush(r0);
1050 GenericBinaryOperation(op, mode, int_value);
1051 } else {
1052 __ mov(ip, Operand(value));
1053 frame_->EmitPush(ip);
1054 frame_->EmitPush(r0);
1055 GenericBinaryOperation(op, mode, kUnknownIntValue);
1056 }
1057 }
1058
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001059 exit.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001060}
1061
1062
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001063void CodeGenerator::Comparison(Condition cc,
1064 Expression* left,
1065 Expression* right,
1066 bool strict) {
1067 if (left != NULL) LoadAndSpill(left);
1068 if (right != NULL) LoadAndSpill(right);
1069
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001070 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +00001071 // sp[0] : y
1072 // sp[1] : x
1073 // result : cc register
1074
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001075 // Strict only makes sense for equality comparisons.
1076 ASSERT(!strict || cc == eq);
1077
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001078 JumpTarget exit;
1079 JumpTarget smi;
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001080 // Implement '>' and '<=' by reversal to obtain ECMA-262 conversion order.
1081 if (cc == gt || cc == le) {
1082 cc = ReverseCondition(cc);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001083 frame_->EmitPop(r1);
1084 frame_->EmitPop(r0);
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001085 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001086 frame_->EmitPop(r0);
1087 frame_->EmitPop(r1);
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001088 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001089 __ orr(r2, r0, Operand(r1));
1090 __ tst(r2, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001091 smi.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001092
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001093 // Perform non-smi comparison by stub.
1094 // CompareStub takes arguments in r0 and r1, returns <0, >0 or 0 in r0.
1095 // We call with 0 args because there are 0 on the stack.
1096 CompareStub stub(cc, strict);
1097 frame_->CallStub(&stub, 0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001098 __ cmp(r0, Operand(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001099 exit.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001100
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001101 // Do smi comparisons by pointer comparison.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001102 smi.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001103 __ cmp(r1, Operand(r0));
1104
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001105 exit.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001106 cc_reg_ = cc;
1107}
1108
1109
mads.s.ager31e71382008-08-13 09:32:07 +00001110// Call the function on the stack with the given arguments.
ager@chromium.org7c537e22008-10-16 08:43:32 +00001111void CodeGenerator::CallWithArguments(ZoneList<Expression*>* args,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001112 CallFunctionFlags flags,
1113 int position) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001114 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001115 // Push the arguments ("left-to-right") on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001116 int arg_count = args->length();
1117 for (int i = 0; i < arg_count; i++) {
1118 LoadAndSpill(args->at(i));
mads.s.ager31e71382008-08-13 09:32:07 +00001119 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001120
kasper.lund7276f142008-07-30 08:49:36 +00001121 // Record the position for debugging purposes.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001122 CodeForSourcePosition(position);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001123
kasper.lund7276f142008-07-30 08:49:36 +00001124 // Use the shared code stub to call the function.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001125 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001126 CallFunctionStub call_function(arg_count, in_loop, flags);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001127 frame_->CallStub(&call_function, arg_count + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001128
1129 // Restore context and pop function from the stack.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001130 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001131 frame_->Drop(); // discard the TOS
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001132}
1133
1134
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001135void CodeGenerator::Branch(bool if_true, JumpTarget* target) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001136 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001137 ASSERT(has_cc());
1138 Condition cc = if_true ? cc_reg_ : NegateCondition(cc_reg_);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001139 target->Branch(cc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001140 cc_reg_ = al;
1141}
1142
1143
ager@chromium.org7c537e22008-10-16 08:43:32 +00001144void CodeGenerator::CheckStack() {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001145 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3811b432009-10-28 14:53:37 +00001146 Comment cmnt(masm_, "[ check stack");
1147 __ LoadRoot(ip, Heap::kStackLimitRootIndex);
1148 // Put the lr setup instruction in the delay slot. kInstrSize is added to
1149 // the implicit 8 byte offset that always applies to operations with pc and
1150 // gives a return address 12 bytes down.
1151 masm_->add(lr, pc, Operand(Assembler::kInstrSize));
1152 masm_->cmp(sp, Operand(ip));
1153 StackCheckStub stub;
1154 // Call the stub if lower.
1155 masm_->mov(pc,
1156 Operand(reinterpret_cast<intptr_t>(stub.GetCode().location()),
1157 RelocInfo::CODE_TARGET),
1158 LeaveCC,
1159 lo);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001160}
1161
1162
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001163void CodeGenerator::VisitStatements(ZoneList<Statement*>* statements) {
1164#ifdef DEBUG
1165 int original_height = frame_->height();
1166#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001167 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001168 for (int i = 0; frame_ != NULL && i < statements->length(); i++) {
1169 VisitAndSpill(statements->at(i));
1170 }
1171 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1172}
1173
1174
ager@chromium.org7c537e22008-10-16 08:43:32 +00001175void CodeGenerator::VisitBlock(Block* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001176#ifdef DEBUG
1177 int original_height = frame_->height();
1178#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001179 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001180 Comment cmnt(masm_, "[ Block");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001181 CodeForStatementPosition(node);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001182 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001183 VisitStatementsAndSpill(node->statements());
1184 if (node->break_target()->is_linked()) {
1185 node->break_target()->Bind();
1186 }
1187 node->break_target()->Unuse();
1188 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001189}
1190
1191
ager@chromium.org7c537e22008-10-16 08:43:32 +00001192void CodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001193 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3811b432009-10-28 14:53:37 +00001194 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00001195 __ mov(r0, Operand(pairs));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001196 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001197 __ mov(r0, Operand(Smi::FromInt(is_eval() ? 1 : 0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001198 frame_->EmitPush(r0);
1199 frame_->CallRuntime(Runtime::kDeclareGlobals, 3);
mads.s.ager31e71382008-08-13 09:32:07 +00001200 // The result is discarded.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001201}
1202
1203
ager@chromium.org7c537e22008-10-16 08:43:32 +00001204void CodeGenerator::VisitDeclaration(Declaration* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001205#ifdef DEBUG
1206 int original_height = frame_->height();
1207#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001208 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001209 Comment cmnt(masm_, "[ Declaration");
1210 Variable* var = node->proxy()->var();
1211 ASSERT(var != NULL); // must have been resolved
1212 Slot* slot = var->slot();
1213
1214 // If it was not possible to allocate the variable at compile time,
1215 // we need to "declare" it at runtime to make sure it actually
1216 // exists in the local context.
1217 if (slot != NULL && slot->type() == Slot::LOOKUP) {
1218 // Variables with a "LOOKUP" slot were introduced as non-locals
1219 // during variable resolution and must have mode DYNAMIC.
ager@chromium.org381abbb2009-02-25 13:23:22 +00001220 ASSERT(var->is_dynamic());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001221 // For now, just do a runtime call.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001222 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00001223 __ mov(r0, Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001224 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001225 // Declaration nodes are always declared in only two modes.
1226 ASSERT(node->mode() == Variable::VAR || node->mode() == Variable::CONST);
1227 PropertyAttributes attr = node->mode() == Variable::VAR ? NONE : READ_ONLY;
mads.s.ager31e71382008-08-13 09:32:07 +00001228 __ mov(r0, Operand(Smi::FromInt(attr)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001229 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001230 // Push initial value, if any.
1231 // Note: For variables we must not push an initial value (such as
1232 // 'undefined') because we may have a (legal) redeclaration and we
1233 // must not destroy the current value.
1234 if (node->mode() == Variable::CONST) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001235 __ LoadRoot(r0, Heap::kTheHoleValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001236 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001237 } else if (node->fun() != NULL) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001238 LoadAndSpill(node->fun());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001239 } else {
mads.s.ager31e71382008-08-13 09:32:07 +00001240 __ mov(r0, Operand(0)); // no initial value!
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001241 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001242 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001243 frame_->CallRuntime(Runtime::kDeclareContextSlot, 4);
ager@chromium.org7c537e22008-10-16 08:43:32 +00001244 // Ignore the return value (declarations are statements).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001245 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001246 return;
1247 }
1248
1249 ASSERT(!var->is_global());
1250
1251 // If we have a function or a constant, we need to initialize the variable.
1252 Expression* val = NULL;
1253 if (node->mode() == Variable::CONST) {
1254 val = new Literal(Factory::the_hole_value());
1255 } else {
1256 val = node->fun(); // NULL if we don't have a function
1257 }
1258
1259 if (val != NULL) {
iposva@chromium.org245aa852009-02-10 00:49:54 +00001260 {
1261 // Set initial value.
1262 Reference target(this, node->proxy());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001263 LoadAndSpill(val);
iposva@chromium.org245aa852009-02-10 00:49:54 +00001264 target.SetValue(NOT_CONST_INIT);
iposva@chromium.org245aa852009-02-10 00:49:54 +00001265 }
1266 // Get rid of the assigned value (declarations are statements).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001267 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001268 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001269 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001270}
1271
1272
ager@chromium.org7c537e22008-10-16 08:43:32 +00001273void CodeGenerator::VisitExpressionStatement(ExpressionStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001274#ifdef DEBUG
1275 int original_height = frame_->height();
1276#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001277 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001278 Comment cmnt(masm_, "[ ExpressionStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001279 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001280 Expression* expression = node->expression();
1281 expression->MarkAsStatement();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001282 LoadAndSpill(expression);
1283 frame_->Drop();
1284 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001285}
1286
1287
ager@chromium.org7c537e22008-10-16 08:43:32 +00001288void CodeGenerator::VisitEmptyStatement(EmptyStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001289#ifdef DEBUG
1290 int original_height = frame_->height();
1291#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001292 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001293 Comment cmnt(masm_, "// EmptyStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001294 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001295 // nothing to do
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001296 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001297}
1298
1299
ager@chromium.org7c537e22008-10-16 08:43:32 +00001300void CodeGenerator::VisitIfStatement(IfStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001301#ifdef DEBUG
1302 int original_height = frame_->height();
1303#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001304 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001305 Comment cmnt(masm_, "[ IfStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001306 // Generate different code depending on which parts of the if statement
1307 // are present or not.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001308 bool has_then_stm = node->HasThenStatement();
1309 bool has_else_stm = node->HasElseStatement();
1310
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001311 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001312
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001313 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001314 if (has_then_stm && has_else_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00001315 Comment cmnt(masm_, "[ IfThenElse");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001316 JumpTarget then;
1317 JumpTarget else_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001318 // if (cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001319 LoadConditionAndSpill(node->condition(), &then, &else_, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001320 if (frame_ != NULL) {
1321 Branch(false, &else_);
1322 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001323 // then
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001324 if (frame_ != NULL || then.is_linked()) {
1325 then.Bind();
1326 VisitAndSpill(node->then_statement());
1327 }
1328 if (frame_ != NULL) {
1329 exit.Jump();
1330 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001331 // else
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001332 if (else_.is_linked()) {
1333 else_.Bind();
1334 VisitAndSpill(node->else_statement());
1335 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001336
1337 } else if (has_then_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00001338 Comment cmnt(masm_, "[ IfThen");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001339 ASSERT(!has_else_stm);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001340 JumpTarget then;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001341 // if (cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001342 LoadConditionAndSpill(node->condition(), &then, &exit, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001343 if (frame_ != NULL) {
1344 Branch(false, &exit);
1345 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001346 // then
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001347 if (frame_ != NULL || then.is_linked()) {
1348 then.Bind();
1349 VisitAndSpill(node->then_statement());
1350 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001351
1352 } else if (has_else_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00001353 Comment cmnt(masm_, "[ IfElse");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001354 ASSERT(!has_then_stm);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001355 JumpTarget else_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001356 // if (!cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001357 LoadConditionAndSpill(node->condition(), &exit, &else_, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001358 if (frame_ != NULL) {
1359 Branch(true, &exit);
1360 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001361 // else
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001362 if (frame_ != NULL || else_.is_linked()) {
1363 else_.Bind();
1364 VisitAndSpill(node->else_statement());
1365 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001366
1367 } else {
mads.s.ager31e71382008-08-13 09:32:07 +00001368 Comment cmnt(masm_, "[ If");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001369 ASSERT(!has_then_stm && !has_else_stm);
1370 // if (cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001371 LoadConditionAndSpill(node->condition(), &exit, &exit, false);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001372 if (frame_ != NULL) {
1373 if (has_cc()) {
1374 cc_reg_ = al;
1375 } else {
1376 frame_->Drop();
1377 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001378 }
1379 }
1380
1381 // end
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001382 if (exit.is_linked()) {
1383 exit.Bind();
1384 }
1385 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001386}
1387
1388
ager@chromium.org7c537e22008-10-16 08:43:32 +00001389void CodeGenerator::VisitContinueStatement(ContinueStatement* node) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001390 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001391 Comment cmnt(masm_, "[ ContinueStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001392 CodeForStatementPosition(node);
1393 node->target()->continue_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001394}
1395
1396
ager@chromium.org7c537e22008-10-16 08:43:32 +00001397void CodeGenerator::VisitBreakStatement(BreakStatement* node) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001398 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001399 Comment cmnt(masm_, "[ BreakStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001400 CodeForStatementPosition(node);
1401 node->target()->break_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001402}
1403
1404
ager@chromium.org7c537e22008-10-16 08:43:32 +00001405void CodeGenerator::VisitReturnStatement(ReturnStatement* node) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001406 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001407 Comment cmnt(masm_, "[ ReturnStatement");
mads.s.ager31e71382008-08-13 09:32:07 +00001408
ager@chromium.org4af710e2009-09-15 12:20:11 +00001409 CodeForStatementPosition(node);
1410 LoadAndSpill(node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001411 if (function_return_is_shadowed_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001412 frame_->EmitPop(r0);
1413 function_return_.Jump();
1414 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001415 // Pop the result from the frame and prepare the frame for
1416 // returning thus making it easier to merge.
1417 frame_->EmitPop(r0);
1418 frame_->PrepareForReturn();
1419
1420 function_return_.Jump();
1421 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001422}
1423
1424
ager@chromium.org7c537e22008-10-16 08:43:32 +00001425void CodeGenerator::VisitWithEnterStatement(WithEnterStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001426#ifdef DEBUG
1427 int original_height = frame_->height();
1428#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001429 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001430 Comment cmnt(masm_, "[ WithEnterStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001431 CodeForStatementPosition(node);
1432 LoadAndSpill(node->expression());
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001433 if (node->is_catch_block()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001434 frame_->CallRuntime(Runtime::kPushCatchContext, 1);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001435 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001436 frame_->CallRuntime(Runtime::kPushContext, 1);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001437 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001438#ifdef DEBUG
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001439 JumpTarget verified_true;
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001440 __ cmp(r0, Operand(cp));
1441 verified_true.Branch(eq);
1442 __ stop("PushContext: r0 is expected to be the same as cp");
1443 verified_true.Bind();
1444#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001445 // Update context local.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001446 __ str(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001447 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001448}
1449
1450
ager@chromium.org7c537e22008-10-16 08:43:32 +00001451void CodeGenerator::VisitWithExitStatement(WithExitStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001452#ifdef DEBUG
1453 int original_height = frame_->height();
1454#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001455 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001456 Comment cmnt(masm_, "[ WithExitStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001457 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001458 // Pop context.
1459 __ ldr(cp, ContextOperand(cp, Context::PREVIOUS_INDEX));
1460 // Update context local.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001461 __ str(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001462 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001463}
1464
1465
ager@chromium.org7c537e22008-10-16 08:43:32 +00001466void CodeGenerator::VisitSwitchStatement(SwitchStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001467#ifdef DEBUG
1468 int original_height = frame_->height();
1469#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001470 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001471 Comment cmnt(masm_, "[ SwitchStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001472 CodeForStatementPosition(node);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001473 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001474
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001475 LoadAndSpill(node->tag());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00001476
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001477 JumpTarget next_test;
1478 JumpTarget fall_through;
1479 JumpTarget default_entry;
1480 JumpTarget default_exit(JumpTarget::BIDIRECTIONAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001481 ZoneList<CaseClause*>* cases = node->cases();
1482 int length = cases->length();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001483 CaseClause* default_clause = NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001484
1485 for (int i = 0; i < length; i++) {
1486 CaseClause* clause = cases->at(i);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001487 if (clause->is_default()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001488 // Remember the default clause and compile it at the end.
1489 default_clause = clause;
1490 continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001491 }
1492
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001493 Comment cmnt(masm_, "[ Case clause");
1494 // Compile the test.
1495 next_test.Bind();
1496 next_test.Unuse();
1497 // Duplicate TOS.
1498 __ ldr(r0, frame_->Top());
1499 frame_->EmitPush(r0);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001500 Comparison(eq, NULL, clause->label(), true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001501 Branch(false, &next_test);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001502
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001503 // Before entering the body from the test, remove the switch value from
1504 // the stack.
1505 frame_->Drop();
1506
1507 // Label the body so that fall through is enabled.
1508 if (i > 0 && cases->at(i - 1)->is_default()) {
1509 default_exit.Bind();
1510 } else {
1511 fall_through.Bind();
1512 fall_through.Unuse();
1513 }
1514 VisitStatementsAndSpill(clause->statements());
1515
1516 // If control flow can fall through from the body, jump to the next body
1517 // or the end of the statement.
1518 if (frame_ != NULL) {
1519 if (i < length - 1 && cases->at(i + 1)->is_default()) {
1520 default_entry.Jump();
1521 } else {
1522 fall_through.Jump();
1523 }
1524 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001525 }
1526
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001527 // The final "test" removes the switch value.
1528 next_test.Bind();
1529 frame_->Drop();
1530
1531 // If there is a default clause, compile it.
1532 if (default_clause != NULL) {
1533 Comment cmnt(masm_, "[ Default clause");
1534 default_entry.Bind();
1535 VisitStatementsAndSpill(default_clause->statements());
1536 // If control flow can fall out of the default and there is a case after
1537 // it, jup to that case's body.
1538 if (frame_ != NULL && default_exit.is_bound()) {
1539 default_exit.Jump();
1540 }
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001541 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001542
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001543 if (fall_through.is_linked()) {
1544 fall_through.Bind();
1545 }
1546
1547 if (node->break_target()->is_linked()) {
1548 node->break_target()->Bind();
1549 }
1550 node->break_target()->Unuse();
1551 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001552}
1553
1554
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001555void CodeGenerator::VisitDoWhileStatement(DoWhileStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001556#ifdef DEBUG
1557 int original_height = frame_->height();
1558#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001559 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001560 Comment cmnt(masm_, "[ DoWhileStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001561 CodeForStatementPosition(node);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001562 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001563 JumpTarget body(JumpTarget::BIDIRECTIONAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001564
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001565 // Label the top of the loop for the backward CFG edge. If the test
1566 // is always true we can use the continue target, and if the test is
1567 // always false there is no need.
1568 ConditionAnalysis info = AnalyzeCondition(node->cond());
1569 switch (info) {
1570 case ALWAYS_TRUE:
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001571 node->continue_target()->set_direction(JumpTarget::BIDIRECTIONAL);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001572 node->continue_target()->Bind();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001573 break;
1574 case ALWAYS_FALSE:
1575 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
1576 break;
1577 case DONT_KNOW:
1578 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
1579 body.Bind();
1580 break;
1581 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001582
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001583 CheckStack(); // TODO(1222600): ignore if body contains calls.
1584 VisitAndSpill(node->body());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001585
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001586 // Compile the test.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001587 switch (info) {
1588 case ALWAYS_TRUE:
1589 // If control can fall off the end of the body, jump back to the
1590 // top.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001591 if (has_valid_frame()) {
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001592 node->continue_target()->Jump();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001593 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001594 break;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001595 case ALWAYS_FALSE:
1596 // If we have a continue in the body, we only have to bind its
1597 // jump target.
1598 if (node->continue_target()->is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001599 node->continue_target()->Bind();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001600 }
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001601 break;
1602 case DONT_KNOW:
1603 // We have to compile the test expression if it can be reached by
1604 // control flow falling out of the body or via continue.
1605 if (node->continue_target()->is_linked()) {
1606 node->continue_target()->Bind();
1607 }
1608 if (has_valid_frame()) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001609 Comment cmnt(masm_, "[ DoWhileCondition");
1610 CodeForDoWhileConditionPosition(node);
1611 LoadConditionAndSpill(node->cond(), &body, node->break_target(), true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001612 if (has_valid_frame()) {
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001613 // A invalid frame here indicates that control did not
1614 // fall out of the test expression.
1615 Branch(true, &body);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001616 }
1617 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001618 break;
1619 }
1620
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001621 if (node->break_target()->is_linked()) {
1622 node->break_target()->Bind();
1623 }
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001624 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1625}
1626
1627
1628void CodeGenerator::VisitWhileStatement(WhileStatement* node) {
1629#ifdef DEBUG
1630 int original_height = frame_->height();
1631#endif
1632 VirtualFrame::SpilledScope spilled_scope;
1633 Comment cmnt(masm_, "[ WhileStatement");
1634 CodeForStatementPosition(node);
1635
1636 // If the test is never true and has no side effects there is no need
1637 // to compile the test or body.
1638 ConditionAnalysis info = AnalyzeCondition(node->cond());
1639 if (info == ALWAYS_FALSE) return;
1640
1641 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
1642
1643 // Label the top of the loop with the continue target for the backward
1644 // CFG edge.
1645 node->continue_target()->set_direction(JumpTarget::BIDIRECTIONAL);
1646 node->continue_target()->Bind();
1647
1648 if (info == DONT_KNOW) {
1649 JumpTarget body;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001650 LoadConditionAndSpill(node->cond(), &body, node->break_target(), true);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001651 if (has_valid_frame()) {
1652 // A NULL frame indicates that control did not fall out of the
1653 // test expression.
1654 Branch(false, node->break_target());
1655 }
1656 if (has_valid_frame() || body.is_linked()) {
1657 body.Bind();
1658 }
1659 }
1660
1661 if (has_valid_frame()) {
1662 CheckStack(); // TODO(1222600): ignore if body contains calls.
1663 VisitAndSpill(node->body());
1664
1665 // If control flow can fall out of the body, jump back to the top.
1666 if (has_valid_frame()) {
1667 node->continue_target()->Jump();
1668 }
1669 }
1670 if (node->break_target()->is_linked()) {
1671 node->break_target()->Bind();
1672 }
1673 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1674}
1675
1676
1677void CodeGenerator::VisitForStatement(ForStatement* node) {
1678#ifdef DEBUG
1679 int original_height = frame_->height();
1680#endif
1681 VirtualFrame::SpilledScope spilled_scope;
1682 Comment cmnt(masm_, "[ ForStatement");
1683 CodeForStatementPosition(node);
1684 if (node->init() != NULL) {
1685 VisitAndSpill(node->init());
1686 }
1687
1688 // If the test is never true there is no need to compile the test or
1689 // body.
1690 ConditionAnalysis info = AnalyzeCondition(node->cond());
1691 if (info == ALWAYS_FALSE) return;
1692
1693 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
1694
1695 // If there is no update statement, label the top of the loop with the
1696 // continue target, otherwise with the loop target.
1697 JumpTarget loop(JumpTarget::BIDIRECTIONAL);
1698 if (node->next() == NULL) {
1699 node->continue_target()->set_direction(JumpTarget::BIDIRECTIONAL);
1700 node->continue_target()->Bind();
1701 } else {
1702 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
1703 loop.Bind();
1704 }
1705
1706 // If the test is always true, there is no need to compile it.
1707 if (info == DONT_KNOW) {
1708 JumpTarget body;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001709 LoadConditionAndSpill(node->cond(), &body, node->break_target(), true);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001710 if (has_valid_frame()) {
1711 Branch(false, node->break_target());
1712 }
1713 if (has_valid_frame() || body.is_linked()) {
1714 body.Bind();
1715 }
1716 }
1717
1718 if (has_valid_frame()) {
1719 CheckStack(); // TODO(1222600): ignore if body contains calls.
1720 VisitAndSpill(node->body());
1721
1722 if (node->next() == NULL) {
1723 // If there is no update statement and control flow can fall out
1724 // of the loop, jump directly to the continue label.
1725 if (has_valid_frame()) {
1726 node->continue_target()->Jump();
1727 }
1728 } else {
1729 // If there is an update statement and control flow can reach it
1730 // via falling out of the body of the loop or continuing, we
1731 // compile the update statement.
1732 if (node->continue_target()->is_linked()) {
1733 node->continue_target()->Bind();
1734 }
1735 if (has_valid_frame()) {
1736 // Record source position of the statement as this code which is
1737 // after the code for the body actually belongs to the loop
1738 // statement and not the body.
1739 CodeForStatementPosition(node);
1740 VisitAndSpill(node->next());
1741 loop.Jump();
1742 }
1743 }
1744 }
1745 if (node->break_target()->is_linked()) {
1746 node->break_target()->Bind();
1747 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001748 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001749}
1750
1751
ager@chromium.org7c537e22008-10-16 08:43:32 +00001752void CodeGenerator::VisitForInStatement(ForInStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001753#ifdef DEBUG
1754 int original_height = frame_->height();
1755#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001756 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001757 Comment cmnt(masm_, "[ ForInStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001758 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001759
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001760 JumpTarget primitive;
1761 JumpTarget jsobject;
1762 JumpTarget fixed_array;
1763 JumpTarget entry(JumpTarget::BIDIRECTIONAL);
1764 JumpTarget end_del_check;
1765 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001766
1767 // Get the object to enumerate over (converted to JSObject).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001768 LoadAndSpill(node->enumerable());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001769
1770 // Both SpiderMonkey and kjs ignore null and undefined in contrast
1771 // to the specification. 12.6.4 mandates a call to ToObject.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001772 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001773 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
1774 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001775 exit.Branch(eq);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001776 __ LoadRoot(ip, Heap::kNullValueRootIndex);
1777 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001778 exit.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001779
1780 // Stack layout in body:
1781 // [iteration counter (Smi)]
1782 // [length of array]
1783 // [FixedArray]
1784 // [Map or 0]
1785 // [Object]
1786
1787 // Check if enumerable is already a JSObject
1788 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001789 primitive.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00001790 __ CompareObjectType(r0, r1, r1, FIRST_JS_OBJECT_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001791 jsobject.Branch(hs);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001792
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001793 primitive.Bind();
1794 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001795 frame_->InvokeBuiltin(Builtins::TO_OBJECT, CALL_JS, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001796
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001797 jsobject.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001798 // Get the set of properties (as a FixedArray or Map).
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001799 // r0: value to be iterated over
1800 frame_->EmitPush(r0); // Push the object being iterated over.
1801
1802 // Check cache validity in generated code. This is a fast case for
1803 // the JSObject::IsSimpleEnum cache validity checks. If we cannot
1804 // guarantee cache validity, call the runtime system to check cache
1805 // validity or get the property names in a fixed array.
1806 JumpTarget call_runtime;
1807 JumpTarget loop(JumpTarget::BIDIRECTIONAL);
1808 JumpTarget check_prototype;
1809 JumpTarget use_cache;
1810 __ mov(r1, Operand(r0));
1811 loop.Bind();
1812 // Check that there are no elements.
1813 __ ldr(r2, FieldMemOperand(r1, JSObject::kElementsOffset));
1814 __ LoadRoot(r4, Heap::kEmptyFixedArrayRootIndex);
1815 __ cmp(r2, r4);
1816 call_runtime.Branch(ne);
1817 // Check that instance descriptors are not empty so that we can
1818 // check for an enum cache. Leave the map in r3 for the subsequent
1819 // prototype load.
1820 __ ldr(r3, FieldMemOperand(r1, HeapObject::kMapOffset));
1821 __ ldr(r2, FieldMemOperand(r3, Map::kInstanceDescriptorsOffset));
1822 __ LoadRoot(ip, Heap::kEmptyDescriptorArrayRootIndex);
1823 __ cmp(r2, ip);
1824 call_runtime.Branch(eq);
1825 // Check that there in an enum cache in the non-empty instance
1826 // descriptors. This is the case if the next enumeration index
1827 // field does not contain a smi.
1828 __ ldr(r2, FieldMemOperand(r2, DescriptorArray::kEnumerationIndexOffset));
1829 __ tst(r2, Operand(kSmiTagMask));
1830 call_runtime.Branch(eq);
1831 // For all objects but the receiver, check that the cache is empty.
1832 // r4: empty fixed array root.
1833 __ cmp(r1, r0);
1834 check_prototype.Branch(eq);
1835 __ ldr(r2, FieldMemOperand(r2, DescriptorArray::kEnumCacheBridgeCacheOffset));
1836 __ cmp(r2, r4);
1837 call_runtime.Branch(ne);
1838 check_prototype.Bind();
1839 // Load the prototype from the map and loop if non-null.
1840 __ ldr(r1, FieldMemOperand(r3, Map::kPrototypeOffset));
1841 __ LoadRoot(ip, Heap::kNullValueRootIndex);
1842 __ cmp(r1, ip);
1843 loop.Branch(ne);
1844 // The enum cache is valid. Load the map of the object being
1845 // iterated over and use the cache for the iteration.
1846 __ ldr(r0, FieldMemOperand(r0, HeapObject::kMapOffset));
1847 use_cache.Jump();
1848
1849 call_runtime.Bind();
1850 // Call the runtime to get the property names for the object.
1851 frame_->EmitPush(r0); // push the object (slot 4) for the runtime call
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001852 frame_->CallRuntime(Runtime::kGetPropertyNamesFast, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001853
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001854 // If we got a map from the runtime call, we can do a fast
1855 // modification check. Otherwise, we got a fixed array, and we have
1856 // to do a slow check.
1857 // r0: map or fixed array (result from call to
1858 // Runtime::kGetPropertyNamesFast)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001859 __ mov(r2, Operand(r0));
1860 __ ldr(r1, FieldMemOperand(r2, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001861 __ LoadRoot(ip, Heap::kMetaMapRootIndex);
1862 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001863 fixed_array.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001864
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001865 use_cache.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001866 // Get enum cache
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001867 // r0: map (either the result from a call to
1868 // Runtime::kGetPropertyNamesFast or has been fetched directly from
1869 // the object)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001870 __ mov(r1, Operand(r0));
1871 __ ldr(r1, FieldMemOperand(r1, Map::kInstanceDescriptorsOffset));
1872 __ ldr(r1, FieldMemOperand(r1, DescriptorArray::kEnumerationIndexOffset));
1873 __ ldr(r2,
1874 FieldMemOperand(r1, DescriptorArray::kEnumCacheBridgeCacheOffset));
1875
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001876 frame_->EmitPush(r0); // map
1877 frame_->EmitPush(r2); // enum cache bridge cache
mads.s.ager31e71382008-08-13 09:32:07 +00001878 __ ldr(r0, FieldMemOperand(r2, FixedArray::kLengthOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001879 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001880 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001881 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001882 frame_->EmitPush(r0);
1883 entry.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001884
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001885 fixed_array.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001886 __ mov(r1, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001887 frame_->EmitPush(r1); // insert 0 in place of Map
1888 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001889
1890 // Push the length of the array and the initial index onto the stack.
mads.s.ager31e71382008-08-13 09:32:07 +00001891 __ ldr(r0, FieldMemOperand(r0, FixedArray::kLengthOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001892 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001893 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001894 __ mov(r0, Operand(Smi::FromInt(0))); // init index
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001895 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001896
1897 // Condition.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001898 entry.Bind();
mads.s.ager31e71382008-08-13 09:32:07 +00001899 // sp[0] : index
1900 // sp[1] : array/enum cache length
1901 // sp[2] : array or enum cache
1902 // sp[3] : 0 or map
1903 // sp[4] : enumerable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001904 // Grab the current frame's height for the break and continue
1905 // targets only after all the state is pushed on the frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001906 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
1907 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001908
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001909 __ ldr(r0, frame_->ElementAt(0)); // load the current count
1910 __ ldr(r1, frame_->ElementAt(1)); // load the length
1911 __ cmp(r0, Operand(r1)); // compare to the array length
1912 node->break_target()->Branch(hs);
1913
1914 __ ldr(r0, frame_->ElementAt(0));
mads.s.ager31e71382008-08-13 09:32:07 +00001915
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001916 // Get the i'th entry of the array.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001917 __ ldr(r2, frame_->ElementAt(2));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001918 __ add(r2, r2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
1919 __ ldr(r3, MemOperand(r2, r0, LSL, kPointerSizeLog2 - kSmiTagSize));
1920
1921 // Get Map or 0.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001922 __ ldr(r2, frame_->ElementAt(3));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001923 // Check if this (still) matches the map of the enumerable.
1924 // If not, we have to filter the key.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001925 __ ldr(r1, frame_->ElementAt(4));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001926 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
1927 __ cmp(r1, Operand(r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001928 end_del_check.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001929
1930 // Convert the entry to a string (or null if it isn't a property anymore).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001931 __ ldr(r0, frame_->ElementAt(4)); // push enumerable
1932 frame_->EmitPush(r0);
1933 frame_->EmitPush(r3); // push entry
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001934 frame_->InvokeBuiltin(Builtins::FILTER_KEY, CALL_JS, 2);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001935 __ mov(r3, Operand(r0));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001936
1937 // If the property has been removed while iterating, we just skip it.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001938 __ LoadRoot(ip, Heap::kNullValueRootIndex);
1939 __ cmp(r3, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001940 node->continue_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001941
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001942 end_del_check.Bind();
1943 // Store the entry in the 'each' expression and take another spin in the
1944 // loop. r3: i'th entry of the enum cache (or string there of)
1945 frame_->EmitPush(r3); // push entry
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001946 { Reference each(this, node->each());
1947 if (!each.is_illegal()) {
mads.s.ager31e71382008-08-13 09:32:07 +00001948 if (each.size() > 0) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001949 __ ldr(r0, frame_->ElementAt(each.size()));
1950 frame_->EmitPush(r0);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001951 each.SetValue(NOT_CONST_INIT);
1952 frame_->Drop(2);
1953 } else {
1954 // If the reference was to a slot we rely on the convenient property
1955 // that it doesn't matter whether a value (eg, r3 pushed above) is
1956 // right on top of or right underneath a zero-sized reference.
1957 each.SetValue(NOT_CONST_INIT);
1958 frame_->Drop();
mads.s.ager31e71382008-08-13 09:32:07 +00001959 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001960 }
1961 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001962 // Body.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001963 CheckStack(); // TODO(1222600): ignore if body contains calls.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001964 VisitAndSpill(node->body());
1965
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001966 // Next. Reestablish a spilled frame in case we are coming here via
1967 // a continue in the body.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001968 node->continue_target()->Bind();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001969 frame_->SpillAll();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001970 frame_->EmitPop(r0);
1971 __ add(r0, r0, Operand(Smi::FromInt(1)));
1972 frame_->EmitPush(r0);
1973 entry.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001974
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001975 // Cleanup. No need to spill because VirtualFrame::Drop is safe for
1976 // any frame.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001977 node->break_target()->Bind();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001978 frame_->Drop(5);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001979
1980 // Exit.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001981 exit.Bind();
1982 node->continue_target()->Unuse();
1983 node->break_target()->Unuse();
1984 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001985}
1986
1987
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001988void CodeGenerator::VisitTryCatchStatement(TryCatchStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001989#ifdef DEBUG
1990 int original_height = frame_->height();
1991#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001992 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001993 Comment cmnt(masm_, "[ TryCatchStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001994 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001995
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001996 JumpTarget try_block;
1997 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001998
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001999 try_block.Call();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002000 // --- Catch block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002001 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002002
2003 // Store the caught exception in the catch variable.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002004 Variable* catch_var = node->catch_var()->var();
2005 ASSERT(catch_var != NULL && catch_var->slot() != NULL);
2006 StoreToSlot(catch_var->slot(), NOT_CONST_INIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002007
2008 // Remove the exception from the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002009 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002010
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002011 VisitStatementsAndSpill(node->catch_block()->statements());
2012 if (frame_ != NULL) {
2013 exit.Jump();
2014 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002015
2016
2017 // --- Try block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002018 try_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002019
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002020 frame_->PushTryHandler(TRY_CATCH_HANDLER);
2021 int handler_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002022
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002023 // Shadow the labels for all escapes from the try block, including
2024 // returns. During shadowing, the original label is hidden as the
2025 // LabelShadow and operations on the original actually affect the
2026 // shadowing label.
2027 //
2028 // We should probably try to unify the escaping labels and the return
2029 // label.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002030 int nof_escapes = node->escaping_targets()->length();
2031 List<ShadowTarget*> shadows(1 + nof_escapes);
2032
2033 // Add the shadow target for the function return.
2034 static const int kReturnShadowIndex = 0;
2035 shadows.Add(new ShadowTarget(&function_return_));
2036 bool function_return_was_shadowed = function_return_is_shadowed_;
2037 function_return_is_shadowed_ = true;
2038 ASSERT(shadows[kReturnShadowIndex]->other_target() == &function_return_);
2039
2040 // Add the remaining shadow targets.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002041 for (int i = 0; i < nof_escapes; i++) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002042 shadows.Add(new ShadowTarget(node->escaping_targets()->at(i)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002043 }
2044
2045 // Generate code for the statements in the try block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002046 VisitStatementsAndSpill(node->try_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002047
2048 // Stop the introduced shadowing and count the number of required unlinks.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002049 // After shadowing stops, the original labels are unshadowed and the
2050 // LabelShadows represent the formerly shadowing labels.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002051 bool has_unlinks = false;
2052 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002053 shadows[i]->StopShadowing();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002054 has_unlinks = has_unlinks || shadows[i]->is_linked();
2055 }
2056 function_return_is_shadowed_ = function_return_was_shadowed;
2057
2058 // Get an external reference to the handler address.
2059 ExternalReference handler_address(Top::k_handler_address);
2060
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002061 // If we can fall off the end of the try block, unlink from try chain.
2062 if (has_valid_frame()) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002063 // The next handler address is on top of the frame. Unlink from
2064 // the handler list and drop the rest of this handler from the
2065 // frame.
2066 ASSERT(StackHandlerConstants::kNextOffset == 0);
2067 frame_->EmitPop(r1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002068 __ mov(r3, Operand(handler_address));
2069 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002070 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002071 if (has_unlinks) {
2072 exit.Jump();
2073 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002074 }
2075
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002076 // Generate unlink code for the (formerly) shadowing labels that have been
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002077 // jumped to. Deallocate each shadow target.
2078 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002079 if (shadows[i]->is_linked()) {
mads.s.ager31e71382008-08-13 09:32:07 +00002080 // Unlink from try chain;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002081 shadows[i]->Bind();
2082 // Because we can be jumping here (to spilled code) from unspilled
2083 // code, we need to reestablish a spilled frame at this block.
2084 frame_->SpillAll();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002085
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002086 // Reload sp from the top handler, because some statements that we
2087 // break from (eg, for...in) may have left stuff on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002088 __ mov(r3, Operand(handler_address));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002089 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002090 frame_->Forget(frame_->height() - handler_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002091
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002092 ASSERT(StackHandlerConstants::kNextOffset == 0);
2093 frame_->EmitPop(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002094 __ str(r1, MemOperand(r3));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002095 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002096
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002097 if (!function_return_is_shadowed_ && i == kReturnShadowIndex) {
2098 frame_->PrepareForReturn();
2099 }
2100 shadows[i]->other_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002101 }
2102 }
2103
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002104 exit.Bind();
2105 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002106}
2107
2108
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002109void CodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002110#ifdef DEBUG
2111 int original_height = frame_->height();
2112#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002113 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002114 Comment cmnt(masm_, "[ TryFinallyStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002115 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002116
2117 // State: Used to keep track of reason for entering the finally
2118 // block. Should probably be extended to hold information for
2119 // break/continue from within the try block.
2120 enum { FALLING, THROWING, JUMPING };
2121
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002122 JumpTarget try_block;
2123 JumpTarget finally_block;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002124
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002125 try_block.Call();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002126
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002127 frame_->EmitPush(r0); // save exception object on the stack
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002128 // In case of thrown exceptions, this is where we continue.
2129 __ mov(r2, Operand(Smi::FromInt(THROWING)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002130 finally_block.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002131
2132 // --- Try block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002133 try_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002134
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002135 frame_->PushTryHandler(TRY_FINALLY_HANDLER);
2136 int handler_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002137
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002138 // Shadow the labels for all escapes from the try block, including
2139 // returns. Shadowing hides the original label as the LabelShadow and
2140 // operations on the original actually affect the shadowing label.
2141 //
2142 // We should probably try to unify the escaping labels and the return
2143 // label.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002144 int nof_escapes = node->escaping_targets()->length();
2145 List<ShadowTarget*> shadows(1 + nof_escapes);
2146
2147 // Add the shadow target for the function return.
2148 static const int kReturnShadowIndex = 0;
2149 shadows.Add(new ShadowTarget(&function_return_));
2150 bool function_return_was_shadowed = function_return_is_shadowed_;
2151 function_return_is_shadowed_ = true;
2152 ASSERT(shadows[kReturnShadowIndex]->other_target() == &function_return_);
2153
2154 // Add the remaining shadow targets.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002155 for (int i = 0; i < nof_escapes; i++) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002156 shadows.Add(new ShadowTarget(node->escaping_targets()->at(i)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002157 }
2158
2159 // Generate code for the statements in the try block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002160 VisitStatementsAndSpill(node->try_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002161
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002162 // Stop the introduced shadowing and count the number of required unlinks.
2163 // After shadowing stops, the original labels are unshadowed and the
2164 // LabelShadows represent the formerly shadowing labels.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002165 int nof_unlinks = 0;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002166 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002167 shadows[i]->StopShadowing();
2168 if (shadows[i]->is_linked()) nof_unlinks++;
2169 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002170 function_return_is_shadowed_ = function_return_was_shadowed;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002171
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002172 // Get an external reference to the handler address.
2173 ExternalReference handler_address(Top::k_handler_address);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002174
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002175 // If we can fall off the end of the try block, unlink from the try
2176 // chain and set the state on the frame to FALLING.
2177 if (has_valid_frame()) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002178 // The next handler address is on top of the frame.
2179 ASSERT(StackHandlerConstants::kNextOffset == 0);
2180 frame_->EmitPop(r1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002181 __ mov(r3, Operand(handler_address));
2182 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002183 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002184
2185 // Fake a top of stack value (unneeded when FALLING) and set the
2186 // state in r2, then jump around the unlink blocks if any.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002187 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002188 frame_->EmitPush(r0);
2189 __ mov(r2, Operand(Smi::FromInt(FALLING)));
2190 if (nof_unlinks > 0) {
2191 finally_block.Jump();
2192 }
2193 }
2194
2195 // Generate code to unlink and set the state for the (formerly)
2196 // shadowing targets that have been jumped to.
2197 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002198 if (shadows[i]->is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002199 // If we have come from the shadowed return, the return value is
2200 // in (a non-refcounted reference to) r0. We must preserve it
2201 // until it is pushed.
2202 //
2203 // Because we can be jumping here (to spilled code) from
2204 // unspilled code, we need to reestablish a spilled frame at
2205 // this block.
2206 shadows[i]->Bind();
2207 frame_->SpillAll();
2208
2209 // Reload sp from the top handler, because some statements that
2210 // we break from (eg, for...in) may have left stuff on the
2211 // stack.
2212 __ mov(r3, Operand(handler_address));
2213 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002214 frame_->Forget(frame_->height() - handler_height);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002215
2216 // Unlink this handler and drop it from the frame. The next
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002217 // handler address is currently on top of the frame.
2218 ASSERT(StackHandlerConstants::kNextOffset == 0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002219 frame_->EmitPop(r1);
2220 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002221 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002222
2223 if (i == kReturnShadowIndex) {
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002224 // If this label shadowed the function return, materialize the
2225 // return value on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002226 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002227 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002228 // Fake TOS for targets that shadowed breaks and continues.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002229 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002230 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002231 }
2232 __ mov(r2, Operand(Smi::FromInt(JUMPING + i)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002233 if (--nof_unlinks > 0) {
2234 // If this is not the last unlink block, jump around the next.
2235 finally_block.Jump();
2236 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002237 }
2238 }
2239
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002240 // --- Finally block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002241 finally_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002242
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002243 // Push the state on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002244 frame_->EmitPush(r2);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002245
2246 // We keep two elements on the stack - the (possibly faked) result
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002247 // and the state - while evaluating the finally block.
2248 //
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002249 // Generate code for the statements in the finally block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002250 VisitStatementsAndSpill(node->finally_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002251
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002252 if (has_valid_frame()) {
2253 // Restore state and return value or faked TOS.
2254 frame_->EmitPop(r2);
2255 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002256 }
2257
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002258 // Generate code to jump to the right destination for all used
2259 // formerly shadowing targets. Deallocate each shadow target.
2260 for (int i = 0; i < shadows.length(); i++) {
2261 if (has_valid_frame() && shadows[i]->is_bound()) {
2262 JumpTarget* original = shadows[i]->other_target();
2263 __ cmp(r2, Operand(Smi::FromInt(JUMPING + i)));
2264 if (!function_return_is_shadowed_ && i == kReturnShadowIndex) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002265 JumpTarget skip;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002266 skip.Branch(ne);
2267 frame_->PrepareForReturn();
2268 original->Jump();
2269 skip.Bind();
2270 } else {
2271 original->Branch(eq);
2272 }
2273 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002274 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002275
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002276 if (has_valid_frame()) {
2277 // Check if we need to rethrow the exception.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002278 JumpTarget exit;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002279 __ cmp(r2, Operand(Smi::FromInt(THROWING)));
2280 exit.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002281
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002282 // Rethrow exception.
2283 frame_->EmitPush(r0);
2284 frame_->CallRuntime(Runtime::kReThrow, 1);
2285
2286 // Done.
2287 exit.Bind();
2288 }
2289 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002290}
2291
2292
ager@chromium.org7c537e22008-10-16 08:43:32 +00002293void CodeGenerator::VisitDebuggerStatement(DebuggerStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002294#ifdef DEBUG
2295 int original_height = frame_->height();
2296#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002297 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002298 Comment cmnt(masm_, "[ DebuggerStatament");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002299 CodeForStatementPosition(node);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002300#ifdef ENABLE_DEBUGGER_SUPPORT
ager@chromium.org5c838252010-02-19 08:53:10 +00002301 frame_->DebugBreak();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002302#endif
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00002303 // Ignore the return value.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002304 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002305}
2306
2307
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002308void CodeGenerator::InstantiateFunction(
2309 Handle<SharedFunctionInfo> function_info) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002310 VirtualFrame::SpilledScope spilled_scope;
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002311 __ mov(r0, Operand(function_info));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002312 // Use the fast case closure allocation code that allocates in new
2313 // space for nested functions that don't need literals cloning.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002314 if (scope()->is_function_scope() && function_info->num_literals() == 0) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002315 FastNewClosureStub stub;
2316 frame_->EmitPush(r0);
2317 frame_->CallStub(&stub, 1);
2318 frame_->EmitPush(r0);
2319 } else {
2320 // Create a new closure.
2321 frame_->EmitPush(cp);
2322 frame_->EmitPush(r0);
2323 frame_->CallRuntime(Runtime::kNewClosure, 2);
2324 frame_->EmitPush(r0);
2325 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002326}
2327
2328
ager@chromium.org7c537e22008-10-16 08:43:32 +00002329void CodeGenerator::VisitFunctionLiteral(FunctionLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002330#ifdef DEBUG
2331 int original_height = frame_->height();
2332#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002333 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002334 Comment cmnt(masm_, "[ FunctionLiteral");
2335
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002336 // Build the function info and instantiate it.
2337 Handle<SharedFunctionInfo> function_info =
2338 Compiler::BuildFunctionInfo(node, script(), this);
kasper.lund212ac232008-07-16 07:07:30 +00002339 // Check for stack-overflow exception.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002340 if (HasStackOverflow()) {
2341 ASSERT(frame_->height() == original_height);
2342 return;
2343 }
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002344 InstantiateFunction(function_info);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002345 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002346}
2347
2348
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002349void CodeGenerator::VisitSharedFunctionInfoLiteral(
2350 SharedFunctionInfoLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002351#ifdef DEBUG
2352 int original_height = frame_->height();
2353#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002354 VirtualFrame::SpilledScope spilled_scope;
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002355 Comment cmnt(masm_, "[ SharedFunctionInfoLiteral");
2356 InstantiateFunction(node->shared_function_info());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002357 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002358}
2359
2360
ager@chromium.org7c537e22008-10-16 08:43:32 +00002361void CodeGenerator::VisitConditional(Conditional* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002362#ifdef DEBUG
2363 int original_height = frame_->height();
2364#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002365 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002366 Comment cmnt(masm_, "[ Conditional");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002367 JumpTarget then;
2368 JumpTarget else_;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002369 LoadConditionAndSpill(node->condition(), &then, &else_, true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002370 if (has_valid_frame()) {
2371 Branch(false, &else_);
2372 }
2373 if (has_valid_frame() || then.is_linked()) {
2374 then.Bind();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002375 LoadAndSpill(node->then_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002376 }
2377 if (else_.is_linked()) {
2378 JumpTarget exit;
2379 if (has_valid_frame()) exit.Jump();
2380 else_.Bind();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002381 LoadAndSpill(node->else_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002382 if (exit.is_linked()) exit.Bind();
2383 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002384 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002385}
2386
2387
ager@chromium.org7c537e22008-10-16 08:43:32 +00002388void CodeGenerator::LoadFromSlot(Slot* slot, TypeofState typeof_state) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002389 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002390 if (slot->type() == Slot::LOOKUP) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00002391 ASSERT(slot->var()->is_dynamic());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002392
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002393 JumpTarget slow;
2394 JumpTarget done;
ager@chromium.org381abbb2009-02-25 13:23:22 +00002395
2396 // Generate fast-case code for variables that might be shadowed by
2397 // eval-introduced variables. Eval is used a lot without
2398 // introducing variables. In those cases, we do not want to
2399 // perform a runtime call for all variables in the scope
2400 // containing the eval.
2401 if (slot->var()->mode() == Variable::DYNAMIC_GLOBAL) {
2402 LoadFromGlobalSlotCheckExtensions(slot, typeof_state, r1, r2, &slow);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002403 // If there was no control flow to slow, we can exit early.
2404 if (!slow.is_linked()) {
2405 frame_->EmitPush(r0);
2406 return;
2407 }
2408
2409 done.Jump();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002410
2411 } else if (slot->var()->mode() == Variable::DYNAMIC_LOCAL) {
2412 Slot* potential_slot = slot->var()->local_if_not_shadowed()->slot();
2413 // Only generate the fast case for locals that rewrite to slots.
2414 // This rules out argument loads.
2415 if (potential_slot != NULL) {
2416 __ ldr(r0,
2417 ContextSlotOperandCheckExtensions(potential_slot,
2418 r1,
2419 r2,
2420 &slow));
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002421 if (potential_slot->var()->mode() == Variable::CONST) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002422 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2423 __ cmp(r0, ip);
2424 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002425 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002426 // There is always control flow to slow from
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002427 // ContextSlotOperandCheckExtensions so we have to jump around
2428 // it.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002429 done.Jump();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002430 }
2431 }
2432
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002433 slow.Bind();
2434 frame_->EmitPush(cp);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002435 __ mov(r0, Operand(slot->var()->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002436 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002437
ager@chromium.org7c537e22008-10-16 08:43:32 +00002438 if (typeof_state == INSIDE_TYPEOF) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002439 frame_->CallRuntime(Runtime::kLoadContextSlotNoReferenceError, 2);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002440 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002441 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002442 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00002443
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002444 done.Bind();
2445 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002446
2447 } else {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002448 // Special handling for locals allocated in registers.
ager@chromium.org7c537e22008-10-16 08:43:32 +00002449 __ ldr(r0, SlotOperand(slot, r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002450 frame_->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002451 if (slot->var()->mode() == Variable::CONST) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002452 // Const slots may contain 'the hole' value (the constant hasn't been
2453 // initialized yet) which needs to be converted into the 'undefined'
2454 // value.
2455 Comment cmnt(masm_, "[ Unhole const");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002456 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002457 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2458 __ cmp(r0, ip);
2459 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002460 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002461 }
2462 }
2463}
2464
2465
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002466void CodeGenerator::StoreToSlot(Slot* slot, InitState init_state) {
2467 ASSERT(slot != NULL);
2468 if (slot->type() == Slot::LOOKUP) {
2469 ASSERT(slot->var()->is_dynamic());
2470
2471 // For now, just do a runtime call.
2472 frame_->EmitPush(cp);
2473 __ mov(r0, Operand(slot->var()->name()));
2474 frame_->EmitPush(r0);
2475
2476 if (init_state == CONST_INIT) {
2477 // Same as the case for a normal store, but ignores attribute
2478 // (e.g. READ_ONLY) of context slot so that we can initialize
2479 // const properties (introduced via eval("const foo = (some
2480 // expr);")). Also, uses the current function context instead of
2481 // the top context.
2482 //
2483 // Note that we must declare the foo upon entry of eval(), via a
2484 // context slot declaration, but we cannot initialize it at the
2485 // same time, because the const declaration may be at the end of
2486 // the eval code (sigh...) and the const variable may have been
2487 // used before (where its value is 'undefined'). Thus, we can only
2488 // do the initialization when we actually encounter the expression
2489 // and when the expression operands are defined and valid, and
2490 // thus we need the split into 2 operations: declaration of the
2491 // context slot followed by initialization.
2492 frame_->CallRuntime(Runtime::kInitializeConstContextSlot, 3);
2493 } else {
2494 frame_->CallRuntime(Runtime::kStoreContextSlot, 3);
2495 }
2496 // Storing a variable must keep the (new) value on the expression
2497 // stack. This is necessary for compiling assignment expressions.
2498 frame_->EmitPush(r0);
2499
2500 } else {
2501 ASSERT(!slot->var()->is_dynamic());
2502
2503 JumpTarget exit;
2504 if (init_state == CONST_INIT) {
2505 ASSERT(slot->var()->mode() == Variable::CONST);
2506 // Only the first const initialization must be executed (the slot
2507 // still contains 'the hole' value). When the assignment is
2508 // executed, the code is identical to a normal store (see below).
2509 Comment cmnt(masm_, "[ Init const");
2510 __ ldr(r2, SlotOperand(slot, r2));
2511 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2512 __ cmp(r2, ip);
2513 exit.Branch(ne);
2514 }
2515
2516 // We must execute the store. Storing a variable must keep the
2517 // (new) value on the stack. This is necessary for compiling
2518 // assignment expressions.
2519 //
2520 // Note: We will reach here even with slot->var()->mode() ==
2521 // Variable::CONST because of const declarations which will
2522 // initialize consts to 'the hole' value and by doing so, end up
2523 // calling this code. r2 may be loaded with context; used below in
2524 // RecordWrite.
2525 frame_->EmitPop(r0);
2526 __ str(r0, SlotOperand(slot, r2));
2527 frame_->EmitPush(r0);
2528 if (slot->type() == Slot::CONTEXT) {
2529 // Skip write barrier if the written value is a smi.
2530 __ tst(r0, Operand(kSmiTagMask));
2531 exit.Branch(eq);
2532 // r2 is loaded with context when calling SlotOperand above.
2533 int offset = FixedArray::kHeaderSize + slot->index() * kPointerSize;
2534 __ mov(r3, Operand(offset));
2535 __ RecordWrite(r2, r3, r1);
2536 }
2537 // If we definitely did not jump over the assignment, we do not need
2538 // to bind the exit label. Doing so can defeat peephole
2539 // optimization.
2540 if (init_state == CONST_INIT || slot->type() == Slot::CONTEXT) {
2541 exit.Bind();
2542 }
2543 }
2544}
2545
2546
ager@chromium.org381abbb2009-02-25 13:23:22 +00002547void CodeGenerator::LoadFromGlobalSlotCheckExtensions(Slot* slot,
2548 TypeofState typeof_state,
2549 Register tmp,
2550 Register tmp2,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002551 JumpTarget* slow) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00002552 // Check that no extension objects have been created by calls to
2553 // eval from the current scope to the global scope.
2554 Register context = cp;
2555 Scope* s = scope();
2556 while (s != NULL) {
2557 if (s->num_heap_slots() > 0) {
2558 if (s->calls_eval()) {
2559 // Check that extension is NULL.
2560 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
2561 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002562 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002563 }
2564 // Load next context in chain.
2565 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
2566 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
2567 context = tmp;
2568 }
2569 // If no outer scope calls eval, we do not need to check more
2570 // context extensions.
2571 if (!s->outer_scope_calls_eval() || s->is_eval_scope()) break;
2572 s = s->outer_scope();
2573 }
2574
2575 if (s->is_eval_scope()) {
2576 Label next, fast;
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002577 if (!context.is(tmp)) {
2578 __ mov(tmp, Operand(context));
2579 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00002580 __ bind(&next);
2581 // Terminate at global context.
2582 __ ldr(tmp2, FieldMemOperand(tmp, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002583 __ LoadRoot(ip, Heap::kGlobalContextMapRootIndex);
2584 __ cmp(tmp2, ip);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002585 __ b(eq, &fast);
2586 // Check that extension is NULL.
2587 __ ldr(tmp2, ContextOperand(tmp, Context::EXTENSION_INDEX));
2588 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002589 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002590 // Load next context in chain.
2591 __ ldr(tmp, ContextOperand(tmp, Context::CLOSURE_INDEX));
2592 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
2593 __ b(&next);
2594 __ bind(&fast);
2595 }
2596
2597 // All extension objects were empty and it is safe to use a global
2598 // load IC call.
2599 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
2600 // Load the global object.
2601 LoadGlobal();
2602 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002603 __ mov(r2, Operand(slot->var()->name()));
ager@chromium.org381abbb2009-02-25 13:23:22 +00002604 // Call IC stub.
2605 if (typeof_state == INSIDE_TYPEOF) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002606 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002607 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002608 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET_CONTEXT, 0);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002609 }
2610
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002611 // Drop the global object. The result is in r0.
2612 frame_->Drop();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002613}
2614
2615
ager@chromium.org7c537e22008-10-16 08:43:32 +00002616void CodeGenerator::VisitSlot(Slot* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002617#ifdef DEBUG
2618 int original_height = frame_->height();
2619#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002620 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002621 Comment cmnt(masm_, "[ Slot");
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002622 LoadFromSlot(node, NOT_INSIDE_TYPEOF);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002623 ASSERT(frame_->height() == original_height + 1);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002624}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002625
ager@chromium.org7c537e22008-10-16 08:43:32 +00002626
2627void CodeGenerator::VisitVariableProxy(VariableProxy* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002628#ifdef DEBUG
2629 int original_height = frame_->height();
2630#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002631 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002632 Comment cmnt(masm_, "[ VariableProxy");
2633
2634 Variable* var = node->var();
2635 Expression* expr = var->rewrite();
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002636 if (expr != NULL) {
2637 Visit(expr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002638 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +00002639 ASSERT(var->is_global());
2640 Reference ref(this, node);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002641 ref.GetValueAndSpill();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002642 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002643 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002644}
2645
2646
ager@chromium.org7c537e22008-10-16 08:43:32 +00002647void CodeGenerator::VisitLiteral(Literal* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002648#ifdef DEBUG
2649 int original_height = frame_->height();
2650#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002651 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002652 Comment cmnt(masm_, "[ Literal");
mads.s.ager31e71382008-08-13 09:32:07 +00002653 __ mov(r0, Operand(node->handle()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002654 frame_->EmitPush(r0);
2655 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002656}
2657
2658
ager@chromium.org7c537e22008-10-16 08:43:32 +00002659void CodeGenerator::VisitRegExpLiteral(RegExpLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002660#ifdef DEBUG
2661 int original_height = frame_->height();
2662#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002663 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002664 Comment cmnt(masm_, "[ RexExp Literal");
2665
2666 // Retrieve the literal array and check the allocated entry.
2667
2668 // Load the function of this activation.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002669 __ ldr(r1, frame_->Function());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002670
2671 // Load the literals array of the function.
2672 __ ldr(r1, FieldMemOperand(r1, JSFunction::kLiteralsOffset));
2673
2674 // Load the literal at the ast saved index.
2675 int literal_offset =
2676 FixedArray::kHeaderSize + node->literal_index() * kPointerSize;
2677 __ ldr(r2, FieldMemOperand(r1, literal_offset));
2678
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002679 JumpTarget done;
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002680 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
2681 __ cmp(r2, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002682 done.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002683
2684 // If the entry is undefined we call the runtime system to computed
2685 // the literal.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002686 frame_->EmitPush(r1); // literal array (0)
mads.s.ager31e71382008-08-13 09:32:07 +00002687 __ mov(r0, Operand(Smi::FromInt(node->literal_index())));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002688 frame_->EmitPush(r0); // literal index (1)
mads.s.ager31e71382008-08-13 09:32:07 +00002689 __ mov(r0, Operand(node->pattern())); // RegExp pattern (2)
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002690 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002691 __ mov(r0, Operand(node->flags())); // RegExp flags (3)
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002692 frame_->EmitPush(r0);
2693 frame_->CallRuntime(Runtime::kMaterializeRegExpLiteral, 4);
mads.s.ager31e71382008-08-13 09:32:07 +00002694 __ mov(r2, Operand(r0));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002695
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002696 done.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002697 // Push the literal.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002698 frame_->EmitPush(r2);
2699 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002700}
2701
2702
ager@chromium.org7c537e22008-10-16 08:43:32 +00002703void CodeGenerator::VisitObjectLiteral(ObjectLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002704#ifdef DEBUG
2705 int original_height = frame_->height();
2706#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002707 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002708 Comment cmnt(masm_, "[ ObjectLiteral");
2709
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002710 // Load the function of this activation.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002711 __ ldr(r3, frame_->Function());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002712 // Literal array.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002713 __ ldr(r3, FieldMemOperand(r3, JSFunction::kLiteralsOffset));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002714 // Literal index.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002715 __ mov(r2, Operand(Smi::FromInt(node->literal_index())));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002716 // Constant properties.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002717 __ mov(r1, Operand(node->constant_properties()));
2718 // Should the object literal have fast elements?
2719 __ mov(r0, Operand(Smi::FromInt(node->fast_elements() ? 1 : 0)));
2720 frame_->EmitPushMultiple(4, r3.bit() | r2.bit() | r1.bit() | r0.bit());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002721 if (node->depth() > 1) {
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002722 frame_->CallRuntime(Runtime::kCreateObjectLiteral, 4);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002723 } else {
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002724 frame_->CallRuntime(Runtime::kCreateObjectLiteralShallow, 4);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002725 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002726 frame_->EmitPush(r0); // save the result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002727 for (int i = 0; i < node->properties()->length(); i++) {
ager@chromium.org5c838252010-02-19 08:53:10 +00002728 // At the start of each iteration, the top of stack contains
2729 // the newly created object literal.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002730 ObjectLiteral::Property* property = node->properties()->at(i);
2731 Literal* key = property->key();
2732 Expression* value = property->value();
2733 switch (property->kind()) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002734 case ObjectLiteral::Property::CONSTANT:
2735 break;
2736 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
2737 if (CompileTimeValue::IsCompileTimeValue(property->value())) break;
2738 // else fall through
ager@chromium.org5c838252010-02-19 08:53:10 +00002739 case ObjectLiteral::Property::COMPUTED:
2740 if (key->handle()->IsSymbol()) {
2741 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
2742 LoadAndSpill(value);
2743 frame_->EmitPop(r0);
2744 __ mov(r2, Operand(key->handle()));
2745 __ ldr(r1, frame_->Top()); // Load the receiver.
2746 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
2747 break;
2748 }
2749 // else fall through
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002750 case ObjectLiteral::Property::PROTOTYPE: {
ager@chromium.org5c838252010-02-19 08:53:10 +00002751 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002752 frame_->EmitPush(r0); // dup the result
2753 LoadAndSpill(key);
2754 LoadAndSpill(value);
2755 frame_->CallRuntime(Runtime::kSetProperty, 3);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002756 break;
2757 }
2758 case ObjectLiteral::Property::SETTER: {
ager@chromium.org5c838252010-02-19 08:53:10 +00002759 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002760 frame_->EmitPush(r0);
2761 LoadAndSpill(key);
mads.s.ager31e71382008-08-13 09:32:07 +00002762 __ mov(r0, Operand(Smi::FromInt(1)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002763 frame_->EmitPush(r0);
2764 LoadAndSpill(value);
2765 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002766 break;
2767 }
2768 case ObjectLiteral::Property::GETTER: {
ager@chromium.org5c838252010-02-19 08:53:10 +00002769 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002770 frame_->EmitPush(r0);
2771 LoadAndSpill(key);
mads.s.ager31e71382008-08-13 09:32:07 +00002772 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002773 frame_->EmitPush(r0);
2774 LoadAndSpill(value);
2775 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002776 break;
2777 }
2778 }
2779 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002780 ASSERT(frame_->height() == original_height + 1);
2781}
2782
2783
ager@chromium.org7c537e22008-10-16 08:43:32 +00002784void CodeGenerator::VisitArrayLiteral(ArrayLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002785#ifdef DEBUG
2786 int original_height = frame_->height();
2787#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002788 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002789 Comment cmnt(masm_, "[ ArrayLiteral");
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002790
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002791 // Load the function of this activation.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002792 __ ldr(r2, frame_->Function());
ager@chromium.org5c838252010-02-19 08:53:10 +00002793 // Load the literals array of the function.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002794 __ ldr(r2, FieldMemOperand(r2, JSFunction::kLiteralsOffset));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002795 __ mov(r1, Operand(Smi::FromInt(node->literal_index())));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002796 __ mov(r0, Operand(node->constant_elements()));
2797 frame_->EmitPushMultiple(3, r2.bit() | r1.bit() | r0.bit());
ager@chromium.org5c838252010-02-19 08:53:10 +00002798 int length = node->values()->length();
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002799 if (node->depth() > 1) {
2800 frame_->CallRuntime(Runtime::kCreateArrayLiteral, 3);
ager@chromium.org5c838252010-02-19 08:53:10 +00002801 } else if (length > FastCloneShallowArrayStub::kMaximumLength) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002802 frame_->CallRuntime(Runtime::kCreateArrayLiteralShallow, 3);
ager@chromium.org5c838252010-02-19 08:53:10 +00002803 } else {
2804 FastCloneShallowArrayStub stub(length);
2805 frame_->CallStub(&stub, 3);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002806 }
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002807 frame_->EmitPush(r0); // save the result
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002808 // r0: created object literal
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002809
2810 // Generate code to set the elements in the array that are not
2811 // literals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002812 for (int i = 0; i < node->values()->length(); i++) {
2813 Expression* value = node->values()->at(i);
2814
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002815 // If value is a literal the property value is already set in the
2816 // boilerplate object.
2817 if (value->AsLiteral() != NULL) continue;
2818 // If value is a materialized literal the property value is already set
2819 // in the boilerplate object if it is simple.
2820 if (CompileTimeValue::IsCompileTimeValue(value)) continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002821
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002822 // The property must be set by generated code.
2823 LoadAndSpill(value);
2824 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002825
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002826 // Fetch the object literal.
2827 __ ldr(r1, frame_->Top());
2828 // Get the elements array.
2829 __ ldr(r1, FieldMemOperand(r1, JSObject::kElementsOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002830
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002831 // Write to the indexed properties array.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00002832 int offset = i * kPointerSize + FixedArray::kHeaderSize;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002833 __ str(r0, FieldMemOperand(r1, offset));
2834
2835 // Update the write barrier for the array address.
2836 __ mov(r3, Operand(offset));
2837 __ RecordWrite(r1, r3, r2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002838 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002839 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002840}
2841
2842
ager@chromium.org32912102009-01-16 10:38:43 +00002843void CodeGenerator::VisitCatchExtensionObject(CatchExtensionObject* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002844#ifdef DEBUG
2845 int original_height = frame_->height();
2846#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002847 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org32912102009-01-16 10:38:43 +00002848 // Call runtime routine to allocate the catch extension object and
2849 // assign the exception value to the catch variable.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002850 Comment cmnt(masm_, "[ CatchExtensionObject");
2851 LoadAndSpill(node->key());
2852 LoadAndSpill(node->value());
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002853 frame_->CallRuntime(Runtime::kCreateCatchExtensionObject, 2);
2854 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002855 ASSERT(frame_->height() == original_height + 1);
ager@chromium.org32912102009-01-16 10:38:43 +00002856}
2857
2858
ager@chromium.org7c537e22008-10-16 08:43:32 +00002859void CodeGenerator::VisitAssignment(Assignment* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002860#ifdef DEBUG
2861 int original_height = frame_->height();
2862#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002863 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002864 Comment cmnt(masm_, "[ Assignment");
mads.s.ager31e71382008-08-13 09:32:07 +00002865
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002866 { Reference target(this, node->target(), node->is_compound());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002867 if (target.is_illegal()) {
2868 // Fool the virtual frame into thinking that we left the assignment's
2869 // value on the frame.
2870 __ mov(r0, Operand(Smi::FromInt(0)));
2871 frame_->EmitPush(r0);
2872 ASSERT(frame_->height() == original_height + 1);
2873 return;
2874 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002875
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002876 if (node->op() == Token::ASSIGN ||
2877 node->op() == Token::INIT_VAR ||
2878 node->op() == Token::INIT_CONST) {
2879 LoadAndSpill(node->value());
mads.s.ager31e71382008-08-13 09:32:07 +00002880
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002881 } else { // Assignment is a compound assignment.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002882 // Get the old value of the lhs.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002883 target.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002884 Literal* literal = node->value()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002885 bool overwrite =
2886 (node->value()->AsBinaryOperation() != NULL &&
2887 node->value()->AsBinaryOperation()->ResultOverwriteAllowed());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002888 if (literal != NULL && literal->handle()->IsSmi()) {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002889 SmiOperation(node->binary_op(),
2890 literal->handle(),
2891 false,
2892 overwrite ? OVERWRITE_RIGHT : NO_OVERWRITE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002893 frame_->EmitPush(r0);
2894
2895 } else {
2896 LoadAndSpill(node->value());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002897 GenericBinaryOperation(node->binary_op(),
2898 overwrite ? OVERWRITE_RIGHT : NO_OVERWRITE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002899 frame_->EmitPush(r0);
2900 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002901 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002902 Variable* var = node->target()->AsVariableProxy()->AsVariable();
2903 if (var != NULL &&
2904 (var->mode() == Variable::CONST) &&
2905 node->op() != Token::INIT_VAR && node->op() != Token::INIT_CONST) {
2906 // Assignment ignored - leave the value on the stack.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002907 UnloadReference(&target);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002908 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002909 CodeForSourcePosition(node->position());
2910 if (node->op() == Token::INIT_CONST) {
2911 // Dynamic constant initializations must use the function context
2912 // and initialize the actual constant declared. Dynamic variable
2913 // initializations are simply assignments and use SetValue.
2914 target.SetValue(CONST_INIT);
2915 } else {
2916 target.SetValue(NOT_CONST_INIT);
2917 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002918 }
2919 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002920 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002921}
2922
2923
ager@chromium.org7c537e22008-10-16 08:43:32 +00002924void CodeGenerator::VisitThrow(Throw* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002925#ifdef DEBUG
2926 int original_height = frame_->height();
2927#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002928 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002929 Comment cmnt(masm_, "[ Throw");
2930
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002931 LoadAndSpill(node->exception());
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002932 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002933 frame_->CallRuntime(Runtime::kThrow, 1);
2934 frame_->EmitPush(r0);
2935 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002936}
2937
2938
ager@chromium.org7c537e22008-10-16 08:43:32 +00002939void CodeGenerator::VisitProperty(Property* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002940#ifdef DEBUG
2941 int original_height = frame_->height();
2942#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002943 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002944 Comment cmnt(masm_, "[ Property");
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002945
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002946 { Reference property(this, node);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002947 property.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002948 }
2949 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002950}
2951
2952
ager@chromium.org7c537e22008-10-16 08:43:32 +00002953void CodeGenerator::VisitCall(Call* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002954#ifdef DEBUG
2955 int original_height = frame_->height();
2956#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002957 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002958 Comment cmnt(masm_, "[ Call");
2959
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002960 Expression* function = node->expression();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002961 ZoneList<Expression*>* args = node->arguments();
2962
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002963 // Standard function call.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002964 // Check if the function is a variable or a property.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002965 Variable* var = function->AsVariableProxy()->AsVariable();
2966 Property* property = function->AsProperty();
2967
2968 // ------------------------------------------------------------------------
2969 // Fast-case: Use inline caching.
2970 // ---
2971 // According to ECMA-262, section 11.2.3, page 44, the function to call
2972 // must be resolved after the arguments have been evaluated. The IC code
2973 // automatically handles this by loading the arguments before the function
2974 // is resolved in cache misses (this also holds for megamorphic calls).
2975 // ------------------------------------------------------------------------
2976
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002977 if (var != NULL && var->is_possibly_eval()) {
2978 // ----------------------------------
2979 // JavaScript example: 'eval(arg)' // eval is not known to be shadowed
2980 // ----------------------------------
2981
2982 // In a call to eval, we first call %ResolvePossiblyDirectEval to
2983 // resolve the function we need to call and the receiver of the
2984 // call. Then we call the resolved function using the given
2985 // arguments.
2986 // Prepare stack for call to resolved function.
2987 LoadAndSpill(function);
2988 __ LoadRoot(r2, Heap::kUndefinedValueRootIndex);
2989 frame_->EmitPush(r2); // Slot for receiver
2990 int arg_count = args->length();
2991 for (int i = 0; i < arg_count; i++) {
2992 LoadAndSpill(args->at(i));
2993 }
2994
2995 // Prepare stack for call to ResolvePossiblyDirectEval.
2996 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize + kPointerSize));
2997 frame_->EmitPush(r1);
2998 if (arg_count > 0) {
2999 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize));
3000 frame_->EmitPush(r1);
3001 } else {
3002 frame_->EmitPush(r2);
3003 }
3004
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003005 // Push the receiver.
3006 __ ldr(r1, frame_->Receiver());
3007 frame_->EmitPush(r1);
3008
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003009 // Resolve the call.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003010 frame_->CallRuntime(Runtime::kResolvePossiblyDirectEval, 3);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003011
3012 // Touch up stack with the right values for the function and the receiver.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003013 __ str(r0, MemOperand(sp, (arg_count + 1) * kPointerSize));
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003014 __ str(r1, MemOperand(sp, arg_count * kPointerSize));
3015
3016 // Call the function.
3017 CodeForSourcePosition(node->position());
3018
3019 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003020 CallFunctionStub call_function(arg_count, in_loop, RECEIVER_MIGHT_BE_VALUE);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003021 frame_->CallStub(&call_function, arg_count + 1);
3022
3023 __ ldr(cp, frame_->Context());
3024 // Remove the function from the stack.
3025 frame_->Drop();
3026 frame_->EmitPush(r0);
3027
3028 } else if (var != NULL && !var->is_this() && var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003029 // ----------------------------------
3030 // JavaScript example: 'foo(1, 2, 3)' // foo is global
3031 // ----------------------------------
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003032 // Pass the global object as the receiver and let the IC stub
3033 // patch the stack to use the global proxy as 'this' in the
3034 // invoked function.
3035 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003036
3037 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003038 int arg_count = args->length();
3039 for (int i = 0; i < arg_count; i++) {
3040 LoadAndSpill(args->at(i));
3041 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003042
ager@chromium.org5c838252010-02-19 08:53:10 +00003043 // Setup the name register and call the IC initialization code.
3044 __ mov(r2, Operand(var->name()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003045 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3046 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003047 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003048 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET_CONTEXT,
3049 arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003050 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003051 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003052
3053 } else if (var != NULL && var->slot() != NULL &&
3054 var->slot()->type() == Slot::LOOKUP) {
3055 // ----------------------------------
3056 // JavaScript example: 'with (obj) foo(1, 2, 3)' // foo is in obj
3057 // ----------------------------------
3058
3059 // Load the function
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003060 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00003061 __ mov(r0, Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003062 frame_->EmitPush(r0);
3063 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003064 // r0: slot value; r1: receiver
3065
3066 // Load the receiver.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003067 frame_->EmitPush(r0); // function
3068 frame_->EmitPush(r1); // receiver
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003069
3070 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003071 CallWithArguments(args, NO_CALL_FUNCTION_FLAGS, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003072 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003073
3074 } else if (property != NULL) {
3075 // Check if the key is a literal string.
3076 Literal* literal = property->key()->AsLiteral();
3077
3078 if (literal != NULL && literal->handle()->IsSymbol()) {
3079 // ------------------------------------------------------------------
3080 // JavaScript example: 'object.foo(1, 2, 3)' or 'map["key"](1, 2, 3)'
3081 // ------------------------------------------------------------------
3082
ager@chromium.org5c838252010-02-19 08:53:10 +00003083 LoadAndSpill(property->obj()); // Receiver.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003084 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003085 int arg_count = args->length();
3086 for (int i = 0; i < arg_count; i++) {
3087 LoadAndSpill(args->at(i));
3088 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003089
ager@chromium.org5c838252010-02-19 08:53:10 +00003090 // Set the name register and call the IC initialization code.
3091 __ mov(r2, Operand(literal->handle()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003092 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3093 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003094 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003095 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003096 __ ldr(cp, frame_->Context());
ager@chromium.org5c838252010-02-19 08:53:10 +00003097 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003098
3099 } else {
3100 // -------------------------------------------
3101 // JavaScript example: 'array[index](1, 2, 3)'
3102 // -------------------------------------------
3103
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003104 LoadAndSpill(property->obj());
3105 LoadAndSpill(property->key());
3106 EmitKeyedLoad(false);
3107 frame_->Drop(); // key
3108 // Put the function below the receiver.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003109 if (property->is_synthetic()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003110 // Use the global receiver.
3111 frame_->Drop();
3112 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003113 LoadGlobalReceiver(r0);
3114 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003115 frame_->EmitPop(r1); // receiver
3116 frame_->EmitPush(r0); // function
3117 frame_->EmitPush(r1); // receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003118 }
3119
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003120 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003121 CallWithArguments(args, RECEIVER_MIGHT_BE_VALUE, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003122 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003123 }
3124
3125 } else {
3126 // ----------------------------------
3127 // JavaScript example: 'foo(1, 2, 3)' // foo is not global
3128 // ----------------------------------
3129
3130 // Load the function.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003131 LoadAndSpill(function);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003132
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003133 // Pass the global proxy as the receiver.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003134 LoadGlobalReceiver(r0);
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003135
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003136 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003137 CallWithArguments(args, NO_CALL_FUNCTION_FLAGS, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003138 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003139 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003140 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003141}
3142
3143
ager@chromium.org7c537e22008-10-16 08:43:32 +00003144void CodeGenerator::VisitCallNew(CallNew* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003145#ifdef DEBUG
3146 int original_height = frame_->height();
3147#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003148 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003149 Comment cmnt(masm_, "[ CallNew");
3150
3151 // According to ECMA-262, section 11.2.2, page 44, the function
3152 // expression in new calls must be evaluated before the
3153 // arguments. This is different from ordinary calls, where the
3154 // actual function to call is resolved after the arguments have been
3155 // evaluated.
3156
3157 // Compute function to call and use the global object as the
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003158 // receiver. There is no need to use the global proxy here because
3159 // it will always be replaced with a newly allocated object.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003160 LoadAndSpill(node->expression());
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003161 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003162
3163 // Push the arguments ("left-to-right") on the stack.
3164 ZoneList<Expression*>* args = node->arguments();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003165 int arg_count = args->length();
3166 for (int i = 0; i < arg_count; i++) {
3167 LoadAndSpill(args->at(i));
3168 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003169
mads.s.ager31e71382008-08-13 09:32:07 +00003170 // r0: the number of arguments.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003171 __ mov(r0, Operand(arg_count));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003172 // Load the function into r1 as per calling convention.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003173 __ ldr(r1, frame_->ElementAt(arg_count + 1));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003174
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003175 // Call the construct call builtin that handles allocation and
3176 // constructor invocation.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003177 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003178 Handle<Code> ic(Builtins::builtin(Builtins::JSConstructCall));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003179 frame_->CallCodeObject(ic, RelocInfo::CONSTRUCT_CALL, arg_count + 1);
mads.s.ager31e71382008-08-13 09:32:07 +00003180
3181 // Discard old TOS value and push r0 on the stack (same as Pop(), push(r0)).
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003182 __ str(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003183 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003184}
3185
3186
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003187void CodeGenerator::GenerateClassOf(ZoneList<Expression*>* args) {
3188 VirtualFrame::SpilledScope spilled_scope;
3189 ASSERT(args->length() == 1);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003190 JumpTarget leave, null, function, non_function_constructor;
3191
3192 // Load the object into r0.
3193 LoadAndSpill(args->at(0));
3194 frame_->EmitPop(r0);
3195
3196 // If the object is a smi, we return null.
3197 __ tst(r0, Operand(kSmiTagMask));
3198 null.Branch(eq);
3199
3200 // Check that the object is a JS object but take special care of JS
3201 // functions to make sure they have 'Function' as their class.
3202 __ CompareObjectType(r0, r0, r1, FIRST_JS_OBJECT_TYPE);
3203 null.Branch(lt);
3204
3205 // As long as JS_FUNCTION_TYPE is the last instance type and it is
3206 // right after LAST_JS_OBJECT_TYPE, we can avoid checking for
3207 // LAST_JS_OBJECT_TYPE.
3208 ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
3209 ASSERT(JS_FUNCTION_TYPE == LAST_JS_OBJECT_TYPE + 1);
3210 __ cmp(r1, Operand(JS_FUNCTION_TYPE));
3211 function.Branch(eq);
3212
3213 // Check if the constructor in the map is a function.
3214 __ ldr(r0, FieldMemOperand(r0, Map::kConstructorOffset));
3215 __ CompareObjectType(r0, r1, r1, JS_FUNCTION_TYPE);
3216 non_function_constructor.Branch(ne);
3217
3218 // The r0 register now contains the constructor function. Grab the
3219 // instance class name from there.
3220 __ ldr(r0, FieldMemOperand(r0, JSFunction::kSharedFunctionInfoOffset));
3221 __ ldr(r0, FieldMemOperand(r0, SharedFunctionInfo::kInstanceClassNameOffset));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003222 frame_->EmitPush(r0);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003223 leave.Jump();
3224
3225 // Functions have class 'Function'.
3226 function.Bind();
3227 __ mov(r0, Operand(Factory::function_class_symbol()));
3228 frame_->EmitPush(r0);
3229 leave.Jump();
3230
3231 // Objects with a non-function constructor have class 'Object'.
3232 non_function_constructor.Bind();
3233 __ mov(r0, Operand(Factory::Object_symbol()));
3234 frame_->EmitPush(r0);
3235 leave.Jump();
3236
3237 // Non-JS objects have class null.
3238 null.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003239 __ LoadRoot(r0, Heap::kNullValueRootIndex);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003240 frame_->EmitPush(r0);
3241
3242 // All done.
3243 leave.Bind();
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003244}
3245
3246
ager@chromium.org7c537e22008-10-16 08:43:32 +00003247void CodeGenerator::GenerateValueOf(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003248 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003249 ASSERT(args->length() == 1);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003250 JumpTarget leave;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003251 LoadAndSpill(args->at(0));
3252 frame_->EmitPop(r0); // r0 contains object.
mads.s.ager31e71382008-08-13 09:32:07 +00003253 // if (object->IsSmi()) return the object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003254 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003255 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003256 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
3257 __ CompareObjectType(r0, r1, r1, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003258 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003259 // Load the value.
3260 __ ldr(r0, FieldMemOperand(r0, JSValue::kValueOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003261 leave.Bind();
3262 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003263}
3264
3265
ager@chromium.org7c537e22008-10-16 08:43:32 +00003266void CodeGenerator::GenerateSetValueOf(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003267 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003268 ASSERT(args->length() == 2);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003269 JumpTarget leave;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003270 LoadAndSpill(args->at(0)); // Load the object.
3271 LoadAndSpill(args->at(1)); // Load the value.
3272 frame_->EmitPop(r0); // r0 contains value
3273 frame_->EmitPop(r1); // r1 contains object
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003274 // if (object->IsSmi()) return object.
3275 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003276 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003277 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
3278 __ CompareObjectType(r1, r2, r2, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003279 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003280 // Store the value.
3281 __ str(r0, FieldMemOperand(r1, JSValue::kValueOffset));
3282 // Update the write barrier.
3283 __ mov(r2, Operand(JSValue::kValueOffset - kHeapObjectTag));
3284 __ RecordWrite(r1, r2, r3);
3285 // Leave.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003286 leave.Bind();
3287 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003288}
3289
3290
ager@chromium.org7c537e22008-10-16 08:43:32 +00003291void CodeGenerator::GenerateIsSmi(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003292 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003293 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003294 LoadAndSpill(args->at(0));
3295 frame_->EmitPop(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003296 __ tst(r0, Operand(kSmiTagMask));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003297 cc_reg_ = eq;
3298}
3299
3300
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003301void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003302 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003303 // See comment in CodeGenerator::GenerateLog in codegen-ia32.cc.
3304 ASSERT_EQ(args->length(), 3);
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00003305#ifdef ENABLE_LOGGING_AND_PROFILING
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003306 if (ShouldGenerateLog(args->at(0))) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003307 LoadAndSpill(args->at(1));
3308 LoadAndSpill(args->at(2));
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003309 __ CallRuntime(Runtime::kLog, 2);
3310 }
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00003311#endif
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003312 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003313 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003314}
3315
3316
ager@chromium.org7c537e22008-10-16 08:43:32 +00003317void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003318 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00003319 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003320 LoadAndSpill(args->at(0));
3321 frame_->EmitPop(r0);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003322 __ tst(r0, Operand(kSmiTagMask | 0x80000000u));
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00003323 cc_reg_ = eq;
3324}
3325
3326
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003327// Generates the Math.pow method - currently just calls runtime.
3328void CodeGenerator::GenerateMathPow(ZoneList<Expression*>* args) {
3329 ASSERT(args->length() == 2);
3330 Load(args->at(0));
3331 Load(args->at(1));
3332 frame_->CallRuntime(Runtime::kMath_pow, 2);
3333 frame_->EmitPush(r0);
3334}
3335
3336
3337// Generates the Math.sqrt method - currently just calls runtime.
3338void CodeGenerator::GenerateMathSqrt(ZoneList<Expression*>* args) {
3339 ASSERT(args->length() == 1);
3340 Load(args->at(0));
3341 frame_->CallRuntime(Runtime::kMath_sqrt, 1);
3342 frame_->EmitPush(r0);
3343}
3344
3345
kasper.lund7276f142008-07-30 08:49:36 +00003346// This should generate code that performs a charCodeAt() call or returns
3347// undefined in order to trigger the slow case, Runtime_StringCharCodeAt.
3348// It is not yet implemented on ARM, so it always goes to the slow case.
ager@chromium.org7c537e22008-10-16 08:43:32 +00003349void CodeGenerator::GenerateFastCharCodeAt(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003350 VirtualFrame::SpilledScope spilled_scope;
kasper.lund7276f142008-07-30 08:49:36 +00003351 ASSERT(args->length() == 2);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003352 Comment(masm_, "[ GenerateFastCharCodeAt");
3353
3354 LoadAndSpill(args->at(0));
3355 LoadAndSpill(args->at(1));
3356 frame_->EmitPop(r0); // Index.
3357 frame_->EmitPop(r1); // String.
3358
3359 Label slow, end, not_a_flat_string, ascii_string, try_again_with_new_string;
3360
3361 __ tst(r1, Operand(kSmiTagMask));
3362 __ b(eq, &slow); // The 'string' was a Smi.
3363
3364 ASSERT(kSmiTag == 0);
3365 __ tst(r0, Operand(kSmiTagMask | 0x80000000u));
3366 __ b(ne, &slow); // The index was negative or not a Smi.
3367
3368 __ bind(&try_again_with_new_string);
3369 __ CompareObjectType(r1, r2, r2, FIRST_NONSTRING_TYPE);
3370 __ b(ge, &slow);
3371
3372 // Now r2 has the string type.
3373 __ ldr(r3, FieldMemOperand(r1, String::kLengthOffset));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003374 // Now r3 has the length of the string. Compare with the index.
3375 __ cmp(r3, Operand(r0, LSR, kSmiTagSize));
3376 __ b(le, &slow);
3377
3378 // Here we know the index is in range. Check that string is sequential.
3379 ASSERT_EQ(0, kSeqStringTag);
3380 __ tst(r2, Operand(kStringRepresentationMask));
3381 __ b(ne, &not_a_flat_string);
3382
3383 // Check whether it is an ASCII string.
3384 ASSERT_EQ(0, kTwoByteStringTag);
3385 __ tst(r2, Operand(kStringEncodingMask));
3386 __ b(ne, &ascii_string);
3387
3388 // 2-byte string. We can add without shifting since the Smi tag size is the
3389 // log2 of the number of bytes in a two-byte character.
3390 ASSERT_EQ(1, kSmiTagSize);
3391 ASSERT_EQ(0, kSmiShiftSize);
3392 __ add(r1, r1, Operand(r0));
3393 __ ldrh(r0, FieldMemOperand(r1, SeqTwoByteString::kHeaderSize));
3394 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
3395 __ jmp(&end);
3396
3397 __ bind(&ascii_string);
3398 __ add(r1, r1, Operand(r0, LSR, kSmiTagSize));
3399 __ ldrb(r0, FieldMemOperand(r1, SeqAsciiString::kHeaderSize));
3400 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
3401 __ jmp(&end);
3402
3403 __ bind(&not_a_flat_string);
3404 __ and_(r2, r2, Operand(kStringRepresentationMask));
3405 __ cmp(r2, Operand(kConsStringTag));
3406 __ b(ne, &slow);
3407
3408 // ConsString.
3409 // Check that the right hand side is the empty string (ie if this is really a
3410 // flat string in a cons string). If that is not the case we would rather go
3411 // to the runtime system now, to flatten the string.
3412 __ ldr(r2, FieldMemOperand(r1, ConsString::kSecondOffset));
3413 __ LoadRoot(r3, Heap::kEmptyStringRootIndex);
3414 __ cmp(r2, Operand(r3));
3415 __ b(ne, &slow);
3416
3417 // Get the first of the two strings.
3418 __ ldr(r1, FieldMemOperand(r1, ConsString::kFirstOffset));
3419 __ jmp(&try_again_with_new_string);
3420
3421 __ bind(&slow);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003422 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003423
3424 __ bind(&end);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003425 frame_->EmitPush(r0);
kasper.lund7276f142008-07-30 08:49:36 +00003426}
3427
3428
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003429void CodeGenerator::GenerateCharFromCode(ZoneList<Expression*>* args) {
3430 Comment(masm_, "[ GenerateCharFromCode");
3431 ASSERT(args->length() == 1);
3432
3433 LoadAndSpill(args->at(0));
3434 frame_->EmitPop(r0);
3435
3436 JumpTarget slow_case;
3437 JumpTarget exit;
3438
3439 // Fast case of Heap::LookupSingleCharacterStringFromCode.
3440 ASSERT(kSmiTag == 0);
3441 ASSERT(kSmiShiftSize == 0);
3442 ASSERT(IsPowerOf2(String::kMaxAsciiCharCode + 1));
3443 __ tst(r0, Operand(kSmiTagMask |
3444 ((~String::kMaxAsciiCharCode) << kSmiTagSize)));
3445 slow_case.Branch(nz);
3446
3447 ASSERT(kSmiTag == 0);
3448 __ mov(r1, Operand(Factory::single_character_string_cache()));
3449 __ add(r1, r1, Operand(r0, LSL, kPointerSizeLog2 - kSmiTagSize));
3450 __ ldr(r1, MemOperand(r1, FixedArray::kHeaderSize - kHeapObjectTag));
3451 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
3452 __ cmp(r1, ip);
3453 slow_case.Branch(eq);
3454
3455 frame_->EmitPush(r1);
3456 exit.Jump();
3457
3458 slow_case.Bind();
3459 frame_->EmitPush(r0);
3460 frame_->CallRuntime(Runtime::kCharFromCode, 1);
3461 frame_->EmitPush(r0);
3462
3463 exit.Bind();
3464}
3465
3466
ager@chromium.org7c537e22008-10-16 08:43:32 +00003467void CodeGenerator::GenerateIsArray(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003468 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003469 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003470 LoadAndSpill(args->at(0));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003471 JumpTarget answer;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003472 // We need the CC bits to come out as not_equal in the case where the
3473 // object is a smi. This can't be done with the usual test opcode so
3474 // we use XOR to get the right CC bits.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003475 frame_->EmitPop(r0);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003476 __ and_(r1, r0, Operand(kSmiTagMask));
3477 __ eor(r1, r1, Operand(kSmiTagMask), SetCC);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003478 answer.Branch(ne);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003479 // It is a heap object - get the map. Check if the object is a JS array.
3480 __ CompareObjectType(r0, r1, r1, JS_ARRAY_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003481 answer.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003482 cc_reg_ = eq;
3483}
3484
3485
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00003486void CodeGenerator::GenerateIsRegExp(ZoneList<Expression*>* args) {
3487 VirtualFrame::SpilledScope spilled_scope;
3488 ASSERT(args->length() == 1);
3489 LoadAndSpill(args->at(0));
3490 JumpTarget answer;
3491 // We need the CC bits to come out as not_equal in the case where the
3492 // object is a smi. This can't be done with the usual test opcode so
3493 // we use XOR to get the right CC bits.
3494 frame_->EmitPop(r0);
3495 __ and_(r1, r0, Operand(kSmiTagMask));
3496 __ eor(r1, r1, Operand(kSmiTagMask), SetCC);
3497 answer.Branch(ne);
3498 // It is a heap object - get the map. Check if the object is a regexp.
3499 __ CompareObjectType(r0, r1, r1, JS_REGEXP_TYPE);
3500 answer.Bind();
3501 cc_reg_ = eq;
3502}
3503
3504
ager@chromium.org6141cbe2009-11-20 12:14:52 +00003505void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) {
3506 // This generates a fast version of:
3507 // (typeof(arg) === 'object' || %_ClassOf(arg) == 'RegExp')
3508 VirtualFrame::SpilledScope spilled_scope;
3509 ASSERT(args->length() == 1);
3510 LoadAndSpill(args->at(0));
3511 frame_->EmitPop(r1);
3512 __ tst(r1, Operand(kSmiTagMask));
3513 false_target()->Branch(eq);
3514
3515 __ LoadRoot(ip, Heap::kNullValueRootIndex);
3516 __ cmp(r1, ip);
3517 true_target()->Branch(eq);
3518
3519 Register map_reg = r2;
3520 __ ldr(map_reg, FieldMemOperand(r1, HeapObject::kMapOffset));
3521 // Undetectable objects behave like undefined when tested with typeof.
3522 __ ldrb(r1, FieldMemOperand(map_reg, Map::kBitFieldOffset));
3523 __ and_(r1, r1, Operand(1 << Map::kIsUndetectable));
3524 __ cmp(r1, Operand(1 << Map::kIsUndetectable));
3525 false_target()->Branch(eq);
3526
3527 __ ldrb(r1, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
3528 __ cmp(r1, Operand(FIRST_JS_OBJECT_TYPE));
3529 false_target()->Branch(lt);
3530 __ cmp(r1, Operand(LAST_JS_OBJECT_TYPE));
3531 cc_reg_ = le;
3532}
3533
3534
3535void CodeGenerator::GenerateIsFunction(ZoneList<Expression*>* args) {
3536 // This generates a fast version of:
3537 // (%_ClassOf(arg) === 'Function')
3538 VirtualFrame::SpilledScope spilled_scope;
3539 ASSERT(args->length() == 1);
3540 LoadAndSpill(args->at(0));
3541 frame_->EmitPop(r0);
3542 __ tst(r0, Operand(kSmiTagMask));
3543 false_target()->Branch(eq);
3544 Register map_reg = r2;
3545 __ CompareObjectType(r0, map_reg, r1, JS_FUNCTION_TYPE);
3546 cc_reg_ = eq;
3547}
3548
3549
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003550void CodeGenerator::GenerateIsUndetectableObject(ZoneList<Expression*>* args) {
3551 VirtualFrame::SpilledScope spilled_scope;
3552 ASSERT(args->length() == 1);
3553 LoadAndSpill(args->at(0));
3554 frame_->EmitPop(r0);
3555 __ tst(r0, Operand(kSmiTagMask));
3556 false_target()->Branch(eq);
3557 __ ldr(r1, FieldMemOperand(r0, HeapObject::kMapOffset));
3558 __ ldrb(r1, FieldMemOperand(r1, Map::kBitFieldOffset));
3559 __ tst(r1, Operand(1 << Map::kIsUndetectable));
3560 cc_reg_ = ne;
3561}
3562
3563
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003564void CodeGenerator::GenerateIsConstructCall(ZoneList<Expression*>* args) {
3565 VirtualFrame::SpilledScope spilled_scope;
3566 ASSERT(args->length() == 0);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003567
3568 // Get the frame pointer for the calling frame.
3569 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
3570
3571 // Skip the arguments adaptor frame if it exists.
3572 Label check_frame_marker;
3573 __ ldr(r1, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00003574 __ cmp(r1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003575 __ b(ne, &check_frame_marker);
3576 __ ldr(r2, MemOperand(r2, StandardFrameConstants::kCallerFPOffset));
3577
3578 // Check the marker in the calling frame.
3579 __ bind(&check_frame_marker);
3580 __ ldr(r1, MemOperand(r2, StandardFrameConstants::kMarkerOffset));
3581 __ cmp(r1, Operand(Smi::FromInt(StackFrame::CONSTRUCT)));
3582 cc_reg_ = eq;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003583}
3584
3585
ager@chromium.org7c537e22008-10-16 08:43:32 +00003586void CodeGenerator::GenerateArgumentsLength(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003587 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003588 ASSERT(args->length() == 0);
3589
lrn@chromium.org25156de2010-04-06 13:10:27 +00003590 Label exit;
3591
3592 // Get the number of formal parameters.
ager@chromium.org5c838252010-02-19 08:53:10 +00003593 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003594
lrn@chromium.org25156de2010-04-06 13:10:27 +00003595 // Check if the calling frame is an arguments adaptor frame.
3596 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
3597 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
3598 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
3599 __ b(ne, &exit);
3600
3601 // Arguments adaptor case: Read the arguments length from the
3602 // adaptor frame.
3603 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
3604
3605 __ bind(&exit);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003606 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003607}
3608
3609
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00003610void CodeGenerator::GenerateArguments(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003611 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003612 ASSERT(args->length() == 1);
3613
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003614 // Satisfy contract with ArgumentsAccessStub:
3615 // Load the key into r1 and the formal parameters count into r0.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003616 LoadAndSpill(args->at(0));
3617 frame_->EmitPop(r1);
ager@chromium.org5c838252010-02-19 08:53:10 +00003618 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003619
3620 // Call the shared stub to get to arguments[key].
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003621 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_ELEMENT);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003622 frame_->CallStub(&stub, 0);
3623 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003624}
3625
3626
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003627void CodeGenerator::GenerateRandomPositiveSmi(ZoneList<Expression*>* args) {
3628 VirtualFrame::SpilledScope spilled_scope;
3629 ASSERT(args->length() == 0);
3630 __ Call(ExternalReference::random_positive_smi_function().address(),
3631 RelocInfo::RUNTIME_ENTRY);
3632 frame_->EmitPush(r0);
3633}
3634
3635
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00003636void CodeGenerator::GenerateStringAdd(ZoneList<Expression*>* args) {
3637 ASSERT_EQ(2, args->length());
3638
3639 Load(args->at(0));
3640 Load(args->at(1));
3641
ager@chromium.org5c838252010-02-19 08:53:10 +00003642 StringAddStub stub(NO_STRING_ADD_FLAGS);
3643 frame_->CallStub(&stub, 2);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00003644 frame_->EmitPush(r0);
3645}
3646
3647
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003648void CodeGenerator::GenerateSubString(ZoneList<Expression*>* args) {
3649 ASSERT_EQ(3, args->length());
3650
3651 Load(args->at(0));
3652 Load(args->at(1));
3653 Load(args->at(2));
3654
ager@chromium.org5c838252010-02-19 08:53:10 +00003655 SubStringStub stub;
3656 frame_->CallStub(&stub, 3);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003657 frame_->EmitPush(r0);
3658}
3659
3660
3661void CodeGenerator::GenerateStringCompare(ZoneList<Expression*>* args) {
3662 ASSERT_EQ(2, args->length());
3663
3664 Load(args->at(0));
3665 Load(args->at(1));
3666
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003667 StringCompareStub stub;
3668 frame_->CallStub(&stub, 2);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003669 frame_->EmitPush(r0);
3670}
3671
3672
3673void CodeGenerator::GenerateRegExpExec(ZoneList<Expression*>* args) {
3674 ASSERT_EQ(4, args->length());
3675
3676 Load(args->at(0));
3677 Load(args->at(1));
3678 Load(args->at(2));
3679 Load(args->at(3));
3680
3681 frame_->CallRuntime(Runtime::kRegExpExec, 4);
3682 frame_->EmitPush(r0);
3683}
3684
3685
ager@chromium.org5c838252010-02-19 08:53:10 +00003686void CodeGenerator::GenerateNumberToString(ZoneList<Expression*>* args) {
3687 ASSERT_EQ(args->length(), 1);
3688
3689 // Load the argument on the stack and jump to the runtime.
3690 Load(args->at(0));
3691
fschneider@chromium.org086aac62010-03-17 13:18:24 +00003692 NumberToStringStub stub;
3693 frame_->CallStub(&stub, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00003694 frame_->EmitPush(r0);
3695}
3696
3697
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003698void CodeGenerator::GenerateMathSin(ZoneList<Expression*>* args) {
3699 ASSERT_EQ(args->length(), 1);
3700 // Load the argument on the stack and jump to the runtime.
3701 Load(args->at(0));
3702 frame_->CallRuntime(Runtime::kMath_sin, 1);
3703 frame_->EmitPush(r0);
3704}
3705
3706
3707void CodeGenerator::GenerateMathCos(ZoneList<Expression*>* args) {
3708 ASSERT_EQ(args->length(), 1);
3709 // Load the argument on the stack and jump to the runtime.
3710 Load(args->at(0));
3711 frame_->CallRuntime(Runtime::kMath_cos, 1);
3712 frame_->EmitPush(r0);
3713}
3714
3715
ager@chromium.org7c537e22008-10-16 08:43:32 +00003716void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003717 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org9258b6b2008-09-11 09:11:10 +00003718 ASSERT(args->length() == 2);
3719
3720 // Load the two objects into registers and perform the comparison.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003721 LoadAndSpill(args->at(0));
3722 LoadAndSpill(args->at(1));
3723 frame_->EmitPop(r0);
3724 frame_->EmitPop(r1);
ager@chromium.org9258b6b2008-09-11 09:11:10 +00003725 __ cmp(r0, Operand(r1));
3726 cc_reg_ = eq;
3727}
3728
3729
ager@chromium.org7c537e22008-10-16 08:43:32 +00003730void CodeGenerator::VisitCallRuntime(CallRuntime* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003731#ifdef DEBUG
3732 int original_height = frame_->height();
3733#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003734 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003735 if (CheckForInlineRuntimeCall(node)) {
3736 ASSERT((has_cc() && frame_->height() == original_height) ||
3737 (!has_cc() && frame_->height() == original_height + 1));
3738 return;
3739 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003740
3741 ZoneList<Expression*>* args = node->arguments();
3742 Comment cmnt(masm_, "[ CallRuntime");
3743 Runtime::Function* function = node->function();
3744
ager@chromium.org41826e72009-03-30 13:30:57 +00003745 if (function == NULL) {
mads.s.ager31e71382008-08-13 09:32:07 +00003746 // Prepare stack for calling JS runtime function.
mads.s.ager31e71382008-08-13 09:32:07 +00003747 // Push the builtins object found in the current global object.
3748 __ ldr(r1, GlobalObject());
3749 __ ldr(r0, FieldMemOperand(r1, GlobalObject::kBuiltinsOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003750 frame_->EmitPush(r0);
ager@chromium.org41826e72009-03-30 13:30:57 +00003751 }
mads.s.ager31e71382008-08-13 09:32:07 +00003752
ager@chromium.org41826e72009-03-30 13:30:57 +00003753 // Push the arguments ("left-to-right").
3754 int arg_count = args->length();
3755 for (int i = 0; i < arg_count; i++) {
3756 LoadAndSpill(args->at(i));
3757 }
mads.s.ager31e71382008-08-13 09:32:07 +00003758
ager@chromium.org41826e72009-03-30 13:30:57 +00003759 if (function == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003760 // Call the JS runtime function.
ager@chromium.org5c838252010-02-19 08:53:10 +00003761 __ mov(r2, Operand(node->name()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003762 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3763 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003764 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003765 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003766 frame_->EmitPush(r0);
ager@chromium.org41826e72009-03-30 13:30:57 +00003767 } else {
3768 // Call the C runtime function.
3769 frame_->CallRuntime(function, arg_count);
3770 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003771 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003772 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003773}
3774
3775
ager@chromium.org7c537e22008-10-16 08:43:32 +00003776void CodeGenerator::VisitUnaryOperation(UnaryOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003777#ifdef DEBUG
3778 int original_height = frame_->height();
3779#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003780 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003781 Comment cmnt(masm_, "[ UnaryOperation");
3782
3783 Token::Value op = node->op();
3784
3785 if (op == Token::NOT) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003786 LoadConditionAndSpill(node->expression(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003787 false_target(),
3788 true_target(),
3789 true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003790 // LoadCondition may (and usually does) leave a test and branch to
3791 // be emitted by the caller. In that case, negate the condition.
3792 if (has_cc()) cc_reg_ = NegateCondition(cc_reg_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003793
3794 } else if (op == Token::DELETE) {
3795 Property* property = node->expression()->AsProperty();
mads.s.ager31e71382008-08-13 09:32:07 +00003796 Variable* variable = node->expression()->AsVariableProxy()->AsVariable();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003797 if (property != NULL) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003798 LoadAndSpill(property->obj());
3799 LoadAndSpill(property->key());
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003800 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003801
mads.s.ager31e71382008-08-13 09:32:07 +00003802 } else if (variable != NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003803 Slot* slot = variable->slot();
3804 if (variable->is_global()) {
3805 LoadGlobal();
mads.s.ager31e71382008-08-13 09:32:07 +00003806 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003807 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003808 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003809
3810 } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
3811 // lookup the context holding the named variable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003812 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00003813 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003814 frame_->EmitPush(r0);
3815 frame_->CallRuntime(Runtime::kLookupContext, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003816 // r0: context
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003817 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003818 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003819 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003820 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003821
mads.s.ager31e71382008-08-13 09:32:07 +00003822 } else {
3823 // Default: Result of deleting non-global, not dynamically
3824 // introduced variables is false.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003825 __ LoadRoot(r0, Heap::kFalseValueRootIndex);
mads.s.ager31e71382008-08-13 09:32:07 +00003826 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003827
3828 } else {
3829 // Default: Result of deleting expressions is true.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003830 LoadAndSpill(node->expression()); // may have side-effects
3831 frame_->Drop();
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003832 __ LoadRoot(r0, Heap::kTrueValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003833 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003834 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003835
3836 } else if (op == Token::TYPEOF) {
3837 // Special case for loading the typeof expression; see comment on
3838 // LoadTypeofExpression().
3839 LoadTypeofExpression(node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003840 frame_->CallRuntime(Runtime::kTypeof, 1);
3841 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003842
3843 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003844 bool overwrite =
3845 (node->expression()->AsBinaryOperation() != NULL &&
3846 node->expression()->AsBinaryOperation()->ResultOverwriteAllowed());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003847 LoadAndSpill(node->expression());
3848 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003849 switch (op) {
3850 case Token::NOT:
3851 case Token::DELETE:
3852 case Token::TYPEOF:
3853 UNREACHABLE(); // handled above
3854 break;
3855
3856 case Token::SUB: {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003857 GenericUnaryOpStub stub(Token::SUB, overwrite);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003858 frame_->CallStub(&stub, 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003859 break;
3860 }
3861
3862 case Token::BIT_NOT: {
3863 // smi check
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003864 JumpTarget smi_label;
3865 JumpTarget continue_label;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003866 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003867 smi_label.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003868
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003869 GenericUnaryOpStub stub(Token::BIT_NOT, overwrite);
3870 frame_->CallStub(&stub, 0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003871 continue_label.Jump();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003872
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003873 smi_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003874 __ mvn(r0, Operand(r0));
3875 __ bic(r0, r0, Operand(kSmiTagMask)); // bit-clear inverted smi-tag
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003876 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003877 break;
3878 }
3879
3880 case Token::VOID:
3881 // since the stack top is cached in r0, popping and then
3882 // pushing a value can be done by just writing to r0.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003883 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003884 break;
3885
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003886 case Token::ADD: {
3887 // Smi check.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003888 JumpTarget continue_label;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003889 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003890 continue_label.Branch(eq);
3891 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003892 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003893 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003894 break;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003895 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003896 default:
3897 UNREACHABLE();
3898 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003899 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003900 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003901 ASSERT(!has_valid_frame() ||
3902 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003903 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003904}
3905
3906
ager@chromium.org7c537e22008-10-16 08:43:32 +00003907void CodeGenerator::VisitCountOperation(CountOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003908#ifdef DEBUG
3909 int original_height = frame_->height();
3910#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003911 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003912 Comment cmnt(masm_, "[ CountOperation");
3913
3914 bool is_postfix = node->is_postfix();
3915 bool is_increment = node->op() == Token::INC;
3916
3917 Variable* var = node->expression()->AsVariableProxy()->AsVariable();
3918 bool is_const = (var != NULL && var->mode() == Variable::CONST);
3919
3920 // Postfix: Make room for the result.
mads.s.ager31e71382008-08-13 09:32:07 +00003921 if (is_postfix) {
3922 __ mov(r0, Operand(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003923 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003924 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003925
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003926 // A constant reference is not saved to, so a constant reference is not a
3927 // compound assignment reference.
3928 { Reference target(this, node->expression(), !is_const);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003929 if (target.is_illegal()) {
3930 // Spoof the virtual frame to have the expected height (one higher
3931 // than on entry).
3932 if (!is_postfix) {
3933 __ mov(r0, Operand(Smi::FromInt(0)));
3934 frame_->EmitPush(r0);
3935 }
3936 ASSERT(frame_->height() == original_height + 1);
3937 return;
3938 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003939 target.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003940 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003941
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003942 JumpTarget slow;
3943 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003944
3945 // Load the value (1) into register r1.
3946 __ mov(r1, Operand(Smi::FromInt(1)));
3947
3948 // Check for smi operand.
3949 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003950 slow.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003951
3952 // Postfix: Store the old value as the result.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003953 if (is_postfix) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003954 __ str(r0, frame_->ElementAt(target.size()));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003955 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003956
3957 // Perform optimistic increment/decrement.
3958 if (is_increment) {
3959 __ add(r0, r0, Operand(r1), SetCC);
3960 } else {
3961 __ sub(r0, r0, Operand(r1), SetCC);
3962 }
3963
3964 // If the increment/decrement didn't overflow, we're done.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003965 exit.Branch(vc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003966
3967 // Revert optimistic increment/decrement.
3968 if (is_increment) {
3969 __ sub(r0, r0, Operand(r1));
3970 } else {
3971 __ add(r0, r0, Operand(r1));
3972 }
3973
3974 // Slow case: Convert to number.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003975 slow.Bind();
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003976 {
3977 // Convert the operand to a number.
3978 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003979 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, 1);
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003980 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003981 if (is_postfix) {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003982 // Postfix: store to result (on the stack).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003983 __ str(r0, frame_->ElementAt(target.size()));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003984 }
3985
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003986 // Compute the new value.
3987 __ mov(r1, Operand(Smi::FromInt(1)));
3988 frame_->EmitPush(r0);
3989 frame_->EmitPush(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003990 if (is_increment) {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003991 frame_->CallRuntime(Runtime::kNumberAdd, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003992 } else {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003993 frame_->CallRuntime(Runtime::kNumberSub, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003994 }
3995
3996 // Store the new value in the target if not const.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003997 exit.Bind();
3998 frame_->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00003999 if (!is_const) target.SetValue(NOT_CONST_INIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004000 }
4001
4002 // Postfix: Discard the new value and use the old.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004003 if (is_postfix) frame_->EmitPop(r0);
4004 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004005}
4006
4007
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00004008void CodeGenerator::GenerateLogicalBooleanOperation(BinaryOperation* node) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004009 // According to ECMA-262 section 11.11, page 58, the binary logical
4010 // operators must yield the result of one of the two expressions
4011 // before any ToBoolean() conversions. This means that the value
4012 // produced by a && or || operator is not necessarily a boolean.
4013
4014 // NOTE: If the left hand side produces a materialized value (not in
4015 // the CC register), we force the right hand side to do the
4016 // same. This is necessary because we may have to branch to the exit
4017 // after evaluating the left hand side (due to the shortcut
4018 // semantics), but the compiler must (statically) know if the result
4019 // of compiling the binary operation is materialized or not.
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00004020 if (node->op() == Token::AND) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004021 JumpTarget is_true;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004022 LoadConditionAndSpill(node->left(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004023 &is_true,
4024 false_target(),
4025 false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004026 if (has_valid_frame() && !has_cc()) {
4027 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004028 JumpTarget pop_and_continue;
4029 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004030
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004031 __ ldr(r0, frame_->Top()); // Duplicate the stack top.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004032 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004033 // Avoid popping the result if it converts to 'false' using the
4034 // standard ToBoolean() conversion as described in ECMA-262,
4035 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00004036 ToBoolean(&pop_and_continue, &exit);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004037 Branch(false, &exit);
4038
4039 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004040 pop_and_continue.Bind();
4041 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004042
4043 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004044 is_true.Bind();
4045 LoadAndSpill(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004046
4047 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004048 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004049 } else if (has_cc() || is_true.is_linked()) {
4050 // The left-hand side is either (a) partially compiled to
4051 // control flow with a final branch left to emit or (b) fully
4052 // compiled to control flow and possibly true.
4053 if (has_cc()) {
4054 Branch(false, false_target());
4055 }
4056 is_true.Bind();
4057 LoadConditionAndSpill(node->right(),
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004058 true_target(),
4059 false_target(),
4060 false);
4061 } else {
4062 // Nothing to do.
4063 ASSERT(!has_valid_frame() && !has_cc() && !is_true.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004064 }
4065
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00004066 } else {
4067 ASSERT(node->op() == Token::OR);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004068 JumpTarget is_false;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004069 LoadConditionAndSpill(node->left(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004070 true_target(),
4071 &is_false,
4072 false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004073 if (has_valid_frame() && !has_cc()) {
4074 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004075 JumpTarget pop_and_continue;
4076 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004077
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004078 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004079 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004080 // Avoid popping the result if it converts to 'true' using the
4081 // standard ToBoolean() conversion as described in ECMA-262,
4082 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00004083 ToBoolean(&exit, &pop_and_continue);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004084 Branch(true, &exit);
4085
4086 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004087 pop_and_continue.Bind();
4088 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004089
4090 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004091 is_false.Bind();
4092 LoadAndSpill(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004093
4094 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004095 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004096 } else if (has_cc() || is_false.is_linked()) {
4097 // The left-hand side is either (a) partially compiled to
4098 // control flow with a final branch left to emit or (b) fully
4099 // compiled to control flow and possibly false.
4100 if (has_cc()) {
4101 Branch(true, true_target());
4102 }
4103 is_false.Bind();
4104 LoadConditionAndSpill(node->right(),
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004105 true_target(),
4106 false_target(),
4107 false);
4108 } else {
4109 // Nothing to do.
4110 ASSERT(!has_valid_frame() && !has_cc() && !is_false.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004111 }
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00004112 }
4113}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004114
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00004115
4116void CodeGenerator::VisitBinaryOperation(BinaryOperation* node) {
4117#ifdef DEBUG
4118 int original_height = frame_->height();
4119#endif
4120 VirtualFrame::SpilledScope spilled_scope;
4121 Comment cmnt(masm_, "[ BinaryOperation");
4122
4123 if (node->op() == Token::AND || node->op() == Token::OR) {
4124 GenerateLogicalBooleanOperation(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004125 } else {
4126 // Optimize for the case where (at least) one of the expressions
4127 // is a literal small integer.
4128 Literal* lliteral = node->left()->AsLiteral();
4129 Literal* rliteral = node->right()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004130 // NOTE: The code below assumes that the slow cases (calls to runtime)
4131 // never return a constant/immutable object.
4132 bool overwrite_left =
4133 (node->left()->AsBinaryOperation() != NULL &&
4134 node->left()->AsBinaryOperation()->ResultOverwriteAllowed());
4135 bool overwrite_right =
4136 (node->right()->AsBinaryOperation() != NULL &&
4137 node->right()->AsBinaryOperation()->ResultOverwriteAllowed());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004138
4139 if (rliteral != NULL && rliteral->handle()->IsSmi()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004140 LoadAndSpill(node->left());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004141 SmiOperation(node->op(),
4142 rliteral->handle(),
4143 false,
4144 overwrite_right ? OVERWRITE_RIGHT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004145
4146 } else if (lliteral != NULL && lliteral->handle()->IsSmi()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004147 LoadAndSpill(node->right());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004148 SmiOperation(node->op(),
4149 lliteral->handle(),
4150 true,
4151 overwrite_left ? OVERWRITE_LEFT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004152
4153 } else {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004154 OverwriteMode overwrite_mode = NO_OVERWRITE;
4155 if (overwrite_left) {
4156 overwrite_mode = OVERWRITE_LEFT;
4157 } else if (overwrite_right) {
4158 overwrite_mode = OVERWRITE_RIGHT;
4159 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004160 LoadAndSpill(node->left());
4161 LoadAndSpill(node->right());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004162 GenericBinaryOperation(node->op(), overwrite_mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004163 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004164 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004165 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004166 ASSERT(!has_valid_frame() ||
4167 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004168 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004169}
4170
4171
ager@chromium.org7c537e22008-10-16 08:43:32 +00004172void CodeGenerator::VisitThisFunction(ThisFunction* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004173#ifdef DEBUG
4174 int original_height = frame_->height();
4175#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004176 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004177 __ ldr(r0, frame_->Function());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004178 frame_->EmitPush(r0);
4179 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004180}
4181
4182
ager@chromium.org7c537e22008-10-16 08:43:32 +00004183void CodeGenerator::VisitCompareOperation(CompareOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004184#ifdef DEBUG
4185 int original_height = frame_->height();
4186#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004187 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004188 Comment cmnt(masm_, "[ CompareOperation");
4189
4190 // Get the expressions from the node.
4191 Expression* left = node->left();
4192 Expression* right = node->right();
4193 Token::Value op = node->op();
4194
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004195 // To make null checks efficient, we check if either left or right is the
4196 // literal 'null'. If so, we optimize the code by inlining a null check
4197 // instead of calling the (very) general runtime routine for checking
4198 // equality.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004199 if (op == Token::EQ || op == Token::EQ_STRICT) {
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00004200 bool left_is_null =
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004201 left->AsLiteral() != NULL && left->AsLiteral()->IsNull();
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00004202 bool right_is_null =
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004203 right->AsLiteral() != NULL && right->AsLiteral()->IsNull();
4204 // The 'null' value can only be equal to 'null' or 'undefined'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004205 if (left_is_null || right_is_null) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004206 LoadAndSpill(left_is_null ? right : left);
4207 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004208 __ LoadRoot(ip, Heap::kNullValueRootIndex);
4209 __ cmp(r0, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004210
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004211 // The 'null' value is only equal to 'undefined' if using non-strict
4212 // comparisons.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004213 if (op != Token::EQ_STRICT) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004214 true_target()->Branch(eq);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004215
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004216 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
4217 __ cmp(r0, Operand(ip));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004218 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004219
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004220 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004221 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004222
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004223 // It can be an undetectable object.
4224 __ ldr(r0, FieldMemOperand(r0, HeapObject::kMapOffset));
4225 __ ldrb(r0, FieldMemOperand(r0, Map::kBitFieldOffset));
4226 __ and_(r0, r0, Operand(1 << Map::kIsUndetectable));
4227 __ cmp(r0, Operand(1 << Map::kIsUndetectable));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004228 }
4229
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004230 cc_reg_ = eq;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004231 ASSERT(has_cc() && frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004232 return;
4233 }
4234 }
4235
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004236 // To make typeof testing for natives implemented in JavaScript really
4237 // efficient, we generate special code for expressions of the form:
4238 // 'typeof <expression> == <string>'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004239 UnaryOperation* operation = left->AsUnaryOperation();
4240 if ((op == Token::EQ || op == Token::EQ_STRICT) &&
4241 (operation != NULL && operation->op() == Token::TYPEOF) &&
4242 (right->AsLiteral() != NULL &&
4243 right->AsLiteral()->handle()->IsString())) {
4244 Handle<String> check(String::cast(*right->AsLiteral()->handle()));
4245
mads.s.ager31e71382008-08-13 09:32:07 +00004246 // Load the operand, move it to register r1.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004247 LoadTypeofExpression(operation->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004248 frame_->EmitPop(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004249
4250 if (check->Equals(Heap::number_symbol())) {
4251 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004252 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004253 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004254 __ LoadRoot(ip, Heap::kHeapNumberMapRootIndex);
4255 __ cmp(r1, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004256 cc_reg_ = eq;
4257
4258 } else if (check->Equals(Heap::string_symbol())) {
4259 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004260 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004261
4262 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
4263
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004264 // It can be an undetectable string object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004265 __ ldrb(r2, FieldMemOperand(r1, Map::kBitFieldOffset));
4266 __ and_(r2, r2, Operand(1 << Map::kIsUndetectable));
4267 __ cmp(r2, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004268 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004269
4270 __ ldrb(r2, FieldMemOperand(r1, Map::kInstanceTypeOffset));
4271 __ cmp(r2, Operand(FIRST_NONSTRING_TYPE));
4272 cc_reg_ = lt;
4273
4274 } else if (check->Equals(Heap::boolean_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004275 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
4276 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004277 true_target()->Branch(eq);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004278 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
4279 __ cmp(r1, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004280 cc_reg_ = eq;
4281
4282 } else if (check->Equals(Heap::undefined_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004283 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
4284 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004285 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004286
4287 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004288 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004289
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004290 // It can be an undetectable object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004291 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
4292 __ ldrb(r2, FieldMemOperand(r1, Map::kBitFieldOffset));
4293 __ and_(r2, r2, Operand(1 << Map::kIsUndetectable));
4294 __ cmp(r2, Operand(1 << Map::kIsUndetectable));
4295
4296 cc_reg_ = eq;
4297
4298 } else if (check->Equals(Heap::function_symbol())) {
4299 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004300 false_target()->Branch(eq);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004301 Register map_reg = r2;
4302 __ CompareObjectType(r1, map_reg, r1, JS_FUNCTION_TYPE);
4303 true_target()->Branch(eq);
4304 // Regular expressions are callable so typeof == 'function'.
4305 __ CompareInstanceType(map_reg, r1, JS_REGEXP_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004306 cc_reg_ = eq;
4307
4308 } else if (check->Equals(Heap::object_symbol())) {
4309 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004310 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004311
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004312 __ LoadRoot(ip, Heap::kNullValueRootIndex);
4313 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004314 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004315
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004316 Register map_reg = r2;
4317 __ CompareObjectType(r1, map_reg, r1, JS_REGEXP_TYPE);
4318 false_target()->Branch(eq);
4319
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004320 // It can be an undetectable object.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004321 __ ldrb(r1, FieldMemOperand(map_reg, Map::kBitFieldOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004322 __ and_(r1, r1, Operand(1 << Map::kIsUndetectable));
4323 __ cmp(r1, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004324 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004325
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004326 __ ldrb(r1, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
4327 __ cmp(r1, Operand(FIRST_JS_OBJECT_TYPE));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004328 false_target()->Branch(lt);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004329 __ cmp(r1, Operand(LAST_JS_OBJECT_TYPE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004330 cc_reg_ = le;
4331
4332 } else {
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004333 // Uncommon case: typeof testing against a string literal that is
4334 // never returned from the typeof operator.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004335 false_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004336 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004337 ASSERT(!has_valid_frame() ||
4338 (has_cc() && frame_->height() == original_height));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004339 return;
4340 }
4341
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004342 switch (op) {
4343 case Token::EQ:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004344 Comparison(eq, left, right, false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004345 break;
4346
4347 case Token::LT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004348 Comparison(lt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004349 break;
4350
4351 case Token::GT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004352 Comparison(gt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004353 break;
4354
4355 case Token::LTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004356 Comparison(le, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004357 break;
4358
4359 case Token::GTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004360 Comparison(ge, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004361 break;
4362
4363 case Token::EQ_STRICT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004364 Comparison(eq, left, right, true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004365 break;
4366
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004367 case Token::IN: {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004368 LoadAndSpill(left);
4369 LoadAndSpill(right);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004370 frame_->InvokeBuiltin(Builtins::IN, CALL_JS, 2);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004371 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004372 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004373 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004374
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004375 case Token::INSTANCEOF: {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004376 LoadAndSpill(left);
4377 LoadAndSpill(right);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004378 InstanceofStub stub;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004379 frame_->CallStub(&stub, 2);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004380 // At this point if instanceof succeeded then r0 == 0.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004381 __ tst(r0, Operand(r0));
ager@chromium.org7c537e22008-10-16 08:43:32 +00004382 cc_reg_ = eq;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004383 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004384 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004385
4386 default:
4387 UNREACHABLE();
4388 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004389 ASSERT((has_cc() && frame_->height() == original_height) ||
4390 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004391}
4392
4393
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004394void CodeGenerator::EmitKeyedLoad(bool is_global) {
4395 Comment cmnt(masm_, "[ Load from keyed Property");
4396 Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Initialize));
4397 RelocInfo::Mode rmode = is_global
4398 ? RelocInfo::CODE_TARGET_CONTEXT
4399 : RelocInfo::CODE_TARGET;
4400 frame_->CallCodeObject(ic, rmode, 0);
4401}
4402
4403
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004404#ifdef DEBUG
4405bool CodeGenerator::HasValidEntryRegisters() { return true; }
4406#endif
4407
4408
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004409#undef __
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004410#define __ ACCESS_MASM(masm)
4411
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004412
ager@chromium.org7c537e22008-10-16 08:43:32 +00004413Handle<String> Reference::GetName() {
4414 ASSERT(type_ == NAMED);
4415 Property* property = expression_->AsProperty();
4416 if (property == NULL) {
4417 // Global variable reference treated as a named property reference.
4418 VariableProxy* proxy = expression_->AsVariableProxy();
4419 ASSERT(proxy->AsVariable() != NULL);
4420 ASSERT(proxy->AsVariable()->is_global());
4421 return proxy->name();
4422 } else {
4423 Literal* raw_name = property->key()->AsLiteral();
4424 ASSERT(raw_name != NULL);
4425 return Handle<String>(String::cast(*raw_name->handle()));
4426 }
4427}
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004428
ager@chromium.org7c537e22008-10-16 08:43:32 +00004429
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004430void Reference::GetValue() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004431 ASSERT(cgen_->HasValidEntryRegisters());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004432 ASSERT(!is_illegal());
4433 ASSERT(!cgen_->has_cc());
4434 MacroAssembler* masm = cgen_->masm();
4435 Property* property = expression_->AsProperty();
4436 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004437 cgen_->CodeForSourcePosition(property->position());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004438 }
4439
4440 switch (type_) {
4441 case SLOT: {
4442 Comment cmnt(masm, "[ Load from Slot");
4443 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot();
4444 ASSERT(slot != NULL);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004445 cgen_->LoadFromSlot(slot, NOT_INSIDE_TYPEOF);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004446 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004447 }
4448
ager@chromium.org7c537e22008-10-16 08:43:32 +00004449 case NAMED: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004450 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004451 Comment cmnt(masm, "[ Load from named Property");
ager@chromium.org7c537e22008-10-16 08:43:32 +00004452 Handle<String> name(GetName());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004453 Variable* var = expression_->AsVariableProxy()->AsVariable();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004454 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
4455 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004456 __ mov(r2, Operand(name));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004457 ASSERT(var == NULL || var->is_global());
4458 RelocInfo::Mode rmode = (var == NULL)
4459 ? RelocInfo::CODE_TARGET
4460 : RelocInfo::CODE_TARGET_CONTEXT;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004461 frame->CallCodeObject(ic, rmode, 0);
4462 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004463 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004464 }
4465
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004466 case KEYED: {
4467 // TODO(181): Implement inlined version of array indexing once
4468 // loop nesting is properly tracked on ARM.
4469 ASSERT(property != NULL);
4470 Variable* var = expression_->AsVariableProxy()->AsVariable();
4471 ASSERT(var == NULL || var->is_global());
4472 cgen_->EmitKeyedLoad(var != NULL);
4473 cgen_->frame()->EmitPush(r0);
4474 break;
4475 }
4476
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004477 default:
4478 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004479 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004480
4481 if (!persist_after_get_) {
4482 cgen_->UnloadReference(this);
4483 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004484}
4485
4486
ager@chromium.org7c537e22008-10-16 08:43:32 +00004487void Reference::SetValue(InitState init_state) {
4488 ASSERT(!is_illegal());
4489 ASSERT(!cgen_->has_cc());
4490 MacroAssembler* masm = cgen_->masm();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004491 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004492 Property* property = expression_->AsProperty();
4493 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004494 cgen_->CodeForSourcePosition(property->position());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004495 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004496
ager@chromium.org7c537e22008-10-16 08:43:32 +00004497 switch (type_) {
4498 case SLOT: {
4499 Comment cmnt(masm, "[ Store to Slot");
4500 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot();
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004501 cgen_->StoreToSlot(slot, init_state);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004502 cgen_->UnloadReference(this);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004503 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004504 }
4505
ager@chromium.org7c537e22008-10-16 08:43:32 +00004506 case NAMED: {
4507 Comment cmnt(masm, "[ Store to named Property");
4508 // Call the appropriate IC code.
ager@chromium.org7c537e22008-10-16 08:43:32 +00004509 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004510 Handle<String> name(GetName());
4511
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004512 frame->EmitPop(r0);
ager@chromium.org5c838252010-02-19 08:53:10 +00004513 frame->EmitPop(r1);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004514 __ mov(r2, Operand(name));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004515 frame->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004516 frame->EmitPush(r0);
ager@chromium.org5c838252010-02-19 08:53:10 +00004517 set_unloaded();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004518 break;
4519 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004520
ager@chromium.org7c537e22008-10-16 08:43:32 +00004521 case KEYED: {
4522 Comment cmnt(masm, "[ Store to keyed Property");
4523 Property* property = expression_->AsProperty();
4524 ASSERT(property != NULL);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004525 cgen_->CodeForSourcePosition(property->position());
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004526
4527 // Call IC code.
4528 Handle<Code> ic(Builtins::builtin(Builtins::KeyedStoreIC_Initialize));
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004529 frame->EmitPop(r0); // value
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004530 frame->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004531 frame->EmitPush(r0);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004532 cgen_->UnloadReference(this);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004533 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004534 }
ager@chromium.org7c537e22008-10-16 08:43:32 +00004535
4536 default:
4537 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004538 }
4539}
4540
4541
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004542void FastNewClosureStub::Generate(MacroAssembler* masm) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004543 // Create a new closure from the given function info in new
4544 // space. Set the context to the current context in cp.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004545 Label gc;
4546
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004547 // Pop the function info from the stack.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004548 __ pop(r3);
4549
4550 // Attempt to allocate new JSFunction in new space.
4551 __ AllocateInNewSpace(JSFunction::kSize / kPointerSize,
4552 r0,
4553 r1,
4554 r2,
4555 &gc,
4556 TAG_OBJECT);
4557
4558 // Compute the function map in the current global context and set that
4559 // as the map of the allocated object.
4560 __ ldr(r2, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX)));
4561 __ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalContextOffset));
4562 __ ldr(r2, MemOperand(r2, Context::SlotOffset(Context::FUNCTION_MAP_INDEX)));
4563 __ str(r2, FieldMemOperand(r0, HeapObject::kMapOffset));
4564
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004565 // Initialize the rest of the function. We don't have to update the
4566 // write barrier because the allocated object is in new space.
4567 __ LoadRoot(r1, Heap::kEmptyFixedArrayRootIndex);
4568 __ LoadRoot(r2, Heap::kTheHoleValueRootIndex);
4569 __ str(r1, FieldMemOperand(r0, JSObject::kPropertiesOffset));
4570 __ str(r1, FieldMemOperand(r0, JSObject::kElementsOffset));
4571 __ str(r2, FieldMemOperand(r0, JSFunction::kPrototypeOrInitialMapOffset));
4572 __ str(r3, FieldMemOperand(r0, JSFunction::kSharedFunctionInfoOffset));
4573 __ str(cp, FieldMemOperand(r0, JSFunction::kContextOffset));
4574 __ str(r1, FieldMemOperand(r0, JSFunction::kLiteralsOffset));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004575
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004576 // Return result. The argument function info has been popped already.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004577 __ Ret();
4578
4579 // Create a new closure through the slower runtime call.
4580 __ bind(&gc);
4581 __ push(cp);
4582 __ push(r3);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004583 __ TailCallRuntime(Runtime::kNewClosure, 2, 1);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004584}
4585
4586
4587void FastNewContextStub::Generate(MacroAssembler* masm) {
4588 // Try to allocate the context in new space.
4589 Label gc;
4590 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
4591
4592 // Attempt to allocate the context in new space.
4593 __ AllocateInNewSpace(length + (FixedArray::kHeaderSize / kPointerSize),
4594 r0,
4595 r1,
4596 r2,
4597 &gc,
4598 TAG_OBJECT);
4599
4600 // Load the function from the stack.
ager@chromium.org5c838252010-02-19 08:53:10 +00004601 __ ldr(r3, MemOperand(sp, 0));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004602
4603 // Setup the object header.
4604 __ LoadRoot(r2, Heap::kContextMapRootIndex);
4605 __ str(r2, FieldMemOperand(r0, HeapObject::kMapOffset));
4606 __ mov(r2, Operand(length));
4607 __ str(r2, FieldMemOperand(r0, Array::kLengthOffset));
4608
4609 // Setup the fixed slots.
4610 __ mov(r1, Operand(Smi::FromInt(0)));
4611 __ str(r3, MemOperand(r0, Context::SlotOffset(Context::CLOSURE_INDEX)));
4612 __ str(r0, MemOperand(r0, Context::SlotOffset(Context::FCONTEXT_INDEX)));
4613 __ str(r1, MemOperand(r0, Context::SlotOffset(Context::PREVIOUS_INDEX)));
4614 __ str(r1, MemOperand(r0, Context::SlotOffset(Context::EXTENSION_INDEX)));
4615
4616 // Copy the global object from the surrounding context.
4617 __ ldr(r1, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX)));
4618 __ str(r1, MemOperand(r0, Context::SlotOffset(Context::GLOBAL_INDEX)));
4619
4620 // Initialize the rest of the slots to undefined.
4621 __ LoadRoot(r1, Heap::kUndefinedValueRootIndex);
4622 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; i++) {
4623 __ str(r1, MemOperand(r0, Context::SlotOffset(i)));
4624 }
4625
4626 // Remove the on-stack argument and return.
4627 __ mov(cp, r0);
4628 __ pop();
4629 __ Ret();
4630
4631 // Need to collect. Call into runtime system.
4632 __ bind(&gc);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004633 __ TailCallRuntime(Runtime::kNewContext, 1, 1);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004634}
4635
4636
ager@chromium.org5c838252010-02-19 08:53:10 +00004637void FastCloneShallowArrayStub::Generate(MacroAssembler* masm) {
4638 // Stack layout on entry:
4639 //
4640 // [sp]: constant elements.
4641 // [sp + kPointerSize]: literal index.
4642 // [sp + (2 * kPointerSize)]: literals array.
4643
4644 // All sizes here are multiples of kPointerSize.
4645 int elements_size = (length_ > 0) ? FixedArray::SizeFor(length_) : 0;
4646 int size = JSArray::kSize + elements_size;
4647
4648 // Load boilerplate object into r3 and check if we need to create a
4649 // boilerplate.
4650 Label slow_case;
4651 __ ldr(r3, MemOperand(sp, 2 * kPointerSize));
4652 __ ldr(r0, MemOperand(sp, 1 * kPointerSize));
4653 __ add(r3, r3, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
4654 __ ldr(r3, MemOperand(r3, r0, LSL, kPointerSizeLog2 - kSmiTagSize));
4655 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
4656 __ cmp(r3, ip);
4657 __ b(eq, &slow_case);
4658
4659 // Allocate both the JS array and the elements array in one big
4660 // allocation. This avoids multiple limit checks.
4661 __ AllocateInNewSpace(size / kPointerSize,
4662 r0,
4663 r1,
4664 r2,
4665 &slow_case,
4666 TAG_OBJECT);
4667
4668 // Copy the JS array part.
4669 for (int i = 0; i < JSArray::kSize; i += kPointerSize) {
4670 if ((i != JSArray::kElementsOffset) || (length_ == 0)) {
4671 __ ldr(r1, FieldMemOperand(r3, i));
4672 __ str(r1, FieldMemOperand(r0, i));
4673 }
4674 }
4675
4676 if (length_ > 0) {
4677 // Get hold of the elements array of the boilerplate and setup the
4678 // elements pointer in the resulting object.
4679 __ ldr(r3, FieldMemOperand(r3, JSArray::kElementsOffset));
4680 __ add(r2, r0, Operand(JSArray::kSize));
4681 __ str(r2, FieldMemOperand(r0, JSArray::kElementsOffset));
4682
4683 // Copy the elements array.
4684 for (int i = 0; i < elements_size; i += kPointerSize) {
4685 __ ldr(r1, FieldMemOperand(r3, i));
4686 __ str(r1, FieldMemOperand(r2, i));
4687 }
4688 }
4689
4690 // Return and remove the on-stack parameters.
4691 __ add(sp, sp, Operand(3 * kPointerSize));
4692 __ Ret();
4693
4694 __ bind(&slow_case);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004695 __ TailCallRuntime(Runtime::kCreateArrayLiteralShallow, 3, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00004696}
4697
4698
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004699// Takes a Smi and converts to an IEEE 64 bit floating point value in two
4700// registers. The format is 1 sign bit, 11 exponent bits (biased 1023) and
4701// 52 fraction bits (20 in the first word, 32 in the second). Zeros is a
4702// scratch register. Destroys the source register. No GC occurs during this
4703// stub so you don't have to set up the frame.
4704class ConvertToDoubleStub : public CodeStub {
4705 public:
4706 ConvertToDoubleStub(Register result_reg_1,
4707 Register result_reg_2,
4708 Register source_reg,
4709 Register scratch_reg)
4710 : result1_(result_reg_1),
4711 result2_(result_reg_2),
4712 source_(source_reg),
4713 zeros_(scratch_reg) { }
4714
4715 private:
4716 Register result1_;
4717 Register result2_;
4718 Register source_;
4719 Register zeros_;
4720
4721 // Minor key encoding in 16 bits.
4722 class ModeBits: public BitField<OverwriteMode, 0, 2> {};
4723 class OpBits: public BitField<Token::Value, 2, 14> {};
4724
4725 Major MajorKey() { return ConvertToDouble; }
4726 int MinorKey() {
4727 // Encode the parameters in a unique 16 bit value.
4728 return result1_.code() +
4729 (result2_.code() << 4) +
4730 (source_.code() << 8) +
4731 (zeros_.code() << 12);
4732 }
4733
4734 void Generate(MacroAssembler* masm);
4735
4736 const char* GetName() { return "ConvertToDoubleStub"; }
4737
4738#ifdef DEBUG
4739 void Print() { PrintF("ConvertToDoubleStub\n"); }
4740#endif
4741};
4742
4743
4744void ConvertToDoubleStub::Generate(MacroAssembler* masm) {
4745#ifndef BIG_ENDIAN_FLOATING_POINT
4746 Register exponent = result1_;
4747 Register mantissa = result2_;
4748#else
4749 Register exponent = result2_;
4750 Register mantissa = result1_;
4751#endif
4752 Label not_special;
4753 // Convert from Smi to integer.
4754 __ mov(source_, Operand(source_, ASR, kSmiTagSize));
4755 // Move sign bit from source to destination. This works because the sign bit
4756 // in the exponent word of the double has the same position and polarity as
4757 // the 2's complement sign bit in a Smi.
4758 ASSERT(HeapNumber::kSignMask == 0x80000000u);
4759 __ and_(exponent, source_, Operand(HeapNumber::kSignMask), SetCC);
4760 // Subtract from 0 if source was negative.
4761 __ rsb(source_, source_, Operand(0), LeaveCC, ne);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004762
4763 // We have -1, 0 or 1, which we treat specially. Register source_ contains
4764 // absolute value: it is either equal to 1 (special case of -1 and 1),
4765 // greater than 1 (not a special case) or less than 1 (special case of 0).
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004766 __ cmp(source_, Operand(1));
4767 __ b(gt, &not_special);
4768
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004769 // For 1 or -1 we need to or in the 0 exponent (biased to 1023).
4770 static const uint32_t exponent_word_for_1 =
4771 HeapNumber::kExponentBias << HeapNumber::kExponentShift;
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004772 __ orr(exponent, exponent, Operand(exponent_word_for_1), LeaveCC, eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004773 // 1, 0 and -1 all have 0 for the second word.
4774 __ mov(mantissa, Operand(0));
4775 __ Ret();
4776
4777 __ bind(&not_special);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004778 // Count leading zeros. Uses mantissa for a scratch register on pre-ARM5.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004779 // Gets the wrong answer for 0, but we already checked for that case above.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004780 __ CountLeadingZeros(source_, mantissa, zeros_);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004781 // Compute exponent and or it into the exponent register.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004782 // We use mantissa as a scratch register here.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004783 __ rsb(mantissa, zeros_, Operand(31 + HeapNumber::kExponentBias));
4784 __ orr(exponent,
4785 exponent,
4786 Operand(mantissa, LSL, HeapNumber::kExponentShift));
4787 // Shift up the source chopping the top bit off.
4788 __ add(zeros_, zeros_, Operand(1));
4789 // This wouldn't work for 1.0 or -1.0 as the shift would be 32 which means 0.
4790 __ mov(source_, Operand(source_, LSL, zeros_));
4791 // Compute lower part of fraction (last 12 bits).
4792 __ mov(mantissa, Operand(source_, LSL, HeapNumber::kMantissaBitsInTopWord));
4793 // And the top (top 20 bits).
4794 __ orr(exponent,
4795 exponent,
4796 Operand(source_, LSR, 32 - HeapNumber::kMantissaBitsInTopWord));
4797 __ Ret();
4798}
4799
4800
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004801// See comment for class.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004802void WriteInt32ToHeapNumberStub::Generate(MacroAssembler* masm) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004803 Label max_negative_int;
4804 // the_int_ has the answer which is a signed int32 but not a Smi.
4805 // We test for the special value that has a different exponent. This test
4806 // has the neat side effect of setting the flags according to the sign.
4807 ASSERT(HeapNumber::kSignMask == 0x80000000u);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004808 __ cmp(the_int_, Operand(0x80000000u));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004809 __ b(eq, &max_negative_int);
4810 // Set up the correct exponent in scratch_. All non-Smi int32s have the same.
4811 // A non-Smi integer is 1.xxx * 2^30 so the exponent is 30 (biased).
4812 uint32_t non_smi_exponent =
4813 (HeapNumber::kExponentBias + 30) << HeapNumber::kExponentShift;
4814 __ mov(scratch_, Operand(non_smi_exponent));
4815 // Set the sign bit in scratch_ if the value was negative.
4816 __ orr(scratch_, scratch_, Operand(HeapNumber::kSignMask), LeaveCC, cs);
4817 // Subtract from 0 if the value was negative.
4818 __ rsb(the_int_, the_int_, Operand(0), LeaveCC, cs);
4819 // We should be masking the implict first digit of the mantissa away here,
4820 // but it just ends up combining harmlessly with the last digit of the
4821 // exponent that happens to be 1. The sign bit is 0 so we shift 10 to get
4822 // the most significant 1 to hit the last bit of the 12 bit sign and exponent.
4823 ASSERT(((1 << HeapNumber::kExponentShift) & non_smi_exponent) != 0);
4824 const int shift_distance = HeapNumber::kNonMantissaBitsInTopWord - 2;
4825 __ orr(scratch_, scratch_, Operand(the_int_, LSR, shift_distance));
4826 __ str(scratch_, FieldMemOperand(the_heap_number_,
4827 HeapNumber::kExponentOffset));
4828 __ mov(scratch_, Operand(the_int_, LSL, 32 - shift_distance));
4829 __ str(scratch_, FieldMemOperand(the_heap_number_,
4830 HeapNumber::kMantissaOffset));
4831 __ Ret();
4832
4833 __ bind(&max_negative_int);
4834 // The max negative int32 is stored as a positive number in the mantissa of
4835 // a double because it uses a sign bit instead of using two's complement.
4836 // The actual mantissa bits stored are all 0 because the implicit most
4837 // significant 1 bit is not stored.
4838 non_smi_exponent += 1 << HeapNumber::kExponentShift;
4839 __ mov(ip, Operand(HeapNumber::kSignMask | non_smi_exponent));
4840 __ str(ip, FieldMemOperand(the_heap_number_, HeapNumber::kExponentOffset));
4841 __ mov(ip, Operand(0));
4842 __ str(ip, FieldMemOperand(the_heap_number_, HeapNumber::kMantissaOffset));
4843 __ Ret();
4844}
4845
4846
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004847// Handle the case where the lhs and rhs are the same object.
4848// Equality is almost reflexive (everything but NaN), so this is a test
4849// for "identity and not NaN".
4850static void EmitIdenticalObjectComparison(MacroAssembler* masm,
4851 Label* slow,
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004852 Condition cc,
4853 bool never_nan_nan) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004854 Label not_identical;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004855 Label heap_number, return_equal;
4856 Register exp_mask_reg = r5;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004857 __ cmp(r0, Operand(r1));
4858 __ b(ne, &not_identical);
4859
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004860 // The two objects are identical. If we know that one of them isn't NaN then
4861 // we now know they test equal.
4862 if (cc != eq || !never_nan_nan) {
4863 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004864
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004865 // Test for NaN. Sadly, we can't just compare to Factory::nan_value(),
4866 // so we do the second best thing - test it ourselves.
4867 // They are both equal and they are not both Smis so both of them are not
4868 // Smis. If it's not a heap number, then return equal.
4869 if (cc == lt || cc == gt) {
4870 __ CompareObjectType(r0, r4, r4, FIRST_JS_OBJECT_TYPE);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004871 __ b(ge, slow);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004872 } else {
4873 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
4874 __ b(eq, &heap_number);
4875 // Comparing JS objects with <=, >= is complicated.
4876 if (cc != eq) {
4877 __ cmp(r4, Operand(FIRST_JS_OBJECT_TYPE));
4878 __ b(ge, slow);
4879 // Normally here we fall through to return_equal, but undefined is
4880 // special: (undefined == undefined) == true, but
4881 // (undefined <= undefined) == false! See ECMAScript 11.8.5.
4882 if (cc == le || cc == ge) {
4883 __ cmp(r4, Operand(ODDBALL_TYPE));
4884 __ b(ne, &return_equal);
4885 __ LoadRoot(r2, Heap::kUndefinedValueRootIndex);
4886 __ cmp(r0, Operand(r2));
4887 __ b(ne, &return_equal);
4888 if (cc == le) {
4889 // undefined <= undefined should fail.
4890 __ mov(r0, Operand(GREATER));
4891 } else {
4892 // undefined >= undefined should fail.
4893 __ mov(r0, Operand(LESS));
4894 }
4895 __ mov(pc, Operand(lr)); // Return.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004896 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004897 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004898 }
4899 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004900
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004901 __ bind(&return_equal);
4902 if (cc == lt) {
4903 __ mov(r0, Operand(GREATER)); // Things aren't less than themselves.
4904 } else if (cc == gt) {
4905 __ mov(r0, Operand(LESS)); // Things aren't greater than themselves.
4906 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004907 __ mov(r0, Operand(EQUAL)); // Things are <=, >=, ==, === themselves.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004908 }
4909 __ mov(pc, Operand(lr)); // Return.
4910
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004911 if (cc != eq || !never_nan_nan) {
4912 // For less and greater we don't have to check for NaN since the result of
4913 // x < x is false regardless. For the others here is some code to check
4914 // for NaN.
4915 if (cc != lt && cc != gt) {
4916 __ bind(&heap_number);
4917 // It is a heap number, so return non-equal if it's NaN and equal if it's
4918 // not NaN.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004919
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004920 // The representation of NaN values has all exponent bits (52..62) set,
4921 // and not all mantissa bits (0..51) clear.
4922 // Read top bits of double representation (second word of value).
4923 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
4924 // Test that exponent bits are all set.
4925 __ and_(r3, r2, Operand(exp_mask_reg));
4926 __ cmp(r3, Operand(exp_mask_reg));
4927 __ b(ne, &return_equal);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004928
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004929 // Shift out flag and all exponent bits, retaining only mantissa.
4930 __ mov(r2, Operand(r2, LSL, HeapNumber::kNonMantissaBitsInTopWord));
4931 // Or with all low-bits of mantissa.
4932 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kMantissaOffset));
4933 __ orr(r0, r3, Operand(r2), SetCC);
4934 // For equal we already have the right value in r0: Return zero (equal)
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004935 // if all bits in mantissa are zero (it's an Infinity) and non-zero if
4936 // not (it's a NaN). For <= and >= we need to load r0 with the failing
4937 // value if it's a NaN.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004938 if (cc != eq) {
4939 // All-zero means Infinity means equal.
4940 __ mov(pc, Operand(lr), LeaveCC, eq); // Return equal
4941 if (cc == le) {
4942 __ mov(r0, Operand(GREATER)); // NaN <= NaN should fail.
4943 } else {
4944 __ mov(r0, Operand(LESS)); // NaN >= NaN should fail.
4945 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004946 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004947 __ mov(pc, Operand(lr)); // Return.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004948 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004949 // No fall through here.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004950 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004951
4952 __ bind(&not_identical);
4953}
4954
4955
4956// See comment at call site.
4957static void EmitSmiNonsmiComparison(MacroAssembler* masm,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004958 Label* lhs_not_nan,
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004959 Label* slow,
4960 bool strict) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004961 Label rhs_is_smi;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004962 __ tst(r0, Operand(kSmiTagMask));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004963 __ b(eq, &rhs_is_smi);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004964
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004965 // Lhs is a Smi. Check whether the rhs is a heap number.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004966 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
4967 if (strict) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004968 // If rhs is not a number and lhs is a Smi then strict equality cannot
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004969 // succeed. Return non-equal (r0 is already not zero)
4970 __ mov(pc, Operand(lr), LeaveCC, ne); // Return.
4971 } else {
4972 // Smi compared non-strictly with a non-Smi non-heap-number. Call
4973 // the runtime.
4974 __ b(ne, slow);
4975 }
4976
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004977 // Lhs (r1) is a smi, rhs (r0) is a number.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004978 if (CpuFeatures::IsSupported(VFP3)) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004979 // Convert lhs to a double in d7 .
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004980 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004981 __ mov(r7, Operand(r1, ASR, kSmiTagSize));
4982 __ vmov(s15, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004983 __ vcvt_f64_s32(d7, s15);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004984 // Load the double from rhs, tagged HeapNumber r0, to d6.
4985 __ sub(r7, r0, Operand(kHeapObjectTag));
4986 __ vldr(d6, r7, HeapNumber::kValueOffset);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004987 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004988 __ push(lr);
4989 // Convert lhs to a double in r2, r3.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004990 __ mov(r7, Operand(r1));
4991 ConvertToDoubleStub stub1(r3, r2, r7, r6);
4992 __ Call(stub1.GetCode(), RelocInfo::CODE_TARGET);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004993 // Load rhs to a double in r0, r1.
4994 __ ldr(r1, FieldMemOperand(r0, HeapNumber::kValueOffset + kPointerSize));
4995 __ ldr(r0, FieldMemOperand(r0, HeapNumber::kValueOffset));
4996 __ pop(lr);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004997 }
4998
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004999 // We now have both loaded as doubles but we can skip the lhs nan check
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005000 // since it's a smi.
5001 __ jmp(lhs_not_nan);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005002
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005003 __ bind(&rhs_is_smi);
5004 // Rhs is a smi. Check whether the non-smi lhs is a heap number.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005005 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5006 if (strict) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005007 // If lhs is not a number and rhs is a smi then strict equality cannot
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005008 // succeed. Return non-equal.
5009 __ mov(r0, Operand(1), LeaveCC, ne); // Non-zero indicates not equal.
5010 __ mov(pc, Operand(lr), LeaveCC, ne); // Return.
5011 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005012 // Smi compared non-strictly with a non-smi non-heap-number. Call
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005013 // the runtime.
5014 __ b(ne, slow);
5015 }
5016
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005017 // Rhs (r0) is a smi, lhs (r1) is a heap number.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005018 if (CpuFeatures::IsSupported(VFP3)) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005019 // Convert rhs to a double in d6 .
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005020 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005021 // Load the double from lhs, tagged HeapNumber r1, to d7.
5022 __ sub(r7, r1, Operand(kHeapObjectTag));
5023 __ vldr(d7, r7, HeapNumber::kValueOffset);
5024 __ mov(r7, Operand(r0, ASR, kSmiTagSize));
5025 __ vmov(s13, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005026 __ vcvt_f64_s32(d6, s13);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005027 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005028 __ push(lr);
5029 // Load lhs to a double in r2, r3.
5030 __ ldr(r3, FieldMemOperand(r1, HeapNumber::kValueOffset + kPointerSize));
5031 __ ldr(r2, FieldMemOperand(r1, HeapNumber::kValueOffset));
5032 // Convert rhs to a double in r0, r1.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005033 __ mov(r7, Operand(r0));
5034 ConvertToDoubleStub stub2(r1, r0, r7, r6);
5035 __ Call(stub2.GetCode(), RelocInfo::CODE_TARGET);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005036 __ pop(lr);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005037 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005038 // Fall through to both_loaded_as_doubles.
5039}
5040
5041
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005042void EmitNanCheck(MacroAssembler* masm, Label* lhs_not_nan, Condition cc) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005043 bool exp_first = (HeapNumber::kExponentOffset == HeapNumber::kValueOffset);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005044 Register rhs_exponent = exp_first ? r0 : r1;
5045 Register lhs_exponent = exp_first ? r2 : r3;
5046 Register rhs_mantissa = exp_first ? r1 : r0;
5047 Register lhs_mantissa = exp_first ? r3 : r2;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005048 Label one_is_nan, neither_is_nan;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005049 Label lhs_not_nan_exp_mask_is_loaded;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005050
5051 Register exp_mask_reg = r5;
5052
5053 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005054 __ and_(r4, lhs_exponent, Operand(exp_mask_reg));
5055 __ cmp(r4, Operand(exp_mask_reg));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005056 __ b(ne, &lhs_not_nan_exp_mask_is_loaded);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005057 __ mov(r4,
5058 Operand(lhs_exponent, LSL, HeapNumber::kNonMantissaBitsInTopWord),
5059 SetCC);
5060 __ b(ne, &one_is_nan);
5061 __ cmp(lhs_mantissa, Operand(0));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005062 __ b(ne, &one_is_nan);
5063
5064 __ bind(lhs_not_nan);
5065 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
5066 __ bind(&lhs_not_nan_exp_mask_is_loaded);
5067 __ and_(r4, rhs_exponent, Operand(exp_mask_reg));
5068 __ cmp(r4, Operand(exp_mask_reg));
5069 __ b(ne, &neither_is_nan);
5070 __ mov(r4,
5071 Operand(rhs_exponent, LSL, HeapNumber::kNonMantissaBitsInTopWord),
5072 SetCC);
5073 __ b(ne, &one_is_nan);
5074 __ cmp(rhs_mantissa, Operand(0));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005075 __ b(eq, &neither_is_nan);
5076
5077 __ bind(&one_is_nan);
5078 // NaN comparisons always fail.
5079 // Load whatever we need in r0 to make the comparison fail.
5080 if (cc == lt || cc == le) {
5081 __ mov(r0, Operand(GREATER));
5082 } else {
5083 __ mov(r0, Operand(LESS));
5084 }
5085 __ mov(pc, Operand(lr)); // Return.
5086
5087 __ bind(&neither_is_nan);
5088}
5089
5090
5091// See comment at call site.
5092static void EmitTwoNonNanDoubleComparison(MacroAssembler* masm, Condition cc) {
5093 bool exp_first = (HeapNumber::kExponentOffset == HeapNumber::kValueOffset);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005094 Register rhs_exponent = exp_first ? r0 : r1;
5095 Register lhs_exponent = exp_first ? r2 : r3;
5096 Register rhs_mantissa = exp_first ? r1 : r0;
5097 Register lhs_mantissa = exp_first ? r3 : r2;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005098
5099 // r0, r1, r2, r3 have the two doubles. Neither is a NaN.
5100 if (cc == eq) {
5101 // Doubles are not equal unless they have the same bit pattern.
5102 // Exception: 0 and -0.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005103 __ cmp(rhs_mantissa, Operand(lhs_mantissa));
5104 __ orr(r0, rhs_mantissa, Operand(lhs_mantissa), LeaveCC, ne);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005105 // Return non-zero if the numbers are unequal.
5106 __ mov(pc, Operand(lr), LeaveCC, ne);
5107
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005108 __ sub(r0, rhs_exponent, Operand(lhs_exponent), SetCC);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005109 // If exponents are equal then return 0.
5110 __ mov(pc, Operand(lr), LeaveCC, eq);
5111
5112 // Exponents are unequal. The only way we can return that the numbers
5113 // are equal is if one is -0 and the other is 0. We already dealt
5114 // with the case where both are -0 or both are 0.
5115 // We start by seeing if the mantissas (that are equal) or the bottom
5116 // 31 bits of the rhs exponent are non-zero. If so we return not
5117 // equal.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005118 __ orr(r4, lhs_mantissa, Operand(lhs_exponent, LSL, kSmiTagSize), SetCC);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005119 __ mov(r0, Operand(r4), LeaveCC, ne);
5120 __ mov(pc, Operand(lr), LeaveCC, ne); // Return conditionally.
5121 // Now they are equal if and only if the lhs exponent is zero in its
5122 // low 31 bits.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005123 __ mov(r0, Operand(rhs_exponent, LSL, kSmiTagSize));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005124 __ mov(pc, Operand(lr));
5125 } else {
5126 // Call a native function to do a comparison between two non-NaNs.
5127 // Call C routine that may not cause GC or other trouble.
5128 __ mov(r5, Operand(ExternalReference::compare_doubles()));
5129 __ Jump(r5); // Tail call.
5130 }
5131}
5132
5133
5134// See comment at call site.
5135static void EmitStrictTwoHeapObjectCompare(MacroAssembler* masm) {
5136 // If either operand is a JSObject or an oddball value, then they are
5137 // not equal since their pointers are different.
5138 // There is no test for undetectability in strict equality.
5139 ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
5140 Label first_non_object;
5141 // Get the type of the first operand into r2 and compare it with
5142 // FIRST_JS_OBJECT_TYPE.
5143 __ CompareObjectType(r0, r2, r2, FIRST_JS_OBJECT_TYPE);
5144 __ b(lt, &first_non_object);
5145
5146 // Return non-zero (r0 is not zero)
5147 Label return_not_equal;
5148 __ bind(&return_not_equal);
5149 __ mov(pc, Operand(lr)); // Return.
5150
5151 __ bind(&first_non_object);
5152 // Check for oddballs: true, false, null, undefined.
5153 __ cmp(r2, Operand(ODDBALL_TYPE));
5154 __ b(eq, &return_not_equal);
5155
5156 __ CompareObjectType(r1, r3, r3, FIRST_JS_OBJECT_TYPE);
5157 __ b(ge, &return_not_equal);
5158
5159 // Check for oddballs: true, false, null, undefined.
5160 __ cmp(r3, Operand(ODDBALL_TYPE));
5161 __ b(eq, &return_not_equal);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005162
5163 // Now that we have the types we might as well check for symbol-symbol.
5164 // Ensure that no non-strings have the symbol bit set.
5165 ASSERT(kNotStringTag + kIsSymbolMask > LAST_TYPE);
5166 ASSERT(kSymbolTag != 0);
5167 __ and_(r2, r2, Operand(r3));
5168 __ tst(r2, Operand(kIsSymbolMask));
5169 __ b(ne, &return_not_equal);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005170}
5171
5172
5173// See comment at call site.
5174static void EmitCheckForTwoHeapNumbers(MacroAssembler* masm,
5175 Label* both_loaded_as_doubles,
5176 Label* not_heap_numbers,
5177 Label* slow) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005178 __ CompareObjectType(r0, r3, r2, HEAP_NUMBER_TYPE);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005179 __ b(ne, not_heap_numbers);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005180 __ ldr(r2, FieldMemOperand(r1, HeapObject::kMapOffset));
5181 __ cmp(r2, r3);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005182 __ b(ne, slow); // First was a heap number, second wasn't. Go slow case.
5183
5184 // Both are heap numbers. Load them up then jump to the code we have
5185 // for that.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005186 if (CpuFeatures::IsSupported(VFP3)) {
5187 CpuFeatures::Scope scope(VFP3);
5188 __ sub(r7, r0, Operand(kHeapObjectTag));
5189 __ vldr(d6, r7, HeapNumber::kValueOffset);
5190 __ sub(r7, r1, Operand(kHeapObjectTag));
5191 __ vldr(d7, r7, HeapNumber::kValueOffset);
5192 } else {
5193 __ ldr(r2, FieldMemOperand(r1, HeapNumber::kValueOffset));
5194 __ ldr(r3, FieldMemOperand(r1, HeapNumber::kValueOffset + kPointerSize));
5195 __ ldr(r1, FieldMemOperand(r0, HeapNumber::kValueOffset + kPointerSize));
5196 __ ldr(r0, FieldMemOperand(r0, HeapNumber::kValueOffset));
5197 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005198 __ jmp(both_loaded_as_doubles);
5199}
5200
5201
5202// Fast negative check for symbol-to-symbol equality.
5203static void EmitCheckForSymbols(MacroAssembler* masm, Label* slow) {
5204 // r2 is object type of r0.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005205 // Ensure that no non-strings have the symbol bit set.
5206 ASSERT(kNotStringTag + kIsSymbolMask > LAST_TYPE);
5207 ASSERT(kSymbolTag != 0);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005208 __ tst(r2, Operand(kIsSymbolMask));
5209 __ b(eq, slow);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005210 __ ldr(r3, FieldMemOperand(r1, HeapObject::kMapOffset));
5211 __ ldrb(r3, FieldMemOperand(r3, Map::kInstanceTypeOffset));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005212 __ tst(r3, Operand(kIsSymbolMask));
5213 __ b(eq, slow);
5214
5215 // Both are symbols. We already checked they weren't the same pointer
5216 // so they are not equal.
5217 __ mov(r0, Operand(1)); // Non-zero indicates not equal.
5218 __ mov(pc, Operand(lr)); // Return.
5219}
5220
5221
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005222void NumberToStringStub::GenerateLookupNumberStringCache(MacroAssembler* masm,
5223 Register object,
5224 Register result,
5225 Register scratch1,
5226 Register scratch2,
5227 bool object_is_smi,
5228 Label* not_found) {
5229 // Currently only lookup for smis. Check for smi if object is not known to be
5230 // a smi.
5231 if (!object_is_smi) {
5232 ASSERT(kSmiTag == 0);
5233 __ tst(object, Operand(kSmiTagMask));
5234 __ b(ne, not_found);
5235 }
5236
5237 // Use of registers. Register result is used as a temporary.
5238 Register number_string_cache = result;
5239 Register mask = scratch1;
5240 Register scratch = scratch2;
5241
5242 // Load the number string cache.
5243 __ LoadRoot(number_string_cache, Heap::kNumberStringCacheRootIndex);
5244
5245 // Make the hash mask from the length of the number string cache. It
5246 // contains two elements (number and string) for each cache entry.
5247 __ ldr(mask, FieldMemOperand(number_string_cache, FixedArray::kLengthOffset));
5248 // Divide length by two (length is not a smi).
5249 __ mov(mask, Operand(mask, ASR, 1));
5250 __ sub(mask, mask, Operand(1)); // Make mask.
5251
5252 // Calculate the entry in the number string cache. The hash value in the
5253 // number string cache for smis is just the smi value.
5254 __ and_(scratch, mask, Operand(object, ASR, 1));
5255
5256 // Calculate address of entry in string cache: each entry consists
5257 // of two pointer sized fields.
5258 __ add(scratch,
5259 number_string_cache,
5260 Operand(scratch, LSL, kPointerSizeLog2 + 1));
5261
5262 // Check if the entry is the smi we are looking for.
5263 Register object1 = scratch1;
5264 __ ldr(object1, FieldMemOperand(scratch, FixedArray::kHeaderSize));
5265 __ cmp(object, object1);
5266 __ b(ne, not_found);
5267
5268 // Get the result from the cache.
5269 __ ldr(result,
5270 FieldMemOperand(scratch, FixedArray::kHeaderSize + kPointerSize));
5271
5272 __ IncrementCounter(&Counters::number_to_string_native,
5273 1,
5274 scratch1,
5275 scratch2);
5276}
5277
5278
5279void NumberToStringStub::Generate(MacroAssembler* masm) {
5280 Label runtime;
5281
5282 __ ldr(r1, MemOperand(sp, 0));
5283
5284 // Generate code to lookup number in the number string cache.
5285 GenerateLookupNumberStringCache(masm, r1, r0, r2, r3, false, &runtime);
5286 __ add(sp, sp, Operand(1 * kPointerSize));
5287 __ Ret();
5288
5289 __ bind(&runtime);
5290 // Handle number to string in the runtime system if not found in the cache.
5291 __ TailCallRuntime(Runtime::kNumberToString, 1, 1);
5292}
5293
5294
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005295// On entry r0 (rhs) and r1 (lhs) are the values to be compared.
5296// On exit r0 is 0, positive or negative to indicate the result of
5297// the comparison.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005298void CompareStub::Generate(MacroAssembler* masm) {
5299 Label slow; // Call builtin.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005300 Label not_smis, both_loaded_as_doubles, lhs_not_nan;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005301
5302 // NOTICE! This code is only reached after a smi-fast-case check, so
5303 // it is certain that at least one operand isn't a smi.
5304
5305 // Handle the case where the objects are identical. Either returns the answer
5306 // or goes to slow. Only falls through if the objects were not identical.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005307 EmitIdenticalObjectComparison(masm, &slow, cc_, never_nan_nan_);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005308
5309 // If either is a Smi (we know that not both are), then they can only
5310 // be strictly equal if the other is a HeapNumber.
5311 ASSERT_EQ(0, kSmiTag);
5312 ASSERT_EQ(0, Smi::FromInt(0));
5313 __ and_(r2, r0, Operand(r1));
5314 __ tst(r2, Operand(kSmiTagMask));
5315 __ b(ne, &not_smis);
5316 // One operand is a smi. EmitSmiNonsmiComparison generates code that can:
5317 // 1) Return the answer.
5318 // 2) Go to slow.
5319 // 3) Fall through to both_loaded_as_doubles.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005320 // 4) Jump to lhs_not_nan.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005321 // In cases 3 and 4 we have found out we were dealing with a number-number
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005322 // comparison. If VFP3 is supported the double values of the numbers have
5323 // been loaded into d7 and d6. Otherwise, the double values have been loaded
5324 // into r0, r1, r2, and r3.
5325 EmitSmiNonsmiComparison(masm, &lhs_not_nan, &slow, strict_);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005326
5327 __ bind(&both_loaded_as_doubles);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005328 // The arguments have been converted to doubles and stored in d6 and d7, if
5329 // VFP3 is supported, or in r0, r1, r2, and r3.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005330 if (CpuFeatures::IsSupported(VFP3)) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005331 __ bind(&lhs_not_nan);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005332 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005333 Label no_nan;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005334 // ARMv7 VFP3 instructions to implement double precision comparison.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005335 __ vcmp(d7, d6);
5336 __ vmrs(pc); // Move vector status bits to normal status bits.
5337 Label nan;
5338 __ b(vs, &nan);
5339 __ mov(r0, Operand(EQUAL), LeaveCC, eq);
5340 __ mov(r0, Operand(LESS), LeaveCC, lt);
5341 __ mov(r0, Operand(GREATER), LeaveCC, gt);
5342 __ mov(pc, Operand(lr));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005343
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005344 __ bind(&nan);
5345 // If one of the sides was a NaN then the v flag is set. Load r0 with
5346 // whatever it takes to make the comparison fail, since comparisons with NaN
5347 // always fail.
5348 if (cc_ == lt || cc_ == le) {
5349 __ mov(r0, Operand(GREATER));
5350 } else {
5351 __ mov(r0, Operand(LESS));
5352 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005353 __ mov(pc, Operand(lr));
5354 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005355 // Checks for NaN in the doubles we have loaded. Can return the answer or
5356 // fall through if neither is a NaN. Also binds lhs_not_nan.
5357 EmitNanCheck(masm, &lhs_not_nan, cc_);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005358 // Compares two doubles in r0, r1, r2, r3 that are not NaNs. Returns the
5359 // answer. Never falls through.
5360 EmitTwoNonNanDoubleComparison(masm, cc_);
5361 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005362
5363 __ bind(&not_smis);
5364 // At this point we know we are dealing with two different objects,
5365 // and neither of them is a Smi. The objects are in r0 and r1.
5366 if (strict_) {
5367 // This returns non-equal for some object types, or falls through if it
5368 // was not lucky.
5369 EmitStrictTwoHeapObjectCompare(masm);
5370 }
5371
5372 Label check_for_symbols;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005373 Label flat_string_check;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005374 // Check for heap-number-heap-number comparison. Can jump to slow case,
5375 // or load both doubles into r0, r1, r2, r3 and jump to the code that handles
5376 // that case. If the inputs are not doubles then jumps to check_for_symbols.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005377 // In this case r2 will contain the type of r0. Never falls through.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005378 EmitCheckForTwoHeapNumbers(masm,
5379 &both_loaded_as_doubles,
5380 &check_for_symbols,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005381 &flat_string_check);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005382
5383 __ bind(&check_for_symbols);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005384 // In the strict case the EmitStrictTwoHeapObjectCompare already took care of
5385 // symbols.
5386 if (cc_ == eq && !strict_) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005387 // Either jumps to slow or returns the answer. Assumes that r2 is the type
5388 // of r0 on entry.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005389 EmitCheckForSymbols(masm, &flat_string_check);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005390 }
5391
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005392 // Check for both being sequential ASCII strings, and inline if that is the
5393 // case.
5394 __ bind(&flat_string_check);
5395
5396 __ JumpIfNonSmisNotBothSequentialAsciiStrings(r0, r1, r2, r3, &slow);
5397
5398 __ IncrementCounter(&Counters::string_compare_native, 1, r2, r3);
5399 StringCompareStub::GenerateCompareFlatAsciiStrings(masm,
5400 r1,
5401 r0,
5402 r2,
5403 r3,
5404 r4,
5405 r5);
5406 // Never falls through to here.
5407
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005408 __ bind(&slow);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005409
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005410 __ push(r1);
5411 __ push(r0);
5412 // Figure out which native to call and setup the arguments.
5413 Builtins::JavaScript native;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005414 if (cc_ == eq) {
5415 native = strict_ ? Builtins::STRICT_EQUALS : Builtins::EQUALS;
5416 } else {
5417 native = Builtins::COMPARE;
5418 int ncr; // NaN compare result
5419 if (cc_ == lt || cc_ == le) {
5420 ncr = GREATER;
5421 } else {
5422 ASSERT(cc_ == gt || cc_ == ge); // remaining cases
5423 ncr = LESS;
5424 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005425 __ mov(r0, Operand(Smi::FromInt(ncr)));
5426 __ push(r0);
5427 }
5428
5429 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
5430 // tagged as a small integer.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005431 __ InvokeBuiltin(native, JUMP_JS);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005432}
5433
5434
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005435// We fall into this code if the operands were Smis, but the result was
5436// not (eg. overflow). We branch into this code (to the not_smi label) if
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005437// the operands were not both Smi. The operands are in r0 and r1. In order
5438// to call the C-implemented binary fp operation routines we need to end up
5439// with the double precision floating point operands in r0 and r1 (for the
5440// value in r1) and r2 and r3 (for the value in r0).
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005441static void HandleBinaryOpSlowCases(MacroAssembler* masm,
5442 Label* not_smi,
5443 const Builtins::JavaScript& builtin,
5444 Token::Value operation,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005445 OverwriteMode mode) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005446 Label slow, slow_pop_2_first, do_the_call;
5447 Label r0_is_smi, r1_is_smi, finished_loading_r0, finished_loading_r1;
5448 // Smi-smi case (overflow).
5449 // Since both are Smis there is no heap number to overwrite, so allocate.
5450 // The new heap number is in r5. r6 and r7 are scratch.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005451 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005452
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005453 // If we have floating point hardware, inline ADD, SUB, MUL, and DIV,
5454 // using registers d7 and d6 for the double values.
5455 bool use_fp_registers = CpuFeatures::IsSupported(VFP3) &&
5456 Token::MOD != operation;
5457 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005458 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005459 __ mov(r7, Operand(r0, ASR, kSmiTagSize));
5460 __ vmov(s15, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005461 __ vcvt_f64_s32(d7, s15);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005462 __ mov(r7, Operand(r1, ASR, kSmiTagSize));
5463 __ vmov(s13, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005464 __ vcvt_f64_s32(d6, s13);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005465 } else {
5466 // Write Smi from r0 to r3 and r2 in double format. r6 is scratch.
5467 __ mov(r7, Operand(r0));
5468 ConvertToDoubleStub stub1(r3, r2, r7, r6);
5469 __ push(lr);
5470 __ Call(stub1.GetCode(), RelocInfo::CODE_TARGET);
5471 // Write Smi from r1 to r1 and r0 in double format. r6 is scratch.
5472 __ mov(r7, Operand(r1));
5473 ConvertToDoubleStub stub2(r1, r0, r7, r6);
5474 __ Call(stub2.GetCode(), RelocInfo::CODE_TARGET);
5475 __ pop(lr);
5476 }
5477
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005478 __ jmp(&do_the_call); // Tail call. No return.
5479
5480 // We jump to here if something goes wrong (one param is not a number of any
5481 // sort or new-space allocation fails).
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005482 __ bind(&slow);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005483
5484 // Push arguments to the stack
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005485 __ push(r1);
5486 __ push(r0);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005487
5488 if (Token::ADD == operation) {
5489 // Test for string arguments before calling runtime.
5490 // r1 : first argument
5491 // r0 : second argument
5492 // sp[0] : second argument
ager@chromium.org5c838252010-02-19 08:53:10 +00005493 // sp[4] : first argument
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005494
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005495 Label not_strings, not_string1, string1, string1_smi2;
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005496 __ tst(r1, Operand(kSmiTagMask));
5497 __ b(eq, &not_string1);
5498 __ CompareObjectType(r1, r2, r2, FIRST_NONSTRING_TYPE);
5499 __ b(ge, &not_string1);
5500
5501 // First argument is a a string, test second.
5502 __ tst(r0, Operand(kSmiTagMask));
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005503 __ b(eq, &string1_smi2);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005504 __ CompareObjectType(r0, r2, r2, FIRST_NONSTRING_TYPE);
5505 __ b(ge, &string1);
5506
5507 // First and second argument are strings.
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005508 StringAddStub string_add_stub(NO_STRING_CHECK_IN_STUB);
5509 __ TailCallStub(&string_add_stub);
5510
5511 __ bind(&string1_smi2);
5512 // First argument is a string, second is a smi. Try to lookup the number
5513 // string for the smi in the number string cache.
5514 NumberToStringStub::GenerateLookupNumberStringCache(
5515 masm, r0, r2, r4, r5, true, &string1);
5516
5517 // Replace second argument on stack and tailcall string add stub to make
5518 // the result.
5519 __ str(r2, MemOperand(sp, 0));
5520 __ TailCallStub(&string_add_stub);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005521
5522 // Only first argument is a string.
5523 __ bind(&string1);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005524 __ InvokeBuiltin(Builtins::STRING_ADD_LEFT, JUMP_JS);
5525
5526 // First argument was not a string, test second.
5527 __ bind(&not_string1);
5528 __ tst(r0, Operand(kSmiTagMask));
5529 __ b(eq, &not_strings);
5530 __ CompareObjectType(r0, r2, r2, FIRST_NONSTRING_TYPE);
5531 __ b(ge, &not_strings);
5532
5533 // Only second argument is a string.
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005534 __ InvokeBuiltin(Builtins::STRING_ADD_RIGHT, JUMP_JS);
5535
5536 __ bind(&not_strings);
5537 }
5538
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005539 __ InvokeBuiltin(builtin, JUMP_JS); // Tail call. No return.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005540
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005541 // We branch here if at least one of r0 and r1 is not a Smi.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005542 __ bind(not_smi);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005543 if (mode == NO_OVERWRITE) {
5544 // In the case where there is no chance of an overwritable float we may as
5545 // well do the allocation immediately while r0 and r1 are untouched.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005546 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005547 }
5548
5549 // Move r0 to a double in r2-r3.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005550 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005551 __ b(eq, &r0_is_smi); // It's a Smi so don't check it's a heap number.
5552 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005553 __ b(ne, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005554 if (mode == OVERWRITE_RIGHT) {
5555 __ mov(r5, Operand(r0)); // Overwrite this heap number.
5556 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005557 if (use_fp_registers) {
5558 CpuFeatures::Scope scope(VFP3);
5559 // Load the double from tagged HeapNumber r0 to d7.
5560 __ sub(r7, r0, Operand(kHeapObjectTag));
5561 __ vldr(d7, r7, HeapNumber::kValueOffset);
5562 } else {
5563 // Calling convention says that second double is in r2 and r3.
5564 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kValueOffset));
5565 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kValueOffset + 4));
5566 }
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005567 __ jmp(&finished_loading_r0);
5568 __ bind(&r0_is_smi);
5569 if (mode == OVERWRITE_RIGHT) {
5570 // We can't overwrite a Smi so get address of new heap number into r5.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005571 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005572 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005573
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005574 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005575 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005576 // Convert smi in r0 to double in d7.
5577 __ mov(r7, Operand(r0, ASR, kSmiTagSize));
5578 __ vmov(s15, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005579 __ vcvt_f64_s32(d7, s15);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005580 } else {
5581 // Write Smi from r0 to r3 and r2 in double format.
5582 __ mov(r7, Operand(r0));
5583 ConvertToDoubleStub stub3(r3, r2, r7, r6);
5584 __ push(lr);
5585 __ Call(stub3.GetCode(), RelocInfo::CODE_TARGET);
5586 __ pop(lr);
5587 }
5588
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005589 __ bind(&finished_loading_r0);
5590
5591 // Move r1 to a double in r0-r1.
5592 __ tst(r1, Operand(kSmiTagMask));
5593 __ b(eq, &r1_is_smi); // It's a Smi so don't check it's a heap number.
5594 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5595 __ b(ne, &slow);
5596 if (mode == OVERWRITE_LEFT) {
5597 __ mov(r5, Operand(r1)); // Overwrite this heap number.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005598 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005599 if (use_fp_registers) {
5600 CpuFeatures::Scope scope(VFP3);
5601 // Load the double from tagged HeapNumber r1 to d6.
5602 __ sub(r7, r1, Operand(kHeapObjectTag));
5603 __ vldr(d6, r7, HeapNumber::kValueOffset);
5604 } else {
5605 // Calling convention says that first double is in r0 and r1.
5606 __ ldr(r0, FieldMemOperand(r1, HeapNumber::kValueOffset));
5607 __ ldr(r1, FieldMemOperand(r1, HeapNumber::kValueOffset + 4));
5608 }
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005609 __ jmp(&finished_loading_r1);
5610 __ bind(&r1_is_smi);
5611 if (mode == OVERWRITE_LEFT) {
5612 // We can't overwrite a Smi so get address of new heap number into r5.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005613 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005614 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005615
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005616 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005617 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005618 // Convert smi in r1 to double in d6.
5619 __ mov(r7, Operand(r1, ASR, kSmiTagSize));
5620 __ vmov(s13, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005621 __ vcvt_f64_s32(d6, s13);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005622 } else {
5623 // Write Smi from r1 to r1 and r0 in double format.
5624 __ mov(r7, Operand(r1));
5625 ConvertToDoubleStub stub4(r1, r0, r7, r6);
5626 __ push(lr);
5627 __ Call(stub4.GetCode(), RelocInfo::CODE_TARGET);
5628 __ pop(lr);
5629 }
5630
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005631 __ bind(&finished_loading_r1);
5632
5633 __ bind(&do_the_call);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005634 // If we are inlining the operation using VFP3 instructions for
5635 // add, subtract, multiply, or divide, the arguments are in d6 and d7.
5636 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005637 CpuFeatures::Scope scope(VFP3);
5638 // ARMv7 VFP3 instructions to implement
5639 // double precision, add, subtract, multiply, divide.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005640
5641 if (Token::MUL == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005642 __ vmul(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005643 } else if (Token::DIV == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005644 __ vdiv(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005645 } else if (Token::ADD == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005646 __ vadd(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005647 } else if (Token::SUB == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005648 __ vsub(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005649 } else {
5650 UNREACHABLE();
5651 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005652 __ sub(r0, r5, Operand(kHeapObjectTag));
5653 __ vstr(d5, r0, HeapNumber::kValueOffset);
5654 __ add(r0, r0, Operand(kHeapObjectTag));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005655 __ mov(pc, lr);
5656 return;
5657 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005658
5659 // If we did not inline the operation, then the arguments are in:
5660 // r0: Left value (least significant part of mantissa).
5661 // r1: Left value (sign, exponent, top of mantissa).
5662 // r2: Right value (least significant part of mantissa).
5663 // r3: Right value (sign, exponent, top of mantissa).
5664 // r5: Address of heap number for result.
5665
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005666 __ push(lr); // For later.
5667 __ push(r5); // Address of heap number that is answer.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005668 __ AlignStack(0);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005669 // Call C routine that may not cause GC or other trouble.
5670 __ mov(r5, Operand(ExternalReference::double_fp_operation(operation)));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005671 __ Call(r5);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005672 __ pop(r4); // Address of heap number.
5673 __ cmp(r4, Operand(Smi::FromInt(0)));
5674 __ pop(r4, eq); // Conditional pop instruction to get rid of alignment push.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005675 // Store answer in the overwritable heap number.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005676#if !defined(USE_ARM_EABI)
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005677 // Double returned in fp coprocessor register 0 and 1, encoded as register
5678 // cr8. Offsets must be divisible by 4 for coprocessor so we need to
5679 // substract the tag from r4.
5680 __ sub(r5, r4, Operand(kHeapObjectTag));
5681 __ stc(p1, cr8, MemOperand(r5, HeapNumber::kValueOffset));
5682#else
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005683 // Double returned in registers 0 and 1.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005684 __ str(r0, FieldMemOperand(r4, HeapNumber::kValueOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005685 __ str(r1, FieldMemOperand(r4, HeapNumber::kValueOffset + 4));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005686#endif
5687 __ mov(r0, Operand(r4));
5688 // And we are done.
5689 __ pop(pc);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005690}
5691
5692
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005693// Tries to get a signed int32 out of a double precision floating point heap
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005694// number. Rounds towards 0. Fastest for doubles that are in the ranges
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005695// -0x7fffffff to -0x40000000 or 0x40000000 to 0x7fffffff. This corresponds
5696// almost to the range of signed int32 values that are not Smis. Jumps to the
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005697// label 'slow' if the double isn't in the range -0x80000000.0 to 0x80000000.0
5698// (excluding the endpoints).
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005699static void GetInt32(MacroAssembler* masm,
5700 Register source,
5701 Register dest,
5702 Register scratch,
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005703 Register scratch2,
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005704 Label* slow) {
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005705 Label right_exponent, done;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005706 // Get exponent word.
5707 __ ldr(scratch, FieldMemOperand(source, HeapNumber::kExponentOffset));
5708 // Get exponent alone in scratch2.
5709 __ and_(scratch2, scratch, Operand(HeapNumber::kExponentMask));
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005710 // Load dest with zero. We use this either for the final shift or
5711 // for the answer.
5712 __ mov(dest, Operand(0));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005713 // Check whether the exponent matches a 32 bit signed int that is not a Smi.
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005714 // A non-Smi integer is 1.xxx * 2^30 so the exponent is 30 (biased). This is
5715 // the exponent that we are fastest at and also the highest exponent we can
5716 // handle here.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005717 const uint32_t non_smi_exponent =
5718 (HeapNumber::kExponentBias + 30) << HeapNumber::kExponentShift;
5719 __ cmp(scratch2, Operand(non_smi_exponent));
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005720 // If we have a match of the int32-but-not-Smi exponent then skip some logic.
5721 __ b(eq, &right_exponent);
5722 // If the exponent is higher than that then go to slow case. This catches
5723 // numbers that don't fit in a signed int32, infinities and NaNs.
5724 __ b(gt, slow);
5725
5726 // We know the exponent is smaller than 30 (biased). If it is less than
5727 // 0 (biased) then the number is smaller in magnitude than 1.0 * 2^0, ie
5728 // it rounds to zero.
5729 const uint32_t zero_exponent =
5730 (HeapNumber::kExponentBias + 0) << HeapNumber::kExponentShift;
5731 __ sub(scratch2, scratch2, Operand(zero_exponent), SetCC);
5732 // Dest already has a Smi zero.
5733 __ b(lt, &done);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005734 if (!CpuFeatures::IsSupported(VFP3)) {
5735 // We have a shifted exponent between 0 and 30 in scratch2.
5736 __ mov(dest, Operand(scratch2, LSR, HeapNumber::kExponentShift));
5737 // We now have the exponent in dest. Subtract from 30 to get
5738 // how much to shift down.
5739 __ rsb(dest, dest, Operand(30));
5740 }
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005741 __ bind(&right_exponent);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005742 if (CpuFeatures::IsSupported(VFP3)) {
5743 CpuFeatures::Scope scope(VFP3);
5744 // ARMv7 VFP3 instructions implementing double precision to integer
5745 // conversion using round to zero.
5746 __ ldr(scratch2, FieldMemOperand(source, HeapNumber::kMantissaOffset));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005747 __ vmov(d7, scratch2, scratch);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005748 __ vcvt_s32_f64(s15, d7);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005749 __ vmov(dest, s15);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005750 } else {
5751 // Get the top bits of the mantissa.
5752 __ and_(scratch2, scratch, Operand(HeapNumber::kMantissaMask));
5753 // Put back the implicit 1.
5754 __ orr(scratch2, scratch2, Operand(1 << HeapNumber::kExponentShift));
5755 // Shift up the mantissa bits to take up the space the exponent used to
5756 // take. We just orred in the implicit bit so that took care of one and
5757 // we want to leave the sign bit 0 so we subtract 2 bits from the shift
5758 // distance.
5759 const int shift_distance = HeapNumber::kNonMantissaBitsInTopWord - 2;
5760 __ mov(scratch2, Operand(scratch2, LSL, shift_distance));
5761 // Put sign in zero flag.
5762 __ tst(scratch, Operand(HeapNumber::kSignMask));
5763 // Get the second half of the double. For some exponents we don't
5764 // actually need this because the bits get shifted out again, but
5765 // it's probably slower to test than just to do it.
5766 __ ldr(scratch, FieldMemOperand(source, HeapNumber::kMantissaOffset));
5767 // Shift down 22 bits to get the last 10 bits.
5768 __ orr(scratch, scratch2, Operand(scratch, LSR, 32 - shift_distance));
5769 // Move down according to the exponent.
5770 __ mov(dest, Operand(scratch, LSR, dest));
5771 // Fix sign if sign bit was set.
5772 __ rsb(dest, dest, Operand(0), LeaveCC, ne);
5773 }
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005774 __ bind(&done);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005775}
5776
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005777// For bitwise ops where the inputs are not both Smis we here try to determine
5778// whether both inputs are either Smis or at least heap numbers that can be
5779// represented by a 32 bit signed value. We truncate towards zero as required
5780// by the ES spec. If this is the case we do the bitwise op and see if the
5781// result is a Smi. If so, great, otherwise we try to find a heap number to
5782// write the answer into (either by allocating or by overwriting).
5783// On entry the operands are in r0 and r1. On exit the answer is in r0.
5784void GenericBinaryOpStub::HandleNonSmiBitwiseOp(MacroAssembler* masm) {
5785 Label slow, result_not_a_smi;
5786 Label r0_is_smi, r1_is_smi;
5787 Label done_checking_r0, done_checking_r1;
5788
5789 __ tst(r1, Operand(kSmiTagMask));
5790 __ b(eq, &r1_is_smi); // It's a Smi so don't check it's a heap number.
5791 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5792 __ b(ne, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005793 GetInt32(masm, r1, r3, r5, r4, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005794 __ jmp(&done_checking_r1);
5795 __ bind(&r1_is_smi);
5796 __ mov(r3, Operand(r1, ASR, 1));
5797 __ bind(&done_checking_r1);
5798
5799 __ tst(r0, Operand(kSmiTagMask));
5800 __ b(eq, &r0_is_smi); // It's a Smi so don't check it's a heap number.
5801 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
5802 __ b(ne, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005803 GetInt32(masm, r0, r2, r5, r4, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005804 __ jmp(&done_checking_r0);
5805 __ bind(&r0_is_smi);
5806 __ mov(r2, Operand(r0, ASR, 1));
5807 __ bind(&done_checking_r0);
5808
5809 // r0 and r1: Original operands (Smi or heap numbers).
5810 // r2 and r3: Signed int32 operands.
5811 switch (op_) {
5812 case Token::BIT_OR: __ orr(r2, r2, Operand(r3)); break;
5813 case Token::BIT_XOR: __ eor(r2, r2, Operand(r3)); break;
5814 case Token::BIT_AND: __ and_(r2, r2, Operand(r3)); break;
5815 case Token::SAR:
5816 // Use only the 5 least significant bits of the shift count.
5817 __ and_(r2, r2, Operand(0x1f));
5818 __ mov(r2, Operand(r3, ASR, r2));
5819 break;
5820 case Token::SHR:
5821 // Use only the 5 least significant bits of the shift count.
5822 __ and_(r2, r2, Operand(0x1f));
5823 __ mov(r2, Operand(r3, LSR, r2), SetCC);
5824 // SHR is special because it is required to produce a positive answer.
5825 // The code below for writing into heap numbers isn't capable of writing
5826 // the register as an unsigned int so we go to slow case if we hit this
5827 // case.
5828 __ b(mi, &slow);
5829 break;
5830 case Token::SHL:
5831 // Use only the 5 least significant bits of the shift count.
5832 __ and_(r2, r2, Operand(0x1f));
5833 __ mov(r2, Operand(r3, LSL, r2));
5834 break;
5835 default: UNREACHABLE();
5836 }
5837 // check that the *signed* result fits in a smi
5838 __ add(r3, r2, Operand(0x40000000), SetCC);
5839 __ b(mi, &result_not_a_smi);
5840 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
5841 __ Ret();
5842
5843 Label have_to_allocate, got_a_heap_number;
5844 __ bind(&result_not_a_smi);
5845 switch (mode_) {
5846 case OVERWRITE_RIGHT: {
5847 __ tst(r0, Operand(kSmiTagMask));
5848 __ b(eq, &have_to_allocate);
5849 __ mov(r5, Operand(r0));
5850 break;
5851 }
5852 case OVERWRITE_LEFT: {
5853 __ tst(r1, Operand(kSmiTagMask));
5854 __ b(eq, &have_to_allocate);
5855 __ mov(r5, Operand(r1));
5856 break;
5857 }
5858 case NO_OVERWRITE: {
5859 // Get a new heap number in r5. r6 and r7 are scratch.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005860 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005861 }
5862 default: break;
5863 }
5864 __ bind(&got_a_heap_number);
5865 // r2: Answer as signed int32.
5866 // r5: Heap number to write answer into.
5867
5868 // Nothing can go wrong now, so move the heap number to r0, which is the
5869 // result.
5870 __ mov(r0, Operand(r5));
5871
5872 // Tail call that writes the int32 in r2 to the heap number in r0, using
5873 // r3 as scratch. r0 is preserved and returned.
5874 WriteInt32ToHeapNumberStub stub(r2, r0, r3);
5875 __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET);
5876
5877 if (mode_ != NO_OVERWRITE) {
5878 __ bind(&have_to_allocate);
5879 // Get a new heap number in r5. r6 and r7 are scratch.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005880 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005881 __ jmp(&got_a_heap_number);
5882 }
5883
5884 // If all else failed then we go to the runtime system.
5885 __ bind(&slow);
5886 __ push(r1); // restore stack
5887 __ push(r0);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005888 switch (op_) {
5889 case Token::BIT_OR:
5890 __ InvokeBuiltin(Builtins::BIT_OR, JUMP_JS);
5891 break;
5892 case Token::BIT_AND:
5893 __ InvokeBuiltin(Builtins::BIT_AND, JUMP_JS);
5894 break;
5895 case Token::BIT_XOR:
5896 __ InvokeBuiltin(Builtins::BIT_XOR, JUMP_JS);
5897 break;
5898 case Token::SAR:
5899 __ InvokeBuiltin(Builtins::SAR, JUMP_JS);
5900 break;
5901 case Token::SHR:
5902 __ InvokeBuiltin(Builtins::SHR, JUMP_JS);
5903 break;
5904 case Token::SHL:
5905 __ InvokeBuiltin(Builtins::SHL, JUMP_JS);
5906 break;
5907 default:
5908 UNREACHABLE();
5909 }
5910}
5911
5912
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00005913// Can we multiply by x with max two shifts and an add.
5914// This answers yes to all integers from 2 to 10.
5915static bool IsEasyToMultiplyBy(int x) {
5916 if (x < 2) return false; // Avoid special cases.
5917 if (x > (Smi::kMaxValue + 1) >> 2) return false; // Almost always overflows.
5918 if (IsPowerOf2(x)) return true; // Simple shift.
5919 if (PopCountLessThanEqual2(x)) return true; // Shift and add and shift.
5920 if (IsPowerOf2(x + 1)) return true; // Patterns like 11111.
5921 return false;
5922}
5923
5924
5925// Can multiply by anything that IsEasyToMultiplyBy returns true for.
5926// Source and destination may be the same register. This routine does
5927// not set carry and overflow the way a mul instruction would.
5928static void MultiplyByKnownInt(MacroAssembler* masm,
5929 Register source,
5930 Register destination,
5931 int known_int) {
5932 if (IsPowerOf2(known_int)) {
5933 __ mov(destination, Operand(source, LSL, BitPosition(known_int)));
5934 } else if (PopCountLessThanEqual2(known_int)) {
5935 int first_bit = BitPosition(known_int);
5936 int second_bit = BitPosition(known_int ^ (1 << first_bit));
5937 __ add(destination, source, Operand(source, LSL, second_bit - first_bit));
5938 if (first_bit != 0) {
5939 __ mov(destination, Operand(destination, LSL, first_bit));
5940 }
5941 } else {
5942 ASSERT(IsPowerOf2(known_int + 1)); // Patterns like 1111.
5943 int the_bit = BitPosition(known_int + 1);
5944 __ rsb(destination, source, Operand(source, LSL, the_bit));
5945 }
5946}
5947
5948
5949// This function (as opposed to MultiplyByKnownInt) takes the known int in a
5950// a register for the cases where it doesn't know a good trick, and may deliver
5951// a result that needs shifting.
5952static void MultiplyByKnownInt2(
5953 MacroAssembler* masm,
5954 Register result,
5955 Register source,
5956 Register known_int_register, // Smi tagged.
5957 int known_int,
5958 int* required_shift) { // Including Smi tag shift
5959 switch (known_int) {
5960 case 3:
5961 __ add(result, source, Operand(source, LSL, 1));
5962 *required_shift = 1;
5963 break;
5964 case 5:
5965 __ add(result, source, Operand(source, LSL, 2));
5966 *required_shift = 1;
5967 break;
5968 case 6:
5969 __ add(result, source, Operand(source, LSL, 1));
5970 *required_shift = 2;
5971 break;
5972 case 7:
5973 __ rsb(result, source, Operand(source, LSL, 3));
5974 *required_shift = 1;
5975 break;
5976 case 9:
5977 __ add(result, source, Operand(source, LSL, 3));
5978 *required_shift = 1;
5979 break;
5980 case 10:
5981 __ add(result, source, Operand(source, LSL, 2));
5982 *required_shift = 2;
5983 break;
5984 default:
5985 ASSERT(!IsPowerOf2(known_int)); // That would be very inefficient.
5986 __ mul(result, source, known_int_register);
5987 *required_shift = 0;
5988 }
5989}
5990
5991
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005992const char* GenericBinaryOpStub::GetName() {
5993 if (name_ != NULL) return name_;
5994 const int len = 100;
5995 name_ = Bootstrapper::AllocateAutoDeletedArray(len);
5996 if (name_ == NULL) return "OOM";
5997 const char* op_name = Token::Name(op_);
5998 const char* overwrite_name;
5999 switch (mode_) {
6000 case NO_OVERWRITE: overwrite_name = "Alloc"; break;
6001 case OVERWRITE_RIGHT: overwrite_name = "OverwriteRight"; break;
6002 case OVERWRITE_LEFT: overwrite_name = "OverwriteLeft"; break;
6003 default: overwrite_name = "UnknownOverwrite"; break;
6004 }
6005
6006 OS::SNPrintF(Vector<char>(name_, len),
6007 "GenericBinaryOpStub_%s_%s%s",
6008 op_name,
6009 overwrite_name,
6010 specialized_on_rhs_ ? "_ConstantRhs" : 0);
6011 return name_;
6012}
6013
6014
ager@chromium.org5c838252010-02-19 08:53:10 +00006015
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006016void GenericBinaryOpStub::Generate(MacroAssembler* masm) {
6017 // r1 : x
6018 // r0 : y
6019 // result : r0
6020
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006021 // All ops need to know whether we are dealing with two Smis. Set up r2 to
6022 // tell us that.
6023 __ orr(r2, r1, Operand(r0)); // r2 = x | y;
6024
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006025 switch (op_) {
6026 case Token::ADD: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006027 Label not_smi;
6028 // Fast path.
6029 ASSERT(kSmiTag == 0); // Adjust code below.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006030 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006031 __ b(ne, &not_smi);
6032 __ add(r0, r1, Operand(r0), SetCC); // Add y optimistically.
6033 // Return if no overflow.
6034 __ Ret(vc);
6035 __ sub(r0, r0, Operand(r1)); // Revert optimistic add.
6036
6037 HandleBinaryOpSlowCases(masm,
6038 &not_smi,
6039 Builtins::ADD,
6040 Token::ADD,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006041 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006042 break;
6043 }
6044
6045 case Token::SUB: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006046 Label not_smi;
6047 // Fast path.
6048 ASSERT(kSmiTag == 0); // Adjust code below.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006049 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006050 __ b(ne, &not_smi);
6051 __ sub(r0, r1, Operand(r0), SetCC); // Subtract y optimistically.
6052 // Return if no overflow.
6053 __ Ret(vc);
6054 __ sub(r0, r1, Operand(r0)); // Revert optimistic subtract.
6055
6056 HandleBinaryOpSlowCases(masm,
6057 &not_smi,
6058 Builtins::SUB,
6059 Token::SUB,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006060 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006061 break;
6062 }
6063
6064 case Token::MUL: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006065 Label not_smi, slow;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006066 ASSERT(kSmiTag == 0); // adjust code below
6067 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006068 __ b(ne, &not_smi);
6069 // Remove tag from one operand (but keep sign), so that result is Smi.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006070 __ mov(ip, Operand(r0, ASR, kSmiTagSize));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006071 // Do multiplication
6072 __ smull(r3, r2, r1, ip); // r3 = lower 32 bits of ip*r1.
6073 // Go slow on overflows (overflow bit is not set).
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006074 __ mov(ip, Operand(r3, ASR, 31));
6075 __ cmp(ip, Operand(r2)); // no overflow if higher 33 bits are identical
6076 __ b(ne, &slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006077 // Go slow on zero result to handle -0.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006078 __ tst(r3, Operand(r3));
6079 __ mov(r0, Operand(r3), LeaveCC, ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006080 __ Ret(ne);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006081 // We need -0 if we were multiplying a negative number with 0 to get 0.
6082 // We know one of them was zero.
6083 __ add(r2, r0, Operand(r1), SetCC);
6084 __ mov(r0, Operand(Smi::FromInt(0)), LeaveCC, pl);
6085 __ Ret(pl); // Return Smi 0 if the non-zero one was positive.
6086 // Slow case. We fall through here if we multiplied a negative number
6087 // with 0, because that would mean we should produce -0.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006088 __ bind(&slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006089
6090 HandleBinaryOpSlowCases(masm,
6091 &not_smi,
6092 Builtins::MUL,
6093 Token::MUL,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00006094 mode_);
6095 break;
6096 }
6097
6098 case Token::DIV:
6099 case Token::MOD: {
6100 Label not_smi;
6101 if (specialized_on_rhs_) {
6102 Label smi_is_unsuitable;
6103 __ BranchOnNotSmi(r1, &not_smi);
6104 if (IsPowerOf2(constant_rhs_)) {
6105 if (op_ == Token::MOD) {
6106 __ and_(r0,
6107 r1,
6108 Operand(0x80000000u | ((constant_rhs_ << kSmiTagSize) - 1)),
6109 SetCC);
6110 // We now have the answer, but if the input was negative we also
6111 // have the sign bit. Our work is done if the result is
6112 // positive or zero:
6113 __ Ret(pl);
6114 // A mod of a negative left hand side must return a negative number.
6115 // Unfortunately if the answer is 0 then we must return -0. And we
6116 // already optimistically trashed r0 so we may need to restore it.
6117 __ eor(r0, r0, Operand(0x80000000u), SetCC);
6118 // Next two instructions are conditional on the answer being -0.
6119 __ mov(r0, Operand(Smi::FromInt(constant_rhs_)), LeaveCC, eq);
6120 __ b(eq, &smi_is_unsuitable);
6121 // We need to subtract the dividend. Eg. -3 % 4 == -3.
6122 __ sub(r0, r0, Operand(Smi::FromInt(constant_rhs_)));
6123 } else {
6124 ASSERT(op_ == Token::DIV);
6125 __ tst(r1,
6126 Operand(0x80000000u | ((constant_rhs_ << kSmiTagSize) - 1)));
6127 __ b(ne, &smi_is_unsuitable); // Go slow on negative or remainder.
6128 int shift = 0;
6129 int d = constant_rhs_;
6130 while ((d & 1) == 0) {
6131 d >>= 1;
6132 shift++;
6133 }
6134 __ mov(r0, Operand(r1, LSR, shift));
6135 __ bic(r0, r0, Operand(kSmiTagMask));
6136 }
6137 } else {
6138 // Not a power of 2.
6139 __ tst(r1, Operand(0x80000000u));
6140 __ b(ne, &smi_is_unsuitable);
6141 // Find a fixed point reciprocal of the divisor so we can divide by
6142 // multiplying.
6143 double divisor = 1.0 / constant_rhs_;
6144 int shift = 32;
6145 double scale = 4294967296.0; // 1 << 32.
6146 uint32_t mul;
6147 // Maximise the precision of the fixed point reciprocal.
6148 while (true) {
6149 mul = static_cast<uint32_t>(scale * divisor);
6150 if (mul >= 0x7fffffff) break;
6151 scale *= 2.0;
6152 shift++;
6153 }
6154 mul++;
6155 __ mov(r2, Operand(mul));
6156 __ umull(r3, r2, r2, r1);
6157 __ mov(r2, Operand(r2, LSR, shift - 31));
6158 // r2 is r1 / rhs. r2 is not Smi tagged.
6159 // r0 is still the known rhs. r0 is Smi tagged.
6160 // r1 is still the unkown lhs. r1 is Smi tagged.
6161 int required_r4_shift = 0; // Including the Smi tag shift of 1.
6162 // r4 = r2 * r0.
6163 MultiplyByKnownInt2(masm,
6164 r4,
6165 r2,
6166 r0,
6167 constant_rhs_,
6168 &required_r4_shift);
6169 // r4 << required_r4_shift is now the Smi tagged rhs * (r1 / rhs).
6170 if (op_ == Token::DIV) {
6171 __ sub(r3, r1, Operand(r4, LSL, required_r4_shift), SetCC);
6172 __ b(ne, &smi_is_unsuitable); // There was a remainder.
6173 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
6174 } else {
6175 ASSERT(op_ == Token::MOD);
6176 __ sub(r0, r1, Operand(r4, LSL, required_r4_shift));
6177 }
6178 }
6179 __ Ret();
6180 __ bind(&smi_is_unsuitable);
6181 } else {
6182 __ jmp(&not_smi);
6183 }
6184 HandleBinaryOpSlowCases(masm,
6185 &not_smi,
6186 op_ == Token::MOD ? Builtins::MOD : Builtins::DIV,
6187 op_,
6188 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006189 break;
6190 }
6191
6192 case Token::BIT_OR:
6193 case Token::BIT_AND:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006194 case Token::BIT_XOR:
6195 case Token::SAR:
6196 case Token::SHR:
6197 case Token::SHL: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006198 Label slow;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006199 ASSERT(kSmiTag == 0); // adjust code below
6200 __ tst(r2, Operand(kSmiTagMask));
6201 __ b(ne, &slow);
6202 switch (op_) {
6203 case Token::BIT_OR: __ orr(r0, r0, Operand(r1)); break;
6204 case Token::BIT_AND: __ and_(r0, r0, Operand(r1)); break;
6205 case Token::BIT_XOR: __ eor(r0, r0, Operand(r1)); break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006206 case Token::SAR:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006207 // Remove tags from right operand.
ager@chromium.org5c838252010-02-19 08:53:10 +00006208 __ GetLeastBitsFromSmi(r2, r0, 5);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006209 __ mov(r0, Operand(r1, ASR, r2));
6210 // Smi tag result.
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00006211 __ bic(r0, r0, Operand(kSmiTagMask));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006212 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006213 case Token::SHR:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006214 // Remove tags from operands. We can't do this on a 31 bit number
6215 // because then the 0s get shifted into bit 30 instead of bit 31.
6216 __ mov(r3, Operand(r1, ASR, kSmiTagSize)); // x
ager@chromium.org5c838252010-02-19 08:53:10 +00006217 __ GetLeastBitsFromSmi(r2, r0, 5);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006218 __ mov(r3, Operand(r3, LSR, r2));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006219 // Unsigned shift is not allowed to produce a negative number, so
6220 // check the sign bit and the sign bit after Smi tagging.
6221 __ tst(r3, Operand(0xc0000000));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006222 __ b(ne, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006223 // Smi tag result.
6224 __ mov(r0, Operand(r3, LSL, kSmiTagSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006225 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006226 case Token::SHL:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006227 // Remove tags from operands.
6228 __ mov(r3, Operand(r1, ASR, kSmiTagSize)); // x
ager@chromium.org5c838252010-02-19 08:53:10 +00006229 __ GetLeastBitsFromSmi(r2, r0, 5);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006230 __ mov(r3, Operand(r3, LSL, r2));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006231 // Check that the signed result fits in a Smi.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006232 __ add(r2, r3, Operand(0x40000000), SetCC);
6233 __ b(mi, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006234 __ mov(r0, Operand(r3, LSL, kSmiTagSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006235 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006236 default: UNREACHABLE();
6237 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006238 __ Ret();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006239 __ bind(&slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006240 HandleNonSmiBitwiseOp(masm);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006241 break;
6242 }
6243
6244 default: UNREACHABLE();
6245 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006246 // This code should be unreachable.
6247 __ stop("Unreachable");
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006248}
6249
6250
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006251Handle<Code> GetBinaryOpStub(int key, BinaryOpIC::TypeInfo type_info) {
6252 return Handle<Code>::null();
6253}
6254
6255
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006256void StackCheckStub::Generate(MacroAssembler* masm) {
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00006257 // Do tail-call to runtime routine. Runtime routines expect at least one
6258 // argument, so give it a Smi.
6259 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006260 __ push(r0);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006261 __ TailCallRuntime(Runtime::kStackGuard, 1, 1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006262
6263 __ StubReturn(1);
6264}
6265
6266
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00006267void GenericUnaryOpStub::Generate(MacroAssembler* masm) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006268 Label slow, done;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00006269
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006270 if (op_ == Token::SUB) {
6271 // Check whether the value is a smi.
6272 Label try_float;
6273 __ tst(r0, Operand(kSmiTagMask));
6274 __ b(ne, &try_float);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006275
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006276 // Go slow case if the value of the expression is zero
6277 // to make sure that we switch between 0 and -0.
6278 __ cmp(r0, Operand(0));
6279 __ b(eq, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006280
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006281 // The value of the expression is a smi that is not zero. Try
6282 // optimistic subtraction '0 - value'.
6283 __ rsb(r1, r0, Operand(0), SetCC);
6284 __ b(vs, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006285
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006286 __ mov(r0, Operand(r1)); // Set r0 to result.
6287 __ b(&done);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006288
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006289 __ bind(&try_float);
6290 __ CompareObjectType(r0, r1, r1, HEAP_NUMBER_TYPE);
6291 __ b(ne, &slow);
6292 // r0 is a heap number. Get a new heap number in r1.
6293 if (overwrite_) {
6294 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
6295 __ eor(r2, r2, Operand(HeapNumber::kSignMask)); // Flip sign.
6296 __ str(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
6297 } else {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00006298 __ AllocateHeapNumber(r1, r2, r3, &slow);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006299 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kMantissaOffset));
6300 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
6301 __ str(r3, FieldMemOperand(r1, HeapNumber::kMantissaOffset));
6302 __ eor(r2, r2, Operand(HeapNumber::kSignMask)); // Flip sign.
6303 __ str(r2, FieldMemOperand(r1, HeapNumber::kExponentOffset));
6304 __ mov(r0, Operand(r1));
6305 }
6306 } else if (op_ == Token::BIT_NOT) {
6307 // Check if the operand is a heap number.
6308 __ CompareObjectType(r0, r1, r1, HEAP_NUMBER_TYPE);
6309 __ b(ne, &slow);
6310
6311 // Convert the heap number is r0 to an untagged integer in r1.
6312 GetInt32(masm, r0, r1, r2, r3, &slow);
6313
6314 // Do the bitwise operation (move negated) and check if the result
6315 // fits in a smi.
6316 Label try_float;
6317 __ mvn(r1, Operand(r1));
6318 __ add(r2, r1, Operand(0x40000000), SetCC);
6319 __ b(mi, &try_float);
6320 __ mov(r0, Operand(r1, LSL, kSmiTagSize));
6321 __ b(&done);
6322
6323 __ bind(&try_float);
6324 if (!overwrite_) {
6325 // Allocate a fresh heap number, but don't overwrite r0 until
6326 // we're sure we can do it without going through the slow case
6327 // that needs the value in r0.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00006328 __ AllocateHeapNumber(r2, r3, r4, &slow);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006329 __ mov(r0, Operand(r2));
6330 }
6331
6332 // WriteInt32ToHeapNumberStub does not trigger GC, so we do not
6333 // have to set up a frame.
6334 WriteInt32ToHeapNumberStub stub(r1, r0, r2);
6335 __ push(lr);
6336 __ Call(stub.GetCode(), RelocInfo::CODE_TARGET);
6337 __ pop(lr);
6338 } else {
6339 UNIMPLEMENTED();
6340 }
6341
6342 __ bind(&done);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006343 __ StubReturn(1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006344
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006345 // Handle the slow case by jumping to the JavaScript builtin.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006346 __ bind(&slow);
6347 __ push(r0);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006348 switch (op_) {
6349 case Token::SUB:
6350 __ InvokeBuiltin(Builtins::UNARY_MINUS, JUMP_JS);
6351 break;
6352 case Token::BIT_NOT:
6353 __ InvokeBuiltin(Builtins::BIT_NOT, JUMP_JS);
6354 break;
6355 default:
6356 UNREACHABLE();
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006357 }
ager@chromium.orga1645e22009-09-09 19:27:10 +00006358}
6359
6360
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006361void CEntryStub::GenerateThrowTOS(MacroAssembler* masm) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006362 // r0 holds the exception.
6363
6364 // Adjust this code if not the case.
6365 ASSERT(StackHandlerConstants::kSize == 4 * kPointerSize);
6366
6367 // Drop the sp to the top of the handler.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006368 __ mov(r3, Operand(ExternalReference(Top::k_handler_address)));
6369 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006370
6371 // Restore the next handler and frame pointer, discard handler state.
6372 ASSERT(StackHandlerConstants::kNextOffset == 0);
6373 __ pop(r2);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006374 __ str(r2, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006375 ASSERT(StackHandlerConstants::kFPOffset == 2 * kPointerSize);
6376 __ ldm(ia_w, sp, r3.bit() | fp.bit()); // r3: discarded state.
6377
6378 // Before returning we restore the context from the frame pointer if
6379 // not NULL. The frame pointer is NULL in the exception handler of a
6380 // JS entry frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006381 __ cmp(fp, Operand(0));
6382 // Set cp to NULL if fp is NULL.
6383 __ mov(cp, Operand(0), LeaveCC, eq);
6384 // Restore cp otherwise.
6385 __ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset), ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006386#ifdef DEBUG
6387 if (FLAG_debug_code) {
6388 __ mov(lr, Operand(pc));
6389 }
6390#endif
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006391 ASSERT(StackHandlerConstants::kPCOffset == 3 * kPointerSize);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006392 __ pop(pc);
6393}
6394
6395
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006396void CEntryStub::GenerateThrowUncatchable(MacroAssembler* masm,
6397 UncatchableExceptionType type) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006398 // Adjust this code if not the case.
6399 ASSERT(StackHandlerConstants::kSize == 4 * kPointerSize);
6400
6401 // Drop sp to the top stack handler.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006402 __ mov(r3, Operand(ExternalReference(Top::k_handler_address)));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006403 __ ldr(sp, MemOperand(r3));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006404
6405 // Unwind the handlers until the ENTRY handler is found.
6406 Label loop, done;
6407 __ bind(&loop);
6408 // Load the type of the current stack handler.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006409 const int kStateOffset = StackHandlerConstants::kStateOffset;
6410 __ ldr(r2, MemOperand(sp, kStateOffset));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006411 __ cmp(r2, Operand(StackHandler::ENTRY));
6412 __ b(eq, &done);
6413 // Fetch the next handler in the list.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006414 const int kNextOffset = StackHandlerConstants::kNextOffset;
6415 __ ldr(sp, MemOperand(sp, kNextOffset));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006416 __ jmp(&loop);
6417 __ bind(&done);
6418
6419 // Set the top handler address to next handler past the current ENTRY handler.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006420 ASSERT(StackHandlerConstants::kNextOffset == 0);
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006421 __ pop(r2);
6422 __ str(r2, MemOperand(r3));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006423
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006424 if (type == OUT_OF_MEMORY) {
6425 // Set external caught exception to false.
6426 ExternalReference external_caught(Top::k_external_caught_exception_address);
6427 __ mov(r0, Operand(false));
6428 __ mov(r2, Operand(external_caught));
6429 __ str(r0, MemOperand(r2));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006430
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006431 // Set pending exception and r0 to out of memory exception.
6432 Failure* out_of_memory = Failure::OutOfMemoryException();
6433 __ mov(r0, Operand(reinterpret_cast<int32_t>(out_of_memory)));
6434 __ mov(r2, Operand(ExternalReference(Top::k_pending_exception_address)));
6435 __ str(r0, MemOperand(r2));
6436 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006437
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006438 // Stack layout at this point. See also StackHandlerConstants.
6439 // sp -> state (ENTRY)
6440 // fp
6441 // lr
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006442
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006443 // Discard handler state (r2 is not used) and restore frame pointer.
6444 ASSERT(StackHandlerConstants::kFPOffset == 2 * kPointerSize);
6445 __ ldm(ia_w, sp, r2.bit() | fp.bit()); // r2: discarded state.
6446 // Before returning we restore the context from the frame pointer if
6447 // not NULL. The frame pointer is NULL in the exception handler of a
6448 // JS entry frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006449 __ cmp(fp, Operand(0));
6450 // Set cp to NULL if fp is NULL.
6451 __ mov(cp, Operand(0), LeaveCC, eq);
6452 // Restore cp otherwise.
6453 __ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset), ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006454#ifdef DEBUG
6455 if (FLAG_debug_code) {
6456 __ mov(lr, Operand(pc));
6457 }
6458#endif
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006459 ASSERT(StackHandlerConstants::kPCOffset == 3 * kPointerSize);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006460 __ pop(pc);
6461}
6462
6463
6464void CEntryStub::GenerateCore(MacroAssembler* masm,
6465 Label* throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006466 Label* throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006467 Label* throw_out_of_memory_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006468 bool do_gc,
6469 bool always_allocate) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006470 // r0: result parameter for PerformGC, if any
6471 // r4: number of arguments including receiver (C callee-saved)
6472 // r5: pointer to builtin function (C callee-saved)
6473 // r6: pointer to the first argument (C callee-saved)
6474
6475 if (do_gc) {
6476 // Passing r0.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006477 ExternalReference gc_reference = ExternalReference::perform_gc_function();
6478 __ Call(gc_reference.address(), RelocInfo::RUNTIME_ENTRY);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006479 }
6480
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006481 ExternalReference scope_depth =
6482 ExternalReference::heap_always_allocate_scope_depth();
6483 if (always_allocate) {
6484 __ mov(r0, Operand(scope_depth));
6485 __ ldr(r1, MemOperand(r0));
6486 __ add(r1, r1, Operand(1));
6487 __ str(r1, MemOperand(r0));
6488 }
6489
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006490 // Call C built-in.
6491 // r0 = argc, r1 = argv
6492 __ mov(r0, Operand(r4));
6493 __ mov(r1, Operand(r6));
6494
6495 // TODO(1242173): To let the GC traverse the return address of the exit
6496 // frames, we need to know where the return address is. Right now,
6497 // we push it on the stack to be able to find it again, but we never
6498 // restore from it in case of changes, which makes it impossible to
6499 // support moving the C entry code stub. This should be fixed, but currently
6500 // this is OK because the CEntryStub gets generated so early in the V8 boot
6501 // sequence that it is not moving ever.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006502 masm->add(lr, pc, Operand(4)); // compute return address: (pc + 8) + 4
6503 masm->push(lr);
6504 masm->Jump(r5);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006505
6506 if (always_allocate) {
6507 // It's okay to clobber r2 and r3 here. Don't mess with r0 and r1
6508 // though (contain the result).
6509 __ mov(r2, Operand(scope_depth));
6510 __ ldr(r3, MemOperand(r2));
6511 __ sub(r3, r3, Operand(1));
6512 __ str(r3, MemOperand(r2));
6513 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006514
6515 // check for failure result
6516 Label failure_returned;
6517 ASSERT(((kFailureTag + 1) & kFailureTagMask) == 0);
6518 // Lower 2 bits of r2 are 0 iff r0 has failure tag.
6519 __ add(r2, r0, Operand(1));
6520 __ tst(r2, Operand(kFailureTagMask));
6521 __ b(eq, &failure_returned);
6522
6523 // Exit C frame and return.
6524 // r0:r1: result
6525 // sp: stack pointer
6526 // fp: frame pointer
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006527 __ LeaveExitFrame(mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006528
6529 // check if we should retry or throw exception
6530 Label retry;
6531 __ bind(&failure_returned);
6532 ASSERT(Failure::RETRY_AFTER_GC == 0);
6533 __ tst(r0, Operand(((1 << kFailureTypeTagSize) - 1) << kFailureTagSize));
6534 __ b(eq, &retry);
6535
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006536 // Special handling of out of memory exceptions.
6537 Failure* out_of_memory = Failure::OutOfMemoryException();
6538 __ cmp(r0, Operand(reinterpret_cast<int32_t>(out_of_memory)));
6539 __ b(eq, throw_out_of_memory_exception);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006540
6541 // Retrieve the pending exception and clear the variable.
ager@chromium.org32912102009-01-16 10:38:43 +00006542 __ mov(ip, Operand(ExternalReference::the_hole_value_location()));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006543 __ ldr(r3, MemOperand(ip));
ager@chromium.org32912102009-01-16 10:38:43 +00006544 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006545 __ ldr(r0, MemOperand(ip));
6546 __ str(r3, MemOperand(ip));
6547
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006548 // Special handling of termination exceptions which are uncatchable
6549 // by javascript code.
6550 __ cmp(r0, Operand(Factory::termination_exception()));
6551 __ b(eq, throw_termination_exception);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006552
6553 // Handle normal exception.
6554 __ jmp(throw_normal_exception);
6555
6556 __ bind(&retry); // pass last failure (r0) as parameter (r0) when retrying
6557}
6558
6559
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006560void CEntryStub::Generate(MacroAssembler* masm) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006561 // Called from JavaScript; parameters are on stack as if calling JS function
6562 // r0: number of arguments including receiver
6563 // r1: pointer to builtin function
6564 // fp: frame pointer (restored after C call)
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006565 // sp: stack pointer (restored as callee's sp after C call)
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006566 // cp: current context (C callee-saved)
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006567
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006568 // Result returned in r0 or r0+r1 by default.
6569
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006570 // NOTE: Invocations of builtins may return failure objects
6571 // instead of a proper result. The builtin entry handles
6572 // this by performing a garbage collection and retrying the
6573 // builtin once.
6574
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006575 // Enter the exit frame that transitions from JavaScript to C++.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006576 __ EnterExitFrame(mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006577
6578 // r4: number of arguments (C callee-saved)
6579 // r5: pointer to builtin function (C callee-saved)
6580 // r6: pointer to first argument (C callee-saved)
6581
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006582 Label throw_normal_exception;
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006583 Label throw_termination_exception;
6584 Label throw_out_of_memory_exception;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006585
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00006586 // Call into the runtime system.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006587 GenerateCore(masm,
6588 &throw_normal_exception,
6589 &throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006590 &throw_out_of_memory_exception,
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00006591 false,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006592 false);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006593
6594 // Do space-specific GC and retry runtime call.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006595 GenerateCore(masm,
6596 &throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006597 &throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006598 &throw_out_of_memory_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006599 true,
6600 false);
6601
6602 // Do full GC and retry runtime call one final time.
6603 Failure* failure = Failure::InternalError();
6604 __ mov(r0, Operand(reinterpret_cast<int32_t>(failure)));
6605 GenerateCore(masm,
6606 &throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006607 &throw_termination_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006608 &throw_out_of_memory_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006609 true,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006610 true);
6611
6612 __ bind(&throw_out_of_memory_exception);
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006613 GenerateThrowUncatchable(masm, OUT_OF_MEMORY);
6614
6615 __ bind(&throw_termination_exception);
6616 GenerateThrowUncatchable(masm, TERMINATION);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006617
6618 __ bind(&throw_normal_exception);
6619 GenerateThrowTOS(masm);
6620}
6621
6622
6623void JSEntryStub::GenerateBody(MacroAssembler* masm, bool is_construct) {
6624 // r0: code entry
6625 // r1: function
6626 // r2: receiver
6627 // r3: argc
6628 // [sp+0]: argv
6629
6630 Label invoke, exit;
6631
6632 // Called from C, so do not pop argc and args on exit (preserve sp)
6633 // No need to save register-passed args
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006634 // Save callee-saved registers (incl. cp and fp), sp, and lr
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006635 __ stm(db_w, sp, kCalleeSaved | lr.bit());
6636
6637 // Get address of argv, see stm above.
6638 // r0: code entry
6639 // r1: function
6640 // r2: receiver
6641 // r3: argc
ager@chromium.org5c838252010-02-19 08:53:10 +00006642 __ ldr(r4, MemOperand(sp, (kNumCalleeSaved + 1) * kPointerSize)); // argv
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006643
6644 // Push a frame with special values setup to mark it as an entry frame.
6645 // r0: code entry
6646 // r1: function
6647 // r2: receiver
6648 // r3: argc
6649 // r4: argv
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006650 __ mov(r8, Operand(-1)); // Push a bad frame pointer to fail if it is used.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006651 int marker = is_construct ? StackFrame::ENTRY_CONSTRUCT : StackFrame::ENTRY;
6652 __ mov(r7, Operand(Smi::FromInt(marker)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006653 __ mov(r6, Operand(Smi::FromInt(marker)));
6654 __ mov(r5, Operand(ExternalReference(Top::k_c_entry_fp_address)));
6655 __ ldr(r5, MemOperand(r5));
6656 __ stm(db_w, sp, r5.bit() | r6.bit() | r7.bit() | r8.bit());
6657
6658 // Setup frame pointer for the frame to be pushed.
6659 __ add(fp, sp, Operand(-EntryFrameConstants::kCallerFPOffset));
6660
6661 // Call a faked try-block that does the invoke.
6662 __ bl(&invoke);
6663
6664 // Caught exception: Store result (exception) in the pending
6665 // exception field in the JSEnv and return a failure sentinel.
6666 // Coming in here the fp will be invalid because the PushTryHandler below
6667 // sets it to 0 to signal the existence of the JSEntry frame.
ager@chromium.org32912102009-01-16 10:38:43 +00006668 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006669 __ str(r0, MemOperand(ip));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006670 __ mov(r0, Operand(reinterpret_cast<int32_t>(Failure::Exception())));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006671 __ b(&exit);
6672
6673 // Invoke: Link this frame into the handler chain.
6674 __ bind(&invoke);
6675 // Must preserve r0-r4, r5-r7 are available.
6676 __ PushTryHandler(IN_JS_ENTRY, JS_ENTRY_HANDLER);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006677 // If an exception not caught by another handler occurs, this handler
6678 // returns control to the code after the bl(&invoke) above, which
6679 // restores all kCalleeSaved registers (including cp and fp) to their
6680 // saved values before returning a failure to C.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006681
6682 // Clear any pending exceptions.
6683 __ mov(ip, Operand(ExternalReference::the_hole_value_location()));
6684 __ ldr(r5, MemOperand(ip));
ager@chromium.org32912102009-01-16 10:38:43 +00006685 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006686 __ str(r5, MemOperand(ip));
6687
6688 // Invoke the function by calling through JS entry trampoline builtin.
6689 // Notice that we cannot store a reference to the trampoline code directly in
6690 // this stub, because runtime stubs are not traversed when doing GC.
6691
6692 // Expected registers by Builtins::JSEntryTrampoline
6693 // r0: code entry
6694 // r1: function
6695 // r2: receiver
6696 // r3: argc
6697 // r4: argv
6698 if (is_construct) {
6699 ExternalReference construct_entry(Builtins::JSConstructEntryTrampoline);
6700 __ mov(ip, Operand(construct_entry));
6701 } else {
6702 ExternalReference entry(Builtins::JSEntryTrampoline);
6703 __ mov(ip, Operand(entry));
6704 }
6705 __ ldr(ip, MemOperand(ip)); // deref address
6706
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006707 // Branch and link to JSEntryTrampoline. We don't use the double underscore
6708 // macro for the add instruction because we don't want the coverage tool
6709 // inserting instructions here after we read the pc.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006710 __ mov(lr, Operand(pc));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006711 masm->add(pc, ip, Operand(Code::kHeaderSize - kHeapObjectTag));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006712
6713 // Unlink this frame from the handler chain. When reading the
6714 // address of the next handler, there is no need to use the address
6715 // displacement since the current stack pointer (sp) points directly
6716 // to the stack handler.
6717 __ ldr(r3, MemOperand(sp, StackHandlerConstants::kNextOffset));
6718 __ mov(ip, Operand(ExternalReference(Top::k_handler_address)));
6719 __ str(r3, MemOperand(ip));
6720 // No need to restore registers
6721 __ add(sp, sp, Operand(StackHandlerConstants::kSize));
6722
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006723
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006724 __ bind(&exit); // r0 holds result
6725 // Restore the top frame descriptors from the stack.
6726 __ pop(r3);
6727 __ mov(ip, Operand(ExternalReference(Top::k_c_entry_fp_address)));
6728 __ str(r3, MemOperand(ip));
6729
6730 // Reset the stack to the callee saved registers.
6731 __ add(sp, sp, Operand(-EntryFrameConstants::kCallerFPOffset));
6732
6733 // Restore callee-saved registers and return.
6734#ifdef DEBUG
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006735 if (FLAG_debug_code) {
6736 __ mov(lr, Operand(pc));
6737 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006738#endif
6739 __ ldm(ia_w, sp, kCalleeSaved | pc.bit());
6740}
6741
6742
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006743// This stub performs an instanceof, calling the builtin function if
6744// necessary. Uses r1 for the object, r0 for the function that it may
6745// be an instance of (these are fetched from the stack).
6746void InstanceofStub::Generate(MacroAssembler* masm) {
6747 // Get the object - slow case for smis (we may need to throw an exception
6748 // depending on the rhs).
6749 Label slow, loop, is_instance, is_not_instance;
6750 __ ldr(r0, MemOperand(sp, 1 * kPointerSize));
6751 __ BranchOnSmi(r0, &slow);
6752
6753 // Check that the left hand is a JS object and put map in r3.
6754 __ CompareObjectType(r0, r3, r2, FIRST_JS_OBJECT_TYPE);
6755 __ b(lt, &slow);
6756 __ cmp(r2, Operand(LAST_JS_OBJECT_TYPE));
6757 __ b(gt, &slow);
6758
6759 // Get the prototype of the function (r4 is result, r2 is scratch).
ager@chromium.org5c838252010-02-19 08:53:10 +00006760 __ ldr(r1, MemOperand(sp, 0));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006761 __ TryGetFunctionPrototype(r1, r4, r2, &slow);
6762
6763 // Check that the function prototype is a JS object.
6764 __ BranchOnSmi(r4, &slow);
6765 __ CompareObjectType(r4, r5, r5, FIRST_JS_OBJECT_TYPE);
6766 __ b(lt, &slow);
6767 __ cmp(r5, Operand(LAST_JS_OBJECT_TYPE));
6768 __ b(gt, &slow);
6769
6770 // Register mapping: r3 is object map and r4 is function prototype.
6771 // Get prototype of object into r2.
6772 __ ldr(r2, FieldMemOperand(r3, Map::kPrototypeOffset));
6773
6774 // Loop through the prototype chain looking for the function prototype.
6775 __ bind(&loop);
6776 __ cmp(r2, Operand(r4));
6777 __ b(eq, &is_instance);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006778 __ LoadRoot(ip, Heap::kNullValueRootIndex);
6779 __ cmp(r2, ip);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006780 __ b(eq, &is_not_instance);
6781 __ ldr(r2, FieldMemOperand(r2, HeapObject::kMapOffset));
6782 __ ldr(r2, FieldMemOperand(r2, Map::kPrototypeOffset));
6783 __ jmp(&loop);
6784
6785 __ bind(&is_instance);
6786 __ mov(r0, Operand(Smi::FromInt(0)));
6787 __ pop();
6788 __ pop();
6789 __ mov(pc, Operand(lr)); // Return.
6790
6791 __ bind(&is_not_instance);
6792 __ mov(r0, Operand(Smi::FromInt(1)));
6793 __ pop();
6794 __ pop();
6795 __ mov(pc, Operand(lr)); // Return.
6796
6797 // Slow-case. Tail call builtin.
6798 __ bind(&slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006799 __ InvokeBuiltin(Builtins::INSTANCE_OF, JUMP_JS);
6800}
6801
6802
ager@chromium.org7c537e22008-10-16 08:43:32 +00006803void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) {
6804 // The displacement is the offset of the last parameter (if any)
6805 // relative to the frame pointer.
6806 static const int kDisplacement =
6807 StandardFrameConstants::kCallerSPOffset - kPointerSize;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006808
ager@chromium.org7c537e22008-10-16 08:43:32 +00006809 // Check that the key is a smi.
6810 Label slow;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006811 __ BranchOnNotSmi(r1, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006812
ager@chromium.org7c537e22008-10-16 08:43:32 +00006813 // Check if the calling frame is an arguments adaptor frame.
6814 Label adaptor;
6815 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6816 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006817 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006818 __ b(eq, &adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006819
ager@chromium.org7c537e22008-10-16 08:43:32 +00006820 // Check index against formal parameters count limit passed in
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00006821 // through register r0. Use unsigned comparison to get negative
ager@chromium.org7c537e22008-10-16 08:43:32 +00006822 // check for free.
6823 __ cmp(r1, r0);
6824 __ b(cs, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006825
ager@chromium.org7c537e22008-10-16 08:43:32 +00006826 // Read the argument from the stack and return it.
6827 __ sub(r3, r0, r1);
6828 __ add(r3, fp, Operand(r3, LSL, kPointerSizeLog2 - kSmiTagSize));
6829 __ ldr(r0, MemOperand(r3, kDisplacement));
ager@chromium.org9085a012009-05-11 19:22:57 +00006830 __ Jump(lr);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006831
6832 // Arguments adaptor case: Check index against actual arguments
6833 // limit found in the arguments adaptor frame. Use unsigned
6834 // comparison to get negative check for free.
6835 __ bind(&adaptor);
6836 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
6837 __ cmp(r1, r0);
6838 __ b(cs, &slow);
6839
6840 // Read the argument from the adaptor frame and return it.
6841 __ sub(r3, r0, r1);
6842 __ add(r3, r2, Operand(r3, LSL, kPointerSizeLog2 - kSmiTagSize));
6843 __ ldr(r0, MemOperand(r3, kDisplacement));
ager@chromium.org9085a012009-05-11 19:22:57 +00006844 __ Jump(lr);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006845
6846 // Slow-case: Handle non-smi or out-of-bounds access to arguments
6847 // by calling the runtime system.
6848 __ bind(&slow);
6849 __ push(r1);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006850 __ TailCallRuntime(Runtime::kGetArgumentsProperty, 1, 1);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006851}
6852
6853
6854void ArgumentsAccessStub::GenerateNewObject(MacroAssembler* masm) {
ager@chromium.org5c838252010-02-19 08:53:10 +00006855 // sp[0] : number of parameters
6856 // sp[4] : receiver displacement
6857 // sp[8] : function
6858
ager@chromium.org7c537e22008-10-16 08:43:32 +00006859 // Check if the calling frame is an arguments adaptor frame.
ager@chromium.org5c838252010-02-19 08:53:10 +00006860 Label adaptor_frame, try_allocate, runtime;
ager@chromium.org7c537e22008-10-16 08:43:32 +00006861 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6862 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006863 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org5c838252010-02-19 08:53:10 +00006864 __ b(eq, &adaptor_frame);
6865
6866 // Get the length from the frame.
6867 __ ldr(r1, MemOperand(sp, 0));
6868 __ b(&try_allocate);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006869
6870 // Patch the arguments.length and the parameters pointer.
ager@chromium.org5c838252010-02-19 08:53:10 +00006871 __ bind(&adaptor_frame);
6872 __ ldr(r1, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
6873 __ str(r1, MemOperand(sp, 0));
6874 __ add(r3, r2, Operand(r1, LSL, kPointerSizeLog2 - kSmiTagSize));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006875 __ add(r3, r3, Operand(StandardFrameConstants::kCallerSPOffset));
6876 __ str(r3, MemOperand(sp, 1 * kPointerSize));
6877
ager@chromium.org5c838252010-02-19 08:53:10 +00006878 // Try the new space allocation. Start out with computing the size
6879 // of the arguments object and the elements array (in words, not
6880 // bytes because AllocateInNewSpace expects words).
6881 Label add_arguments_object;
6882 __ bind(&try_allocate);
6883 __ cmp(r1, Operand(0));
6884 __ b(eq, &add_arguments_object);
6885 __ mov(r1, Operand(r1, LSR, kSmiTagSize));
6886 __ add(r1, r1, Operand(FixedArray::kHeaderSize / kPointerSize));
6887 __ bind(&add_arguments_object);
6888 __ add(r1, r1, Operand(Heap::kArgumentsObjectSize / kPointerSize));
6889
6890 // Do the allocation of both objects in one go.
6891 __ AllocateInNewSpace(r1, r0, r2, r3, &runtime, TAG_OBJECT);
6892
6893 // Get the arguments boilerplate from the current (global) context.
6894 int offset = Context::SlotOffset(Context::ARGUMENTS_BOILERPLATE_INDEX);
6895 __ ldr(r4, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX)));
6896 __ ldr(r4, FieldMemOperand(r4, GlobalObject::kGlobalContextOffset));
6897 __ ldr(r4, MemOperand(r4, offset));
6898
6899 // Copy the JS object part.
6900 for (int i = 0; i < JSObject::kHeaderSize; i += kPointerSize) {
6901 __ ldr(r3, FieldMemOperand(r4, i));
6902 __ str(r3, FieldMemOperand(r0, i));
6903 }
6904
6905 // Setup the callee in-object property.
6906 ASSERT(Heap::arguments_callee_index == 0);
6907 __ ldr(r3, MemOperand(sp, 2 * kPointerSize));
6908 __ str(r3, FieldMemOperand(r0, JSObject::kHeaderSize));
6909
6910 // Get the length (smi tagged) and set that as an in-object property too.
6911 ASSERT(Heap::arguments_length_index == 1);
6912 __ ldr(r1, MemOperand(sp, 0 * kPointerSize));
6913 __ str(r1, FieldMemOperand(r0, JSObject::kHeaderSize + kPointerSize));
6914
6915 // If there are no actual arguments, we're done.
6916 Label done;
6917 __ cmp(r1, Operand(0));
6918 __ b(eq, &done);
6919
6920 // Get the parameters pointer from the stack and untag the length.
6921 __ ldr(r2, MemOperand(sp, 1 * kPointerSize));
6922 __ mov(r1, Operand(r1, LSR, kSmiTagSize));
6923
6924 // Setup the elements pointer in the allocated arguments object and
6925 // initialize the header in the elements fixed array.
6926 __ add(r4, r0, Operand(Heap::kArgumentsObjectSize));
6927 __ str(r4, FieldMemOperand(r0, JSObject::kElementsOffset));
6928 __ LoadRoot(r3, Heap::kFixedArrayMapRootIndex);
6929 __ str(r3, FieldMemOperand(r4, FixedArray::kMapOffset));
6930 __ str(r1, FieldMemOperand(r4, FixedArray::kLengthOffset));
6931
6932 // Copy the fixed array slots.
6933 Label loop;
6934 // Setup r4 to point to the first array slot.
6935 __ add(r4, r4, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
6936 __ bind(&loop);
6937 // Pre-decrement r2 with kPointerSize on each iteration.
6938 // Pre-decrement in order to skip receiver.
6939 __ ldr(r3, MemOperand(r2, kPointerSize, NegPreIndex));
6940 // Post-increment r4 with kPointerSize on each iteration.
6941 __ str(r3, MemOperand(r4, kPointerSize, PostIndex));
6942 __ sub(r1, r1, Operand(1));
6943 __ cmp(r1, Operand(0));
6944 __ b(ne, &loop);
6945
6946 // Return and remove the on-stack parameters.
6947 __ bind(&done);
6948 __ add(sp, sp, Operand(3 * kPointerSize));
6949 __ Ret();
6950
ager@chromium.org7c537e22008-10-16 08:43:32 +00006951 // Do the runtime call to allocate the arguments object.
6952 __ bind(&runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006953 __ TailCallRuntime(Runtime::kNewArgumentsFast, 3, 1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006954}
6955
6956
6957void CallFunctionStub::Generate(MacroAssembler* masm) {
6958 Label slow;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006959
6960 // If the receiver might be a value (string, number or boolean) check for this
6961 // and box it if it is.
6962 if (ReceiverMightBeValue()) {
6963 // Get the receiver from the stack.
6964 // function, receiver [, arguments]
6965 Label receiver_is_value, receiver_is_js_object;
6966 __ ldr(r1, MemOperand(sp, argc_ * kPointerSize));
6967
6968 // Check if receiver is a smi (which is a number value).
6969 __ BranchOnSmi(r1, &receiver_is_value);
6970
6971 // Check if the receiver is a valid JS object.
6972 __ CompareObjectType(r1, r2, r2, FIRST_JS_OBJECT_TYPE);
6973 __ b(ge, &receiver_is_js_object);
6974
6975 // Call the runtime to box the value.
6976 __ bind(&receiver_is_value);
6977 __ EnterInternalFrame();
6978 __ push(r1);
6979 __ InvokeBuiltin(Builtins::TO_OBJECT, CALL_JS);
6980 __ LeaveInternalFrame();
6981 __ str(r0, MemOperand(sp, argc_ * kPointerSize));
6982
6983 __ bind(&receiver_is_js_object);
6984 }
6985
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006986 // Get the function to call from the stack.
6987 // function, receiver [, arguments]
6988 __ ldr(r1, MemOperand(sp, (argc_ + 1) * kPointerSize));
6989
6990 // Check that the function is really a JavaScript function.
6991 // r1: pushed function (to be verified)
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006992 __ BranchOnSmi(r1, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006993 // Get the map of the function object.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006994 __ CompareObjectType(r1, r2, r2, JS_FUNCTION_TYPE);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006995 __ b(ne, &slow);
6996
6997 // Fast-case: Invoke the function now.
6998 // r1: pushed function
6999 ParameterCount actual(argc_);
7000 __ InvokeFunction(r1, actual, JUMP_FUNCTION);
7001
7002 // Slow-case: Non-function called.
7003 __ bind(&slow);
ager@chromium.org5c838252010-02-19 08:53:10 +00007004 // CALL_NON_FUNCTION expects the non-function callee as receiver (instead
7005 // of the original receiver from the call site).
7006 __ str(r1, MemOperand(sp, argc_ * kPointerSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007007 __ mov(r0, Operand(argc_)); // Setup the number of arguments.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00007008 __ mov(r2, Operand(0));
7009 __ GetBuiltinEntry(r3, Builtins::CALL_NON_FUNCTION);
7010 __ Jump(Handle<Code>(Builtins::builtin(Builtins::ArgumentsAdaptorTrampoline)),
7011 RelocInfo::CODE_TARGET);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007012}
7013
7014
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +00007015// Unfortunately you have to run without snapshots to see most of these
7016// names in the profile since most compare stubs end up in the snapshot.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007017const char* CompareStub::GetName() {
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +00007018 if (name_ != NULL) return name_;
7019 const int kMaxNameLength = 100;
7020 name_ = Bootstrapper::AllocateAutoDeletedArray(kMaxNameLength);
7021 if (name_ == NULL) return "OOM";
7022
7023 const char* cc_name;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007024 switch (cc_) {
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +00007025 case lt: cc_name = "LT"; break;
7026 case gt: cc_name = "GT"; break;
7027 case le: cc_name = "LE"; break;
7028 case ge: cc_name = "GE"; break;
7029 case eq: cc_name = "EQ"; break;
7030 case ne: cc_name = "NE"; break;
7031 default: cc_name = "UnknownCondition"; break;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007032 }
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +00007033
7034 const char* strict_name = "";
7035 if (strict_ && (cc_ == eq || cc_ == ne)) {
7036 strict_name = "_STRICT";
7037 }
7038
7039 const char* never_nan_nan_name = "";
7040 if (never_nan_nan_ && (cc_ == eq || cc_ == ne)) {
7041 never_nan_nan_name = "_NO_NAN";
7042 }
7043
7044 const char* include_number_compare_name = "";
7045 if (!include_number_compare_) {
7046 include_number_compare_name = "_NO_NUMBER";
7047 }
7048
7049 OS::SNPrintF(Vector<char>(name_, kMaxNameLength),
7050 "CompareStub_%s%s%s%s",
7051 cc_name,
7052 strict_name,
7053 never_nan_nan_name,
7054 include_number_compare_name);
7055 return name_;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007056}
7057
7058
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00007059int CompareStub::MinorKey() {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00007060 // Encode the three parameters in a unique 16 bit value. To avoid duplicate
7061 // stubs the never NaN NaN condition is only taken into account if the
7062 // condition is equals.
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +00007063 ASSERT((static_cast<unsigned>(cc_) >> 28) < (1 << 13));
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00007064 return ConditionField::encode(static_cast<unsigned>(cc_) >> 28)
7065 | StrictField::encode(strict_)
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +00007066 | NeverNanNanField::encode(cc_ == eq ? never_nan_nan_ : false)
7067 | IncludeNumberCompareField::encode(include_number_compare_);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00007068}
7069
7070
ager@chromium.org5c838252010-02-19 08:53:10 +00007071void StringStubBase::GenerateCopyCharacters(MacroAssembler* masm,
7072 Register dest,
7073 Register src,
7074 Register count,
7075 Register scratch,
7076 bool ascii) {
7077 Label loop;
7078 Label done;
7079 // This loop just copies one character at a time, as it is only used for very
7080 // short strings.
7081 if (!ascii) {
7082 __ add(count, count, Operand(count), SetCC);
7083 } else {
7084 __ cmp(count, Operand(0));
7085 }
7086 __ b(eq, &done);
7087
7088 __ bind(&loop);
7089 __ ldrb(scratch, MemOperand(src, 1, PostIndex));
7090 // Perform sub between load and dependent store to get the load time to
7091 // complete.
7092 __ sub(count, count, Operand(1), SetCC);
7093 __ strb(scratch, MemOperand(dest, 1, PostIndex));
7094 // last iteration.
7095 __ b(gt, &loop);
7096
7097 __ bind(&done);
7098}
7099
7100
7101enum CopyCharactersFlags {
7102 COPY_ASCII = 1,
7103 DEST_ALWAYS_ALIGNED = 2
7104};
7105
7106
7107void StringStubBase::GenerateCopyCharactersLong(MacroAssembler* masm,
7108 Register dest,
7109 Register src,
7110 Register count,
7111 Register scratch1,
7112 Register scratch2,
7113 Register scratch3,
7114 Register scratch4,
7115 Register scratch5,
7116 int flags) {
7117 bool ascii = (flags & COPY_ASCII) != 0;
7118 bool dest_always_aligned = (flags & DEST_ALWAYS_ALIGNED) != 0;
7119
7120 if (dest_always_aligned && FLAG_debug_code) {
7121 // Check that destination is actually word aligned if the flag says
7122 // that it is.
7123 __ tst(dest, Operand(kPointerAlignmentMask));
7124 __ Check(eq, "Destination of copy not aligned.");
7125 }
7126
7127 const int kReadAlignment = 4;
7128 const int kReadAlignmentMask = kReadAlignment - 1;
7129 // Ensure that reading an entire aligned word containing the last character
7130 // of a string will not read outside the allocated area (because we pad up
7131 // to kObjectAlignment).
7132 ASSERT(kObjectAlignment >= kReadAlignment);
7133 // Assumes word reads and writes are little endian.
7134 // Nothing to do for zero characters.
7135 Label done;
7136 if (!ascii) {
7137 __ add(count, count, Operand(count), SetCC);
7138 } else {
7139 __ cmp(count, Operand(0));
7140 }
7141 __ b(eq, &done);
7142
7143 // Assume that you cannot read (or write) unaligned.
7144 Label byte_loop;
7145 // Must copy at least eight bytes, otherwise just do it one byte at a time.
7146 __ cmp(count, Operand(8));
7147 __ add(count, dest, Operand(count));
7148 Register limit = count; // Read until src equals this.
7149 __ b(lt, &byte_loop);
7150
7151 if (!dest_always_aligned) {
7152 // Align dest by byte copying. Copies between zero and three bytes.
7153 __ and_(scratch4, dest, Operand(kReadAlignmentMask), SetCC);
7154 Label dest_aligned;
7155 __ b(eq, &dest_aligned);
7156 __ cmp(scratch4, Operand(2));
7157 __ ldrb(scratch1, MemOperand(src, 1, PostIndex));
7158 __ ldrb(scratch2, MemOperand(src, 1, PostIndex), le);
7159 __ ldrb(scratch3, MemOperand(src, 1, PostIndex), lt);
7160 __ strb(scratch1, MemOperand(dest, 1, PostIndex));
7161 __ strb(scratch2, MemOperand(dest, 1, PostIndex), le);
7162 __ strb(scratch3, MemOperand(dest, 1, PostIndex), lt);
7163 __ bind(&dest_aligned);
7164 }
7165
7166 Label simple_loop;
7167
7168 __ sub(scratch4, dest, Operand(src));
7169 __ and_(scratch4, scratch4, Operand(0x03), SetCC);
7170 __ b(eq, &simple_loop);
7171 // Shift register is number of bits in a source word that
7172 // must be combined with bits in the next source word in order
7173 // to create a destination word.
7174
7175 // Complex loop for src/dst that are not aligned the same way.
7176 {
7177 Label loop;
7178 __ mov(scratch4, Operand(scratch4, LSL, 3));
7179 Register left_shift = scratch4;
7180 __ and_(src, src, Operand(~3)); // Round down to load previous word.
7181 __ ldr(scratch1, MemOperand(src, 4, PostIndex));
7182 // Store the "shift" most significant bits of scratch in the least
7183 // signficant bits (i.e., shift down by (32-shift)).
7184 __ rsb(scratch2, left_shift, Operand(32));
7185 Register right_shift = scratch2;
7186 __ mov(scratch1, Operand(scratch1, LSR, right_shift));
7187
7188 __ bind(&loop);
7189 __ ldr(scratch3, MemOperand(src, 4, PostIndex));
7190 __ sub(scratch5, limit, Operand(dest));
7191 __ orr(scratch1, scratch1, Operand(scratch3, LSL, left_shift));
7192 __ str(scratch1, MemOperand(dest, 4, PostIndex));
7193 __ mov(scratch1, Operand(scratch3, LSR, right_shift));
7194 // Loop if four or more bytes left to copy.
7195 // Compare to eight, because we did the subtract before increasing dst.
7196 __ sub(scratch5, scratch5, Operand(8), SetCC);
7197 __ b(ge, &loop);
7198 }
7199 // There is now between zero and three bytes left to copy (negative that
7200 // number is in scratch5), and between one and three bytes already read into
7201 // scratch1 (eight times that number in scratch4). We may have read past
7202 // the end of the string, but because objects are aligned, we have not read
7203 // past the end of the object.
7204 // Find the minimum of remaining characters to move and preloaded characters
7205 // and write those as bytes.
7206 __ add(scratch5, scratch5, Operand(4), SetCC);
7207 __ b(eq, &done);
7208 __ cmp(scratch4, Operand(scratch5, LSL, 3), ne);
7209 // Move minimum of bytes read and bytes left to copy to scratch4.
7210 __ mov(scratch5, Operand(scratch4, LSR, 3), LeaveCC, lt);
7211 // Between one and three (value in scratch5) characters already read into
7212 // scratch ready to write.
7213 __ cmp(scratch5, Operand(2));
7214 __ strb(scratch1, MemOperand(dest, 1, PostIndex));
7215 __ mov(scratch1, Operand(scratch1, LSR, 8), LeaveCC, ge);
7216 __ strb(scratch1, MemOperand(dest, 1, PostIndex), ge);
7217 __ mov(scratch1, Operand(scratch1, LSR, 8), LeaveCC, gt);
7218 __ strb(scratch1, MemOperand(dest, 1, PostIndex), gt);
7219 // Copy any remaining bytes.
7220 __ b(&byte_loop);
7221
7222 // Simple loop.
7223 // Copy words from src to dst, until less than four bytes left.
7224 // Both src and dest are word aligned.
7225 __ bind(&simple_loop);
7226 {
7227 Label loop;
7228 __ bind(&loop);
7229 __ ldr(scratch1, MemOperand(src, 4, PostIndex));
7230 __ sub(scratch3, limit, Operand(dest));
7231 __ str(scratch1, MemOperand(dest, 4, PostIndex));
7232 // Compare to 8, not 4, because we do the substraction before increasing
7233 // dest.
7234 __ cmp(scratch3, Operand(8));
7235 __ b(ge, &loop);
7236 }
7237
7238 // Copy bytes from src to dst until dst hits limit.
7239 __ bind(&byte_loop);
7240 __ cmp(dest, Operand(limit));
7241 __ ldrb(scratch1, MemOperand(src, 1, PostIndex), lt);
7242 __ b(ge, &done);
7243 __ strb(scratch1, MemOperand(dest, 1, PostIndex));
7244 __ b(&byte_loop);
7245
7246 __ bind(&done);
7247}
7248
7249
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007250void StringStubBase::GenerateTwoCharacterSymbolTableProbe(MacroAssembler* masm,
7251 Register c1,
7252 Register c2,
7253 Register scratch1,
7254 Register scratch2,
7255 Register scratch3,
7256 Register scratch4,
7257 Register scratch5,
7258 Label* not_found) {
7259 // Register scratch3 is the general scratch register in this function.
7260 Register scratch = scratch3;
7261
7262 // Make sure that both characters are not digits as such strings has a
7263 // different hash algorithm. Don't try to look for these in the symbol table.
7264 Label not_array_index;
7265 __ sub(scratch, c1, Operand(static_cast<int>('0')));
7266 __ cmp(scratch, Operand(static_cast<int>('9' - '0')));
7267 __ b(hi, &not_array_index);
7268 __ sub(scratch, c2, Operand(static_cast<int>('0')));
7269 __ cmp(scratch, Operand(static_cast<int>('9' - '0')));
7270
7271 // If check failed combine both characters into single halfword.
7272 // This is required by the contract of the method: code at the
7273 // not_found branch expects this combination in c1 register
7274 __ orr(c1, c1, Operand(c2, LSL, kBitsPerByte), LeaveCC, ls);
7275 __ b(ls, not_found);
7276
7277 __ bind(&not_array_index);
7278 // Calculate the two character string hash.
7279 Register hash = scratch1;
7280 GenerateHashInit(masm, hash, c1);
7281 GenerateHashAddCharacter(masm, hash, c2);
7282 GenerateHashGetHash(masm, hash);
7283
7284 // Collect the two characters in a register.
7285 Register chars = c1;
7286 __ orr(chars, chars, Operand(c2, LSL, kBitsPerByte));
7287
7288 // chars: two character string, char 1 in byte 0 and char 2 in byte 1.
7289 // hash: hash of two character string.
7290
7291 // Load symbol table
7292 // Load address of first element of the symbol table.
7293 Register symbol_table = c2;
7294 __ LoadRoot(symbol_table, Heap::kSymbolTableRootIndex);
7295
7296 // Load undefined value
7297 Register undefined = scratch4;
7298 __ LoadRoot(undefined, Heap::kUndefinedValueRootIndex);
7299
7300 // Calculate capacity mask from the symbol table capacity.
7301 Register mask = scratch2;
7302 __ ldr(mask, FieldMemOperand(symbol_table, SymbolTable::kCapacityOffset));
7303 __ mov(mask, Operand(mask, ASR, 1));
7304 __ sub(mask, mask, Operand(1));
7305
7306 // Calculate untagged address of the first element of the symbol table.
7307 Register first_symbol_table_element = symbol_table;
7308 __ add(first_symbol_table_element, symbol_table,
7309 Operand(SymbolTable::kElementsStartOffset - kHeapObjectTag));
7310
7311 // Registers
7312 // chars: two character string, char 1 in byte 0 and char 2 in byte 1.
7313 // hash: hash of two character string
7314 // mask: capacity mask
7315 // first_symbol_table_element: address of the first element of
7316 // the symbol table
7317 // scratch: -
7318
7319 // Perform a number of probes in the symbol table.
7320 static const int kProbes = 4;
7321 Label found_in_symbol_table;
7322 Label next_probe[kProbes];
7323 for (int i = 0; i < kProbes; i++) {
7324 Register candidate = scratch5; // Scratch register contains candidate.
7325
7326 // Calculate entry in symbol table.
7327 if (i > 0) {
7328 __ add(candidate, hash, Operand(SymbolTable::GetProbeOffset(i)));
7329 } else {
7330 __ mov(candidate, hash);
7331 }
7332
7333 __ and_(candidate, candidate, Operand(mask));
7334
7335 // Load the entry from the symble table.
7336 ASSERT_EQ(1, SymbolTable::kEntrySize);
7337 __ ldr(candidate,
7338 MemOperand(first_symbol_table_element,
7339 candidate,
7340 LSL,
7341 kPointerSizeLog2));
7342
7343 // If entry is undefined no string with this hash can be found.
7344 __ cmp(candidate, undefined);
7345 __ b(eq, not_found);
7346
7347 // If length is not 2 the string is not a candidate.
7348 __ ldr(scratch, FieldMemOperand(candidate, String::kLengthOffset));
7349 __ cmp(scratch, Operand(2));
7350 __ b(ne, &next_probe[i]);
7351
7352 // Check that the candidate is a non-external ascii string.
7353 __ ldr(scratch, FieldMemOperand(candidate, HeapObject::kMapOffset));
7354 __ ldrb(scratch, FieldMemOperand(scratch, Map::kInstanceTypeOffset));
7355 __ JumpIfInstanceTypeIsNotSequentialAscii(scratch, scratch,
7356 &next_probe[i]);
7357
7358 // Check if the two characters match.
7359 // Assumes that word load is little endian.
7360 __ ldrh(scratch, FieldMemOperand(candidate, SeqAsciiString::kHeaderSize));
7361 __ cmp(chars, scratch);
7362 __ b(eq, &found_in_symbol_table);
7363 __ bind(&next_probe[i]);
7364 }
7365
7366 // No matching 2 character string found by probing.
7367 __ jmp(not_found);
7368
7369 // Scratch register contains result when we fall through to here.
7370 Register result = scratch;
7371 __ bind(&found_in_symbol_table);
7372 if (!result.is(r0)) {
7373 __ mov(r0, result);
7374 }
7375}
7376
7377
7378void StringStubBase::GenerateHashInit(MacroAssembler* masm,
7379 Register hash,
7380 Register character) {
7381 // hash = character + (character << 10);
7382 __ add(hash, character, Operand(character, LSL, 10));
7383 // hash ^= hash >> 6;
7384 __ eor(hash, hash, Operand(hash, ASR, 6));
7385}
7386
7387
7388void StringStubBase::GenerateHashAddCharacter(MacroAssembler* masm,
7389 Register hash,
7390 Register character) {
7391 // hash += character;
7392 __ add(hash, hash, Operand(character));
7393 // hash += hash << 10;
7394 __ add(hash, hash, Operand(hash, LSL, 10));
7395 // hash ^= hash >> 6;
7396 __ eor(hash, hash, Operand(hash, ASR, 6));
7397}
7398
7399
7400void StringStubBase::GenerateHashGetHash(MacroAssembler* masm,
7401 Register hash) {
7402 // hash += hash << 3;
7403 __ add(hash, hash, Operand(hash, LSL, 3));
7404 // hash ^= hash >> 11;
7405 __ eor(hash, hash, Operand(hash, ASR, 11));
7406 // hash += hash << 15;
7407 __ add(hash, hash, Operand(hash, LSL, 15), SetCC);
7408
7409 // if (hash == 0) hash = 27;
7410 __ mov(hash, Operand(27), LeaveCC, nz);
7411}
7412
7413
ager@chromium.org5c838252010-02-19 08:53:10 +00007414void SubStringStub::Generate(MacroAssembler* masm) {
7415 Label runtime;
7416
7417 // Stack frame on entry.
7418 // lr: return address
7419 // sp[0]: to
7420 // sp[4]: from
7421 // sp[8]: string
7422
7423 // This stub is called from the native-call %_SubString(...), so
7424 // nothing can be assumed about the arguments. It is tested that:
7425 // "string" is a sequential string,
7426 // both "from" and "to" are smis, and
7427 // 0 <= from <= to <= string.length.
7428 // If any of these assumptions fail, we call the runtime system.
7429
7430 static const int kToOffset = 0 * kPointerSize;
7431 static const int kFromOffset = 1 * kPointerSize;
7432 static const int kStringOffset = 2 * kPointerSize;
7433
7434
7435 // Check bounds and smi-ness.
7436 __ ldr(r7, MemOperand(sp, kToOffset));
7437 __ ldr(r6, MemOperand(sp, kFromOffset));
7438 ASSERT_EQ(0, kSmiTag);
7439 ASSERT_EQ(1, kSmiTagSize + kSmiShiftSize);
7440 // I.e., arithmetic shift right by one un-smi-tags.
7441 __ mov(r2, Operand(r7, ASR, 1), SetCC);
7442 __ mov(r3, Operand(r6, ASR, 1), SetCC, cc);
7443 // If either r2 or r6 had the smi tag bit set, then carry is set now.
7444 __ b(cs, &runtime); // Either "from" or "to" is not a smi.
7445 __ b(mi, &runtime); // From is negative.
7446
7447 __ sub(r2, r2, Operand(r3), SetCC);
7448 __ b(mi, &runtime); // Fail if from > to.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007449 // Special handling of sub-strings of length 1 and 2. One character strings
7450 // are handled in the runtime system (looked up in the single character
7451 // cache). Two character strings are looked for in the symbol cache.
ager@chromium.org5c838252010-02-19 08:53:10 +00007452 __ cmp(r2, Operand(2));
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007453 __ b(lt, &runtime);
ager@chromium.org5c838252010-02-19 08:53:10 +00007454
7455 // r2: length
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007456 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007457 // r6: from (smi)
7458 // r7: to (smi)
7459
7460 // Make sure first argument is a sequential (or flat) string.
7461 __ ldr(r5, MemOperand(sp, kStringOffset));
7462 ASSERT_EQ(0, kSmiTag);
7463 __ tst(r5, Operand(kSmiTagMask));
7464 __ b(eq, &runtime);
7465 Condition is_string = masm->IsObjectStringType(r5, r1);
7466 __ b(NegateCondition(is_string), &runtime);
7467
7468 // r1: instance type
7469 // r2: length
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007470 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007471 // r5: string
7472 // r6: from (smi)
7473 // r7: to (smi)
7474 Label seq_string;
7475 __ and_(r4, r1, Operand(kStringRepresentationMask));
7476 ASSERT(kSeqStringTag < kConsStringTag);
7477 ASSERT(kExternalStringTag > kConsStringTag);
7478 __ cmp(r4, Operand(kConsStringTag));
7479 __ b(gt, &runtime); // External strings go to runtime.
7480 __ b(lt, &seq_string); // Sequential strings are handled directly.
7481
7482 // Cons string. Try to recurse (once) on the first substring.
7483 // (This adds a little more generality than necessary to handle flattened
7484 // cons strings, but not much).
7485 __ ldr(r5, FieldMemOperand(r5, ConsString::kFirstOffset));
7486 __ ldr(r4, FieldMemOperand(r5, HeapObject::kMapOffset));
7487 __ ldrb(r1, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7488 __ tst(r1, Operand(kStringRepresentationMask));
7489 ASSERT_EQ(0, kSeqStringTag);
7490 __ b(ne, &runtime); // Cons and External strings go to runtime.
7491
7492 // Definitly a sequential string.
7493 __ bind(&seq_string);
7494
7495 // r1: instance type.
7496 // r2: length
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007497 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007498 // r5: string
7499 // r6: from (smi)
7500 // r7: to (smi)
7501 __ ldr(r4, FieldMemOperand(r5, String::kLengthOffset));
7502 __ cmp(r4, Operand(r7, ASR, 1));
7503 __ b(lt, &runtime); // Fail if to > length.
7504
7505 // r1: instance type.
7506 // r2: result string length.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007507 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007508 // r5: string.
7509 // r6: from offset (smi)
7510 // Check for flat ascii string.
7511 Label non_ascii_flat;
7512 __ tst(r1, Operand(kStringEncodingMask));
7513 ASSERT_EQ(0, kTwoByteStringTag);
7514 __ b(eq, &non_ascii_flat);
7515
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007516 Label result_longer_than_two;
7517 __ cmp(r2, Operand(2));
7518 __ b(gt, &result_longer_than_two);
7519
7520 // Sub string of length 2 requested.
7521 // Get the two characters forming the sub string.
7522 __ add(r5, r5, Operand(r3));
7523 __ ldrb(r3, FieldMemOperand(r5, SeqAsciiString::kHeaderSize));
7524 __ ldrb(r4, FieldMemOperand(r5, SeqAsciiString::kHeaderSize + 1));
7525
7526 // Try to lookup two character string in symbol table.
7527 Label make_two_character_string;
7528 GenerateTwoCharacterSymbolTableProbe(masm, r3, r4, r1, r5, r6, r7, r9,
7529 &make_two_character_string);
7530 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7531 __ add(sp, sp, Operand(3 * kPointerSize));
7532 __ Ret();
7533
7534 // r2: result string length.
7535 // r3: two characters combined into halfword in little endian byte order.
7536 __ bind(&make_two_character_string);
7537 __ AllocateAsciiString(r0, r2, r4, r5, r9, &runtime);
7538 __ strh(r3, FieldMemOperand(r0, SeqAsciiString::kHeaderSize));
7539 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7540 __ add(sp, sp, Operand(3 * kPointerSize));
7541 __ Ret();
7542
7543 __ bind(&result_longer_than_two);
7544
ager@chromium.org5c838252010-02-19 08:53:10 +00007545 // Allocate the result.
7546 __ AllocateAsciiString(r0, r2, r3, r4, r1, &runtime);
7547
7548 // r0: result string.
7549 // r2: result string length.
7550 // r5: string.
7551 // r6: from offset (smi)
7552 // Locate first character of result.
7553 __ add(r1, r0, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7554 // Locate 'from' character of string.
7555 __ add(r5, r5, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7556 __ add(r5, r5, Operand(r6, ASR, 1));
7557
7558 // r0: result string.
7559 // r1: first character of result string.
7560 // r2: result string length.
7561 // r5: first character of sub string to copy.
7562 ASSERT_EQ(0, SeqAsciiString::kHeaderSize & kObjectAlignmentMask);
7563 GenerateCopyCharactersLong(masm, r1, r5, r2, r3, r4, r6, r7, r9,
7564 COPY_ASCII | DEST_ALWAYS_ALIGNED);
7565 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7566 __ add(sp, sp, Operand(3 * kPointerSize));
7567 __ Ret();
7568
7569 __ bind(&non_ascii_flat);
7570 // r2: result string length.
7571 // r5: string.
7572 // r6: from offset (smi)
7573 // Check for flat two byte string.
7574
7575 // Allocate the result.
7576 __ AllocateTwoByteString(r0, r2, r1, r3, r4, &runtime);
7577
7578 // r0: result string.
7579 // r2: result string length.
7580 // r5: string.
7581 // Locate first character of result.
7582 __ add(r1, r0, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7583 // Locate 'from' character of string.
7584 __ add(r5, r5, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7585 // As "from" is a smi it is 2 times the value which matches the size of a two
7586 // byte character.
7587 __ add(r5, r5, Operand(r6));
7588
7589 // r0: result string.
7590 // r1: first character of result.
7591 // r2: result length.
7592 // r5: first character of string to copy.
7593 ASSERT_EQ(0, SeqTwoByteString::kHeaderSize & kObjectAlignmentMask);
7594 GenerateCopyCharactersLong(masm, r1, r5, r2, r3, r4, r6, r7, r9,
7595 DEST_ALWAYS_ALIGNED);
7596 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7597 __ add(sp, sp, Operand(3 * kPointerSize));
7598 __ Ret();
7599
7600 // Just jump to runtime to create the sub string.
7601 __ bind(&runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007602 __ TailCallRuntime(Runtime::kSubString, 3, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00007603}
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007604
7605
7606void StringCompareStub::GenerateCompareFlatAsciiStrings(MacroAssembler* masm,
7607 Register left,
7608 Register right,
7609 Register scratch1,
7610 Register scratch2,
7611 Register scratch3,
7612 Register scratch4) {
7613 Label compare_lengths;
7614 // Find minimum length and length difference.
7615 __ ldr(scratch1, FieldMemOperand(left, String::kLengthOffset));
7616 __ ldr(scratch2, FieldMemOperand(right, String::kLengthOffset));
7617 __ sub(scratch3, scratch1, Operand(scratch2), SetCC);
7618 Register length_delta = scratch3;
7619 __ mov(scratch1, scratch2, LeaveCC, gt);
7620 Register min_length = scratch1;
7621 __ tst(min_length, Operand(min_length));
7622 __ b(eq, &compare_lengths);
7623
7624 // Setup registers so that we only need to increment one register
7625 // in the loop.
7626 __ add(scratch2, min_length,
7627 Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7628 __ add(left, left, Operand(scratch2));
7629 __ add(right, right, Operand(scratch2));
7630 // Registers left and right points to the min_length character of strings.
7631 __ rsb(min_length, min_length, Operand(-1));
7632 Register index = min_length;
7633 // Index starts at -min_length.
7634
7635 {
7636 // Compare loop.
7637 Label loop;
7638 __ bind(&loop);
7639 // Compare characters.
7640 __ add(index, index, Operand(1), SetCC);
7641 __ ldrb(scratch2, MemOperand(left, index), ne);
7642 __ ldrb(scratch4, MemOperand(right, index), ne);
7643 // Skip to compare lengths with eq condition true.
7644 __ b(eq, &compare_lengths);
7645 __ cmp(scratch2, scratch4);
7646 __ b(eq, &loop);
7647 // Fallthrough with eq condition false.
7648 }
7649 // Compare lengths - strings up to min-length are equal.
7650 __ bind(&compare_lengths);
7651 ASSERT(Smi::FromInt(EQUAL) == static_cast<Smi*>(0));
7652 // Use zero length_delta as result.
7653 __ mov(r0, Operand(length_delta), SetCC, eq);
7654 // Fall through to here if characters compare not-equal.
7655 __ mov(r0, Operand(Smi::FromInt(GREATER)), LeaveCC, gt);
7656 __ mov(r0, Operand(Smi::FromInt(LESS)), LeaveCC, lt);
7657 __ Ret();
7658}
7659
7660
7661void StringCompareStub::Generate(MacroAssembler* masm) {
7662 Label runtime;
7663
7664 // Stack frame on entry.
ager@chromium.org5c838252010-02-19 08:53:10 +00007665 // sp[0]: right string
7666 // sp[4]: left string
7667 __ ldr(r0, MemOperand(sp, 1 * kPointerSize)); // left
7668 __ ldr(r1, MemOperand(sp, 0 * kPointerSize)); // right
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007669
7670 Label not_same;
7671 __ cmp(r0, r1);
7672 __ b(ne, &not_same);
7673 ASSERT_EQ(0, EQUAL);
7674 ASSERT_EQ(0, kSmiTag);
7675 __ mov(r0, Operand(Smi::FromInt(EQUAL)));
7676 __ IncrementCounter(&Counters::string_compare_native, 1, r1, r2);
7677 __ add(sp, sp, Operand(2 * kPointerSize));
7678 __ Ret();
7679
7680 __ bind(&not_same);
7681
7682 // Check that both objects are sequential ascii strings.
7683 __ JumpIfNotBothSequentialAsciiStrings(r0, r1, r2, r3, &runtime);
7684
7685 // Compare flat ascii strings natively. Remove arguments from stack first.
7686 __ IncrementCounter(&Counters::string_compare_native, 1, r2, r3);
7687 __ add(sp, sp, Operand(2 * kPointerSize));
7688 GenerateCompareFlatAsciiStrings(masm, r0, r1, r2, r3, r4, r5);
7689
7690 // Call the runtime; it returns -1 (less), 0 (equal), or 1 (greater)
7691 // tagged as a small integer.
7692 __ bind(&runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007693 __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007694}
7695
7696
ager@chromium.org5c838252010-02-19 08:53:10 +00007697void StringAddStub::Generate(MacroAssembler* masm) {
7698 Label string_add_runtime;
7699 // Stack on entry:
7700 // sp[0]: second argument.
7701 // sp[4]: first argument.
7702
7703 // Load the two arguments.
7704 __ ldr(r0, MemOperand(sp, 1 * kPointerSize)); // First argument.
7705 __ ldr(r1, MemOperand(sp, 0 * kPointerSize)); // Second argument.
7706
7707 // Make sure that both arguments are strings if not known in advance.
7708 if (string_check_) {
7709 ASSERT_EQ(0, kSmiTag);
7710 __ JumpIfEitherSmi(r0, r1, &string_add_runtime);
7711 // Load instance types.
7712 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7713 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7714 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7715 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7716 ASSERT_EQ(0, kStringTag);
7717 // If either is not a string, go to runtime.
7718 __ tst(r4, Operand(kIsNotStringMask));
7719 __ tst(r5, Operand(kIsNotStringMask), eq);
7720 __ b(ne, &string_add_runtime);
7721 }
7722
7723 // Both arguments are strings.
7724 // r0: first string
7725 // r1: second string
7726 // r4: first string instance type (if string_check_)
7727 // r5: second string instance type (if string_check_)
7728 {
7729 Label strings_not_empty;
7730 // Check if either of the strings are empty. In that case return the other.
7731 __ ldr(r2, FieldMemOperand(r0, String::kLengthOffset));
7732 __ ldr(r3, FieldMemOperand(r1, String::kLengthOffset));
7733 __ cmp(r2, Operand(0)); // Test if first string is empty.
7734 __ mov(r0, Operand(r1), LeaveCC, eq); // If first is empty, return second.
7735 __ cmp(r3, Operand(0), ne); // Else test if second string is empty.
7736 __ b(ne, &strings_not_empty); // If either string was empty, return r0.
7737
7738 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7739 __ add(sp, sp, Operand(2 * kPointerSize));
7740 __ Ret();
7741
7742 __ bind(&strings_not_empty);
7743 }
7744
7745 // Both strings are non-empty.
7746 // r0: first string
7747 // r1: second string
7748 // r2: length of first string
7749 // r3: length of second string
7750 // r4: first string instance type (if string_check_)
7751 // r5: second string instance type (if string_check_)
7752 // Look at the length of the result of adding the two strings.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007753 Label string_add_flat_result, longer_than_two;
ager@chromium.org5c838252010-02-19 08:53:10 +00007754 // Adding two lengths can't overflow.
7755 ASSERT(String::kMaxLength * 2 > String::kMaxLength);
7756 __ add(r6, r2, Operand(r3));
7757 // Use the runtime system when adding two one character strings, as it
7758 // contains optimizations for this specific case using the symbol table.
7759 __ cmp(r6, Operand(2));
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007760 __ b(ne, &longer_than_two);
7761
7762 // Check that both strings are non-external ascii strings.
7763 if (!string_check_) {
7764 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7765 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7766 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7767 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7768 }
7769 __ JumpIfBothInstanceTypesAreNotSequentialAscii(r4, r5, r6, r7,
7770 &string_add_runtime);
7771
7772 // Get the two characters forming the sub string.
7773 __ ldrb(r2, FieldMemOperand(r0, SeqAsciiString::kHeaderSize));
7774 __ ldrb(r3, FieldMemOperand(r1, SeqAsciiString::kHeaderSize));
7775
7776 // Try to lookup two character string in symbol table. If it is not found
7777 // just allocate a new one.
7778 Label make_two_character_string;
7779 GenerateTwoCharacterSymbolTableProbe(masm, r2, r3, r6, r7, r4, r5, r9,
7780 &make_two_character_string);
7781 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7782 __ add(sp, sp, Operand(2 * kPointerSize));
7783 __ Ret();
7784
7785 __ bind(&make_two_character_string);
7786 // Resulting string has length 2 and first chars of two strings
7787 // are combined into single halfword in r2 register.
7788 // So we can fill resulting string without two loops by a single
7789 // halfword store instruction (which assumes that processor is
7790 // in a little endian mode)
7791 __ mov(r6, Operand(2));
7792 __ AllocateAsciiString(r0, r6, r4, r5, r9, &string_add_runtime);
7793 __ strh(r2, FieldMemOperand(r0, SeqAsciiString::kHeaderSize));
7794 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7795 __ add(sp, sp, Operand(2 * kPointerSize));
7796 __ Ret();
7797
7798 __ bind(&longer_than_two);
ager@chromium.org5c838252010-02-19 08:53:10 +00007799 // Check if resulting string will be flat.
7800 __ cmp(r6, Operand(String::kMinNonFlatLength));
7801 __ b(lt, &string_add_flat_result);
7802 // Handle exceptionally long strings in the runtime system.
7803 ASSERT((String::kMaxLength & 0x80000000) == 0);
7804 ASSERT(IsPowerOf2(String::kMaxLength + 1));
7805 // kMaxLength + 1 is representable as shifted literal, kMaxLength is not.
7806 __ cmp(r6, Operand(String::kMaxLength + 1));
7807 __ b(hs, &string_add_runtime);
7808
7809 // If result is not supposed to be flat, allocate a cons string object.
7810 // If both strings are ascii the result is an ascii cons string.
7811 if (!string_check_) {
7812 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7813 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7814 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7815 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7816 }
7817 Label non_ascii, allocated;
7818 ASSERT_EQ(0, kTwoByteStringTag);
7819 __ tst(r4, Operand(kStringEncodingMask));
7820 __ tst(r5, Operand(kStringEncodingMask), ne);
7821 __ b(eq, &non_ascii);
7822
7823 // Allocate an ASCII cons string.
7824 __ AllocateAsciiConsString(r7, r6, r4, r5, &string_add_runtime);
7825 __ bind(&allocated);
7826 // Fill the fields of the cons string.
7827 __ str(r0, FieldMemOperand(r7, ConsString::kFirstOffset));
7828 __ str(r1, FieldMemOperand(r7, ConsString::kSecondOffset));
7829 __ mov(r0, Operand(r7));
7830 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7831 __ add(sp, sp, Operand(2 * kPointerSize));
7832 __ Ret();
7833
7834 __ bind(&non_ascii);
7835 // Allocate a two byte cons string.
7836 __ AllocateTwoByteConsString(r7, r6, r4, r5, &string_add_runtime);
7837 __ jmp(&allocated);
7838
7839 // Handle creating a flat result. First check that both strings are
7840 // sequential and that they have the same encoding.
7841 // r0: first string
7842 // r1: second string
7843 // r2: length of first string
7844 // r3: length of second string
7845 // r4: first string instance type (if string_check_)
7846 // r5: second string instance type (if string_check_)
7847 // r6: sum of lengths.
7848 __ bind(&string_add_flat_result);
7849 if (!string_check_) {
7850 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7851 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7852 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7853 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7854 }
7855 // Check that both strings are sequential.
7856 ASSERT_EQ(0, kSeqStringTag);
7857 __ tst(r4, Operand(kStringRepresentationMask));
7858 __ tst(r5, Operand(kStringRepresentationMask), eq);
7859 __ b(ne, &string_add_runtime);
7860 // Now check if both strings have the same encoding (ASCII/Two-byte).
7861 // r0: first string.
7862 // r1: second string.
7863 // r2: length of first string.
7864 // r3: length of second string.
7865 // r6: sum of lengths..
7866 Label non_ascii_string_add_flat_result;
7867 ASSERT(IsPowerOf2(kStringEncodingMask)); // Just one bit to test.
7868 __ eor(r7, r4, Operand(r5));
7869 __ tst(r7, Operand(kStringEncodingMask));
7870 __ b(ne, &string_add_runtime);
7871 // And see if it's ASCII or two-byte.
7872 __ tst(r4, Operand(kStringEncodingMask));
7873 __ b(eq, &non_ascii_string_add_flat_result);
7874
7875 // Both strings are sequential ASCII strings. We also know that they are
7876 // short (since the sum of the lengths is less than kMinNonFlatLength).
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007877 // r6: length of resulting flat string
ager@chromium.org5c838252010-02-19 08:53:10 +00007878 __ AllocateAsciiString(r7, r6, r4, r5, r9, &string_add_runtime);
7879 // Locate first character of result.
7880 __ add(r6, r7, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7881 // Locate first character of first argument.
7882 __ add(r0, r0, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7883 // r0: first character of first string.
7884 // r1: second string.
7885 // r2: length of first string.
7886 // r3: length of second string.
7887 // r6: first character of result.
7888 // r7: result string.
7889 GenerateCopyCharacters(masm, r6, r0, r2, r4, true);
7890
7891 // Load second argument and locate first character.
7892 __ add(r1, r1, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7893 // r1: first character of second string.
7894 // r3: length of second string.
7895 // r6: next character of result.
7896 // r7: result string.
7897 GenerateCopyCharacters(masm, r6, r1, r3, r4, true);
7898 __ mov(r0, Operand(r7));
7899 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7900 __ add(sp, sp, Operand(2 * kPointerSize));
7901 __ Ret();
7902
7903 __ bind(&non_ascii_string_add_flat_result);
7904 // Both strings are sequential two byte strings.
7905 // r0: first string.
7906 // r1: second string.
7907 // r2: length of first string.
7908 // r3: length of second string.
7909 // r6: sum of length of strings.
7910 __ AllocateTwoByteString(r7, r6, r4, r5, r9, &string_add_runtime);
7911 // r0: first string.
7912 // r1: second string.
7913 // r2: length of first string.
7914 // r3: length of second string.
7915 // r7: result string.
7916
7917 // Locate first character of result.
7918 __ add(r6, r7, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7919 // Locate first character of first argument.
7920 __ add(r0, r0, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7921
7922 // r0: first character of first string.
7923 // r1: second string.
7924 // r2: length of first string.
7925 // r3: length of second string.
7926 // r6: first character of result.
7927 // r7: result string.
7928 GenerateCopyCharacters(masm, r6, r0, r2, r4, false);
7929
7930 // Locate first character of second argument.
7931 __ add(r1, r1, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7932
7933 // r1: first character of second string.
7934 // r3: length of second string.
7935 // r6: next character of result (after copy of first string).
7936 // r7: result string.
7937 GenerateCopyCharacters(masm, r6, r1, r3, r4, false);
7938
7939 __ mov(r0, Operand(r7));
7940 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7941 __ add(sp, sp, Operand(2 * kPointerSize));
7942 __ Ret();
7943
7944 // Just jump to runtime to add the two strings.
7945 __ bind(&string_add_runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007946 __ TailCallRuntime(Runtime::kStringAdd, 2, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00007947}
7948
7949
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007950#undef __
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007951
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007952} } // namespace v8::internal