blob: ea3df6cfbe87ccfc34b2e64caeec13c59c7ddf55 [file] [log] [blame]
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001// Copyright 2006-2009 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.orgbb29dc92009-03-24 13:25:23 +000034#include "parser.h"
35#include "register-allocator-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036#include "runtime.h"
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000037#include "scopes.h"
38
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000039
kasperl@chromium.org71affb52009-05-26 05:44:31 +000040namespace v8 {
41namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000042
ager@chromium.org65dad4b2009-04-23 08:48:43 +000043#define __ ACCESS_MASM(masm_)
44
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000045static void EmitIdenticalObjectComparison(MacroAssembler* masm,
46 Label* slow,
47 Condition cc);
48static void EmitSmiNonsmiComparison(MacroAssembler* masm,
49 Label* rhs_not_nan,
50 Label* slow,
51 bool strict);
52static void EmitTwoNonNanDoubleComparison(MacroAssembler* masm, Condition cc);
53static void EmitStrictTwoHeapObjectCompare(MacroAssembler* masm);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000054static void MultiplyByKnownInt(MacroAssembler* masm,
55 Register source,
56 Register destination,
57 int known_int);
58static bool IsEasyToMultiplyBy(int x);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000059
60
61
ager@chromium.orge2902be2009-06-08 12:21:35 +000062// -------------------------------------------------------------------------
63// Platform-specific DeferredCode functions.
64
65void DeferredCode::SaveRegisters() {
66 for (int i = 0; i < RegisterAllocator::kNumRegisters; i++) {
67 int action = registers_[i];
68 if (action == kPush) {
69 __ push(RegisterAllocator::ToRegister(i));
70 } else if (action != kIgnore && (action & kSyncedFlag) == 0) {
71 __ str(RegisterAllocator::ToRegister(i), MemOperand(fp, action));
72 }
73 }
74}
75
76
77void DeferredCode::RestoreRegisters() {
78 // Restore registers in reverse order due to the stack.
79 for (int i = RegisterAllocator::kNumRegisters - 1; i >= 0; i--) {
80 int action = registers_[i];
81 if (action == kPush) {
82 __ pop(RegisterAllocator::ToRegister(i));
83 } else if (action != kIgnore) {
84 action &= ~kSyncedFlag;
85 __ ldr(RegisterAllocator::ToRegister(i), MemOperand(fp, action));
86 }
87 }
88}
89
ager@chromium.org3bf7b912008-11-17 09:09:45 +000090
91// -------------------------------------------------------------------------
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000092// CodeGenState implementation.
93
ager@chromium.org7c537e22008-10-16 08:43:32 +000094CodeGenState::CodeGenState(CodeGenerator* owner)
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000095 : owner_(owner),
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000096 true_target_(NULL),
97 false_target_(NULL),
98 previous_(NULL) {
99 owner_->set_state(this);
100}
101
102
ager@chromium.org7c537e22008-10-16 08:43:32 +0000103CodeGenState::CodeGenState(CodeGenerator* owner,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000104 JumpTarget* true_target,
105 JumpTarget* false_target)
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000106 : owner_(owner),
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000107 true_target_(true_target),
108 false_target_(false_target),
109 previous_(owner->state()) {
110 owner_->set_state(this);
111}
112
113
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000114CodeGenState::~CodeGenState() {
115 ASSERT(owner_->state() == this);
116 owner_->set_state(previous_);
117}
118
119
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000120// -------------------------------------------------------------------------
ager@chromium.org7c537e22008-10-16 08:43:32 +0000121// CodeGenerator implementation
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000122
ager@chromium.org7c537e22008-10-16 08:43:32 +0000123CodeGenerator::CodeGenerator(int buffer_size, Handle<Script> script,
124 bool is_eval)
125 : is_eval_(is_eval),
126 script_(script),
127 deferred_(8),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000128 masm_(new MacroAssembler(NULL, buffer_size)),
129 scope_(NULL),
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000130 frame_(NULL),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000131 allocator_(NULL),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000132 cc_reg_(al),
133 state_(NULL),
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +0000134 function_return_is_shadowed_(false) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000135}
136
137
138// Calling conventions:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000139// fp: caller's frame pointer
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000140// sp: stack pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000141// r1: called JS function
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000142// cp: callee's context
143
ager@chromium.org7c537e22008-10-16 08:43:32 +0000144void CodeGenerator::GenCode(FunctionLiteral* fun) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000145 // Record the position for debugging purposes.
146 CodeForFunctionPosition(fun);
147
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000148 ZoneList<Statement*>* body = fun->body();
149
150 // Initialize state.
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000151 ASSERT(scope_ == NULL);
152 scope_ = fun->scope();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000153 ASSERT(allocator_ == NULL);
154 RegisterAllocator register_allocator(this);
155 allocator_ = &register_allocator;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000156 ASSERT(frame_ == NULL);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000157 frame_ = new VirtualFrame();
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000158 cc_reg_ = al;
159 {
160 CodeGenState state(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000161
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000162 // Entry:
163 // Stack: receiver, arguments
164 // lr: return address
165 // fp: caller's frame pointer
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000166 // sp: stack pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000167 // r1: called JS function
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000168 // cp: callee's context
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000169 allocator_->Initialize();
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000170 frame_->Enter();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000171 // tos: code slot
172#ifdef DEBUG
173 if (strlen(FLAG_stop_at) > 0 &&
174 fun->name()->IsEqualTo(CStrVector(FLAG_stop_at))) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000175 frame_->SpillAll();
kasper.lund7276f142008-07-30 08:49:36 +0000176 __ stop("stop-at");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000177 }
178#endif
179
ager@chromium.org18ad94b2009-09-02 08:22:29 +0000180 // Allocate space for locals and initialize them. This also checks
181 // for stack overflow.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000182 frame_->AllocateStackSlots();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000183 // Initialize the function return target after the locals are set
184 // up, because it needs the expected frame height from the frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000185 function_return_.set_direction(JumpTarget::BIDIRECTIONAL);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000186 function_return_is_shadowed_ = false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000187
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000188 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000189 if (scope_->num_heap_slots() > 0) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000190 // Allocate local context.
191 // Get outer context and create a new context based on it.
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000192 __ ldr(r0, frame_->Function());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000193 frame_->EmitPush(r0);
194 frame_->CallRuntime(Runtime::kNewContext, 1); // r0 holds the result
kasper.lund7276f142008-07-30 08:49:36 +0000195
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000196#ifdef DEBUG
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000197 JumpTarget verified_true;
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000198 __ cmp(r0, Operand(cp));
199 verified_true.Branch(eq);
200 __ stop("NewContext: r0 is expected to be the same as cp");
201 verified_true.Bind();
202#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000203 // Update context local.
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000204 __ str(cp, frame_->Context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000205 }
206
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000207 // TODO(1241774): Improve this code:
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000208 // 1) only needed if we have a context
209 // 2) no need to recompute context ptr every single time
210 // 3) don't copy parameter operand code from SlotOperand!
211 {
212 Comment cmnt2(masm_, "[ copy context parameters into .context");
213
214 // Note that iteration order is relevant here! If we have the same
215 // parameter twice (e.g., function (x, y, x)), and that parameter
216 // needs to be copied into the context, it must be the last argument
217 // passed to the parameter that needs to be copied. This is a rare
218 // case so we don't check for it, instead we rely on the copying
219 // order: such a parameter is copied repeatedly into the same
220 // context location and thus the last value is what is seen inside
221 // the function.
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000222 for (int i = 0; i < scope_->num_parameters(); i++) {
223 Variable* par = scope_->parameter(i);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000224 Slot* slot = par->slot();
225 if (slot != NULL && slot->type() == Slot::CONTEXT) {
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000226 ASSERT(!scope_->is_global_scope()); // no parameters in global scope
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000227 __ ldr(r1, frame_->ParameterAt(i));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000228 // Loads r2 with context; used below in RecordWrite.
229 __ str(r1, SlotOperand(slot, r2));
230 // Load the offset into r3.
231 int slot_offset =
232 FixedArray::kHeaderSize + slot->index() * kPointerSize;
233 __ mov(r3, Operand(slot_offset));
234 __ RecordWrite(r2, r3, r1);
235 }
236 }
237 }
238
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000239 // Store the arguments object. This must happen after context
240 // initialization because the arguments object may be stored in the
241 // context.
242 if (scope_->arguments() != NULL) {
243 ASSERT(scope_->arguments_shadow() != NULL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000244 Comment cmnt(masm_, "[ allocate arguments object");
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000245 { Reference shadow_ref(this, scope_->arguments_shadow());
246 { Reference arguments_ref(this, scope_->arguments());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000247 ArgumentsAccessStub stub(ArgumentsAccessStub::NEW_OBJECT);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000248 __ ldr(r2, frame_->Function());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000249 // The receiver is below the arguments, the return address,
250 // and the frame pointer on the stack.
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000251 const int kReceiverDisplacement = 2 + scope_->num_parameters();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000252 __ add(r1, fp, Operand(kReceiverDisplacement * kPointerSize));
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000253 __ mov(r0, Operand(Smi::FromInt(scope_->num_parameters())));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000254 frame_->Adjust(3);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000255 __ stm(db_w, sp, r0.bit() | r1.bit() | r2.bit());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000256 frame_->CallStub(&stub, 3);
257 frame_->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000258 arguments_ref.SetValue(NOT_CONST_INIT);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000259 }
ager@chromium.org7c537e22008-10-16 08:43:32 +0000260 shadow_ref.SetValue(NOT_CONST_INIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000261 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000262 frame_->Drop(); // Value is no longer needed.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000263 }
264
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000265 // Generate code to 'execute' declarations and initialize functions
266 // (source elements). In case of an illegal redeclaration we need to
267 // handle that instead of processing the declarations.
268 if (scope_->HasIllegalRedeclaration()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000269 Comment cmnt(masm_, "[ illegal redeclarations");
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000270 scope_->VisitIllegalRedeclaration(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000271 } else {
272 Comment cmnt(masm_, "[ declarations");
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000273 ProcessDeclarations(scope_->declarations());
274 // Bail out if a stack-overflow exception occurred when processing
275 // declarations.
kasper.lund212ac232008-07-16 07:07:30 +0000276 if (HasStackOverflow()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000277 }
278
mads.s.ager31e71382008-08-13 09:32:07 +0000279 if (FLAG_trace) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000280 frame_->CallRuntime(Runtime::kTraceEnter, 0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000281 // Ignore the return value.
mads.s.ager31e71382008-08-13 09:32:07 +0000282 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000283
284 // Compile the body of the function in a vanilla state. Don't
285 // bother compiling all the code if the scope has an illegal
286 // redeclaration.
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000287 if (!scope_->HasIllegalRedeclaration()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000288 Comment cmnt(masm_, "[ function body");
289#ifdef DEBUG
290 bool is_builtin = Bootstrapper::IsActive();
291 bool should_trace =
292 is_builtin ? FLAG_trace_builtin_calls : FLAG_trace_calls;
mads.s.ager31e71382008-08-13 09:32:07 +0000293 if (should_trace) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000294 frame_->CallRuntime(Runtime::kDebugTrace, 0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000295 // Ignore the return value.
mads.s.ager31e71382008-08-13 09:32:07 +0000296 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000297#endif
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000298 VisitStatementsAndSpill(body);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000299 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000300 }
301
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000302 // Generate the return sequence if necessary.
ager@chromium.org4af710e2009-09-15 12:20:11 +0000303 if (has_valid_frame() || function_return_.is_linked()) {
304 if (!function_return_.is_linked()) {
305 CodeForReturnPosition(fun);
306 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000307 // exit
308 // r0: result
309 // sp: stack pointer
310 // fp: frame pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000311 // cp: callee's context
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000312 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
mads.s.ager31e71382008-08-13 09:32:07 +0000313
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000314 function_return_.Bind();
315 if (FLAG_trace) {
316 // Push the return value on the stack as the parameter.
317 // Runtime::TraceExit returns the parameter as it is.
318 frame_->EmitPush(r0);
319 frame_->CallRuntime(Runtime::kTraceExit, 1);
320 }
321
ager@chromium.org4af710e2009-09-15 12:20:11 +0000322 // Add a label for checking the size of the code used for returning.
323 Label check_exit_codesize;
324 masm_->bind(&check_exit_codesize);
325
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000326 // Calculate the exact length of the return sequence and make sure that
327 // the constant pool is not emitted inside of the return sequence.
328 int32_t sp_delta = (scope_->num_parameters() + 1) * kPointerSize;
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000329 int return_sequence_length = Assembler::kJSReturnSequenceLength;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000330 if (!masm_->ImmediateFitsAddrMode1Instruction(sp_delta)) {
331 // Additional mov instruction generated.
332 return_sequence_length++;
333 }
334 masm_->BlockConstPoolFor(return_sequence_length);
335
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000336 // Tear down the frame which will restore the caller's frame pointer and
337 // the link register.
338 frame_->Exit();
339
ager@chromium.org4af710e2009-09-15 12:20:11 +0000340 // Here we use masm_-> instead of the __ macro to avoid the code coverage
341 // tool from instrumenting as we rely on the code size here.
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000342 masm_->add(sp, sp, Operand(sp_delta));
ager@chromium.org4af710e2009-09-15 12:20:11 +0000343 masm_->Jump(lr);
344
345 // Check that the size of the code used for returning matches what is
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000346 // expected by the debugger. The add instruction above is an addressing
347 // mode 1 instruction where there are restrictions on which immediate values
348 // can be encoded in the instruction and which immediate values requires
349 // use of an additional instruction for moving the immediate to a temporary
350 // register.
351 ASSERT_EQ(return_sequence_length,
ager@chromium.org4af710e2009-09-15 12:20:11 +0000352 masm_->InstructionsGeneratedSince(&check_exit_codesize));
mads.s.ager31e71382008-08-13 09:32:07 +0000353 }
354
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000355 // Code generation state must be reset.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000356 ASSERT(!has_cc());
357 ASSERT(state_ == NULL);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000358 ASSERT(!function_return_is_shadowed_);
359 function_return_.Unuse();
360 DeleteFrame();
361
362 // Process any deferred code using the register allocator.
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000363 if (!HasStackOverflow()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000364 ProcessDeferred();
365 }
366
367 allocator_ = NULL;
368 scope_ = NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000369}
370
371
ager@chromium.org7c537e22008-10-16 08:43:32 +0000372MemOperand CodeGenerator::SlotOperand(Slot* slot, Register tmp) {
373 // Currently, this assertion will fail if we try to assign to
374 // a constant variable that is constant because it is read-only
375 // (such as the variable referring to a named function expression).
376 // We need to implement assignments to read-only variables.
377 // Ideally, we should do this during AST generation (by converting
378 // such assignments into expression statements); however, in general
379 // we may not be able to make the decision until past AST generation,
380 // that is when the entire program is known.
381 ASSERT(slot != NULL);
382 int index = slot->index();
383 switch (slot->type()) {
384 case Slot::PARAMETER:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000385 return frame_->ParameterAt(index);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000386
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000387 case Slot::LOCAL:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000388 return frame_->LocalAt(index);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000389
390 case Slot::CONTEXT: {
391 // Follow the context chain if necessary.
392 ASSERT(!tmp.is(cp)); // do not overwrite context register
393 Register context = cp;
394 int chain_length = scope()->ContextChainLength(slot->var()->scope());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000395 for (int i = 0; i < chain_length; i++) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000396 // Load the closure.
397 // (All contexts, even 'with' contexts, have a closure,
398 // and it is the same for all contexts inside a function.
399 // There is no need to go to the function context first.)
400 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
401 // Load the function context (which is the incoming, outer context).
402 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
403 context = tmp;
404 }
405 // We may have a 'with' context now. Get the function context.
406 // (In fact this mov may never be the needed, since the scope analysis
407 // may not permit a direct context access in this case and thus we are
408 // always at a function context. However it is safe to dereference be-
409 // cause the function context of a function context is itself. Before
410 // deleting this mov we should try to create a counter-example first,
411 // though...)
412 __ ldr(tmp, ContextOperand(context, Context::FCONTEXT_INDEX));
413 return ContextOperand(tmp, index);
414 }
415
416 default:
417 UNREACHABLE();
418 return MemOperand(r0, 0);
419 }
420}
421
422
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000423MemOperand CodeGenerator::ContextSlotOperandCheckExtensions(
424 Slot* slot,
425 Register tmp,
426 Register tmp2,
427 JumpTarget* slow) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000428 ASSERT(slot->type() == Slot::CONTEXT);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000429 Register context = cp;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000430
ager@chromium.org381abbb2009-02-25 13:23:22 +0000431 for (Scope* s = scope(); s != slot->var()->scope(); s = s->outer_scope()) {
432 if (s->num_heap_slots() > 0) {
433 if (s->calls_eval()) {
434 // Check that extension is NULL.
435 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
436 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000437 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000438 }
439 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
440 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
441 context = tmp;
442 }
443 }
444 // Check that last extension is NULL.
445 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
446 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000447 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000448 __ ldr(tmp, ContextOperand(context, Context::FCONTEXT_INDEX));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000449 return ContextOperand(tmp, slot->index());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000450}
451
452
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000453// Loads a value on TOS. If it is a boolean value, the result may have been
454// (partially) translated into branches, or it may have set the condition
455// code register. If force_cc is set, the value is forced to set the
456// condition code register and no value is pushed. If the condition code
457// register was set, has_cc() is true and cc_reg_ contains the condition to
458// test for 'true'.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000459void CodeGenerator::LoadCondition(Expression* x,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000460 JumpTarget* true_target,
461 JumpTarget* false_target,
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000462 bool force_cc) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000463 ASSERT(!has_cc());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000464 int original_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000465
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000466 { CodeGenState new_state(this, true_target, false_target);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000467 Visit(x);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000468
469 // If we hit a stack overflow, we may not have actually visited
470 // the expression. In that case, we ensure that we have a
471 // valid-looking frame state because we will continue to generate
472 // code as we unwind the C++ stack.
473 //
474 // It's possible to have both a stack overflow and a valid frame
475 // state (eg, a subexpression overflowed, visiting it returned
476 // with a dummied frame state, and visiting this expression
477 // returned with a normal-looking state).
478 if (HasStackOverflow() &&
479 has_valid_frame() &&
480 !has_cc() &&
481 frame_->height() == original_height) {
482 true_target->Jump();
483 }
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000484 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000485 if (force_cc && frame_ != NULL && !has_cc()) {
mads.s.ager31e71382008-08-13 09:32:07 +0000486 // Convert the TOS value to a boolean in the condition code register.
487 ToBoolean(true_target, false_target);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000488 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000489 ASSERT(!force_cc || !has_valid_frame() || has_cc());
490 ASSERT(!has_valid_frame() ||
491 (has_cc() && frame_->height() == original_height) ||
492 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000493}
494
495
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000496void CodeGenerator::Load(Expression* expr) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000497#ifdef DEBUG
498 int original_height = frame_->height();
499#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000500 JumpTarget true_target;
501 JumpTarget false_target;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000502 LoadCondition(expr, &true_target, &false_target, false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000503
504 if (has_cc()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000505 // Convert cc_reg_ into a boolean value.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000506 JumpTarget loaded;
507 JumpTarget materialize_true;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000508 materialize_true.Branch(cc_reg_);
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000509 __ LoadRoot(r0, Heap::kFalseValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000510 frame_->EmitPush(r0);
511 loaded.Jump();
512 materialize_true.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000513 __ LoadRoot(r0, Heap::kTrueValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000514 frame_->EmitPush(r0);
515 loaded.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000516 cc_reg_ = al;
517 }
518
519 if (true_target.is_linked() || false_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000520 // We have at least one condition value that has been "translated"
521 // into a branch, thus it needs to be loaded explicitly.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000522 JumpTarget loaded;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000523 if (frame_ != NULL) {
524 loaded.Jump(); // Don't lose the current TOS.
525 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000526 bool both = true_target.is_linked() && false_target.is_linked();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000527 // Load "true" if necessary.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000528 if (true_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000529 true_target.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000530 __ LoadRoot(r0, Heap::kTrueValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000531 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000532 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000533 // If both "true" and "false" need to be loaded jump across the code for
534 // "false".
535 if (both) {
536 loaded.Jump();
537 }
538 // Load "false" if necessary.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000539 if (false_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000540 false_target.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000541 __ LoadRoot(r0, Heap::kFalseValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000542 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000543 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000544 // A value is loaded on all paths reaching this point.
545 loaded.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000546 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000547 ASSERT(has_valid_frame());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000548 ASSERT(!has_cc());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000549 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000550}
551
552
ager@chromium.org7c537e22008-10-16 08:43:32 +0000553void CodeGenerator::LoadGlobal() {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000554 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +0000555 __ ldr(r0, GlobalObject());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000556 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000557}
558
559
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000560void CodeGenerator::LoadGlobalReceiver(Register scratch) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000561 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000562 __ ldr(scratch, ContextOperand(cp, Context::GLOBAL_INDEX));
563 __ ldr(scratch,
564 FieldMemOperand(scratch, GlobalObject::kGlobalReceiverOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000565 frame_->EmitPush(scratch);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000566}
567
568
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000569void CodeGenerator::LoadTypeofExpression(Expression* expr) {
570 // Special handling of identifiers as subexpressions of typeof.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000571 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000572 Variable* variable = expr->AsVariableProxy()->AsVariable();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000573 if (variable != NULL && !variable->is_this() && variable->is_global()) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000574 // For a global variable we build the property reference
575 // <global>.<variable> and perform a (regular non-contextual) property
576 // load to make sure we do not get reference errors.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000577 Slot global(variable, Slot::CONTEXT, Context::GLOBAL_INDEX);
578 Literal key(variable->name());
ager@chromium.org236ad962008-09-25 09:45:57 +0000579 Property property(&global, &key, RelocInfo::kNoPosition);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000580 Reference ref(this, &property);
581 ref.GetValueAndSpill();
582 } else if (variable != NULL && variable->slot() != NULL) {
583 // For a variable that rewrites to a slot, we signal it is the immediate
584 // subexpression of a typeof.
585 LoadFromSlot(variable->slot(), INSIDE_TYPEOF);
586 frame_->SpillAll();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000587 } else {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000588 // Anything else can be handled normally.
589 LoadAndSpill(expr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000590 }
591}
592
593
ager@chromium.org7c537e22008-10-16 08:43:32 +0000594Reference::Reference(CodeGenerator* cgen, Expression* expression)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000595 : cgen_(cgen), expression_(expression), type_(ILLEGAL) {
596 cgen->LoadReference(this);
597}
598
599
600Reference::~Reference() {
601 cgen_->UnloadReference(this);
602}
603
604
ager@chromium.org7c537e22008-10-16 08:43:32 +0000605void CodeGenerator::LoadReference(Reference* ref) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000606 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +0000607 Comment cmnt(masm_, "[ LoadReference");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000608 Expression* e = ref->expression();
609 Property* property = e->AsProperty();
610 Variable* var = e->AsVariableProxy()->AsVariable();
611
612 if (property != NULL) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000613 // The expression is either a property or a variable proxy that rewrites
614 // to a property.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000615 LoadAndSpill(property->obj());
ager@chromium.org7c537e22008-10-16 08:43:32 +0000616 // We use a named reference if the key is a literal symbol, unless it is
617 // a string that can be legally parsed as an integer. This is because
618 // otherwise we will not get into the slow case code that handles [] on
619 // String objects.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000620 Literal* literal = property->key()->AsLiteral();
621 uint32_t dummy;
ager@chromium.org7c537e22008-10-16 08:43:32 +0000622 if (literal != NULL &&
623 literal->handle()->IsSymbol() &&
624 !String::cast(*(literal->handle()))->AsArrayIndex(&dummy)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000625 ref->set_type(Reference::NAMED);
626 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000627 LoadAndSpill(property->key());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000628 ref->set_type(Reference::KEYED);
629 }
630 } else if (var != NULL) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000631 // The expression is a variable proxy that does not rewrite to a
632 // property. Global variables are treated as named property references.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000633 if (var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000634 LoadGlobal();
635 ref->set_type(Reference::NAMED);
636 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000637 ASSERT(var->slot() != NULL);
638 ref->set_type(Reference::SLOT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000639 }
640 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000641 // Anything else is a runtime error.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000642 LoadAndSpill(e);
643 frame_->CallRuntime(Runtime::kThrowReferenceError, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000644 }
645}
646
647
ager@chromium.org7c537e22008-10-16 08:43:32 +0000648void CodeGenerator::UnloadReference(Reference* ref) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000649 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000650 // Pop a reference from the stack while preserving TOS.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000651 Comment cmnt(masm_, "[ UnloadReference");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000652 int size = ref->size();
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000653 if (size > 0) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000654 frame_->EmitPop(r0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000655 frame_->Drop(size);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000656 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000657 }
658}
659
660
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000661// ECMA-262, section 9.2, page 30: ToBoolean(). Convert the given
662// register to a boolean in the condition code register. The code
663// may jump to 'false_target' in case the register converts to 'false'.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000664void CodeGenerator::ToBoolean(JumpTarget* true_target,
665 JumpTarget* false_target) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000666 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +0000667 // Note: The generated code snippet does not change stack variables.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000668 // Only the condition code should be set.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000669 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000670
671 // Fast case checks
672
mads.s.ager31e71382008-08-13 09:32:07 +0000673 // Check if the value is 'false'.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000674 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
675 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000676 false_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000677
mads.s.ager31e71382008-08-13 09:32:07 +0000678 // Check if the value is 'true'.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000679 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
680 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000681 true_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000682
mads.s.ager31e71382008-08-13 09:32:07 +0000683 // Check if the value is 'undefined'.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000684 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
685 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000686 false_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000687
mads.s.ager31e71382008-08-13 09:32:07 +0000688 // Check if the value is a smi.
689 __ cmp(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000690 false_target->Branch(eq);
mads.s.ager31e71382008-08-13 09:32:07 +0000691 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000692 true_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000693
694 // Slow case: call the runtime.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000695 frame_->EmitPush(r0);
696 frame_->CallRuntime(Runtime::kToBool, 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000697 // Convert the result (r0) to a condition code.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000698 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
699 __ cmp(r0, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000700
701 cc_reg_ = ne;
702}
703
704
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000705void CodeGenerator::GenericBinaryOperation(Token::Value op,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000706 OverwriteMode overwrite_mode,
707 int constant_rhs) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000708 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +0000709 // sp[0] : y
710 // sp[1] : x
711 // result : r0
712
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000713 // Stub is entered with a call: 'return address' is in lr.
714 switch (op) {
715 case Token::ADD: // fall through.
716 case Token::SUB: // fall through.
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000717 case Token::MUL:
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000718 case Token::DIV:
719 case Token::MOD:
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000720 case Token::BIT_OR:
721 case Token::BIT_AND:
722 case Token::BIT_XOR:
723 case Token::SHL:
724 case Token::SHR:
725 case Token::SAR: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000726 frame_->EmitPop(r0); // r0 : y
727 frame_->EmitPop(r1); // r1 : x
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000728 GenericBinaryOpStub stub(op, overwrite_mode, constant_rhs);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000729 frame_->CallStub(&stub, 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000730 break;
731 }
732
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000733 case Token::COMMA:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000734 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000735 // simply discard left value
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000736 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000737 break;
738
739 default:
740 // Other cases should have been handled before this point.
741 UNREACHABLE();
742 break;
743 }
744}
745
746
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000747class DeferredInlineSmiOperation: public DeferredCode {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000748 public:
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000749 DeferredInlineSmiOperation(Token::Value op,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000750 int value,
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000751 bool reversed,
752 OverwriteMode overwrite_mode)
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000753 : op_(op),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000754 value_(value),
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000755 reversed_(reversed),
756 overwrite_mode_(overwrite_mode) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000757 set_comment("[ DeferredInlinedSmiOperation");
758 }
759
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000760 virtual void Generate();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000761
762 private:
763 Token::Value op_;
764 int value_;
765 bool reversed_;
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000766 OverwriteMode overwrite_mode_;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000767};
768
769
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000770void DeferredInlineSmiOperation::Generate() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000771 switch (op_) {
772 case Token::ADD: {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000773 // Revert optimistic add.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000774 if (reversed_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000775 __ sub(r0, r0, Operand(Smi::FromInt(value_)));
776 __ mov(r1, Operand(Smi::FromInt(value_)));
777 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000778 __ sub(r1, r0, Operand(Smi::FromInt(value_)));
779 __ mov(r0, Operand(Smi::FromInt(value_)));
780 }
781 break;
782 }
783
784 case Token::SUB: {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000785 // Revert optimistic sub.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000786 if (reversed_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000787 __ rsb(r0, r0, Operand(Smi::FromInt(value_)));
788 __ mov(r1, Operand(Smi::FromInt(value_)));
789 } else {
790 __ add(r1, r0, Operand(Smi::FromInt(value_)));
791 __ mov(r0, Operand(Smi::FromInt(value_)));
792 }
793 break;
794 }
795
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000796 // For these operations there is no optimistic operation that needs to be
797 // reverted.
798 case Token::MUL:
799 case Token::MOD:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000800 case Token::BIT_OR:
801 case Token::BIT_XOR:
802 case Token::BIT_AND: {
803 if (reversed_) {
804 __ mov(r1, Operand(Smi::FromInt(value_)));
805 } else {
806 __ mov(r1, Operand(r0));
807 __ mov(r0, Operand(Smi::FromInt(value_)));
808 }
809 break;
810 }
811
812 case Token::SHL:
813 case Token::SHR:
814 case Token::SAR: {
815 if (!reversed_) {
816 __ mov(r1, Operand(r0));
817 __ mov(r0, Operand(Smi::FromInt(value_)));
818 } else {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000819 UNREACHABLE(); // Should have been handled in SmiOperation.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000820 }
821 break;
822 }
823
824 default:
ager@chromium.orge2902be2009-06-08 12:21:35 +0000825 // Other cases should have been handled before this point.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000826 UNREACHABLE();
827 break;
828 }
829
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000830 GenericBinaryOpStub stub(op_, overwrite_mode_, value_);
ager@chromium.orge2902be2009-06-08 12:21:35 +0000831 __ CallStub(&stub);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000832}
833
834
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000835static bool PopCountLessThanEqual2(unsigned int x) {
836 x &= x - 1;
837 return (x & (x - 1)) == 0;
838}
839
840
841// Returns the index of the lowest bit set.
842static int BitPosition(unsigned x) {
843 int bit_posn = 0;
844 while ((x & 0xf) == 0) {
845 bit_posn += 4;
846 x >>= 4;
847 }
848 while ((x & 1) == 0) {
849 bit_posn++;
850 x >>= 1;
851 }
852 return bit_posn;
853}
854
855
ager@chromium.org7c537e22008-10-16 08:43:32 +0000856void CodeGenerator::SmiOperation(Token::Value op,
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000857 Handle<Object> value,
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000858 bool reversed,
859 OverwriteMode mode) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000860 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000861 // NOTE: This is an attempt to inline (a bit) more of the code for
862 // some possible smi operations (like + and -) when (at least) one
863 // of the operands is a literal smi. With this optimization, the
864 // performance of the system is increased by ~15%, and the generated
865 // code size is increased by ~1% (measured on a combination of
866 // different benchmarks).
867
mads.s.ager31e71382008-08-13 09:32:07 +0000868 // sp[0] : operand
869
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000870 int int_value = Smi::cast(*value)->value();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000871
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000872 JumpTarget exit;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000873 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000874
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000875 bool something_to_inline = true;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000876 switch (op) {
877 case Token::ADD: {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000878 DeferredCode* deferred =
ager@chromium.orge2902be2009-06-08 12:21:35 +0000879 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000880
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000881 __ add(r0, r0, Operand(value), SetCC);
ager@chromium.orge2902be2009-06-08 12:21:35 +0000882 deferred->Branch(vs);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000883 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orge2902be2009-06-08 12:21:35 +0000884 deferred->Branch(ne);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000885 deferred->BindExit();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000886 break;
887 }
888
889 case Token::SUB: {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000890 DeferredCode* deferred =
ager@chromium.orge2902be2009-06-08 12:21:35 +0000891 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000892
ager@chromium.orge2902be2009-06-08 12:21:35 +0000893 if (reversed) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000894 __ rsb(r0, r0, Operand(value), SetCC);
ager@chromium.orge2902be2009-06-08 12:21:35 +0000895 } else {
896 __ sub(r0, r0, Operand(value), SetCC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000897 }
ager@chromium.orge2902be2009-06-08 12:21:35 +0000898 deferred->Branch(vs);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000899 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orge2902be2009-06-08 12:21:35 +0000900 deferred->Branch(ne);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000901 deferred->BindExit();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000902 break;
903 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000904
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000905
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000906 case Token::BIT_OR:
907 case Token::BIT_XOR:
908 case Token::BIT_AND: {
909 DeferredCode* deferred =
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000910 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000911 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orge2902be2009-06-08 12:21:35 +0000912 deferred->Branch(ne);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000913 switch (op) {
914 case Token::BIT_OR: __ orr(r0, r0, Operand(value)); break;
915 case Token::BIT_XOR: __ eor(r0, r0, Operand(value)); break;
916 case Token::BIT_AND: __ and_(r0, r0, Operand(value)); break;
917 default: UNREACHABLE();
918 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000919 deferred->BindExit();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000920 break;
921 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000922
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000923 case Token::SHL:
924 case Token::SHR:
925 case Token::SAR: {
926 if (reversed) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000927 something_to_inline = false;
928 break;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000929 }
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000930 int shift_value = int_value & 0x1f; // least significant 5 bits
931 DeferredCode* deferred =
932 new DeferredInlineSmiOperation(op, shift_value, false, mode);
933 __ tst(r0, Operand(kSmiTagMask));
934 deferred->Branch(ne);
935 __ mov(r2, Operand(r0, ASR, kSmiTagSize)); // remove tags
936 switch (op) {
937 case Token::SHL: {
938 if (shift_value != 0) {
939 __ mov(r2, Operand(r2, LSL, shift_value));
940 }
941 // check that the *unsigned* result fits in a smi
942 __ add(r3, r2, Operand(0x40000000), SetCC);
943 deferred->Branch(mi);
944 break;
945 }
946 case Token::SHR: {
947 // LSR by immediate 0 means shifting 32 bits.
948 if (shift_value != 0) {
949 __ mov(r2, Operand(r2, LSR, shift_value));
950 }
951 // check that the *unsigned* result fits in a smi
952 // neither of the two high-order bits can be set:
953 // - 0x80000000: high bit would be lost when smi tagging
954 // - 0x40000000: this number would convert to negative when
955 // smi tagging these two cases can only happen with shifts
956 // by 0 or 1 when handed a valid smi
957 __ and_(r3, r2, Operand(0xc0000000), SetCC);
958 deferred->Branch(ne);
959 break;
960 }
961 case Token::SAR: {
962 if (shift_value != 0) {
963 // ASR by immediate 0 means shifting 32 bits.
964 __ mov(r2, Operand(r2, ASR, shift_value));
965 }
966 break;
967 }
968 default: UNREACHABLE();
969 }
970 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
971 deferred->BindExit();
972 break;
973 }
974
975 case Token::MOD: {
976 if (reversed || int_value < 2 || !IsPowerOf2(int_value)) {
977 something_to_inline = false;
978 break;
979 }
980 DeferredCode* deferred =
981 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
982 unsigned mask = (0x80000000u | kSmiTagMask);
983 __ tst(r0, Operand(mask));
984 deferred->Branch(ne); // Go to deferred code on non-Smis and negative.
985 mask = (int_value << kSmiTagSize) - 1;
986 __ and_(r0, r0, Operand(mask));
987 deferred->BindExit();
988 break;
989 }
990
991 case Token::MUL: {
992 if (!IsEasyToMultiplyBy(int_value)) {
993 something_to_inline = false;
994 break;
995 }
996 DeferredCode* deferred =
997 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
998 unsigned max_smi_that_wont_overflow = Smi::kMaxValue / int_value;
999 max_smi_that_wont_overflow <<= kSmiTagSize;
1000 unsigned mask = 0x80000000u;
1001 while ((mask & max_smi_that_wont_overflow) == 0) {
1002 mask |= mask >> 1;
1003 }
1004 mask |= kSmiTagMask;
1005 // This does a single mask that checks for a too high value in a
1006 // conservative way and for a non-Smi. It also filters out negative
1007 // numbers, unfortunately, but since this code is inline we prefer
1008 // brevity to comprehensiveness.
1009 __ tst(r0, Operand(mask));
1010 deferred->Branch(ne);
1011 MultiplyByKnownInt(masm_, r0, r0, int_value);
1012 deferred->BindExit();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001013 break;
1014 }
1015
1016 default:
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001017 something_to_inline = false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001018 break;
1019 }
1020
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001021 if (!something_to_inline) {
1022 if (!reversed) {
1023 frame_->EmitPush(r0);
1024 __ mov(r0, Operand(value));
1025 frame_->EmitPush(r0);
1026 GenericBinaryOperation(op, mode, int_value);
1027 } else {
1028 __ mov(ip, Operand(value));
1029 frame_->EmitPush(ip);
1030 frame_->EmitPush(r0);
1031 GenericBinaryOperation(op, mode, kUnknownIntValue);
1032 }
1033 }
1034
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001035 exit.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001036}
1037
1038
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001039void CodeGenerator::Comparison(Condition cc,
1040 Expression* left,
1041 Expression* right,
1042 bool strict) {
1043 if (left != NULL) LoadAndSpill(left);
1044 if (right != NULL) LoadAndSpill(right);
1045
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001046 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +00001047 // sp[0] : y
1048 // sp[1] : x
1049 // result : cc register
1050
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001051 // Strict only makes sense for equality comparisons.
1052 ASSERT(!strict || cc == eq);
1053
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001054 JumpTarget exit;
1055 JumpTarget smi;
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001056 // Implement '>' and '<=' by reversal to obtain ECMA-262 conversion order.
1057 if (cc == gt || cc == le) {
1058 cc = ReverseCondition(cc);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001059 frame_->EmitPop(r1);
1060 frame_->EmitPop(r0);
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001061 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001062 frame_->EmitPop(r0);
1063 frame_->EmitPop(r1);
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001064 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001065 __ orr(r2, r0, Operand(r1));
1066 __ tst(r2, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001067 smi.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001068
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001069 // Perform non-smi comparison by stub.
1070 // CompareStub takes arguments in r0 and r1, returns <0, >0 or 0 in r0.
1071 // We call with 0 args because there are 0 on the stack.
1072 CompareStub stub(cc, strict);
1073 frame_->CallStub(&stub, 0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001074 __ cmp(r0, Operand(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001075 exit.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001076
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001077 // Do smi comparisons by pointer comparison.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001078 smi.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001079 __ cmp(r1, Operand(r0));
1080
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001081 exit.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001082 cc_reg_ = cc;
1083}
1084
1085
mads.s.ager31e71382008-08-13 09:32:07 +00001086// Call the function on the stack with the given arguments.
ager@chromium.org7c537e22008-10-16 08:43:32 +00001087void CodeGenerator::CallWithArguments(ZoneList<Expression*>* args,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001088 int position) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001089 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001090 // Push the arguments ("left-to-right") on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001091 int arg_count = args->length();
1092 for (int i = 0; i < arg_count; i++) {
1093 LoadAndSpill(args->at(i));
mads.s.ager31e71382008-08-13 09:32:07 +00001094 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001095
kasper.lund7276f142008-07-30 08:49:36 +00001096 // Record the position for debugging purposes.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001097 CodeForSourcePosition(position);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001098
kasper.lund7276f142008-07-30 08:49:36 +00001099 // Use the shared code stub to call the function.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001100 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
1101 CallFunctionStub call_function(arg_count, in_loop);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001102 frame_->CallStub(&call_function, arg_count + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001103
1104 // Restore context and pop function from the stack.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001105 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001106 frame_->Drop(); // discard the TOS
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001107}
1108
1109
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001110void CodeGenerator::Branch(bool if_true, JumpTarget* target) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001111 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001112 ASSERT(has_cc());
1113 Condition cc = if_true ? cc_reg_ : NegateCondition(cc_reg_);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001114 target->Branch(cc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001115 cc_reg_ = al;
1116}
1117
1118
ager@chromium.org7c537e22008-10-16 08:43:32 +00001119void CodeGenerator::CheckStack() {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001120 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3811b432009-10-28 14:53:37 +00001121 Comment cmnt(masm_, "[ check stack");
1122 __ LoadRoot(ip, Heap::kStackLimitRootIndex);
1123 // Put the lr setup instruction in the delay slot. kInstrSize is added to
1124 // the implicit 8 byte offset that always applies to operations with pc and
1125 // gives a return address 12 bytes down.
1126 masm_->add(lr, pc, Operand(Assembler::kInstrSize));
1127 masm_->cmp(sp, Operand(ip));
1128 StackCheckStub stub;
1129 // Call the stub if lower.
1130 masm_->mov(pc,
1131 Operand(reinterpret_cast<intptr_t>(stub.GetCode().location()),
1132 RelocInfo::CODE_TARGET),
1133 LeaveCC,
1134 lo);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001135}
1136
1137
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001138void CodeGenerator::VisitStatements(ZoneList<Statement*>* statements) {
1139#ifdef DEBUG
1140 int original_height = frame_->height();
1141#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001142 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001143 for (int i = 0; frame_ != NULL && i < statements->length(); i++) {
1144 VisitAndSpill(statements->at(i));
1145 }
1146 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1147}
1148
1149
ager@chromium.org7c537e22008-10-16 08:43:32 +00001150void CodeGenerator::VisitBlock(Block* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001151#ifdef DEBUG
1152 int original_height = frame_->height();
1153#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001154 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001155 Comment cmnt(masm_, "[ Block");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001156 CodeForStatementPosition(node);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001157 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001158 VisitStatementsAndSpill(node->statements());
1159 if (node->break_target()->is_linked()) {
1160 node->break_target()->Bind();
1161 }
1162 node->break_target()->Unuse();
1163 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001164}
1165
1166
ager@chromium.org7c537e22008-10-16 08:43:32 +00001167void CodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001168 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3811b432009-10-28 14:53:37 +00001169 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00001170 __ mov(r0, Operand(pairs));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001171 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001172 __ mov(r0, Operand(Smi::FromInt(is_eval() ? 1 : 0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001173 frame_->EmitPush(r0);
1174 frame_->CallRuntime(Runtime::kDeclareGlobals, 3);
mads.s.ager31e71382008-08-13 09:32:07 +00001175 // The result is discarded.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001176}
1177
1178
ager@chromium.org7c537e22008-10-16 08:43:32 +00001179void CodeGenerator::VisitDeclaration(Declaration* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001180#ifdef DEBUG
1181 int original_height = frame_->height();
1182#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001183 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001184 Comment cmnt(masm_, "[ Declaration");
1185 Variable* var = node->proxy()->var();
1186 ASSERT(var != NULL); // must have been resolved
1187 Slot* slot = var->slot();
1188
1189 // If it was not possible to allocate the variable at compile time,
1190 // we need to "declare" it at runtime to make sure it actually
1191 // exists in the local context.
1192 if (slot != NULL && slot->type() == Slot::LOOKUP) {
1193 // Variables with a "LOOKUP" slot were introduced as non-locals
1194 // during variable resolution and must have mode DYNAMIC.
ager@chromium.org381abbb2009-02-25 13:23:22 +00001195 ASSERT(var->is_dynamic());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001196 // For now, just do a runtime call.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001197 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00001198 __ mov(r0, Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001199 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001200 // Declaration nodes are always declared in only two modes.
1201 ASSERT(node->mode() == Variable::VAR || node->mode() == Variable::CONST);
1202 PropertyAttributes attr = node->mode() == Variable::VAR ? NONE : READ_ONLY;
mads.s.ager31e71382008-08-13 09:32:07 +00001203 __ mov(r0, Operand(Smi::FromInt(attr)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001204 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001205 // Push initial value, if any.
1206 // Note: For variables we must not push an initial value (such as
1207 // 'undefined') because we may have a (legal) redeclaration and we
1208 // must not destroy the current value.
1209 if (node->mode() == Variable::CONST) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001210 __ LoadRoot(r0, Heap::kTheHoleValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001211 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001212 } else if (node->fun() != NULL) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001213 LoadAndSpill(node->fun());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001214 } else {
mads.s.ager31e71382008-08-13 09:32:07 +00001215 __ mov(r0, Operand(0)); // no initial value!
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001216 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001217 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001218 frame_->CallRuntime(Runtime::kDeclareContextSlot, 4);
ager@chromium.org7c537e22008-10-16 08:43:32 +00001219 // Ignore the return value (declarations are statements).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001220 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001221 return;
1222 }
1223
1224 ASSERT(!var->is_global());
1225
1226 // If we have a function or a constant, we need to initialize the variable.
1227 Expression* val = NULL;
1228 if (node->mode() == Variable::CONST) {
1229 val = new Literal(Factory::the_hole_value());
1230 } else {
1231 val = node->fun(); // NULL if we don't have a function
1232 }
1233
1234 if (val != NULL) {
iposva@chromium.org245aa852009-02-10 00:49:54 +00001235 {
1236 // Set initial value.
1237 Reference target(this, node->proxy());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001238 LoadAndSpill(val);
iposva@chromium.org245aa852009-02-10 00:49:54 +00001239 target.SetValue(NOT_CONST_INIT);
1240 // The reference is removed from the stack (preserving TOS) when
1241 // it goes out of scope.
1242 }
1243 // Get rid of the assigned value (declarations are statements).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001244 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001245 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001246 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001247}
1248
1249
ager@chromium.org7c537e22008-10-16 08:43:32 +00001250void CodeGenerator::VisitExpressionStatement(ExpressionStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001251#ifdef DEBUG
1252 int original_height = frame_->height();
1253#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001254 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001255 Comment cmnt(masm_, "[ ExpressionStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001256 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001257 Expression* expression = node->expression();
1258 expression->MarkAsStatement();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001259 LoadAndSpill(expression);
1260 frame_->Drop();
1261 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001262}
1263
1264
ager@chromium.org7c537e22008-10-16 08:43:32 +00001265void CodeGenerator::VisitEmptyStatement(EmptyStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001266#ifdef DEBUG
1267 int original_height = frame_->height();
1268#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001269 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001270 Comment cmnt(masm_, "// EmptyStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001271 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001272 // nothing to do
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001273 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001274}
1275
1276
ager@chromium.org7c537e22008-10-16 08:43:32 +00001277void CodeGenerator::VisitIfStatement(IfStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001278#ifdef DEBUG
1279 int original_height = frame_->height();
1280#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001281 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001282 Comment cmnt(masm_, "[ IfStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001283 // Generate different code depending on which parts of the if statement
1284 // are present or not.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001285 bool has_then_stm = node->HasThenStatement();
1286 bool has_else_stm = node->HasElseStatement();
1287
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001288 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001289
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001290 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001291 if (has_then_stm && has_else_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00001292 Comment cmnt(masm_, "[ IfThenElse");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001293 JumpTarget then;
1294 JumpTarget else_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001295 // if (cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001296 LoadConditionAndSpill(node->condition(), &then, &else_, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001297 if (frame_ != NULL) {
1298 Branch(false, &else_);
1299 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001300 // then
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001301 if (frame_ != NULL || then.is_linked()) {
1302 then.Bind();
1303 VisitAndSpill(node->then_statement());
1304 }
1305 if (frame_ != NULL) {
1306 exit.Jump();
1307 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001308 // else
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001309 if (else_.is_linked()) {
1310 else_.Bind();
1311 VisitAndSpill(node->else_statement());
1312 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001313
1314 } else if (has_then_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00001315 Comment cmnt(masm_, "[ IfThen");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001316 ASSERT(!has_else_stm);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001317 JumpTarget then;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001318 // if (cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001319 LoadConditionAndSpill(node->condition(), &then, &exit, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001320 if (frame_ != NULL) {
1321 Branch(false, &exit);
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 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001328
1329 } else if (has_else_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00001330 Comment cmnt(masm_, "[ IfElse");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001331 ASSERT(!has_then_stm);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001332 JumpTarget else_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001333 // if (!cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001334 LoadConditionAndSpill(node->condition(), &exit, &else_, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001335 if (frame_ != NULL) {
1336 Branch(true, &exit);
1337 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001338 // else
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001339 if (frame_ != NULL || else_.is_linked()) {
1340 else_.Bind();
1341 VisitAndSpill(node->else_statement());
1342 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001343
1344 } else {
mads.s.ager31e71382008-08-13 09:32:07 +00001345 Comment cmnt(masm_, "[ If");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001346 ASSERT(!has_then_stm && !has_else_stm);
1347 // if (cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001348 LoadConditionAndSpill(node->condition(), &exit, &exit, false);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001349 if (frame_ != NULL) {
1350 if (has_cc()) {
1351 cc_reg_ = al;
1352 } else {
1353 frame_->Drop();
1354 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001355 }
1356 }
1357
1358 // end
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001359 if (exit.is_linked()) {
1360 exit.Bind();
1361 }
1362 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001363}
1364
1365
ager@chromium.org7c537e22008-10-16 08:43:32 +00001366void CodeGenerator::VisitContinueStatement(ContinueStatement* node) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001367 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001368 Comment cmnt(masm_, "[ ContinueStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001369 CodeForStatementPosition(node);
1370 node->target()->continue_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001371}
1372
1373
ager@chromium.org7c537e22008-10-16 08:43:32 +00001374void CodeGenerator::VisitBreakStatement(BreakStatement* node) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001375 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001376 Comment cmnt(masm_, "[ BreakStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001377 CodeForStatementPosition(node);
1378 node->target()->break_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001379}
1380
1381
ager@chromium.org7c537e22008-10-16 08:43:32 +00001382void CodeGenerator::VisitReturnStatement(ReturnStatement* node) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001383 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001384 Comment cmnt(masm_, "[ ReturnStatement");
mads.s.ager31e71382008-08-13 09:32:07 +00001385
ager@chromium.org4af710e2009-09-15 12:20:11 +00001386 CodeForStatementPosition(node);
1387 LoadAndSpill(node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001388 if (function_return_is_shadowed_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001389 frame_->EmitPop(r0);
1390 function_return_.Jump();
1391 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001392 // Pop the result from the frame and prepare the frame for
1393 // returning thus making it easier to merge.
1394 frame_->EmitPop(r0);
1395 frame_->PrepareForReturn();
1396
1397 function_return_.Jump();
1398 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001399}
1400
1401
ager@chromium.org7c537e22008-10-16 08:43:32 +00001402void CodeGenerator::VisitWithEnterStatement(WithEnterStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001403#ifdef DEBUG
1404 int original_height = frame_->height();
1405#endif
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_, "[ WithEnterStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001408 CodeForStatementPosition(node);
1409 LoadAndSpill(node->expression());
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001410 if (node->is_catch_block()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001411 frame_->CallRuntime(Runtime::kPushCatchContext, 1);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001412 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001413 frame_->CallRuntime(Runtime::kPushContext, 1);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001414 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001415#ifdef DEBUG
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001416 JumpTarget verified_true;
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001417 __ cmp(r0, Operand(cp));
1418 verified_true.Branch(eq);
1419 __ stop("PushContext: r0 is expected to be the same as cp");
1420 verified_true.Bind();
1421#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001422 // Update context local.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001423 __ str(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001424 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001425}
1426
1427
ager@chromium.org7c537e22008-10-16 08:43:32 +00001428void CodeGenerator::VisitWithExitStatement(WithExitStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001429#ifdef DEBUG
1430 int original_height = frame_->height();
1431#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001432 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001433 Comment cmnt(masm_, "[ WithExitStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001434 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001435 // Pop context.
1436 __ ldr(cp, ContextOperand(cp, Context::PREVIOUS_INDEX));
1437 // Update context local.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001438 __ str(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001439 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001440}
1441
1442
ager@chromium.org7c537e22008-10-16 08:43:32 +00001443void CodeGenerator::VisitSwitchStatement(SwitchStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001444#ifdef DEBUG
1445 int original_height = frame_->height();
1446#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001447 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001448 Comment cmnt(masm_, "[ SwitchStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001449 CodeForStatementPosition(node);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001450 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001451
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001452 LoadAndSpill(node->tag());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00001453
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001454 JumpTarget next_test;
1455 JumpTarget fall_through;
1456 JumpTarget default_entry;
1457 JumpTarget default_exit(JumpTarget::BIDIRECTIONAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001458 ZoneList<CaseClause*>* cases = node->cases();
1459 int length = cases->length();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001460 CaseClause* default_clause = NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001461
1462 for (int i = 0; i < length; i++) {
1463 CaseClause* clause = cases->at(i);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001464 if (clause->is_default()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001465 // Remember the default clause and compile it at the end.
1466 default_clause = clause;
1467 continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001468 }
1469
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001470 Comment cmnt(masm_, "[ Case clause");
1471 // Compile the test.
1472 next_test.Bind();
1473 next_test.Unuse();
1474 // Duplicate TOS.
1475 __ ldr(r0, frame_->Top());
1476 frame_->EmitPush(r0);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001477 Comparison(eq, NULL, clause->label(), true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001478 Branch(false, &next_test);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001479
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001480 // Before entering the body from the test, remove the switch value from
1481 // the stack.
1482 frame_->Drop();
1483
1484 // Label the body so that fall through is enabled.
1485 if (i > 0 && cases->at(i - 1)->is_default()) {
1486 default_exit.Bind();
1487 } else {
1488 fall_through.Bind();
1489 fall_through.Unuse();
1490 }
1491 VisitStatementsAndSpill(clause->statements());
1492
1493 // If control flow can fall through from the body, jump to the next body
1494 // or the end of the statement.
1495 if (frame_ != NULL) {
1496 if (i < length - 1 && cases->at(i + 1)->is_default()) {
1497 default_entry.Jump();
1498 } else {
1499 fall_through.Jump();
1500 }
1501 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001502 }
1503
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001504 // The final "test" removes the switch value.
1505 next_test.Bind();
1506 frame_->Drop();
1507
1508 // If there is a default clause, compile it.
1509 if (default_clause != NULL) {
1510 Comment cmnt(masm_, "[ Default clause");
1511 default_entry.Bind();
1512 VisitStatementsAndSpill(default_clause->statements());
1513 // If control flow can fall out of the default and there is a case after
1514 // it, jup to that case's body.
1515 if (frame_ != NULL && default_exit.is_bound()) {
1516 default_exit.Jump();
1517 }
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001518 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001519
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001520 if (fall_through.is_linked()) {
1521 fall_through.Bind();
1522 }
1523
1524 if (node->break_target()->is_linked()) {
1525 node->break_target()->Bind();
1526 }
1527 node->break_target()->Unuse();
1528 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001529}
1530
1531
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001532void CodeGenerator::VisitDoWhileStatement(DoWhileStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001533#ifdef DEBUG
1534 int original_height = frame_->height();
1535#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001536 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001537 Comment cmnt(masm_, "[ DoWhileStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001538 CodeForStatementPosition(node);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001539 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001540 JumpTarget body(JumpTarget::BIDIRECTIONAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001541
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001542 // Label the top of the loop for the backward CFG edge. If the test
1543 // is always true we can use the continue target, and if the test is
1544 // always false there is no need.
1545 ConditionAnalysis info = AnalyzeCondition(node->cond());
1546 switch (info) {
1547 case ALWAYS_TRUE:
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001548 node->continue_target()->set_direction(JumpTarget::BIDIRECTIONAL);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001549 node->continue_target()->Bind();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001550 break;
1551 case ALWAYS_FALSE:
1552 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
1553 break;
1554 case DONT_KNOW:
1555 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
1556 body.Bind();
1557 break;
1558 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001559
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001560 CheckStack(); // TODO(1222600): ignore if body contains calls.
1561 VisitAndSpill(node->body());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001562
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001563 // Compile the test.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001564 switch (info) {
1565 case ALWAYS_TRUE:
1566 // If control can fall off the end of the body, jump back to the
1567 // top.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001568 if (has_valid_frame()) {
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001569 node->continue_target()->Jump();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001570 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001571 break;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001572 case ALWAYS_FALSE:
1573 // If we have a continue in the body, we only have to bind its
1574 // jump target.
1575 if (node->continue_target()->is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001576 node->continue_target()->Bind();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001577 }
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001578 break;
1579 case DONT_KNOW:
1580 // We have to compile the test expression if it can be reached by
1581 // control flow falling out of the body or via continue.
1582 if (node->continue_target()->is_linked()) {
1583 node->continue_target()->Bind();
1584 }
1585 if (has_valid_frame()) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001586 Comment cmnt(masm_, "[ DoWhileCondition");
1587 CodeForDoWhileConditionPosition(node);
1588 LoadConditionAndSpill(node->cond(), &body, node->break_target(), true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001589 if (has_valid_frame()) {
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001590 // A invalid frame here indicates that control did not
1591 // fall out of the test expression.
1592 Branch(true, &body);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001593 }
1594 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001595 break;
1596 }
1597
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001598 if (node->break_target()->is_linked()) {
1599 node->break_target()->Bind();
1600 }
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001601 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1602}
1603
1604
1605void CodeGenerator::VisitWhileStatement(WhileStatement* node) {
1606#ifdef DEBUG
1607 int original_height = frame_->height();
1608#endif
1609 VirtualFrame::SpilledScope spilled_scope;
1610 Comment cmnt(masm_, "[ WhileStatement");
1611 CodeForStatementPosition(node);
1612
1613 // If the test is never true and has no side effects there is no need
1614 // to compile the test or body.
1615 ConditionAnalysis info = AnalyzeCondition(node->cond());
1616 if (info == ALWAYS_FALSE) return;
1617
1618 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
1619
1620 // Label the top of the loop with the continue target for the backward
1621 // CFG edge.
1622 node->continue_target()->set_direction(JumpTarget::BIDIRECTIONAL);
1623 node->continue_target()->Bind();
1624
1625 if (info == DONT_KNOW) {
1626 JumpTarget body;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001627 LoadConditionAndSpill(node->cond(), &body, node->break_target(), true);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001628 if (has_valid_frame()) {
1629 // A NULL frame indicates that control did not fall out of the
1630 // test expression.
1631 Branch(false, node->break_target());
1632 }
1633 if (has_valid_frame() || body.is_linked()) {
1634 body.Bind();
1635 }
1636 }
1637
1638 if (has_valid_frame()) {
1639 CheckStack(); // TODO(1222600): ignore if body contains calls.
1640 VisitAndSpill(node->body());
1641
1642 // If control flow can fall out of the body, jump back to the top.
1643 if (has_valid_frame()) {
1644 node->continue_target()->Jump();
1645 }
1646 }
1647 if (node->break_target()->is_linked()) {
1648 node->break_target()->Bind();
1649 }
1650 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1651}
1652
1653
1654void CodeGenerator::VisitForStatement(ForStatement* node) {
1655#ifdef DEBUG
1656 int original_height = frame_->height();
1657#endif
1658 VirtualFrame::SpilledScope spilled_scope;
1659 Comment cmnt(masm_, "[ ForStatement");
1660 CodeForStatementPosition(node);
1661 if (node->init() != NULL) {
1662 VisitAndSpill(node->init());
1663 }
1664
1665 // If the test is never true there is no need to compile the test or
1666 // body.
1667 ConditionAnalysis info = AnalyzeCondition(node->cond());
1668 if (info == ALWAYS_FALSE) return;
1669
1670 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
1671
1672 // If there is no update statement, label the top of the loop with the
1673 // continue target, otherwise with the loop target.
1674 JumpTarget loop(JumpTarget::BIDIRECTIONAL);
1675 if (node->next() == NULL) {
1676 node->continue_target()->set_direction(JumpTarget::BIDIRECTIONAL);
1677 node->continue_target()->Bind();
1678 } else {
1679 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
1680 loop.Bind();
1681 }
1682
1683 // If the test is always true, there is no need to compile it.
1684 if (info == DONT_KNOW) {
1685 JumpTarget body;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001686 LoadConditionAndSpill(node->cond(), &body, node->break_target(), true);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001687 if (has_valid_frame()) {
1688 Branch(false, node->break_target());
1689 }
1690 if (has_valid_frame() || body.is_linked()) {
1691 body.Bind();
1692 }
1693 }
1694
1695 if (has_valid_frame()) {
1696 CheckStack(); // TODO(1222600): ignore if body contains calls.
1697 VisitAndSpill(node->body());
1698
1699 if (node->next() == NULL) {
1700 // If there is no update statement and control flow can fall out
1701 // of the loop, jump directly to the continue label.
1702 if (has_valid_frame()) {
1703 node->continue_target()->Jump();
1704 }
1705 } else {
1706 // If there is an update statement and control flow can reach it
1707 // via falling out of the body of the loop or continuing, we
1708 // compile the update statement.
1709 if (node->continue_target()->is_linked()) {
1710 node->continue_target()->Bind();
1711 }
1712 if (has_valid_frame()) {
1713 // Record source position of the statement as this code which is
1714 // after the code for the body actually belongs to the loop
1715 // statement and not the body.
1716 CodeForStatementPosition(node);
1717 VisitAndSpill(node->next());
1718 loop.Jump();
1719 }
1720 }
1721 }
1722 if (node->break_target()->is_linked()) {
1723 node->break_target()->Bind();
1724 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001725 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001726}
1727
1728
ager@chromium.org7c537e22008-10-16 08:43:32 +00001729void CodeGenerator::VisitForInStatement(ForInStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001730#ifdef DEBUG
1731 int original_height = frame_->height();
1732#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001733 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001734 Comment cmnt(masm_, "[ ForInStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001735 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001736
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001737 JumpTarget primitive;
1738 JumpTarget jsobject;
1739 JumpTarget fixed_array;
1740 JumpTarget entry(JumpTarget::BIDIRECTIONAL);
1741 JumpTarget end_del_check;
1742 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001743
1744 // Get the object to enumerate over (converted to JSObject).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001745 LoadAndSpill(node->enumerable());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001746
1747 // Both SpiderMonkey and kjs ignore null and undefined in contrast
1748 // to the specification. 12.6.4 mandates a call to ToObject.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001749 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001750 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
1751 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001752 exit.Branch(eq);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001753 __ LoadRoot(ip, Heap::kNullValueRootIndex);
1754 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001755 exit.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001756
1757 // Stack layout in body:
1758 // [iteration counter (Smi)]
1759 // [length of array]
1760 // [FixedArray]
1761 // [Map or 0]
1762 // [Object]
1763
1764 // Check if enumerable is already a JSObject
1765 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001766 primitive.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00001767 __ CompareObjectType(r0, r1, r1, FIRST_JS_OBJECT_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001768 jsobject.Branch(hs);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001769
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001770 primitive.Bind();
1771 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001772 Result arg_count(r0);
1773 __ mov(r0, Operand(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001774 frame_->InvokeBuiltin(Builtins::TO_OBJECT, CALL_JS, &arg_count, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001775
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001776 jsobject.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001777 // Get the set of properties (as a FixedArray or Map).
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001778 // r0: value to be iterated over
1779 frame_->EmitPush(r0); // Push the object being iterated over.
1780
1781 // Check cache validity in generated code. This is a fast case for
1782 // the JSObject::IsSimpleEnum cache validity checks. If we cannot
1783 // guarantee cache validity, call the runtime system to check cache
1784 // validity or get the property names in a fixed array.
1785 JumpTarget call_runtime;
1786 JumpTarget loop(JumpTarget::BIDIRECTIONAL);
1787 JumpTarget check_prototype;
1788 JumpTarget use_cache;
1789 __ mov(r1, Operand(r0));
1790 loop.Bind();
1791 // Check that there are no elements.
1792 __ ldr(r2, FieldMemOperand(r1, JSObject::kElementsOffset));
1793 __ LoadRoot(r4, Heap::kEmptyFixedArrayRootIndex);
1794 __ cmp(r2, r4);
1795 call_runtime.Branch(ne);
1796 // Check that instance descriptors are not empty so that we can
1797 // check for an enum cache. Leave the map in r3 for the subsequent
1798 // prototype load.
1799 __ ldr(r3, FieldMemOperand(r1, HeapObject::kMapOffset));
1800 __ ldr(r2, FieldMemOperand(r3, Map::kInstanceDescriptorsOffset));
1801 __ LoadRoot(ip, Heap::kEmptyDescriptorArrayRootIndex);
1802 __ cmp(r2, ip);
1803 call_runtime.Branch(eq);
1804 // Check that there in an enum cache in the non-empty instance
1805 // descriptors. This is the case if the next enumeration index
1806 // field does not contain a smi.
1807 __ ldr(r2, FieldMemOperand(r2, DescriptorArray::kEnumerationIndexOffset));
1808 __ tst(r2, Operand(kSmiTagMask));
1809 call_runtime.Branch(eq);
1810 // For all objects but the receiver, check that the cache is empty.
1811 // r4: empty fixed array root.
1812 __ cmp(r1, r0);
1813 check_prototype.Branch(eq);
1814 __ ldr(r2, FieldMemOperand(r2, DescriptorArray::kEnumCacheBridgeCacheOffset));
1815 __ cmp(r2, r4);
1816 call_runtime.Branch(ne);
1817 check_prototype.Bind();
1818 // Load the prototype from the map and loop if non-null.
1819 __ ldr(r1, FieldMemOperand(r3, Map::kPrototypeOffset));
1820 __ LoadRoot(ip, Heap::kNullValueRootIndex);
1821 __ cmp(r1, ip);
1822 loop.Branch(ne);
1823 // The enum cache is valid. Load the map of the object being
1824 // iterated over and use the cache for the iteration.
1825 __ ldr(r0, FieldMemOperand(r0, HeapObject::kMapOffset));
1826 use_cache.Jump();
1827
1828 call_runtime.Bind();
1829 // Call the runtime to get the property names for the object.
1830 frame_->EmitPush(r0); // push the object (slot 4) for the runtime call
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001831 frame_->CallRuntime(Runtime::kGetPropertyNamesFast, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001832
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001833 // If we got a map from the runtime call, we can do a fast
1834 // modification check. Otherwise, we got a fixed array, and we have
1835 // to do a slow check.
1836 // r0: map or fixed array (result from call to
1837 // Runtime::kGetPropertyNamesFast)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001838 __ mov(r2, Operand(r0));
1839 __ ldr(r1, FieldMemOperand(r2, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001840 __ LoadRoot(ip, Heap::kMetaMapRootIndex);
1841 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001842 fixed_array.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001843
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001844 use_cache.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001845 // Get enum cache
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001846 // r0: map (either the result from a call to
1847 // Runtime::kGetPropertyNamesFast or has been fetched directly from
1848 // the object)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001849 __ mov(r1, Operand(r0));
1850 __ ldr(r1, FieldMemOperand(r1, Map::kInstanceDescriptorsOffset));
1851 __ ldr(r1, FieldMemOperand(r1, DescriptorArray::kEnumerationIndexOffset));
1852 __ ldr(r2,
1853 FieldMemOperand(r1, DescriptorArray::kEnumCacheBridgeCacheOffset));
1854
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001855 frame_->EmitPush(r0); // map
1856 frame_->EmitPush(r2); // enum cache bridge cache
mads.s.ager31e71382008-08-13 09:32:07 +00001857 __ ldr(r0, FieldMemOperand(r2, FixedArray::kLengthOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001858 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001859 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001860 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001861 frame_->EmitPush(r0);
1862 entry.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001863
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001864 fixed_array.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001865 __ mov(r1, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001866 frame_->EmitPush(r1); // insert 0 in place of Map
1867 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001868
1869 // Push the length of the array and the initial index onto the stack.
mads.s.ager31e71382008-08-13 09:32:07 +00001870 __ ldr(r0, FieldMemOperand(r0, FixedArray::kLengthOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001871 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001872 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001873 __ mov(r0, Operand(Smi::FromInt(0))); // init index
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001874 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001875
1876 // Condition.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001877 entry.Bind();
mads.s.ager31e71382008-08-13 09:32:07 +00001878 // sp[0] : index
1879 // sp[1] : array/enum cache length
1880 // sp[2] : array or enum cache
1881 // sp[3] : 0 or map
1882 // sp[4] : enumerable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001883 // Grab the current frame's height for the break and continue
1884 // targets only after all the state is pushed on the frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001885 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
1886 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001887
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001888 __ ldr(r0, frame_->ElementAt(0)); // load the current count
1889 __ ldr(r1, frame_->ElementAt(1)); // load the length
1890 __ cmp(r0, Operand(r1)); // compare to the array length
1891 node->break_target()->Branch(hs);
1892
1893 __ ldr(r0, frame_->ElementAt(0));
mads.s.ager31e71382008-08-13 09:32:07 +00001894
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001895 // Get the i'th entry of the array.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001896 __ ldr(r2, frame_->ElementAt(2));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001897 __ add(r2, r2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
1898 __ ldr(r3, MemOperand(r2, r0, LSL, kPointerSizeLog2 - kSmiTagSize));
1899
1900 // Get Map or 0.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001901 __ ldr(r2, frame_->ElementAt(3));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001902 // Check if this (still) matches the map of the enumerable.
1903 // If not, we have to filter the key.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001904 __ ldr(r1, frame_->ElementAt(4));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001905 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
1906 __ cmp(r1, Operand(r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001907 end_del_check.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001908
1909 // Convert the entry to a string (or null if it isn't a property anymore).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001910 __ ldr(r0, frame_->ElementAt(4)); // push enumerable
1911 frame_->EmitPush(r0);
1912 frame_->EmitPush(r3); // push entry
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001913 Result arg_count_reg(r0);
1914 __ mov(r0, Operand(1));
1915 frame_->InvokeBuiltin(Builtins::FILTER_KEY, CALL_JS, &arg_count_reg, 2);
1916 __ mov(r3, Operand(r0));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001917
1918 // If the property has been removed while iterating, we just skip it.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001919 __ LoadRoot(ip, Heap::kNullValueRootIndex);
1920 __ cmp(r3, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001921 node->continue_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001922
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001923 end_del_check.Bind();
1924 // Store the entry in the 'each' expression and take another spin in the
1925 // loop. r3: i'th entry of the enum cache (or string there of)
1926 frame_->EmitPush(r3); // push entry
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001927 { Reference each(this, node->each());
1928 if (!each.is_illegal()) {
mads.s.ager31e71382008-08-13 09:32:07 +00001929 if (each.size() > 0) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001930 __ ldr(r0, frame_->ElementAt(each.size()));
1931 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001932 }
ager@chromium.org7c537e22008-10-16 08:43:32 +00001933 // If the reference was to a slot we rely on the convenient property
1934 // that it doesn't matter whether a value (eg, r3 pushed above) is
1935 // right on top of or right underneath a zero-sized reference.
1936 each.SetValue(NOT_CONST_INIT);
mads.s.ager31e71382008-08-13 09:32:07 +00001937 if (each.size() > 0) {
ager@chromium.org7c537e22008-10-16 08:43:32 +00001938 // It's safe to pop the value lying on top of the reference before
1939 // unloading the reference itself (which preserves the top of stack,
1940 // ie, now the topmost value of the non-zero sized reference), since
1941 // we will discard the top of stack after unloading the reference
1942 // anyway.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001943 frame_->EmitPop(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001944 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001945 }
1946 }
ager@chromium.org7c537e22008-10-16 08:43:32 +00001947 // Discard the i'th entry pushed above or else the remainder of the
1948 // reference, whichever is currently on top of the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001949 frame_->Drop();
1950
1951 // Body.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001952 CheckStack(); // TODO(1222600): ignore if body contains calls.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001953 VisitAndSpill(node->body());
1954
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001955 // Next. Reestablish a spilled frame in case we are coming here via
1956 // a continue in the body.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001957 node->continue_target()->Bind();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001958 frame_->SpillAll();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001959 frame_->EmitPop(r0);
1960 __ add(r0, r0, Operand(Smi::FromInt(1)));
1961 frame_->EmitPush(r0);
1962 entry.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001963
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001964 // Cleanup. No need to spill because VirtualFrame::Drop is safe for
1965 // any frame.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001966 node->break_target()->Bind();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001967 frame_->Drop(5);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001968
1969 // Exit.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001970 exit.Bind();
1971 node->continue_target()->Unuse();
1972 node->break_target()->Unuse();
1973 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001974}
1975
1976
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001977void CodeGenerator::VisitTryCatchStatement(TryCatchStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001978#ifdef DEBUG
1979 int original_height = frame_->height();
1980#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001981 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001982 Comment cmnt(masm_, "[ TryCatchStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001983 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001984
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001985 JumpTarget try_block;
1986 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001987
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001988 try_block.Call();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001989 // --- Catch block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001990 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001991
1992 // Store the caught exception in the catch variable.
1993 { Reference ref(this, node->catch_var());
ager@chromium.org7c537e22008-10-16 08:43:32 +00001994 ASSERT(ref.is_slot());
1995 // Here we make use of the convenient property that it doesn't matter
1996 // whether a value is immediately on top of or underneath a zero-sized
1997 // reference.
1998 ref.SetValue(NOT_CONST_INIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001999 }
2000
2001 // Remove the exception from the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002002 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002003
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002004 VisitStatementsAndSpill(node->catch_block()->statements());
2005 if (frame_ != NULL) {
2006 exit.Jump();
2007 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002008
2009
2010 // --- Try block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002011 try_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002012
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002013 frame_->PushTryHandler(TRY_CATCH_HANDLER);
2014 int handler_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002015
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002016 // Shadow the labels for all escapes from the try block, including
2017 // returns. During shadowing, the original label is hidden as the
2018 // LabelShadow and operations on the original actually affect the
2019 // shadowing label.
2020 //
2021 // We should probably try to unify the escaping labels and the return
2022 // label.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002023 int nof_escapes = node->escaping_targets()->length();
2024 List<ShadowTarget*> shadows(1 + nof_escapes);
2025
2026 // Add the shadow target for the function return.
2027 static const int kReturnShadowIndex = 0;
2028 shadows.Add(new ShadowTarget(&function_return_));
2029 bool function_return_was_shadowed = function_return_is_shadowed_;
2030 function_return_is_shadowed_ = true;
2031 ASSERT(shadows[kReturnShadowIndex]->other_target() == &function_return_);
2032
2033 // Add the remaining shadow targets.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002034 for (int i = 0; i < nof_escapes; i++) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002035 shadows.Add(new ShadowTarget(node->escaping_targets()->at(i)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002036 }
2037
2038 // Generate code for the statements in the try block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002039 VisitStatementsAndSpill(node->try_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002040
2041 // Stop the introduced shadowing and count the number of required unlinks.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002042 // After shadowing stops, the original labels are unshadowed and the
2043 // LabelShadows represent the formerly shadowing labels.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002044 bool has_unlinks = false;
2045 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002046 shadows[i]->StopShadowing();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002047 has_unlinks = has_unlinks || shadows[i]->is_linked();
2048 }
2049 function_return_is_shadowed_ = function_return_was_shadowed;
2050
2051 // Get an external reference to the handler address.
2052 ExternalReference handler_address(Top::k_handler_address);
2053
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002054 // If we can fall off the end of the try block, unlink from try chain.
2055 if (has_valid_frame()) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002056 // The next handler address is on top of the frame. Unlink from
2057 // the handler list and drop the rest of this handler from the
2058 // frame.
2059 ASSERT(StackHandlerConstants::kNextOffset == 0);
2060 frame_->EmitPop(r1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002061 __ mov(r3, Operand(handler_address));
2062 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002063 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002064 if (has_unlinks) {
2065 exit.Jump();
2066 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002067 }
2068
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002069 // Generate unlink code for the (formerly) shadowing labels that have been
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002070 // jumped to. Deallocate each shadow target.
2071 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002072 if (shadows[i]->is_linked()) {
mads.s.ager31e71382008-08-13 09:32:07 +00002073 // Unlink from try chain;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002074 shadows[i]->Bind();
2075 // Because we can be jumping here (to spilled code) from unspilled
2076 // code, we need to reestablish a spilled frame at this block.
2077 frame_->SpillAll();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002078
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002079 // Reload sp from the top handler, because some statements that we
2080 // break from (eg, for...in) may have left stuff on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002081 __ mov(r3, Operand(handler_address));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002082 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002083 frame_->Forget(frame_->height() - handler_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002084
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002085 ASSERT(StackHandlerConstants::kNextOffset == 0);
2086 frame_->EmitPop(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002087 __ str(r1, MemOperand(r3));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002088 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002089
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002090 if (!function_return_is_shadowed_ && i == kReturnShadowIndex) {
2091 frame_->PrepareForReturn();
2092 }
2093 shadows[i]->other_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002094 }
2095 }
2096
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002097 exit.Bind();
2098 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002099}
2100
2101
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002102void CodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002103#ifdef DEBUG
2104 int original_height = frame_->height();
2105#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002106 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002107 Comment cmnt(masm_, "[ TryFinallyStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002108 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002109
2110 // State: Used to keep track of reason for entering the finally
2111 // block. Should probably be extended to hold information for
2112 // break/continue from within the try block.
2113 enum { FALLING, THROWING, JUMPING };
2114
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002115 JumpTarget try_block;
2116 JumpTarget finally_block;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002117
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002118 try_block.Call();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002119
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002120 frame_->EmitPush(r0); // save exception object on the stack
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002121 // In case of thrown exceptions, this is where we continue.
2122 __ mov(r2, Operand(Smi::FromInt(THROWING)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002123 finally_block.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002124
2125 // --- Try block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002126 try_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002127
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002128 frame_->PushTryHandler(TRY_FINALLY_HANDLER);
2129 int handler_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002130
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002131 // Shadow the labels for all escapes from the try block, including
2132 // returns. Shadowing hides the original label as the LabelShadow and
2133 // operations on the original actually affect the shadowing label.
2134 //
2135 // We should probably try to unify the escaping labels and the return
2136 // label.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002137 int nof_escapes = node->escaping_targets()->length();
2138 List<ShadowTarget*> shadows(1 + nof_escapes);
2139
2140 // Add the shadow target for the function return.
2141 static const int kReturnShadowIndex = 0;
2142 shadows.Add(new ShadowTarget(&function_return_));
2143 bool function_return_was_shadowed = function_return_is_shadowed_;
2144 function_return_is_shadowed_ = true;
2145 ASSERT(shadows[kReturnShadowIndex]->other_target() == &function_return_);
2146
2147 // Add the remaining shadow targets.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002148 for (int i = 0; i < nof_escapes; i++) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002149 shadows.Add(new ShadowTarget(node->escaping_targets()->at(i)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002150 }
2151
2152 // Generate code for the statements in the try block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002153 VisitStatementsAndSpill(node->try_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002154
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002155 // Stop the introduced shadowing and count the number of required unlinks.
2156 // After shadowing stops, the original labels are unshadowed and the
2157 // LabelShadows represent the formerly shadowing labels.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002158 int nof_unlinks = 0;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002159 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002160 shadows[i]->StopShadowing();
2161 if (shadows[i]->is_linked()) nof_unlinks++;
2162 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002163 function_return_is_shadowed_ = function_return_was_shadowed;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002164
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002165 // Get an external reference to the handler address.
2166 ExternalReference handler_address(Top::k_handler_address);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002167
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002168 // If we can fall off the end of the try block, unlink from the try
2169 // chain and set the state on the frame to FALLING.
2170 if (has_valid_frame()) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002171 // The next handler address is on top of the frame.
2172 ASSERT(StackHandlerConstants::kNextOffset == 0);
2173 frame_->EmitPop(r1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002174 __ mov(r3, Operand(handler_address));
2175 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002176 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002177
2178 // Fake a top of stack value (unneeded when FALLING) and set the
2179 // state in r2, then jump around the unlink blocks if any.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002180 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002181 frame_->EmitPush(r0);
2182 __ mov(r2, Operand(Smi::FromInt(FALLING)));
2183 if (nof_unlinks > 0) {
2184 finally_block.Jump();
2185 }
2186 }
2187
2188 // Generate code to unlink and set the state for the (formerly)
2189 // shadowing targets that have been jumped to.
2190 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002191 if (shadows[i]->is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002192 // If we have come from the shadowed return, the return value is
2193 // in (a non-refcounted reference to) r0. We must preserve it
2194 // until it is pushed.
2195 //
2196 // Because we can be jumping here (to spilled code) from
2197 // unspilled code, we need to reestablish a spilled frame at
2198 // this block.
2199 shadows[i]->Bind();
2200 frame_->SpillAll();
2201
2202 // Reload sp from the top handler, because some statements that
2203 // we break from (eg, for...in) may have left stuff on the
2204 // stack.
2205 __ mov(r3, Operand(handler_address));
2206 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002207 frame_->Forget(frame_->height() - handler_height);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002208
2209 // Unlink this handler and drop it from the frame. The next
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002210 // handler address is currently on top of the frame.
2211 ASSERT(StackHandlerConstants::kNextOffset == 0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002212 frame_->EmitPop(r1);
2213 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002214 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002215
2216 if (i == kReturnShadowIndex) {
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002217 // If this label shadowed the function return, materialize the
2218 // return value on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002219 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002220 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002221 // Fake TOS for targets that shadowed breaks and continues.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002222 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002223 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002224 }
2225 __ mov(r2, Operand(Smi::FromInt(JUMPING + i)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002226 if (--nof_unlinks > 0) {
2227 // If this is not the last unlink block, jump around the next.
2228 finally_block.Jump();
2229 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002230 }
2231 }
2232
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002233 // --- Finally block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002234 finally_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002235
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002236 // Push the state on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002237 frame_->EmitPush(r2);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002238
2239 // We keep two elements on the stack - the (possibly faked) result
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002240 // and the state - while evaluating the finally block.
2241 //
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002242 // Generate code for the statements in the finally block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002243 VisitStatementsAndSpill(node->finally_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002244
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002245 if (has_valid_frame()) {
2246 // Restore state and return value or faked TOS.
2247 frame_->EmitPop(r2);
2248 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002249 }
2250
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002251 // Generate code to jump to the right destination for all used
2252 // formerly shadowing targets. Deallocate each shadow target.
2253 for (int i = 0; i < shadows.length(); i++) {
2254 if (has_valid_frame() && shadows[i]->is_bound()) {
2255 JumpTarget* original = shadows[i]->other_target();
2256 __ cmp(r2, Operand(Smi::FromInt(JUMPING + i)));
2257 if (!function_return_is_shadowed_ && i == kReturnShadowIndex) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002258 JumpTarget skip;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002259 skip.Branch(ne);
2260 frame_->PrepareForReturn();
2261 original->Jump();
2262 skip.Bind();
2263 } else {
2264 original->Branch(eq);
2265 }
2266 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002267 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002268
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002269 if (has_valid_frame()) {
2270 // Check if we need to rethrow the exception.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002271 JumpTarget exit;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002272 __ cmp(r2, Operand(Smi::FromInt(THROWING)));
2273 exit.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002274
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002275 // Rethrow exception.
2276 frame_->EmitPush(r0);
2277 frame_->CallRuntime(Runtime::kReThrow, 1);
2278
2279 // Done.
2280 exit.Bind();
2281 }
2282 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002283}
2284
2285
ager@chromium.org7c537e22008-10-16 08:43:32 +00002286void CodeGenerator::VisitDebuggerStatement(DebuggerStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002287#ifdef DEBUG
2288 int original_height = frame_->height();
2289#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002290 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002291 Comment cmnt(masm_, "[ DebuggerStatament");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002292 CodeForStatementPosition(node);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002293#ifdef ENABLE_DEBUGGER_SUPPORT
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002294 frame_->CallRuntime(Runtime::kDebugBreak, 0);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002295#endif
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00002296 // Ignore the return value.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002297 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002298}
2299
2300
ager@chromium.org7c537e22008-10-16 08:43:32 +00002301void CodeGenerator::InstantiateBoilerplate(Handle<JSFunction> boilerplate) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002302 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002303 ASSERT(boilerplate->IsBoilerplate());
2304
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002305 // Create a new closure.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002306 frame_->EmitPush(cp);
ager@chromium.org3811b432009-10-28 14:53:37 +00002307 __ mov(r0, Operand(boilerplate));
2308 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002309 frame_->CallRuntime(Runtime::kNewClosure, 2);
2310 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002311}
2312
2313
ager@chromium.org7c537e22008-10-16 08:43:32 +00002314void CodeGenerator::VisitFunctionLiteral(FunctionLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002315#ifdef DEBUG
2316 int original_height = frame_->height();
2317#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002318 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002319 Comment cmnt(masm_, "[ FunctionLiteral");
2320
2321 // Build the function boilerplate and instantiate it.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002322 Handle<JSFunction> boilerplate =
2323 Compiler::BuildBoilerplate(node, script_, this);
kasper.lund212ac232008-07-16 07:07:30 +00002324 // Check for stack-overflow exception.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002325 if (HasStackOverflow()) {
2326 ASSERT(frame_->height() == original_height);
2327 return;
2328 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002329 InstantiateBoilerplate(boilerplate);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002330 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002331}
2332
2333
ager@chromium.org7c537e22008-10-16 08:43:32 +00002334void CodeGenerator::VisitFunctionBoilerplateLiteral(
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002335 FunctionBoilerplateLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002336#ifdef DEBUG
2337 int original_height = frame_->height();
2338#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002339 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002340 Comment cmnt(masm_, "[ FunctionBoilerplateLiteral");
2341 InstantiateBoilerplate(node->boilerplate());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002342 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002343}
2344
2345
ager@chromium.org7c537e22008-10-16 08:43:32 +00002346void CodeGenerator::VisitConditional(Conditional* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002347#ifdef DEBUG
2348 int original_height = frame_->height();
2349#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002350 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002351 Comment cmnt(masm_, "[ Conditional");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002352 JumpTarget then;
2353 JumpTarget else_;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002354 LoadConditionAndSpill(node->condition(), &then, &else_, true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002355 if (has_valid_frame()) {
2356 Branch(false, &else_);
2357 }
2358 if (has_valid_frame() || then.is_linked()) {
2359 then.Bind();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002360 LoadAndSpill(node->then_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002361 }
2362 if (else_.is_linked()) {
2363 JumpTarget exit;
2364 if (has_valid_frame()) exit.Jump();
2365 else_.Bind();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002366 LoadAndSpill(node->else_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002367 if (exit.is_linked()) exit.Bind();
2368 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002369 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002370}
2371
2372
ager@chromium.org7c537e22008-10-16 08:43:32 +00002373void CodeGenerator::LoadFromSlot(Slot* slot, TypeofState typeof_state) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002374 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002375 if (slot->type() == Slot::LOOKUP) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00002376 ASSERT(slot->var()->is_dynamic());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002377
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002378 JumpTarget slow;
2379 JumpTarget done;
ager@chromium.org381abbb2009-02-25 13:23:22 +00002380
2381 // Generate fast-case code for variables that might be shadowed by
2382 // eval-introduced variables. Eval is used a lot without
2383 // introducing variables. In those cases, we do not want to
2384 // perform a runtime call for all variables in the scope
2385 // containing the eval.
2386 if (slot->var()->mode() == Variable::DYNAMIC_GLOBAL) {
2387 LoadFromGlobalSlotCheckExtensions(slot, typeof_state, r1, r2, &slow);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002388 // If there was no control flow to slow, we can exit early.
2389 if (!slow.is_linked()) {
2390 frame_->EmitPush(r0);
2391 return;
2392 }
2393
2394 done.Jump();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002395
2396 } else if (slot->var()->mode() == Variable::DYNAMIC_LOCAL) {
2397 Slot* potential_slot = slot->var()->local_if_not_shadowed()->slot();
2398 // Only generate the fast case for locals that rewrite to slots.
2399 // This rules out argument loads.
2400 if (potential_slot != NULL) {
2401 __ ldr(r0,
2402 ContextSlotOperandCheckExtensions(potential_slot,
2403 r1,
2404 r2,
2405 &slow));
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002406 if (potential_slot->var()->mode() == Variable::CONST) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002407 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2408 __ cmp(r0, ip);
2409 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002410 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002411 // There is always control flow to slow from
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002412 // ContextSlotOperandCheckExtensions so we have to jump around
2413 // it.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002414 done.Jump();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002415 }
2416 }
2417
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002418 slow.Bind();
2419 frame_->EmitPush(cp);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002420 __ mov(r0, Operand(slot->var()->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002421 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002422
ager@chromium.org7c537e22008-10-16 08:43:32 +00002423 if (typeof_state == INSIDE_TYPEOF) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002424 frame_->CallRuntime(Runtime::kLoadContextSlotNoReferenceError, 2);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002425 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002426 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002427 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00002428
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002429 done.Bind();
2430 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002431
2432 } else {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002433 // Special handling for locals allocated in registers.
ager@chromium.org7c537e22008-10-16 08:43:32 +00002434 __ ldr(r0, SlotOperand(slot, r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002435 frame_->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002436 if (slot->var()->mode() == Variable::CONST) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002437 // Const slots may contain 'the hole' value (the constant hasn't been
2438 // initialized yet) which needs to be converted into the 'undefined'
2439 // value.
2440 Comment cmnt(masm_, "[ Unhole const");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002441 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002442 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2443 __ cmp(r0, ip);
2444 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002445 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002446 }
2447 }
2448}
2449
2450
ager@chromium.org381abbb2009-02-25 13:23:22 +00002451void CodeGenerator::LoadFromGlobalSlotCheckExtensions(Slot* slot,
2452 TypeofState typeof_state,
2453 Register tmp,
2454 Register tmp2,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002455 JumpTarget* slow) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00002456 // Check that no extension objects have been created by calls to
2457 // eval from the current scope to the global scope.
2458 Register context = cp;
2459 Scope* s = scope();
2460 while (s != NULL) {
2461 if (s->num_heap_slots() > 0) {
2462 if (s->calls_eval()) {
2463 // Check that extension is NULL.
2464 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
2465 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002466 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002467 }
2468 // Load next context in chain.
2469 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
2470 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
2471 context = tmp;
2472 }
2473 // If no outer scope calls eval, we do not need to check more
2474 // context extensions.
2475 if (!s->outer_scope_calls_eval() || s->is_eval_scope()) break;
2476 s = s->outer_scope();
2477 }
2478
2479 if (s->is_eval_scope()) {
2480 Label next, fast;
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002481 if (!context.is(tmp)) {
2482 __ mov(tmp, Operand(context));
2483 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00002484 __ bind(&next);
2485 // Terminate at global context.
2486 __ ldr(tmp2, FieldMemOperand(tmp, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002487 __ LoadRoot(ip, Heap::kGlobalContextMapRootIndex);
2488 __ cmp(tmp2, ip);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002489 __ b(eq, &fast);
2490 // Check that extension is NULL.
2491 __ ldr(tmp2, ContextOperand(tmp, Context::EXTENSION_INDEX));
2492 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002493 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002494 // Load next context in chain.
2495 __ ldr(tmp, ContextOperand(tmp, Context::CLOSURE_INDEX));
2496 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
2497 __ b(&next);
2498 __ bind(&fast);
2499 }
2500
2501 // All extension objects were empty and it is safe to use a global
2502 // load IC call.
2503 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
2504 // Load the global object.
2505 LoadGlobal();
2506 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002507 Result name(r2);
2508 __ mov(r2, Operand(slot->var()->name()));
ager@chromium.org381abbb2009-02-25 13:23:22 +00002509 // Call IC stub.
2510 if (typeof_state == INSIDE_TYPEOF) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002511 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET, &name, 0);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002512 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002513 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET_CONTEXT, &name, 0);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002514 }
2515
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002516 // Drop the global object. The result is in r0.
2517 frame_->Drop();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002518}
2519
2520
ager@chromium.org7c537e22008-10-16 08:43:32 +00002521void CodeGenerator::VisitSlot(Slot* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002522#ifdef DEBUG
2523 int original_height = frame_->height();
2524#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002525 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002526 Comment cmnt(masm_, "[ Slot");
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002527 LoadFromSlot(node, NOT_INSIDE_TYPEOF);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002528 ASSERT(frame_->height() == original_height + 1);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002529}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002530
ager@chromium.org7c537e22008-10-16 08:43:32 +00002531
2532void CodeGenerator::VisitVariableProxy(VariableProxy* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002533#ifdef DEBUG
2534 int original_height = frame_->height();
2535#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002536 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002537 Comment cmnt(masm_, "[ VariableProxy");
2538
2539 Variable* var = node->var();
2540 Expression* expr = var->rewrite();
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002541 if (expr != NULL) {
2542 Visit(expr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002543 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +00002544 ASSERT(var->is_global());
2545 Reference ref(this, node);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002546 ref.GetValueAndSpill();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002547 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002548 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002549}
2550
2551
ager@chromium.org7c537e22008-10-16 08:43:32 +00002552void CodeGenerator::VisitLiteral(Literal* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002553#ifdef DEBUG
2554 int original_height = frame_->height();
2555#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002556 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002557 Comment cmnt(masm_, "[ Literal");
mads.s.ager31e71382008-08-13 09:32:07 +00002558 __ mov(r0, Operand(node->handle()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002559 frame_->EmitPush(r0);
2560 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002561}
2562
2563
ager@chromium.org7c537e22008-10-16 08:43:32 +00002564void CodeGenerator::VisitRegExpLiteral(RegExpLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002565#ifdef DEBUG
2566 int original_height = frame_->height();
2567#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002568 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002569 Comment cmnt(masm_, "[ RexExp Literal");
2570
2571 // Retrieve the literal array and check the allocated entry.
2572
2573 // Load the function of this activation.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002574 __ ldr(r1, frame_->Function());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002575
2576 // Load the literals array of the function.
2577 __ ldr(r1, FieldMemOperand(r1, JSFunction::kLiteralsOffset));
2578
2579 // Load the literal at the ast saved index.
2580 int literal_offset =
2581 FixedArray::kHeaderSize + node->literal_index() * kPointerSize;
2582 __ ldr(r2, FieldMemOperand(r1, literal_offset));
2583
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002584 JumpTarget done;
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002585 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
2586 __ cmp(r2, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002587 done.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002588
2589 // If the entry is undefined we call the runtime system to computed
2590 // the literal.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002591 frame_->EmitPush(r1); // literal array (0)
mads.s.ager31e71382008-08-13 09:32:07 +00002592 __ mov(r0, Operand(Smi::FromInt(node->literal_index())));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002593 frame_->EmitPush(r0); // literal index (1)
mads.s.ager31e71382008-08-13 09:32:07 +00002594 __ mov(r0, Operand(node->pattern())); // RegExp pattern (2)
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002595 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002596 __ mov(r0, Operand(node->flags())); // RegExp flags (3)
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002597 frame_->EmitPush(r0);
2598 frame_->CallRuntime(Runtime::kMaterializeRegExpLiteral, 4);
mads.s.ager31e71382008-08-13 09:32:07 +00002599 __ mov(r2, Operand(r0));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002600
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002601 done.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002602 // Push the literal.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002603 frame_->EmitPush(r2);
2604 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002605}
2606
2607
2608// This deferred code stub will be used for creating the boilerplate
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002609// by calling Runtime_CreateObjectLiteralBoilerplate.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002610// Each created boilerplate is stored in the JSFunction and they are
2611// therefore context dependent.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002612class DeferredObjectLiteral: public DeferredCode {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002613 public:
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002614 explicit DeferredObjectLiteral(ObjectLiteral* node) : node_(node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002615 set_comment("[ DeferredObjectLiteral");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002616 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002617
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002618 virtual void Generate();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002619
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002620 private:
2621 ObjectLiteral* node_;
2622};
2623
2624
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002625void DeferredObjectLiteral::Generate() {
2626 // Argument is passed in r1.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002627
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002628 // If the entry is undefined we call the runtime system to compute
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002629 // the literal.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002630 // Literal array (0).
ager@chromium.orge2902be2009-06-08 12:21:35 +00002631 __ push(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002632 // Literal index (1).
mads.s.ager31e71382008-08-13 09:32:07 +00002633 __ mov(r0, Operand(Smi::FromInt(node_->literal_index())));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002634 __ push(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002635 // Constant properties (2).
mads.s.ager31e71382008-08-13 09:32:07 +00002636 __ mov(r0, Operand(node_->constant_properties()));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002637 __ push(r0);
2638 __ CallRuntime(Runtime::kCreateObjectLiteralBoilerplate, 3);
2639 __ mov(r2, Operand(r0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002640 // Result is returned in r2.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002641}
2642
2643
ager@chromium.org7c537e22008-10-16 08:43:32 +00002644void CodeGenerator::VisitObjectLiteral(ObjectLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002645#ifdef DEBUG
2646 int original_height = frame_->height();
2647#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002648 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002649 Comment cmnt(masm_, "[ ObjectLiteral");
2650
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002651 DeferredObjectLiteral* deferred = new DeferredObjectLiteral(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002652
2653 // Retrieve the literal array and check the allocated entry.
2654
2655 // Load the function of this activation.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002656 __ ldr(r1, frame_->Function());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002657
2658 // Load the literals array of the function.
2659 __ ldr(r1, FieldMemOperand(r1, JSFunction::kLiteralsOffset));
2660
2661 // Load the literal at the ast saved index.
2662 int literal_offset =
2663 FixedArray::kHeaderSize + node->literal_index() * kPointerSize;
2664 __ ldr(r2, FieldMemOperand(r1, literal_offset));
2665
2666 // Check whether we need to materialize the object literal boilerplate.
2667 // If so, jump to the deferred code.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002668 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
2669 __ cmp(r2, Operand(ip));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002670 deferred->Branch(eq);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002671 deferred->BindExit();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002672
2673 // Push the object literal boilerplate.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002674 frame_->EmitPush(r2);
mads.s.ager31e71382008-08-13 09:32:07 +00002675
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002676 // Clone the boilerplate object.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002677 Runtime::FunctionId clone_function_id = Runtime::kCloneLiteralBoilerplate;
2678 if (node->depth() == 1) {
2679 clone_function_id = Runtime::kCloneShallowLiteralBoilerplate;
2680 }
2681 frame_->CallRuntime(clone_function_id, 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002682 frame_->EmitPush(r0); // save the result
mads.s.ager31e71382008-08-13 09:32:07 +00002683 // r0: cloned object literal
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002684
2685 for (int i = 0; i < node->properties()->length(); i++) {
2686 ObjectLiteral::Property* property = node->properties()->at(i);
2687 Literal* key = property->key();
2688 Expression* value = property->value();
2689 switch (property->kind()) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002690 case ObjectLiteral::Property::CONSTANT:
2691 break;
2692 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
2693 if (CompileTimeValue::IsCompileTimeValue(property->value())) break;
2694 // else fall through
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002695 case ObjectLiteral::Property::COMPUTED: // fall through
2696 case ObjectLiteral::Property::PROTOTYPE: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002697 frame_->EmitPush(r0); // dup the result
2698 LoadAndSpill(key);
2699 LoadAndSpill(value);
2700 frame_->CallRuntime(Runtime::kSetProperty, 3);
mads.s.ager31e71382008-08-13 09:32:07 +00002701 // restore r0
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002702 __ ldr(r0, frame_->Top());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002703 break;
2704 }
2705 case ObjectLiteral::Property::SETTER: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002706 frame_->EmitPush(r0);
2707 LoadAndSpill(key);
mads.s.ager31e71382008-08-13 09:32:07 +00002708 __ mov(r0, Operand(Smi::FromInt(1)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002709 frame_->EmitPush(r0);
2710 LoadAndSpill(value);
2711 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002712 __ ldr(r0, frame_->Top());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002713 break;
2714 }
2715 case ObjectLiteral::Property::GETTER: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002716 frame_->EmitPush(r0);
2717 LoadAndSpill(key);
mads.s.ager31e71382008-08-13 09:32:07 +00002718 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002719 frame_->EmitPush(r0);
2720 LoadAndSpill(value);
2721 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002722 __ ldr(r0, frame_->Top());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002723 break;
2724 }
2725 }
2726 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002727 ASSERT(frame_->height() == original_height + 1);
2728}
2729
2730
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002731// This deferred code stub will be used for creating the boilerplate
2732// by calling Runtime_CreateArrayLiteralBoilerplate.
2733// Each created boilerplate is stored in the JSFunction and they are
2734// therefore context dependent.
2735class DeferredArrayLiteral: public DeferredCode {
2736 public:
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002737 explicit DeferredArrayLiteral(ArrayLiteral* node) : node_(node) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002738 set_comment("[ DeferredArrayLiteral");
2739 }
2740
2741 virtual void Generate();
2742
2743 private:
2744 ArrayLiteral* node_;
2745};
2746
2747
2748void DeferredArrayLiteral::Generate() {
2749 // Argument is passed in r1.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002750
2751 // If the entry is undefined we call the runtime system to computed
2752 // the literal.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002753 // Literal array (0).
ager@chromium.orge2902be2009-06-08 12:21:35 +00002754 __ push(r1);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002755 // Literal index (1).
2756 __ mov(r0, Operand(Smi::FromInt(node_->literal_index())));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002757 __ push(r0);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002758 // Constant properties (2).
2759 __ mov(r0, Operand(node_->literals()));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002760 __ push(r0);
2761 __ CallRuntime(Runtime::kCreateArrayLiteralBoilerplate, 3);
2762 __ mov(r2, Operand(r0));
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002763 // Result is returned in r2.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002764}
2765
2766
ager@chromium.org7c537e22008-10-16 08:43:32 +00002767void CodeGenerator::VisitArrayLiteral(ArrayLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002768#ifdef DEBUG
2769 int original_height = frame_->height();
2770#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002771 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002772 Comment cmnt(masm_, "[ ArrayLiteral");
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002773
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002774 DeferredArrayLiteral* deferred = new DeferredArrayLiteral(node);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002775
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002776 // Retrieve the literal array and check the allocated entry.
2777
2778 // Load the function of this activation.
2779 __ ldr(r1, frame_->Function());
2780
2781 // Load the literals array of the function.
2782 __ ldr(r1, FieldMemOperand(r1, JSFunction::kLiteralsOffset));
2783
2784 // Load the literal at the ast saved index.
2785 int literal_offset =
2786 FixedArray::kHeaderSize + node->literal_index() * kPointerSize;
2787 __ ldr(r2, FieldMemOperand(r1, literal_offset));
2788
2789 // Check whether we need to materialize the object literal boilerplate.
2790 // If so, jump to the deferred code.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002791 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
2792 __ cmp(r2, Operand(ip));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002793 deferred->Branch(eq);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002794 deferred->BindExit();
2795
2796 // Push the object literal boilerplate.
2797 frame_->EmitPush(r2);
2798
2799 // Clone the boilerplate object.
2800 Runtime::FunctionId clone_function_id = Runtime::kCloneLiteralBoilerplate;
2801 if (node->depth() == 1) {
2802 clone_function_id = Runtime::kCloneShallowLiteralBoilerplate;
2803 }
2804 frame_->CallRuntime(clone_function_id, 1);
2805 frame_->EmitPush(r0); // save the result
2806 // r0: cloned object literal
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002807
2808 // Generate code to set the elements in the array that are not
2809 // literals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002810 for (int i = 0; i < node->values()->length(); i++) {
2811 Expression* value = node->values()->at(i);
2812
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002813 // If value is a literal the property value is already set in the
2814 // boilerplate object.
2815 if (value->AsLiteral() != NULL) continue;
2816 // If value is a materialized literal the property value is already set
2817 // in the boilerplate object if it is simple.
2818 if (CompileTimeValue::IsCompileTimeValue(value)) continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002819
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002820 // The property must be set by generated code.
2821 LoadAndSpill(value);
2822 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002823
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002824 // Fetch the object literal.
2825 __ ldr(r1, frame_->Top());
2826 // Get the elements array.
2827 __ ldr(r1, FieldMemOperand(r1, JSObject::kElementsOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002828
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002829 // Write to the indexed properties array.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00002830 int offset = i * kPointerSize + FixedArray::kHeaderSize;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002831 __ str(r0, FieldMemOperand(r1, offset));
2832
2833 // Update the write barrier for the array address.
2834 __ mov(r3, Operand(offset));
2835 __ RecordWrite(r1, r3, r2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002836 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002837 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002838}
2839
2840
ager@chromium.org32912102009-01-16 10:38:43 +00002841void CodeGenerator::VisitCatchExtensionObject(CatchExtensionObject* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002842#ifdef DEBUG
2843 int original_height = frame_->height();
2844#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002845 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org32912102009-01-16 10:38:43 +00002846 // Call runtime routine to allocate the catch extension object and
2847 // assign the exception value to the catch variable.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002848 Comment cmnt(masm_, "[ CatchExtensionObject");
2849 LoadAndSpill(node->key());
2850 LoadAndSpill(node->value());
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002851 frame_->CallRuntime(Runtime::kCreateCatchExtensionObject, 2);
2852 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002853 ASSERT(frame_->height() == original_height + 1);
ager@chromium.org32912102009-01-16 10:38:43 +00002854}
2855
2856
ager@chromium.org7c537e22008-10-16 08:43:32 +00002857void CodeGenerator::VisitAssignment(Assignment* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002858#ifdef DEBUG
2859 int original_height = frame_->height();
2860#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002861 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002862 Comment cmnt(masm_, "[ Assignment");
mads.s.ager31e71382008-08-13 09:32:07 +00002863
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002864 { Reference target(this, node->target());
2865 if (target.is_illegal()) {
2866 // Fool the virtual frame into thinking that we left the assignment's
2867 // value on the frame.
2868 __ mov(r0, Operand(Smi::FromInt(0)));
2869 frame_->EmitPush(r0);
2870 ASSERT(frame_->height() == original_height + 1);
2871 return;
2872 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002873
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002874 if (node->op() == Token::ASSIGN ||
2875 node->op() == Token::INIT_VAR ||
2876 node->op() == Token::INIT_CONST) {
2877 LoadAndSpill(node->value());
mads.s.ager31e71382008-08-13 09:32:07 +00002878
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002879 } else {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002880 // +=, *= and similar binary assignments.
2881 // Get the old value of the lhs.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002882 target.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002883 Literal* literal = node->value()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002884 bool overwrite =
2885 (node->value()->AsBinaryOperation() != NULL &&
2886 node->value()->AsBinaryOperation()->ResultOverwriteAllowed());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002887 if (literal != NULL && literal->handle()->IsSmi()) {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002888 SmiOperation(node->binary_op(),
2889 literal->handle(),
2890 false,
2891 overwrite ? OVERWRITE_RIGHT : NO_OVERWRITE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002892 frame_->EmitPush(r0);
2893
2894 } else {
2895 LoadAndSpill(node->value());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002896 GenericBinaryOperation(node->binary_op(),
2897 overwrite ? OVERWRITE_RIGHT : NO_OVERWRITE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002898 frame_->EmitPush(r0);
2899 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002900 }
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.
mads.s.ager31e71382008-08-13 09:32:07 +00002907
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
3005 // Resolve the call.
3006 frame_->CallRuntime(Runtime::kResolvePossiblyDirectEval, 2);
3007
3008 // Touch up stack with the right values for the function and the receiver.
3009 __ ldr(r1, FieldMemOperand(r0, FixedArray::kHeaderSize));
3010 __ str(r1, MemOperand(sp, (arg_count + 1) * kPointerSize));
3011 __ ldr(r1, FieldMemOperand(r0, FixedArray::kHeaderSize + kPointerSize));
3012 __ str(r1, MemOperand(sp, arg_count * kPointerSize));
3013
3014 // Call the function.
3015 CodeForSourcePosition(node->position());
3016
3017 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3018 CallFunctionStub call_function(arg_count, in_loop);
3019 frame_->CallStub(&call_function, arg_count + 1);
3020
3021 __ ldr(cp, frame_->Context());
3022 // Remove the function from the stack.
3023 frame_->Drop();
3024 frame_->EmitPush(r0);
3025
3026 } else if (var != NULL && !var->is_this() && var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003027 // ----------------------------------
3028 // JavaScript example: 'foo(1, 2, 3)' // foo is global
3029 // ----------------------------------
3030
3031 // Push the name of the function and the receiver onto the stack.
mads.s.ager31e71382008-08-13 09:32:07 +00003032 __ mov(r0, Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003033 frame_->EmitPush(r0);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003034
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003035 // Pass the global object as the receiver and let the IC stub
3036 // patch the stack to use the global proxy as 'this' in the
3037 // invoked function.
3038 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003039
3040 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003041 int arg_count = args->length();
3042 for (int i = 0; i < arg_count; i++) {
3043 LoadAndSpill(args->at(i));
3044 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003045
3046 // Setup the receiver register and call the IC initialization code.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003047 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3048 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003049 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003050 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET_CONTEXT,
3051 arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003052 __ ldr(cp, frame_->Context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003053 // Remove the function from the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003054 frame_->Drop();
3055 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003056
3057 } else if (var != NULL && var->slot() != NULL &&
3058 var->slot()->type() == Slot::LOOKUP) {
3059 // ----------------------------------
3060 // JavaScript example: 'with (obj) foo(1, 2, 3)' // foo is in obj
3061 // ----------------------------------
3062
3063 // Load the function
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003064 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00003065 __ mov(r0, Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003066 frame_->EmitPush(r0);
3067 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003068 // r0: slot value; r1: receiver
3069
3070 // Load the receiver.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003071 frame_->EmitPush(r0); // function
3072 frame_->EmitPush(r1); // receiver
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003073
3074 // Call the function.
3075 CallWithArguments(args, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003076 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003077
3078 } else if (property != NULL) {
3079 // Check if the key is a literal string.
3080 Literal* literal = property->key()->AsLiteral();
3081
3082 if (literal != NULL && literal->handle()->IsSymbol()) {
3083 // ------------------------------------------------------------------
3084 // JavaScript example: 'object.foo(1, 2, 3)' or 'map["key"](1, 2, 3)'
3085 // ------------------------------------------------------------------
3086
3087 // Push the name of the function and the receiver onto the stack.
mads.s.ager31e71382008-08-13 09:32:07 +00003088 __ mov(r0, Operand(literal->handle()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003089 frame_->EmitPush(r0);
3090 LoadAndSpill(property->obj());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003091
3092 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003093 int arg_count = args->length();
3094 for (int i = 0; i < arg_count; i++) {
3095 LoadAndSpill(args->at(i));
3096 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003097
3098 // Set the receiver register and call the IC initialization code.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003099 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3100 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003101 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003102 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003103 __ ldr(cp, frame_->Context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003104
3105 // Remove the function from the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003106 frame_->Drop();
mads.s.ager31e71382008-08-13 09:32:07 +00003107
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003108 frame_->EmitPush(r0); // push after get rid of function from the stack
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003109
3110 } else {
3111 // -------------------------------------------
3112 // JavaScript example: 'array[index](1, 2, 3)'
3113 // -------------------------------------------
3114
3115 // Load the function to call from the property through a reference.
3116 Reference ref(this, property);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003117 ref.GetValueAndSpill(); // receiver
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003118
3119 // Pass receiver to called function.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003120 if (property->is_synthetic()) {
3121 LoadGlobalReceiver(r0);
3122 } else {
3123 __ ldr(r0, frame_->ElementAt(ref.size()));
3124 frame_->EmitPush(r0);
3125 }
3126
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003127 // Call the function.
3128 CallWithArguments(args, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003129 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003130 }
3131
3132 } else {
3133 // ----------------------------------
3134 // JavaScript example: 'foo(1, 2, 3)' // foo is not global
3135 // ----------------------------------
3136
3137 // Load the function.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003138 LoadAndSpill(function);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003139
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003140 // Pass the global proxy as the receiver.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003141 LoadGlobalReceiver(r0);
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003142
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003143 // Call the function.
3144 CallWithArguments(args, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003145 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003146 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003147 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003148}
3149
3150
ager@chromium.org7c537e22008-10-16 08:43:32 +00003151void CodeGenerator::VisitCallNew(CallNew* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003152#ifdef DEBUG
3153 int original_height = frame_->height();
3154#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003155 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003156 Comment cmnt(masm_, "[ CallNew");
3157
3158 // According to ECMA-262, section 11.2.2, page 44, the function
3159 // expression in new calls must be evaluated before the
3160 // arguments. This is different from ordinary calls, where the
3161 // actual function to call is resolved after the arguments have been
3162 // evaluated.
3163
3164 // Compute function to call and use the global object as the
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003165 // receiver. There is no need to use the global proxy here because
3166 // it will always be replaced with a newly allocated object.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003167 LoadAndSpill(node->expression());
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003168 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003169
3170 // Push the arguments ("left-to-right") on the stack.
3171 ZoneList<Expression*>* args = node->arguments();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003172 int arg_count = args->length();
3173 for (int i = 0; i < arg_count; i++) {
3174 LoadAndSpill(args->at(i));
3175 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003176
mads.s.ager31e71382008-08-13 09:32:07 +00003177 // r0: the number of arguments.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003178 Result num_args(r0);
3179 __ mov(r0, Operand(arg_count));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003180
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003181 // Load the function into r1 as per calling convention.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003182 Result function(r1);
3183 __ ldr(r1, frame_->ElementAt(arg_count + 1));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003184
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003185 // Call the construct call builtin that handles allocation and
3186 // constructor invocation.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003187 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003188 Handle<Code> ic(Builtins::builtin(Builtins::JSConstructCall));
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003189 frame_->CallCodeObject(ic,
3190 RelocInfo::CONSTRUCT_CALL,
3191 &num_args,
3192 &function,
3193 arg_count + 1);
mads.s.ager31e71382008-08-13 09:32:07 +00003194
3195 // Discard old TOS value and push r0 on the stack (same as Pop(), push(r0)).
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003196 __ str(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003197 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003198}
3199
3200
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003201void CodeGenerator::GenerateClassOf(ZoneList<Expression*>* args) {
3202 VirtualFrame::SpilledScope spilled_scope;
3203 ASSERT(args->length() == 1);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003204 JumpTarget leave, null, function, non_function_constructor;
3205
3206 // Load the object into r0.
3207 LoadAndSpill(args->at(0));
3208 frame_->EmitPop(r0);
3209
3210 // If the object is a smi, we return null.
3211 __ tst(r0, Operand(kSmiTagMask));
3212 null.Branch(eq);
3213
3214 // Check that the object is a JS object but take special care of JS
3215 // functions to make sure they have 'Function' as their class.
3216 __ CompareObjectType(r0, r0, r1, FIRST_JS_OBJECT_TYPE);
3217 null.Branch(lt);
3218
3219 // As long as JS_FUNCTION_TYPE is the last instance type and it is
3220 // right after LAST_JS_OBJECT_TYPE, we can avoid checking for
3221 // LAST_JS_OBJECT_TYPE.
3222 ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
3223 ASSERT(JS_FUNCTION_TYPE == LAST_JS_OBJECT_TYPE + 1);
3224 __ cmp(r1, Operand(JS_FUNCTION_TYPE));
3225 function.Branch(eq);
3226
3227 // Check if the constructor in the map is a function.
3228 __ ldr(r0, FieldMemOperand(r0, Map::kConstructorOffset));
3229 __ CompareObjectType(r0, r1, r1, JS_FUNCTION_TYPE);
3230 non_function_constructor.Branch(ne);
3231
3232 // The r0 register now contains the constructor function. Grab the
3233 // instance class name from there.
3234 __ ldr(r0, FieldMemOperand(r0, JSFunction::kSharedFunctionInfoOffset));
3235 __ ldr(r0, FieldMemOperand(r0, SharedFunctionInfo::kInstanceClassNameOffset));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003236 frame_->EmitPush(r0);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003237 leave.Jump();
3238
3239 // Functions have class 'Function'.
3240 function.Bind();
3241 __ mov(r0, Operand(Factory::function_class_symbol()));
3242 frame_->EmitPush(r0);
3243 leave.Jump();
3244
3245 // Objects with a non-function constructor have class 'Object'.
3246 non_function_constructor.Bind();
3247 __ mov(r0, Operand(Factory::Object_symbol()));
3248 frame_->EmitPush(r0);
3249 leave.Jump();
3250
3251 // Non-JS objects have class null.
3252 null.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003253 __ LoadRoot(r0, Heap::kNullValueRootIndex);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003254 frame_->EmitPush(r0);
3255
3256 // All done.
3257 leave.Bind();
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003258}
3259
3260
ager@chromium.org7c537e22008-10-16 08:43:32 +00003261void CodeGenerator::GenerateValueOf(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003262 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003263 ASSERT(args->length() == 1);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003264 JumpTarget leave;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003265 LoadAndSpill(args->at(0));
3266 frame_->EmitPop(r0); // r0 contains object.
mads.s.ager31e71382008-08-13 09:32:07 +00003267 // if (object->IsSmi()) return the object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003268 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003269 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003270 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
3271 __ CompareObjectType(r0, r1, r1, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003272 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003273 // Load the value.
3274 __ ldr(r0, FieldMemOperand(r0, JSValue::kValueOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003275 leave.Bind();
3276 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003277}
3278
3279
ager@chromium.org7c537e22008-10-16 08:43:32 +00003280void CodeGenerator::GenerateSetValueOf(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003281 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003282 ASSERT(args->length() == 2);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003283 JumpTarget leave;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003284 LoadAndSpill(args->at(0)); // Load the object.
3285 LoadAndSpill(args->at(1)); // Load the value.
3286 frame_->EmitPop(r0); // r0 contains value
3287 frame_->EmitPop(r1); // r1 contains object
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003288 // if (object->IsSmi()) return object.
3289 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003290 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003291 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
3292 __ CompareObjectType(r1, r2, r2, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003293 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003294 // Store the value.
3295 __ str(r0, FieldMemOperand(r1, JSValue::kValueOffset));
3296 // Update the write barrier.
3297 __ mov(r2, Operand(JSValue::kValueOffset - kHeapObjectTag));
3298 __ RecordWrite(r1, r2, r3);
3299 // Leave.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003300 leave.Bind();
3301 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003302}
3303
3304
ager@chromium.org7c537e22008-10-16 08:43:32 +00003305void CodeGenerator::GenerateIsSmi(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003306 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003307 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003308 LoadAndSpill(args->at(0));
3309 frame_->EmitPop(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003310 __ tst(r0, Operand(kSmiTagMask));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003311 cc_reg_ = eq;
3312}
3313
3314
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003315void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003316 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003317 // See comment in CodeGenerator::GenerateLog in codegen-ia32.cc.
3318 ASSERT_EQ(args->length(), 3);
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00003319#ifdef ENABLE_LOGGING_AND_PROFILING
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003320 if (ShouldGenerateLog(args->at(0))) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003321 LoadAndSpill(args->at(1));
3322 LoadAndSpill(args->at(2));
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003323 __ CallRuntime(Runtime::kLog, 2);
3324 }
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00003325#endif
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003326 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003327 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003328}
3329
3330
ager@chromium.org7c537e22008-10-16 08:43:32 +00003331void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003332 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00003333 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003334 LoadAndSpill(args->at(0));
3335 frame_->EmitPop(r0);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003336 __ tst(r0, Operand(kSmiTagMask | 0x80000000u));
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00003337 cc_reg_ = eq;
3338}
3339
3340
kasper.lund7276f142008-07-30 08:49:36 +00003341// This should generate code that performs a charCodeAt() call or returns
3342// undefined in order to trigger the slow case, Runtime_StringCharCodeAt.
3343// It is not yet implemented on ARM, so it always goes to the slow case.
ager@chromium.org7c537e22008-10-16 08:43:32 +00003344void CodeGenerator::GenerateFastCharCodeAt(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003345 VirtualFrame::SpilledScope spilled_scope;
kasper.lund7276f142008-07-30 08:49:36 +00003346 ASSERT(args->length() == 2);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003347 Comment(masm_, "[ GenerateFastCharCodeAt");
3348
3349 LoadAndSpill(args->at(0));
3350 LoadAndSpill(args->at(1));
3351 frame_->EmitPop(r0); // Index.
3352 frame_->EmitPop(r1); // String.
3353
3354 Label slow, end, not_a_flat_string, ascii_string, try_again_with_new_string;
3355
3356 __ tst(r1, Operand(kSmiTagMask));
3357 __ b(eq, &slow); // The 'string' was a Smi.
3358
3359 ASSERT(kSmiTag == 0);
3360 __ tst(r0, Operand(kSmiTagMask | 0x80000000u));
3361 __ b(ne, &slow); // The index was negative or not a Smi.
3362
3363 __ bind(&try_again_with_new_string);
3364 __ CompareObjectType(r1, r2, r2, FIRST_NONSTRING_TYPE);
3365 __ b(ge, &slow);
3366
3367 // Now r2 has the string type.
3368 __ ldr(r3, FieldMemOperand(r1, String::kLengthOffset));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003369 // Now r3 has the length of the string. Compare with the index.
3370 __ cmp(r3, Operand(r0, LSR, kSmiTagSize));
3371 __ b(le, &slow);
3372
3373 // Here we know the index is in range. Check that string is sequential.
3374 ASSERT_EQ(0, kSeqStringTag);
3375 __ tst(r2, Operand(kStringRepresentationMask));
3376 __ b(ne, &not_a_flat_string);
3377
3378 // Check whether it is an ASCII string.
3379 ASSERT_EQ(0, kTwoByteStringTag);
3380 __ tst(r2, Operand(kStringEncodingMask));
3381 __ b(ne, &ascii_string);
3382
3383 // 2-byte string. We can add without shifting since the Smi tag size is the
3384 // log2 of the number of bytes in a two-byte character.
3385 ASSERT_EQ(1, kSmiTagSize);
3386 ASSERT_EQ(0, kSmiShiftSize);
3387 __ add(r1, r1, Operand(r0));
3388 __ ldrh(r0, FieldMemOperand(r1, SeqTwoByteString::kHeaderSize));
3389 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
3390 __ jmp(&end);
3391
3392 __ bind(&ascii_string);
3393 __ add(r1, r1, Operand(r0, LSR, kSmiTagSize));
3394 __ ldrb(r0, FieldMemOperand(r1, SeqAsciiString::kHeaderSize));
3395 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
3396 __ jmp(&end);
3397
3398 __ bind(&not_a_flat_string);
3399 __ and_(r2, r2, Operand(kStringRepresentationMask));
3400 __ cmp(r2, Operand(kConsStringTag));
3401 __ b(ne, &slow);
3402
3403 // ConsString.
3404 // Check that the right hand side is the empty string (ie if this is really a
3405 // flat string in a cons string). If that is not the case we would rather go
3406 // to the runtime system now, to flatten the string.
3407 __ ldr(r2, FieldMemOperand(r1, ConsString::kSecondOffset));
3408 __ LoadRoot(r3, Heap::kEmptyStringRootIndex);
3409 __ cmp(r2, Operand(r3));
3410 __ b(ne, &slow);
3411
3412 // Get the first of the two strings.
3413 __ ldr(r1, FieldMemOperand(r1, ConsString::kFirstOffset));
3414 __ jmp(&try_again_with_new_string);
3415
3416 __ bind(&slow);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003417 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003418
3419 __ bind(&end);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003420 frame_->EmitPush(r0);
kasper.lund7276f142008-07-30 08:49:36 +00003421}
3422
3423
ager@chromium.org7c537e22008-10-16 08:43:32 +00003424void CodeGenerator::GenerateIsArray(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003425 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003426 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003427 LoadAndSpill(args->at(0));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003428 JumpTarget answer;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003429 // We need the CC bits to come out as not_equal in the case where the
3430 // object is a smi. This can't be done with the usual test opcode so
3431 // we use XOR to get the right CC bits.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003432 frame_->EmitPop(r0);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003433 __ and_(r1, r0, Operand(kSmiTagMask));
3434 __ eor(r1, r1, Operand(kSmiTagMask), SetCC);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003435 answer.Branch(ne);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003436 // It is a heap object - get the map. Check if the object is a JS array.
3437 __ CompareObjectType(r0, r1, r1, JS_ARRAY_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003438 answer.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003439 cc_reg_ = eq;
3440}
3441
3442
ager@chromium.org6141cbe2009-11-20 12:14:52 +00003443void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) {
3444 // This generates a fast version of:
3445 // (typeof(arg) === 'object' || %_ClassOf(arg) == 'RegExp')
3446 VirtualFrame::SpilledScope spilled_scope;
3447 ASSERT(args->length() == 1);
3448 LoadAndSpill(args->at(0));
3449 frame_->EmitPop(r1);
3450 __ tst(r1, Operand(kSmiTagMask));
3451 false_target()->Branch(eq);
3452
3453 __ LoadRoot(ip, Heap::kNullValueRootIndex);
3454 __ cmp(r1, ip);
3455 true_target()->Branch(eq);
3456
3457 Register map_reg = r2;
3458 __ ldr(map_reg, FieldMemOperand(r1, HeapObject::kMapOffset));
3459 // Undetectable objects behave like undefined when tested with typeof.
3460 __ ldrb(r1, FieldMemOperand(map_reg, Map::kBitFieldOffset));
3461 __ and_(r1, r1, Operand(1 << Map::kIsUndetectable));
3462 __ cmp(r1, Operand(1 << Map::kIsUndetectable));
3463 false_target()->Branch(eq);
3464
3465 __ ldrb(r1, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
3466 __ cmp(r1, Operand(FIRST_JS_OBJECT_TYPE));
3467 false_target()->Branch(lt);
3468 __ cmp(r1, Operand(LAST_JS_OBJECT_TYPE));
3469 cc_reg_ = le;
3470}
3471
3472
3473void CodeGenerator::GenerateIsFunction(ZoneList<Expression*>* args) {
3474 // This generates a fast version of:
3475 // (%_ClassOf(arg) === 'Function')
3476 VirtualFrame::SpilledScope spilled_scope;
3477 ASSERT(args->length() == 1);
3478 LoadAndSpill(args->at(0));
3479 frame_->EmitPop(r0);
3480 __ tst(r0, Operand(kSmiTagMask));
3481 false_target()->Branch(eq);
3482 Register map_reg = r2;
3483 __ CompareObjectType(r0, map_reg, r1, JS_FUNCTION_TYPE);
3484 cc_reg_ = eq;
3485}
3486
3487
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003488void CodeGenerator::GenerateIsConstructCall(ZoneList<Expression*>* args) {
3489 VirtualFrame::SpilledScope spilled_scope;
3490 ASSERT(args->length() == 0);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003491
3492 // Get the frame pointer for the calling frame.
3493 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
3494
3495 // Skip the arguments adaptor frame if it exists.
3496 Label check_frame_marker;
3497 __ ldr(r1, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00003498 __ cmp(r1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003499 __ b(ne, &check_frame_marker);
3500 __ ldr(r2, MemOperand(r2, StandardFrameConstants::kCallerFPOffset));
3501
3502 // Check the marker in the calling frame.
3503 __ bind(&check_frame_marker);
3504 __ ldr(r1, MemOperand(r2, StandardFrameConstants::kMarkerOffset));
3505 __ cmp(r1, Operand(Smi::FromInt(StackFrame::CONSTRUCT)));
3506 cc_reg_ = eq;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003507}
3508
3509
ager@chromium.org7c537e22008-10-16 08:43:32 +00003510void CodeGenerator::GenerateArgumentsLength(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003511 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003512 ASSERT(args->length() == 0);
3513
mads.s.ager31e71382008-08-13 09:32:07 +00003514 // Seed the result with the formal parameters count, which will be used
3515 // in case no arguments adaptor frame is found below the current frame.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003516 __ mov(r0, Operand(Smi::FromInt(scope_->num_parameters())));
3517
3518 // Call the shared stub to get to the arguments.length.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003519 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_LENGTH);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003520 frame_->CallStub(&stub, 0);
3521 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003522}
3523
3524
ager@chromium.org7c537e22008-10-16 08:43:32 +00003525void CodeGenerator::GenerateArgumentsAccess(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003526 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003527 ASSERT(args->length() == 1);
3528
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003529 // Satisfy contract with ArgumentsAccessStub:
3530 // Load the key into r1 and the formal parameters count into r0.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003531 LoadAndSpill(args->at(0));
3532 frame_->EmitPop(r1);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003533 __ mov(r0, Operand(Smi::FromInt(scope_->num_parameters())));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003534
3535 // Call the shared stub to get to arguments[key].
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003536 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_ELEMENT);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003537 frame_->CallStub(&stub, 0);
3538 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003539}
3540
3541
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003542void CodeGenerator::GenerateRandomPositiveSmi(ZoneList<Expression*>* args) {
3543 VirtualFrame::SpilledScope spilled_scope;
3544 ASSERT(args->length() == 0);
3545 __ Call(ExternalReference::random_positive_smi_function().address(),
3546 RelocInfo::RUNTIME_ENTRY);
3547 frame_->EmitPush(r0);
3548}
3549
3550
3551void CodeGenerator::GenerateFastMathOp(MathOp op, ZoneList<Expression*>* args) {
3552 VirtualFrame::SpilledScope spilled_scope;
3553 LoadAndSpill(args->at(0));
3554 switch (op) {
3555 case SIN:
3556 frame_->CallRuntime(Runtime::kMath_sin, 1);
3557 break;
3558 case COS:
3559 frame_->CallRuntime(Runtime::kMath_cos, 1);
3560 break;
3561 }
3562 frame_->EmitPush(r0);
3563}
3564
3565
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00003566void CodeGenerator::GenerateStringAdd(ZoneList<Expression*>* args) {
3567 ASSERT_EQ(2, args->length());
3568
3569 Load(args->at(0));
3570 Load(args->at(1));
3571
3572 frame_->CallRuntime(Runtime::kStringAdd, 2);
3573 frame_->EmitPush(r0);
3574}
3575
3576
ager@chromium.org7c537e22008-10-16 08:43:32 +00003577void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003578 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org9258b6b2008-09-11 09:11:10 +00003579 ASSERT(args->length() == 2);
3580
3581 // Load the two objects into registers and perform the comparison.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003582 LoadAndSpill(args->at(0));
3583 LoadAndSpill(args->at(1));
3584 frame_->EmitPop(r0);
3585 frame_->EmitPop(r1);
ager@chromium.org9258b6b2008-09-11 09:11:10 +00003586 __ cmp(r0, Operand(r1));
3587 cc_reg_ = eq;
3588}
3589
3590
ager@chromium.org7c537e22008-10-16 08:43:32 +00003591void CodeGenerator::VisitCallRuntime(CallRuntime* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003592#ifdef DEBUG
3593 int original_height = frame_->height();
3594#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003595 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003596 if (CheckForInlineRuntimeCall(node)) {
3597 ASSERT((has_cc() && frame_->height() == original_height) ||
3598 (!has_cc() && frame_->height() == original_height + 1));
3599 return;
3600 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003601
3602 ZoneList<Expression*>* args = node->arguments();
3603 Comment cmnt(masm_, "[ CallRuntime");
3604 Runtime::Function* function = node->function();
3605
ager@chromium.org41826e72009-03-30 13:30:57 +00003606 if (function == NULL) {
mads.s.ager31e71382008-08-13 09:32:07 +00003607 // Prepare stack for calling JS runtime function.
3608 __ mov(r0, Operand(node->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003609 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003610 // Push the builtins object found in the current global object.
3611 __ ldr(r1, GlobalObject());
3612 __ ldr(r0, FieldMemOperand(r1, GlobalObject::kBuiltinsOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003613 frame_->EmitPush(r0);
ager@chromium.org41826e72009-03-30 13:30:57 +00003614 }
mads.s.ager31e71382008-08-13 09:32:07 +00003615
ager@chromium.org41826e72009-03-30 13:30:57 +00003616 // Push the arguments ("left-to-right").
3617 int arg_count = args->length();
3618 for (int i = 0; i < arg_count; i++) {
3619 LoadAndSpill(args->at(i));
3620 }
mads.s.ager31e71382008-08-13 09:32:07 +00003621
ager@chromium.org41826e72009-03-30 13:30:57 +00003622 if (function == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003623 // Call the JS runtime function.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003624 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3625 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003626 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003627 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003628 frame_->Drop();
3629 frame_->EmitPush(r0);
ager@chromium.org41826e72009-03-30 13:30:57 +00003630 } else {
3631 // Call the C runtime function.
3632 frame_->CallRuntime(function, arg_count);
3633 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003634 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003635 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003636}
3637
3638
ager@chromium.org7c537e22008-10-16 08:43:32 +00003639void CodeGenerator::VisitUnaryOperation(UnaryOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003640#ifdef DEBUG
3641 int original_height = frame_->height();
3642#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003643 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003644 Comment cmnt(masm_, "[ UnaryOperation");
3645
3646 Token::Value op = node->op();
3647
3648 if (op == Token::NOT) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003649 LoadConditionAndSpill(node->expression(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003650 false_target(),
3651 true_target(),
3652 true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003653 // LoadCondition may (and usually does) leave a test and branch to
3654 // be emitted by the caller. In that case, negate the condition.
3655 if (has_cc()) cc_reg_ = NegateCondition(cc_reg_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003656
3657 } else if (op == Token::DELETE) {
3658 Property* property = node->expression()->AsProperty();
mads.s.ager31e71382008-08-13 09:32:07 +00003659 Variable* variable = node->expression()->AsVariableProxy()->AsVariable();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003660 if (property != NULL) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003661 LoadAndSpill(property->obj());
3662 LoadAndSpill(property->key());
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003663 Result arg_count(r0);
3664 __ mov(r0, Operand(1)); // not counting receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003665 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, &arg_count, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003666
mads.s.ager31e71382008-08-13 09:32:07 +00003667 } else if (variable != NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003668 Slot* slot = variable->slot();
3669 if (variable->is_global()) {
3670 LoadGlobal();
mads.s.ager31e71382008-08-13 09:32:07 +00003671 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003672 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003673 Result arg_count(r0);
3674 __ mov(r0, Operand(1)); // not counting receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003675 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, &arg_count, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003676
3677 } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
3678 // lookup the context holding the named variable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003679 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00003680 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003681 frame_->EmitPush(r0);
3682 frame_->CallRuntime(Runtime::kLookupContext, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003683 // r0: context
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003684 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003685 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003686 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003687 Result arg_count(r0);
3688 __ mov(r0, Operand(1)); // not counting receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003689 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, &arg_count, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003690
mads.s.ager31e71382008-08-13 09:32:07 +00003691 } else {
3692 // Default: Result of deleting non-global, not dynamically
3693 // introduced variables is false.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003694 __ LoadRoot(r0, Heap::kFalseValueRootIndex);
mads.s.ager31e71382008-08-13 09:32:07 +00003695 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003696
3697 } else {
3698 // Default: Result of deleting expressions is true.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003699 LoadAndSpill(node->expression()); // may have side-effects
3700 frame_->Drop();
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003701 __ LoadRoot(r0, Heap::kTrueValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003702 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003703 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003704
3705 } else if (op == Token::TYPEOF) {
3706 // Special case for loading the typeof expression; see comment on
3707 // LoadTypeofExpression().
3708 LoadTypeofExpression(node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003709 frame_->CallRuntime(Runtime::kTypeof, 1);
3710 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003711
3712 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003713 LoadAndSpill(node->expression());
3714 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003715 switch (op) {
3716 case Token::NOT:
3717 case Token::DELETE:
3718 case Token::TYPEOF:
3719 UNREACHABLE(); // handled above
3720 break;
3721
3722 case Token::SUB: {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003723 bool overwrite =
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003724 (node->expression()->AsBinaryOperation() != NULL &&
3725 node->expression()->AsBinaryOperation()->ResultOverwriteAllowed());
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003726 UnarySubStub stub(overwrite);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003727 frame_->CallStub(&stub, 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003728 break;
3729 }
3730
3731 case Token::BIT_NOT: {
3732 // smi check
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003733 JumpTarget smi_label;
3734 JumpTarget continue_label;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003735 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003736 smi_label.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003737
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003738 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003739 Result arg_count(r0);
3740 __ mov(r0, Operand(0)); // not counting receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003741 frame_->InvokeBuiltin(Builtins::BIT_NOT, CALL_JS, &arg_count, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003742
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003743 continue_label.Jump();
3744 smi_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003745 __ mvn(r0, Operand(r0));
3746 __ bic(r0, r0, Operand(kSmiTagMask)); // bit-clear inverted smi-tag
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003747 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003748 break;
3749 }
3750
3751 case Token::VOID:
3752 // since the stack top is cached in r0, popping and then
3753 // pushing a value can be done by just writing to r0.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003754 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003755 break;
3756
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003757 case Token::ADD: {
3758 // Smi check.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003759 JumpTarget continue_label;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003760 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003761 continue_label.Branch(eq);
3762 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003763 Result arg_count(r0);
3764 __ mov(r0, Operand(0)); // not counting receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003765 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, &arg_count, 1);
3766 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003767 break;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003768 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003769 default:
3770 UNREACHABLE();
3771 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003772 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003773 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003774 ASSERT(!has_valid_frame() ||
3775 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003776 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003777}
3778
3779
ager@chromium.org7c537e22008-10-16 08:43:32 +00003780void CodeGenerator::VisitCountOperation(CountOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003781#ifdef DEBUG
3782 int original_height = frame_->height();
3783#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003784 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003785 Comment cmnt(masm_, "[ CountOperation");
3786
3787 bool is_postfix = node->is_postfix();
3788 bool is_increment = node->op() == Token::INC;
3789
3790 Variable* var = node->expression()->AsVariableProxy()->AsVariable();
3791 bool is_const = (var != NULL && var->mode() == Variable::CONST);
3792
3793 // Postfix: Make room for the result.
mads.s.ager31e71382008-08-13 09:32:07 +00003794 if (is_postfix) {
3795 __ mov(r0, Operand(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003796 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003797 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003798
3799 { Reference target(this, node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003800 if (target.is_illegal()) {
3801 // Spoof the virtual frame to have the expected height (one higher
3802 // than on entry).
3803 if (!is_postfix) {
3804 __ mov(r0, Operand(Smi::FromInt(0)));
3805 frame_->EmitPush(r0);
3806 }
3807 ASSERT(frame_->height() == original_height + 1);
3808 return;
3809 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003810 target.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003811 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003812
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003813 JumpTarget slow;
3814 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003815
3816 // Load the value (1) into register r1.
3817 __ mov(r1, Operand(Smi::FromInt(1)));
3818
3819 // Check for smi operand.
3820 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003821 slow.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003822
3823 // Postfix: Store the old value as the result.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003824 if (is_postfix) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003825 __ str(r0, frame_->ElementAt(target.size()));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003826 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003827
3828 // Perform optimistic increment/decrement.
3829 if (is_increment) {
3830 __ add(r0, r0, Operand(r1), SetCC);
3831 } else {
3832 __ sub(r0, r0, Operand(r1), SetCC);
3833 }
3834
3835 // If the increment/decrement didn't overflow, we're done.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003836 exit.Branch(vc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003837
3838 // Revert optimistic increment/decrement.
3839 if (is_increment) {
3840 __ sub(r0, r0, Operand(r1));
3841 } else {
3842 __ add(r0, r0, Operand(r1));
3843 }
3844
3845 // Slow case: Convert to number.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003846 slow.Bind();
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003847 {
3848 // Convert the operand to a number.
3849 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003850 Result arg_count(r0);
3851 __ mov(r0, Operand(0));
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003852 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, &arg_count, 1);
3853 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003854 if (is_postfix) {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003855 // Postfix: store to result (on the stack).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003856 __ str(r0, frame_->ElementAt(target.size()));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003857 }
3858
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003859 // Compute the new value.
3860 __ mov(r1, Operand(Smi::FromInt(1)));
3861 frame_->EmitPush(r0);
3862 frame_->EmitPush(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003863 if (is_increment) {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003864 frame_->CallRuntime(Runtime::kNumberAdd, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003865 } else {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003866 frame_->CallRuntime(Runtime::kNumberSub, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003867 }
3868
3869 // Store the new value in the target if not const.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003870 exit.Bind();
3871 frame_->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00003872 if (!is_const) target.SetValue(NOT_CONST_INIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003873 }
3874
3875 // Postfix: Discard the new value and use the old.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003876 if (is_postfix) frame_->EmitPop(r0);
3877 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003878}
3879
3880
ager@chromium.org7c537e22008-10-16 08:43:32 +00003881void CodeGenerator::VisitBinaryOperation(BinaryOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003882#ifdef DEBUG
3883 int original_height = frame_->height();
3884#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003885 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003886 Comment cmnt(masm_, "[ BinaryOperation");
3887 Token::Value op = node->op();
3888
3889 // According to ECMA-262 section 11.11, page 58, the binary logical
3890 // operators must yield the result of one of the two expressions
3891 // before any ToBoolean() conversions. This means that the value
3892 // produced by a && or || operator is not necessarily a boolean.
3893
3894 // NOTE: If the left hand side produces a materialized value (not in
3895 // the CC register), we force the right hand side to do the
3896 // same. This is necessary because we may have to branch to the exit
3897 // after evaluating the left hand side (due to the shortcut
3898 // semantics), but the compiler must (statically) know if the result
3899 // of compiling the binary operation is materialized or not.
3900
3901 if (op == Token::AND) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003902 JumpTarget is_true;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003903 LoadConditionAndSpill(node->left(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003904 &is_true,
3905 false_target(),
3906 false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003907 if (has_valid_frame() && !has_cc()) {
3908 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003909 JumpTarget pop_and_continue;
3910 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003911
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003912 __ ldr(r0, frame_->Top()); // Duplicate the stack top.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003913 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003914 // Avoid popping the result if it converts to 'false' using the
3915 // standard ToBoolean() conversion as described in ECMA-262,
3916 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00003917 ToBoolean(&pop_and_continue, &exit);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003918 Branch(false, &exit);
3919
3920 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003921 pop_and_continue.Bind();
3922 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003923
3924 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003925 is_true.Bind();
3926 LoadAndSpill(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003927
3928 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003929 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003930 } else if (has_cc() || is_true.is_linked()) {
3931 // The left-hand side is either (a) partially compiled to
3932 // control flow with a final branch left to emit or (b) fully
3933 // compiled to control flow and possibly true.
3934 if (has_cc()) {
3935 Branch(false, false_target());
3936 }
3937 is_true.Bind();
3938 LoadConditionAndSpill(node->right(),
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003939 true_target(),
3940 false_target(),
3941 false);
3942 } else {
3943 // Nothing to do.
3944 ASSERT(!has_valid_frame() && !has_cc() && !is_true.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003945 }
3946
3947 } else if (op == Token::OR) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003948 JumpTarget is_false;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003949 LoadConditionAndSpill(node->left(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003950 true_target(),
3951 &is_false,
3952 false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003953 if (has_valid_frame() && !has_cc()) {
3954 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003955 JumpTarget pop_and_continue;
3956 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003957
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003958 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003959 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003960 // Avoid popping the result if it converts to 'true' using the
3961 // standard ToBoolean() conversion as described in ECMA-262,
3962 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00003963 ToBoolean(&exit, &pop_and_continue);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003964 Branch(true, &exit);
3965
3966 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003967 pop_and_continue.Bind();
3968 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003969
3970 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003971 is_false.Bind();
3972 LoadAndSpill(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003973
3974 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003975 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003976 } else if (has_cc() || is_false.is_linked()) {
3977 // The left-hand side is either (a) partially compiled to
3978 // control flow with a final branch left to emit or (b) fully
3979 // compiled to control flow and possibly false.
3980 if (has_cc()) {
3981 Branch(true, true_target());
3982 }
3983 is_false.Bind();
3984 LoadConditionAndSpill(node->right(),
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003985 true_target(),
3986 false_target(),
3987 false);
3988 } else {
3989 // Nothing to do.
3990 ASSERT(!has_valid_frame() && !has_cc() && !is_false.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003991 }
3992
3993 } else {
3994 // Optimize for the case where (at least) one of the expressions
3995 // is a literal small integer.
3996 Literal* lliteral = node->left()->AsLiteral();
3997 Literal* rliteral = node->right()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003998 // NOTE: The code below assumes that the slow cases (calls to runtime)
3999 // never return a constant/immutable object.
4000 bool overwrite_left =
4001 (node->left()->AsBinaryOperation() != NULL &&
4002 node->left()->AsBinaryOperation()->ResultOverwriteAllowed());
4003 bool overwrite_right =
4004 (node->right()->AsBinaryOperation() != NULL &&
4005 node->right()->AsBinaryOperation()->ResultOverwriteAllowed());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004006
4007 if (rliteral != NULL && rliteral->handle()->IsSmi()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004008 LoadAndSpill(node->left());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004009 SmiOperation(node->op(),
4010 rliteral->handle(),
4011 false,
4012 overwrite_right ? OVERWRITE_RIGHT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004013
4014 } else if (lliteral != NULL && lliteral->handle()->IsSmi()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004015 LoadAndSpill(node->right());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004016 SmiOperation(node->op(),
4017 lliteral->handle(),
4018 true,
4019 overwrite_left ? OVERWRITE_LEFT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004020
4021 } else {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004022 OverwriteMode overwrite_mode = NO_OVERWRITE;
4023 if (overwrite_left) {
4024 overwrite_mode = OVERWRITE_LEFT;
4025 } else if (overwrite_right) {
4026 overwrite_mode = OVERWRITE_RIGHT;
4027 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004028 LoadAndSpill(node->left());
4029 LoadAndSpill(node->right());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004030 GenericBinaryOperation(node->op(), overwrite_mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004031 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004032 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004033 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004034 ASSERT(!has_valid_frame() ||
4035 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004036 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004037}
4038
4039
ager@chromium.org7c537e22008-10-16 08:43:32 +00004040void CodeGenerator::VisitThisFunction(ThisFunction* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004041#ifdef DEBUG
4042 int original_height = frame_->height();
4043#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004044 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004045 __ ldr(r0, frame_->Function());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004046 frame_->EmitPush(r0);
4047 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004048}
4049
4050
ager@chromium.org7c537e22008-10-16 08:43:32 +00004051void CodeGenerator::VisitCompareOperation(CompareOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004052#ifdef DEBUG
4053 int original_height = frame_->height();
4054#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004055 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004056 Comment cmnt(masm_, "[ CompareOperation");
4057
4058 // Get the expressions from the node.
4059 Expression* left = node->left();
4060 Expression* right = node->right();
4061 Token::Value op = node->op();
4062
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004063 // To make null checks efficient, we check if either left or right is the
4064 // literal 'null'. If so, we optimize the code by inlining a null check
4065 // instead of calling the (very) general runtime routine for checking
4066 // equality.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004067 if (op == Token::EQ || op == Token::EQ_STRICT) {
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00004068 bool left_is_null =
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004069 left->AsLiteral() != NULL && left->AsLiteral()->IsNull();
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00004070 bool right_is_null =
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004071 right->AsLiteral() != NULL && right->AsLiteral()->IsNull();
4072 // The 'null' value can only be equal to 'null' or 'undefined'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004073 if (left_is_null || right_is_null) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004074 LoadAndSpill(left_is_null ? right : left);
4075 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004076 __ LoadRoot(ip, Heap::kNullValueRootIndex);
4077 __ cmp(r0, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004078
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004079 // The 'null' value is only equal to 'undefined' if using non-strict
4080 // comparisons.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004081 if (op != Token::EQ_STRICT) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004082 true_target()->Branch(eq);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004083
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004084 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
4085 __ cmp(r0, Operand(ip));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004086 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004087
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004088 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004089 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004090
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004091 // It can be an undetectable object.
4092 __ ldr(r0, FieldMemOperand(r0, HeapObject::kMapOffset));
4093 __ ldrb(r0, FieldMemOperand(r0, Map::kBitFieldOffset));
4094 __ and_(r0, r0, Operand(1 << Map::kIsUndetectable));
4095 __ cmp(r0, Operand(1 << Map::kIsUndetectable));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004096 }
4097
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004098 cc_reg_ = eq;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004099 ASSERT(has_cc() && frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004100 return;
4101 }
4102 }
4103
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004104 // To make typeof testing for natives implemented in JavaScript really
4105 // efficient, we generate special code for expressions of the form:
4106 // 'typeof <expression> == <string>'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004107 UnaryOperation* operation = left->AsUnaryOperation();
4108 if ((op == Token::EQ || op == Token::EQ_STRICT) &&
4109 (operation != NULL && operation->op() == Token::TYPEOF) &&
4110 (right->AsLiteral() != NULL &&
4111 right->AsLiteral()->handle()->IsString())) {
4112 Handle<String> check(String::cast(*right->AsLiteral()->handle()));
4113
mads.s.ager31e71382008-08-13 09:32:07 +00004114 // Load the operand, move it to register r1.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004115 LoadTypeofExpression(operation->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004116 frame_->EmitPop(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004117
4118 if (check->Equals(Heap::number_symbol())) {
4119 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004120 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004121 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004122 __ LoadRoot(ip, Heap::kHeapNumberMapRootIndex);
4123 __ cmp(r1, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004124 cc_reg_ = eq;
4125
4126 } else if (check->Equals(Heap::string_symbol())) {
4127 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004128 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004129
4130 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
4131
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004132 // It can be an undetectable string object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004133 __ ldrb(r2, FieldMemOperand(r1, Map::kBitFieldOffset));
4134 __ and_(r2, r2, Operand(1 << Map::kIsUndetectable));
4135 __ cmp(r2, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004136 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004137
4138 __ ldrb(r2, FieldMemOperand(r1, Map::kInstanceTypeOffset));
4139 __ cmp(r2, Operand(FIRST_NONSTRING_TYPE));
4140 cc_reg_ = lt;
4141
4142 } else if (check->Equals(Heap::boolean_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004143 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
4144 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004145 true_target()->Branch(eq);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004146 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
4147 __ cmp(r1, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004148 cc_reg_ = eq;
4149
4150 } else if (check->Equals(Heap::undefined_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004151 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
4152 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004153 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004154
4155 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004156 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004157
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004158 // It can be an undetectable object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004159 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
4160 __ ldrb(r2, FieldMemOperand(r1, Map::kBitFieldOffset));
4161 __ and_(r2, r2, Operand(1 << Map::kIsUndetectable));
4162 __ cmp(r2, Operand(1 << Map::kIsUndetectable));
4163
4164 cc_reg_ = eq;
4165
4166 } else if (check->Equals(Heap::function_symbol())) {
4167 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004168 false_target()->Branch(eq);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004169 Register map_reg = r2;
4170 __ CompareObjectType(r1, map_reg, r1, JS_FUNCTION_TYPE);
4171 true_target()->Branch(eq);
4172 // Regular expressions are callable so typeof == 'function'.
4173 __ CompareInstanceType(map_reg, r1, JS_REGEXP_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004174 cc_reg_ = eq;
4175
4176 } else if (check->Equals(Heap::object_symbol())) {
4177 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004178 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004179
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004180 __ LoadRoot(ip, Heap::kNullValueRootIndex);
4181 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004182 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004183
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004184 Register map_reg = r2;
4185 __ CompareObjectType(r1, map_reg, r1, JS_REGEXP_TYPE);
4186 false_target()->Branch(eq);
4187
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004188 // It can be an undetectable object.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004189 __ ldrb(r1, FieldMemOperand(map_reg, Map::kBitFieldOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004190 __ and_(r1, r1, Operand(1 << Map::kIsUndetectable));
4191 __ cmp(r1, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004192 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004193
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004194 __ ldrb(r1, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
4195 __ cmp(r1, Operand(FIRST_JS_OBJECT_TYPE));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004196 false_target()->Branch(lt);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004197 __ cmp(r1, Operand(LAST_JS_OBJECT_TYPE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004198 cc_reg_ = le;
4199
4200 } else {
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004201 // Uncommon case: typeof testing against a string literal that is
4202 // never returned from the typeof operator.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004203 false_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004204 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004205 ASSERT(!has_valid_frame() ||
4206 (has_cc() && frame_->height() == original_height));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004207 return;
4208 }
4209
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004210 switch (op) {
4211 case Token::EQ:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004212 Comparison(eq, left, right, false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004213 break;
4214
4215 case Token::LT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004216 Comparison(lt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004217 break;
4218
4219 case Token::GT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004220 Comparison(gt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004221 break;
4222
4223 case Token::LTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004224 Comparison(le, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004225 break;
4226
4227 case Token::GTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004228 Comparison(ge, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004229 break;
4230
4231 case Token::EQ_STRICT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004232 Comparison(eq, left, right, true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004233 break;
4234
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004235 case Token::IN: {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004236 LoadAndSpill(left);
4237 LoadAndSpill(right);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004238 Result arg_count(r0);
4239 __ mov(r0, Operand(1)); // not counting receiver
4240 frame_->InvokeBuiltin(Builtins::IN, CALL_JS, &arg_count, 2);
4241 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004242 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004243 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004244
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004245 case Token::INSTANCEOF: {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004246 LoadAndSpill(left);
4247 LoadAndSpill(right);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004248 InstanceofStub stub;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004249 frame_->CallStub(&stub, 2);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004250 // At this point if instanceof succeeded then r0 == 0.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004251 __ tst(r0, Operand(r0));
ager@chromium.org7c537e22008-10-16 08:43:32 +00004252 cc_reg_ = eq;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004253 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004254 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004255
4256 default:
4257 UNREACHABLE();
4258 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004259 ASSERT((has_cc() && frame_->height() == original_height) ||
4260 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004261}
4262
4263
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004264#ifdef DEBUG
4265bool CodeGenerator::HasValidEntryRegisters() { return true; }
4266#endif
4267
4268
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004269#undef __
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004270#define __ ACCESS_MASM(masm)
4271
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004272
ager@chromium.org7c537e22008-10-16 08:43:32 +00004273Handle<String> Reference::GetName() {
4274 ASSERT(type_ == NAMED);
4275 Property* property = expression_->AsProperty();
4276 if (property == NULL) {
4277 // Global variable reference treated as a named property reference.
4278 VariableProxy* proxy = expression_->AsVariableProxy();
4279 ASSERT(proxy->AsVariable() != NULL);
4280 ASSERT(proxy->AsVariable()->is_global());
4281 return proxy->name();
4282 } else {
4283 Literal* raw_name = property->key()->AsLiteral();
4284 ASSERT(raw_name != NULL);
4285 return Handle<String>(String::cast(*raw_name->handle()));
4286 }
4287}
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004288
ager@chromium.org7c537e22008-10-16 08:43:32 +00004289
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004290void Reference::GetValue() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004291 ASSERT(cgen_->HasValidEntryRegisters());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004292 ASSERT(!is_illegal());
4293 ASSERT(!cgen_->has_cc());
4294 MacroAssembler* masm = cgen_->masm();
4295 Property* property = expression_->AsProperty();
4296 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004297 cgen_->CodeForSourcePosition(property->position());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004298 }
4299
4300 switch (type_) {
4301 case SLOT: {
4302 Comment cmnt(masm, "[ Load from Slot");
4303 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot();
4304 ASSERT(slot != NULL);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004305 cgen_->LoadFromSlot(slot, NOT_INSIDE_TYPEOF);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004306 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004307 }
4308
ager@chromium.org7c537e22008-10-16 08:43:32 +00004309 case NAMED: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004310 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004311 Comment cmnt(masm, "[ Load from named Property");
ager@chromium.org7c537e22008-10-16 08:43:32 +00004312 Handle<String> name(GetName());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004313 Variable* var = expression_->AsVariableProxy()->AsVariable();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004314 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
4315 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004316 Result name_reg(r2);
4317 __ mov(r2, Operand(name));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004318 ASSERT(var == NULL || var->is_global());
4319 RelocInfo::Mode rmode = (var == NULL)
4320 ? RelocInfo::CODE_TARGET
4321 : RelocInfo::CODE_TARGET_CONTEXT;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004322 frame->CallCodeObject(ic, rmode, &name_reg, 0);
4323 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004324 break;
4325 }
4326
4327 case KEYED: {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004328 // TODO(181): Implement inlined version of array indexing once
4329 // loop nesting is properly tracked on ARM.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004330 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004331 Comment cmnt(masm, "[ Load from keyed Property");
4332 ASSERT(property != NULL);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004333 Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Initialize));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004334 Variable* var = expression_->AsVariableProxy()->AsVariable();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004335 ASSERT(var == NULL || var->is_global());
4336 RelocInfo::Mode rmode = (var == NULL)
4337 ? RelocInfo::CODE_TARGET
4338 : RelocInfo::CODE_TARGET_CONTEXT;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004339 frame->CallCodeObject(ic, rmode, 0);
4340 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004341 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004342 }
4343
4344 default:
4345 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004346 }
4347}
4348
4349
ager@chromium.org7c537e22008-10-16 08:43:32 +00004350void Reference::SetValue(InitState init_state) {
4351 ASSERT(!is_illegal());
4352 ASSERT(!cgen_->has_cc());
4353 MacroAssembler* masm = cgen_->masm();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004354 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004355 Property* property = expression_->AsProperty();
4356 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004357 cgen_->CodeForSourcePosition(property->position());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004358 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004359
ager@chromium.org7c537e22008-10-16 08:43:32 +00004360 switch (type_) {
4361 case SLOT: {
4362 Comment cmnt(masm, "[ Store to Slot");
4363 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot();
4364 ASSERT(slot != NULL);
4365 if (slot->type() == Slot::LOOKUP) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00004366 ASSERT(slot->var()->is_dynamic());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004367
ager@chromium.org7c537e22008-10-16 08:43:32 +00004368 // For now, just do a runtime call.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004369 frame->EmitPush(cp);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004370 __ mov(r0, Operand(slot->var()->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004371 frame->EmitPush(r0);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004372
ager@chromium.org7c537e22008-10-16 08:43:32 +00004373 if (init_state == CONST_INIT) {
4374 // Same as the case for a normal store, but ignores attribute
4375 // (e.g. READ_ONLY) of context slot so that we can initialize
4376 // const properties (introduced via eval("const foo = (some
4377 // expr);")). Also, uses the current function context instead of
4378 // the top context.
4379 //
4380 // Note that we must declare the foo upon entry of eval(), via a
4381 // context slot declaration, but we cannot initialize it at the
4382 // same time, because the const declaration may be at the end of
4383 // the eval code (sigh...) and the const variable may have been
4384 // used before (where its value is 'undefined'). Thus, we can only
4385 // do the initialization when we actually encounter the expression
4386 // and when the expression operands are defined and valid, and
4387 // thus we need the split into 2 operations: declaration of the
4388 // context slot followed by initialization.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004389 frame->CallRuntime(Runtime::kInitializeConstContextSlot, 3);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004390 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004391 frame->CallRuntime(Runtime::kStoreContextSlot, 3);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004392 }
4393 // Storing a variable must keep the (new) value on the expression
4394 // stack. This is necessary for compiling assignment expressions.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004395 frame->EmitPush(r0);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004396
ager@chromium.org7c537e22008-10-16 08:43:32 +00004397 } else {
ager@chromium.org381abbb2009-02-25 13:23:22 +00004398 ASSERT(!slot->var()->is_dynamic());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004399
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004400 JumpTarget exit;
ager@chromium.org7c537e22008-10-16 08:43:32 +00004401 if (init_state == CONST_INIT) {
4402 ASSERT(slot->var()->mode() == Variable::CONST);
4403 // Only the first const initialization must be executed (the slot
4404 // still contains 'the hole' value). When the assignment is
4405 // executed, the code is identical to a normal store (see below).
4406 Comment cmnt(masm, "[ Init const");
4407 __ ldr(r2, cgen_->SlotOperand(slot, r2));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004408 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
4409 __ cmp(r2, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004410 exit.Branch(ne);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004411 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004412
ager@chromium.org7c537e22008-10-16 08:43:32 +00004413 // We must execute the store. Storing a variable must keep the
4414 // (new) value on the stack. This is necessary for compiling
4415 // assignment expressions.
4416 //
4417 // Note: We will reach here even with slot->var()->mode() ==
4418 // Variable::CONST because of const declarations which will
4419 // initialize consts to 'the hole' value and by doing so, end up
4420 // calling this code. r2 may be loaded with context; used below in
4421 // RecordWrite.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004422 frame->EmitPop(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004423 __ str(r0, cgen_->SlotOperand(slot, r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004424 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004425 if (slot->type() == Slot::CONTEXT) {
4426 // Skip write barrier if the written value is a smi.
4427 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004428 exit.Branch(eq);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004429 // r2 is loaded with context when calling SlotOperand above.
4430 int offset = FixedArray::kHeaderSize + slot->index() * kPointerSize;
4431 __ mov(r3, Operand(offset));
4432 __ RecordWrite(r2, r3, r1);
4433 }
4434 // If we definitely did not jump over the assignment, we do not need
4435 // to bind the exit label. Doing so can defeat peephole
4436 // optimization.
4437 if (init_state == CONST_INIT || slot->type() == Slot::CONTEXT) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004438 exit.Bind();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004439 }
4440 }
4441 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004442 }
4443
ager@chromium.org7c537e22008-10-16 08:43:32 +00004444 case NAMED: {
4445 Comment cmnt(masm, "[ Store to named Property");
4446 // Call the appropriate IC code.
ager@chromium.org7c537e22008-10-16 08:43:32 +00004447 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004448 Handle<String> name(GetName());
4449
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004450 Result value(r0);
4451 frame->EmitPop(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004452
4453 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004454 Result property_name(r2);
4455 __ mov(r2, Operand(name));
4456 frame->CallCodeObject(ic,
4457 RelocInfo::CODE_TARGET,
4458 &value,
4459 &property_name,
4460 0);
4461 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004462 break;
4463 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004464
ager@chromium.org7c537e22008-10-16 08:43:32 +00004465 case KEYED: {
4466 Comment cmnt(masm, "[ Store to keyed Property");
4467 Property* property = expression_->AsProperty();
4468 ASSERT(property != NULL);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004469 cgen_->CodeForSourcePosition(property->position());
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004470
4471 // Call IC code.
4472 Handle<Code> ic(Builtins::builtin(Builtins::KeyedStoreIC_Initialize));
4473 // TODO(1222589): Make the IC grab the values from the stack.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004474 Result value(r0);
4475 frame->EmitPop(r0); // value
4476 frame->CallCodeObject(ic, RelocInfo::CODE_TARGET, &value, 0);
4477 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004478 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004479 }
ager@chromium.org7c537e22008-10-16 08:43:32 +00004480
4481 default:
4482 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004483 }
4484}
4485
4486
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004487// Count leading zeros in a 32 bit word. On ARM5 and later it uses the clz
4488// instruction. On pre-ARM5 hardware this routine gives the wrong answer for 0
4489// (31 instead of 32).
4490static void CountLeadingZeros(
4491 MacroAssembler* masm,
4492 Register source,
4493 Register scratch,
4494 Register zeros) {
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +00004495#ifdef CAN_USE_ARMV5_INSTRUCTIONS
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004496 __ clz(zeros, source); // This instruction is only supported after ARM5.
4497#else
4498 __ mov(zeros, Operand(0));
4499 __ mov(scratch, source);
4500 // Top 16.
4501 __ tst(scratch, Operand(0xffff0000));
4502 __ add(zeros, zeros, Operand(16), LeaveCC, eq);
4503 __ mov(scratch, Operand(scratch, LSL, 16), LeaveCC, eq);
4504 // Top 8.
4505 __ tst(scratch, Operand(0xff000000));
4506 __ add(zeros, zeros, Operand(8), LeaveCC, eq);
4507 __ mov(scratch, Operand(scratch, LSL, 8), LeaveCC, eq);
4508 // Top 4.
4509 __ tst(scratch, Operand(0xf0000000));
4510 __ add(zeros, zeros, Operand(4), LeaveCC, eq);
4511 __ mov(scratch, Operand(scratch, LSL, 4), LeaveCC, eq);
4512 // Top 2.
4513 __ tst(scratch, Operand(0xc0000000));
4514 __ add(zeros, zeros, Operand(2), LeaveCC, eq);
4515 __ mov(scratch, Operand(scratch, LSL, 2), LeaveCC, eq);
4516 // Top bit.
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004517 __ tst(scratch, Operand(0x80000000u));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004518 __ add(zeros, zeros, Operand(1), LeaveCC, eq);
4519#endif
4520}
4521
4522
4523// Takes a Smi and converts to an IEEE 64 bit floating point value in two
4524// registers. The format is 1 sign bit, 11 exponent bits (biased 1023) and
4525// 52 fraction bits (20 in the first word, 32 in the second). Zeros is a
4526// scratch register. Destroys the source register. No GC occurs during this
4527// stub so you don't have to set up the frame.
4528class ConvertToDoubleStub : public CodeStub {
4529 public:
4530 ConvertToDoubleStub(Register result_reg_1,
4531 Register result_reg_2,
4532 Register source_reg,
4533 Register scratch_reg)
4534 : result1_(result_reg_1),
4535 result2_(result_reg_2),
4536 source_(source_reg),
4537 zeros_(scratch_reg) { }
4538
4539 private:
4540 Register result1_;
4541 Register result2_;
4542 Register source_;
4543 Register zeros_;
4544
4545 // Minor key encoding in 16 bits.
4546 class ModeBits: public BitField<OverwriteMode, 0, 2> {};
4547 class OpBits: public BitField<Token::Value, 2, 14> {};
4548
4549 Major MajorKey() { return ConvertToDouble; }
4550 int MinorKey() {
4551 // Encode the parameters in a unique 16 bit value.
4552 return result1_.code() +
4553 (result2_.code() << 4) +
4554 (source_.code() << 8) +
4555 (zeros_.code() << 12);
4556 }
4557
4558 void Generate(MacroAssembler* masm);
4559
4560 const char* GetName() { return "ConvertToDoubleStub"; }
4561
4562#ifdef DEBUG
4563 void Print() { PrintF("ConvertToDoubleStub\n"); }
4564#endif
4565};
4566
4567
4568void ConvertToDoubleStub::Generate(MacroAssembler* masm) {
4569#ifndef BIG_ENDIAN_FLOATING_POINT
4570 Register exponent = result1_;
4571 Register mantissa = result2_;
4572#else
4573 Register exponent = result2_;
4574 Register mantissa = result1_;
4575#endif
4576 Label not_special;
4577 // Convert from Smi to integer.
4578 __ mov(source_, Operand(source_, ASR, kSmiTagSize));
4579 // Move sign bit from source to destination. This works because the sign bit
4580 // in the exponent word of the double has the same position and polarity as
4581 // the 2's complement sign bit in a Smi.
4582 ASSERT(HeapNumber::kSignMask == 0x80000000u);
4583 __ and_(exponent, source_, Operand(HeapNumber::kSignMask), SetCC);
4584 // Subtract from 0 if source was negative.
4585 __ rsb(source_, source_, Operand(0), LeaveCC, ne);
4586 __ cmp(source_, Operand(1));
4587 __ b(gt, &not_special);
4588
4589 // We have -1, 0 or 1, which we treat specially.
4590 __ cmp(source_, Operand(0));
4591 // For 1 or -1 we need to or in the 0 exponent (biased to 1023).
4592 static const uint32_t exponent_word_for_1 =
4593 HeapNumber::kExponentBias << HeapNumber::kExponentShift;
4594 __ orr(exponent, exponent, Operand(exponent_word_for_1), LeaveCC, ne);
4595 // 1, 0 and -1 all have 0 for the second word.
4596 __ mov(mantissa, Operand(0));
4597 __ Ret();
4598
4599 __ bind(&not_special);
4600 // Count leading zeros. Uses result2 for a scratch register on pre-ARM5.
4601 // Gets the wrong answer for 0, but we already checked for that case above.
4602 CountLeadingZeros(masm, source_, mantissa, zeros_);
4603 // Compute exponent and or it into the exponent register.
4604 // We use result2 as a scratch register here.
4605 __ rsb(mantissa, zeros_, Operand(31 + HeapNumber::kExponentBias));
4606 __ orr(exponent,
4607 exponent,
4608 Operand(mantissa, LSL, HeapNumber::kExponentShift));
4609 // Shift up the source chopping the top bit off.
4610 __ add(zeros_, zeros_, Operand(1));
4611 // This wouldn't work for 1.0 or -1.0 as the shift would be 32 which means 0.
4612 __ mov(source_, Operand(source_, LSL, zeros_));
4613 // Compute lower part of fraction (last 12 bits).
4614 __ mov(mantissa, Operand(source_, LSL, HeapNumber::kMantissaBitsInTopWord));
4615 // And the top (top 20 bits).
4616 __ orr(exponent,
4617 exponent,
4618 Operand(source_, LSR, 32 - HeapNumber::kMantissaBitsInTopWord));
4619 __ Ret();
4620}
4621
4622
4623// This stub can convert a signed int32 to a heap number (double). It does
4624// not work for int32s that are in Smi range! No GC occurs during this stub
4625// so you don't have to set up the frame.
4626class WriteInt32ToHeapNumberStub : public CodeStub {
4627 public:
4628 WriteInt32ToHeapNumberStub(Register the_int,
4629 Register the_heap_number,
4630 Register scratch)
4631 : the_int_(the_int),
4632 the_heap_number_(the_heap_number),
4633 scratch_(scratch) { }
4634
4635 private:
4636 Register the_int_;
4637 Register the_heap_number_;
4638 Register scratch_;
4639
4640 // Minor key encoding in 16 bits.
4641 class ModeBits: public BitField<OverwriteMode, 0, 2> {};
4642 class OpBits: public BitField<Token::Value, 2, 14> {};
4643
4644 Major MajorKey() { return WriteInt32ToHeapNumber; }
4645 int MinorKey() {
4646 // Encode the parameters in a unique 16 bit value.
4647 return the_int_.code() +
4648 (the_heap_number_.code() << 4) +
4649 (scratch_.code() << 8);
4650 }
4651
4652 void Generate(MacroAssembler* masm);
4653
4654 const char* GetName() { return "WriteInt32ToHeapNumberStub"; }
4655
4656#ifdef DEBUG
4657 void Print() { PrintF("WriteInt32ToHeapNumberStub\n"); }
4658#endif
4659};
4660
4661
4662// See comment for class.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004663void WriteInt32ToHeapNumberStub::Generate(MacroAssembler* masm) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004664 Label max_negative_int;
4665 // the_int_ has the answer which is a signed int32 but not a Smi.
4666 // We test for the special value that has a different exponent. This test
4667 // has the neat side effect of setting the flags according to the sign.
4668 ASSERT(HeapNumber::kSignMask == 0x80000000u);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004669 __ cmp(the_int_, Operand(0x80000000u));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004670 __ b(eq, &max_negative_int);
4671 // Set up the correct exponent in scratch_. All non-Smi int32s have the same.
4672 // A non-Smi integer is 1.xxx * 2^30 so the exponent is 30 (biased).
4673 uint32_t non_smi_exponent =
4674 (HeapNumber::kExponentBias + 30) << HeapNumber::kExponentShift;
4675 __ mov(scratch_, Operand(non_smi_exponent));
4676 // Set the sign bit in scratch_ if the value was negative.
4677 __ orr(scratch_, scratch_, Operand(HeapNumber::kSignMask), LeaveCC, cs);
4678 // Subtract from 0 if the value was negative.
4679 __ rsb(the_int_, the_int_, Operand(0), LeaveCC, cs);
4680 // We should be masking the implict first digit of the mantissa away here,
4681 // but it just ends up combining harmlessly with the last digit of the
4682 // exponent that happens to be 1. The sign bit is 0 so we shift 10 to get
4683 // the most significant 1 to hit the last bit of the 12 bit sign and exponent.
4684 ASSERT(((1 << HeapNumber::kExponentShift) & non_smi_exponent) != 0);
4685 const int shift_distance = HeapNumber::kNonMantissaBitsInTopWord - 2;
4686 __ orr(scratch_, scratch_, Operand(the_int_, LSR, shift_distance));
4687 __ str(scratch_, FieldMemOperand(the_heap_number_,
4688 HeapNumber::kExponentOffset));
4689 __ mov(scratch_, Operand(the_int_, LSL, 32 - shift_distance));
4690 __ str(scratch_, FieldMemOperand(the_heap_number_,
4691 HeapNumber::kMantissaOffset));
4692 __ Ret();
4693
4694 __ bind(&max_negative_int);
4695 // The max negative int32 is stored as a positive number in the mantissa of
4696 // a double because it uses a sign bit instead of using two's complement.
4697 // The actual mantissa bits stored are all 0 because the implicit most
4698 // significant 1 bit is not stored.
4699 non_smi_exponent += 1 << HeapNumber::kExponentShift;
4700 __ mov(ip, Operand(HeapNumber::kSignMask | non_smi_exponent));
4701 __ str(ip, FieldMemOperand(the_heap_number_, HeapNumber::kExponentOffset));
4702 __ mov(ip, Operand(0));
4703 __ str(ip, FieldMemOperand(the_heap_number_, HeapNumber::kMantissaOffset));
4704 __ Ret();
4705}
4706
4707
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004708// Handle the case where the lhs and rhs are the same object.
4709// Equality is almost reflexive (everything but NaN), so this is a test
4710// for "identity and not NaN".
4711static void EmitIdenticalObjectComparison(MacroAssembler* masm,
4712 Label* slow,
4713 Condition cc) {
4714 Label not_identical;
4715 __ cmp(r0, Operand(r1));
4716 __ b(ne, &not_identical);
4717
4718 Register exp_mask_reg = r5;
4719 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
4720
4721 // Test for NaN. Sadly, we can't just compare to Factory::nan_value(),
4722 // so we do the second best thing - test it ourselves.
4723 Label heap_number, return_equal;
4724 // They are both equal and they are not both Smis so both of them are not
4725 // Smis. If it's not a heap number, then return equal.
4726 if (cc == lt || cc == gt) {
4727 __ CompareObjectType(r0, r4, r4, FIRST_JS_OBJECT_TYPE);
4728 __ b(ge, slow);
4729 } else {
4730 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
4731 __ b(eq, &heap_number);
4732 // Comparing JS objects with <=, >= is complicated.
4733 if (cc != eq) {
4734 __ cmp(r4, Operand(FIRST_JS_OBJECT_TYPE));
4735 __ b(ge, slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004736 // Normally here we fall through to return_equal, but undefined is
4737 // special: (undefined == undefined) == true, but (undefined <= undefined)
4738 // == false! See ECMAScript 11.8.5.
4739 if (cc == le || cc == ge) {
4740 __ cmp(r4, Operand(ODDBALL_TYPE));
4741 __ b(ne, &return_equal);
4742 __ LoadRoot(r2, Heap::kUndefinedValueRootIndex);
4743 __ cmp(r0, Operand(r2));
4744 __ b(ne, &return_equal);
4745 if (cc == le) {
4746 __ mov(r0, Operand(GREATER)); // undefined <= undefined should fail.
4747 } else {
4748 __ mov(r0, Operand(LESS)); // undefined >= undefined should fail.
4749 }
4750 __ mov(pc, Operand(lr)); // Return.
4751 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004752 }
4753 }
4754 __ bind(&return_equal);
4755 if (cc == lt) {
4756 __ mov(r0, Operand(GREATER)); // Things aren't less than themselves.
4757 } else if (cc == gt) {
4758 __ mov(r0, Operand(LESS)); // Things aren't greater than themselves.
4759 } else {
4760 __ mov(r0, Operand(0)); // Things are <=, >=, ==, === themselves.
4761 }
4762 __ mov(pc, Operand(lr)); // Return.
4763
4764 // For less and greater we don't have to check for NaN since the result of
4765 // x < x is false regardless. For the others here is some code to check
4766 // for NaN.
4767 if (cc != lt && cc != gt) {
4768 __ bind(&heap_number);
4769 // It is a heap number, so return non-equal if it's NaN and equal if it's
4770 // not NaN.
4771 // The representation of NaN values has all exponent bits (52..62) set,
4772 // and not all mantissa bits (0..51) clear.
4773 // Read top bits of double representation (second word of value).
4774 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
4775 // Test that exponent bits are all set.
4776 __ and_(r3, r2, Operand(exp_mask_reg));
4777 __ cmp(r3, Operand(exp_mask_reg));
4778 __ b(ne, &return_equal);
4779
4780 // Shift out flag and all exponent bits, retaining only mantissa.
4781 __ mov(r2, Operand(r2, LSL, HeapNumber::kNonMantissaBitsInTopWord));
4782 // Or with all low-bits of mantissa.
4783 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kMantissaOffset));
4784 __ orr(r0, r3, Operand(r2), SetCC);
4785 // For equal we already have the right value in r0: Return zero (equal)
4786 // if all bits in mantissa are zero (it's an Infinity) and non-zero if not
4787 // (it's a NaN). For <= and >= we need to load r0 with the failing value
4788 // if it's a NaN.
4789 if (cc != eq) {
4790 // All-zero means Infinity means equal.
4791 __ mov(pc, Operand(lr), LeaveCC, eq); // Return equal
4792 if (cc == le) {
4793 __ mov(r0, Operand(GREATER)); // NaN <= NaN should fail.
4794 } else {
4795 __ mov(r0, Operand(LESS)); // NaN >= NaN should fail.
4796 }
4797 }
4798 __ mov(pc, Operand(lr)); // Return.
4799 }
4800 // No fall through here.
4801
4802 __ bind(&not_identical);
4803}
4804
4805
4806// See comment at call site.
4807static void EmitSmiNonsmiComparison(MacroAssembler* masm,
4808 Label* rhs_not_nan,
4809 Label* slow,
4810 bool strict) {
4811 Label lhs_is_smi;
4812 __ tst(r0, Operand(kSmiTagMask));
4813 __ b(eq, &lhs_is_smi);
4814
4815 // Rhs is a Smi. Check whether the non-smi is a heap number.
4816 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
4817 if (strict) {
4818 // If lhs was not a number and rhs was a Smi then strict equality cannot
4819 // succeed. Return non-equal (r0 is already not zero)
4820 __ mov(pc, Operand(lr), LeaveCC, ne); // Return.
4821 } else {
4822 // Smi compared non-strictly with a non-Smi non-heap-number. Call
4823 // the runtime.
4824 __ b(ne, slow);
4825 }
4826
4827 // Rhs is a smi, lhs is a number.
4828 __ push(lr);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004829
4830 if (CpuFeatures::IsSupported(VFP3)) {
4831 CpuFeatures::Scope scope(VFP3);
4832 __ IntegerToDoubleConversionWithVFP3(r1, r3, r2);
4833 } else {
4834 __ mov(r7, Operand(r1));
4835 ConvertToDoubleStub stub1(r3, r2, r7, r6);
4836 __ Call(stub1.GetCode(), RelocInfo::CODE_TARGET);
4837 }
4838
4839
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004840 // r3 and r2 are rhs as double.
4841 __ ldr(r1, FieldMemOperand(r0, HeapNumber::kValueOffset + kPointerSize));
4842 __ ldr(r0, FieldMemOperand(r0, HeapNumber::kValueOffset));
4843 // We now have both loaded as doubles but we can skip the lhs nan check
4844 // since it's a Smi.
4845 __ pop(lr);
4846 __ jmp(rhs_not_nan);
4847
4848 __ bind(&lhs_is_smi);
4849 // Lhs is a Smi. Check whether the non-smi is a heap number.
4850 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
4851 if (strict) {
4852 // If lhs was not a number and rhs was a Smi then strict equality cannot
4853 // succeed. Return non-equal.
4854 __ mov(r0, Operand(1), LeaveCC, ne); // Non-zero indicates not equal.
4855 __ mov(pc, Operand(lr), LeaveCC, ne); // Return.
4856 } else {
4857 // Smi compared non-strictly with a non-Smi non-heap-number. Call
4858 // the runtime.
4859 __ b(ne, slow);
4860 }
4861
4862 // Lhs is a smi, rhs is a number.
4863 // r0 is Smi and r1 is heap number.
4864 __ push(lr);
4865 __ ldr(r2, FieldMemOperand(r1, HeapNumber::kValueOffset));
4866 __ ldr(r3, FieldMemOperand(r1, HeapNumber::kValueOffset + kPointerSize));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004867
4868 if (CpuFeatures::IsSupported(VFP3)) {
4869 CpuFeatures::Scope scope(VFP3);
4870 __ IntegerToDoubleConversionWithVFP3(r0, r1, r0);
4871 } else {
4872 __ mov(r7, Operand(r0));
4873 ConvertToDoubleStub stub2(r1, r0, r7, r6);
4874 __ Call(stub2.GetCode(), RelocInfo::CODE_TARGET);
4875 }
4876
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004877 __ pop(lr);
4878 // Fall through to both_loaded_as_doubles.
4879}
4880
4881
4882void EmitNanCheck(MacroAssembler* masm, Label* rhs_not_nan, Condition cc) {
4883 bool exp_first = (HeapNumber::kExponentOffset == HeapNumber::kValueOffset);
4884 Register lhs_exponent = exp_first ? r0 : r1;
4885 Register rhs_exponent = exp_first ? r2 : r3;
4886 Register lhs_mantissa = exp_first ? r1 : r0;
4887 Register rhs_mantissa = exp_first ? r3 : r2;
4888 Label one_is_nan, neither_is_nan;
4889
4890 Register exp_mask_reg = r5;
4891
4892 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
4893 __ and_(r4, rhs_exponent, Operand(exp_mask_reg));
4894 __ cmp(r4, Operand(exp_mask_reg));
4895 __ b(ne, rhs_not_nan);
4896 __ mov(r4,
4897 Operand(rhs_exponent, LSL, HeapNumber::kNonMantissaBitsInTopWord),
4898 SetCC);
4899 __ b(ne, &one_is_nan);
4900 __ cmp(rhs_mantissa, Operand(0));
4901 __ b(ne, &one_is_nan);
4902
4903 __ bind(rhs_not_nan);
4904 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
4905 __ and_(r4, lhs_exponent, Operand(exp_mask_reg));
4906 __ cmp(r4, Operand(exp_mask_reg));
4907 __ b(ne, &neither_is_nan);
4908 __ mov(r4,
4909 Operand(lhs_exponent, LSL, HeapNumber::kNonMantissaBitsInTopWord),
4910 SetCC);
4911 __ b(ne, &one_is_nan);
4912 __ cmp(lhs_mantissa, Operand(0));
4913 __ b(eq, &neither_is_nan);
4914
4915 __ bind(&one_is_nan);
4916 // NaN comparisons always fail.
4917 // Load whatever we need in r0 to make the comparison fail.
4918 if (cc == lt || cc == le) {
4919 __ mov(r0, Operand(GREATER));
4920 } else {
4921 __ mov(r0, Operand(LESS));
4922 }
4923 __ mov(pc, Operand(lr)); // Return.
4924
4925 __ bind(&neither_is_nan);
4926}
4927
4928
4929// See comment at call site.
4930static void EmitTwoNonNanDoubleComparison(MacroAssembler* masm, Condition cc) {
4931 bool exp_first = (HeapNumber::kExponentOffset == HeapNumber::kValueOffset);
4932 Register lhs_exponent = exp_first ? r0 : r1;
4933 Register rhs_exponent = exp_first ? r2 : r3;
4934 Register lhs_mantissa = exp_first ? r1 : r0;
4935 Register rhs_mantissa = exp_first ? r3 : r2;
4936
4937 // r0, r1, r2, r3 have the two doubles. Neither is a NaN.
4938 if (cc == eq) {
4939 // Doubles are not equal unless they have the same bit pattern.
4940 // Exception: 0 and -0.
4941 __ cmp(lhs_mantissa, Operand(rhs_mantissa));
4942 __ orr(r0, lhs_mantissa, Operand(rhs_mantissa), LeaveCC, ne);
4943 // Return non-zero if the numbers are unequal.
4944 __ mov(pc, Operand(lr), LeaveCC, ne);
4945
4946 __ sub(r0, lhs_exponent, Operand(rhs_exponent), SetCC);
4947 // If exponents are equal then return 0.
4948 __ mov(pc, Operand(lr), LeaveCC, eq);
4949
4950 // Exponents are unequal. The only way we can return that the numbers
4951 // are equal is if one is -0 and the other is 0. We already dealt
4952 // with the case where both are -0 or both are 0.
4953 // We start by seeing if the mantissas (that are equal) or the bottom
4954 // 31 bits of the rhs exponent are non-zero. If so we return not
4955 // equal.
4956 __ orr(r4, rhs_mantissa, Operand(rhs_exponent, LSL, kSmiTagSize), SetCC);
4957 __ mov(r0, Operand(r4), LeaveCC, ne);
4958 __ mov(pc, Operand(lr), LeaveCC, ne); // Return conditionally.
4959 // Now they are equal if and only if the lhs exponent is zero in its
4960 // low 31 bits.
4961 __ mov(r0, Operand(lhs_exponent, LSL, kSmiTagSize));
4962 __ mov(pc, Operand(lr));
4963 } else {
4964 // Call a native function to do a comparison between two non-NaNs.
4965 // Call C routine that may not cause GC or other trouble.
4966 __ mov(r5, Operand(ExternalReference::compare_doubles()));
4967 __ Jump(r5); // Tail call.
4968 }
4969}
4970
4971
4972// See comment at call site.
4973static void EmitStrictTwoHeapObjectCompare(MacroAssembler* masm) {
4974 // If either operand is a JSObject or an oddball value, then they are
4975 // not equal since their pointers are different.
4976 // There is no test for undetectability in strict equality.
4977 ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
4978 Label first_non_object;
4979 // Get the type of the first operand into r2 and compare it with
4980 // FIRST_JS_OBJECT_TYPE.
4981 __ CompareObjectType(r0, r2, r2, FIRST_JS_OBJECT_TYPE);
4982 __ b(lt, &first_non_object);
4983
4984 // Return non-zero (r0 is not zero)
4985 Label return_not_equal;
4986 __ bind(&return_not_equal);
4987 __ mov(pc, Operand(lr)); // Return.
4988
4989 __ bind(&first_non_object);
4990 // Check for oddballs: true, false, null, undefined.
4991 __ cmp(r2, Operand(ODDBALL_TYPE));
4992 __ b(eq, &return_not_equal);
4993
4994 __ CompareObjectType(r1, r3, r3, FIRST_JS_OBJECT_TYPE);
4995 __ b(ge, &return_not_equal);
4996
4997 // Check for oddballs: true, false, null, undefined.
4998 __ cmp(r3, Operand(ODDBALL_TYPE));
4999 __ b(eq, &return_not_equal);
5000}
5001
5002
5003// See comment at call site.
5004static void EmitCheckForTwoHeapNumbers(MacroAssembler* masm,
5005 Label* both_loaded_as_doubles,
5006 Label* not_heap_numbers,
5007 Label* slow) {
5008 __ CompareObjectType(r0, r2, r2, HEAP_NUMBER_TYPE);
5009 __ b(ne, not_heap_numbers);
5010 __ CompareObjectType(r1, r3, r3, HEAP_NUMBER_TYPE);
5011 __ b(ne, slow); // First was a heap number, second wasn't. Go slow case.
5012
5013 // Both are heap numbers. Load them up then jump to the code we have
5014 // for that.
5015 __ ldr(r2, FieldMemOperand(r1, HeapNumber::kValueOffset));
5016 __ ldr(r3, FieldMemOperand(r1, HeapNumber::kValueOffset + kPointerSize));
5017 __ ldr(r1, FieldMemOperand(r0, HeapNumber::kValueOffset + kPointerSize));
5018 __ ldr(r0, FieldMemOperand(r0, HeapNumber::kValueOffset));
5019 __ jmp(both_loaded_as_doubles);
5020}
5021
5022
5023// Fast negative check for symbol-to-symbol equality.
5024static void EmitCheckForSymbols(MacroAssembler* masm, Label* slow) {
5025 // r2 is object type of r0.
5026 __ tst(r2, Operand(kIsNotStringMask));
5027 __ b(ne, slow);
5028 __ tst(r2, Operand(kIsSymbolMask));
5029 __ b(eq, slow);
5030 __ CompareObjectType(r1, r3, r3, FIRST_NONSTRING_TYPE);
5031 __ b(ge, slow);
5032 __ tst(r3, Operand(kIsSymbolMask));
5033 __ b(eq, slow);
5034
5035 // Both are symbols. We already checked they weren't the same pointer
5036 // so they are not equal.
5037 __ mov(r0, Operand(1)); // Non-zero indicates not equal.
5038 __ mov(pc, Operand(lr)); // Return.
5039}
5040
5041
5042// On entry r0 and r1 are the things to be compared. On exit r0 is 0,
5043// positive or negative to indicate the result of the comparison.
5044void CompareStub::Generate(MacroAssembler* masm) {
5045 Label slow; // Call builtin.
5046 Label not_smis, both_loaded_as_doubles, rhs_not_nan;
5047
5048 // NOTICE! This code is only reached after a smi-fast-case check, so
5049 // it is certain that at least one operand isn't a smi.
5050
5051 // Handle the case where the objects are identical. Either returns the answer
5052 // or goes to slow. Only falls through if the objects were not identical.
5053 EmitIdenticalObjectComparison(masm, &slow, cc_);
5054
5055 // If either is a Smi (we know that not both are), then they can only
5056 // be strictly equal if the other is a HeapNumber.
5057 ASSERT_EQ(0, kSmiTag);
5058 ASSERT_EQ(0, Smi::FromInt(0));
5059 __ and_(r2, r0, Operand(r1));
5060 __ tst(r2, Operand(kSmiTagMask));
5061 __ b(ne, &not_smis);
5062 // One operand is a smi. EmitSmiNonsmiComparison generates code that can:
5063 // 1) Return the answer.
5064 // 2) Go to slow.
5065 // 3) Fall through to both_loaded_as_doubles.
5066 // 4) Jump to rhs_not_nan.
5067 // In cases 3 and 4 we have found out we were dealing with a number-number
5068 // comparison and the numbers have been loaded into r0, r1, r2, r3 as doubles.
5069 EmitSmiNonsmiComparison(masm, &rhs_not_nan, &slow, strict_);
5070
5071 __ bind(&both_loaded_as_doubles);
5072 // r0, r1, r2, r3 are the double representations of the left hand side
5073 // and the right hand side.
5074
5075 // Checks for NaN in the doubles we have loaded. Can return the answer or
5076 // fall through if neither is a NaN. Also binds rhs_not_nan.
5077 EmitNanCheck(masm, &rhs_not_nan, cc_);
5078
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005079 if (CpuFeatures::IsSupported(VFP3)) {
5080 CpuFeatures::Scope scope(VFP3);
5081 // ARMv7 VFP3 instructions to implement double precision comparison.
5082 __ fmdrr(d6, r0, r1);
5083 __ fmdrr(d7, r2, r3);
5084
5085 __ fcmp(d6, d7);
5086 __ vmrs(pc);
5087 __ mov(r0, Operand(0), LeaveCC, eq);
5088 __ mov(r0, Operand(1), LeaveCC, lt);
5089 __ mvn(r0, Operand(0), LeaveCC, gt);
5090 __ mov(pc, Operand(lr));
5091 } else {
5092 // Compares two doubles in r0, r1, r2, r3 that are not NaNs. Returns the
5093 // answer. Never falls through.
5094 EmitTwoNonNanDoubleComparison(masm, cc_);
5095 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005096
5097 __ bind(&not_smis);
5098 // At this point we know we are dealing with two different objects,
5099 // and neither of them is a Smi. The objects are in r0 and r1.
5100 if (strict_) {
5101 // This returns non-equal for some object types, or falls through if it
5102 // was not lucky.
5103 EmitStrictTwoHeapObjectCompare(masm);
5104 }
5105
5106 Label check_for_symbols;
5107 // Check for heap-number-heap-number comparison. Can jump to slow case,
5108 // or load both doubles into r0, r1, r2, r3 and jump to the code that handles
5109 // that case. If the inputs are not doubles then jumps to check_for_symbols.
5110 // In this case r2 will contain the type of r0.
5111 EmitCheckForTwoHeapNumbers(masm,
5112 &both_loaded_as_doubles,
5113 &check_for_symbols,
5114 &slow);
5115
5116 __ bind(&check_for_symbols);
5117 if (cc_ == eq) {
5118 // Either jumps to slow or returns the answer. Assumes that r2 is the type
5119 // of r0 on entry.
5120 EmitCheckForSymbols(masm, &slow);
5121 }
5122
5123 __ bind(&slow);
5124 __ push(lr);
5125 __ push(r1);
5126 __ push(r0);
5127 // Figure out which native to call and setup the arguments.
5128 Builtins::JavaScript native;
5129 int arg_count = 1; // Not counting receiver.
5130 if (cc_ == eq) {
5131 native = strict_ ? Builtins::STRICT_EQUALS : Builtins::EQUALS;
5132 } else {
5133 native = Builtins::COMPARE;
5134 int ncr; // NaN compare result
5135 if (cc_ == lt || cc_ == le) {
5136 ncr = GREATER;
5137 } else {
5138 ASSERT(cc_ == gt || cc_ == ge); // remaining cases
5139 ncr = LESS;
5140 }
5141 arg_count++;
5142 __ mov(r0, Operand(Smi::FromInt(ncr)));
5143 __ push(r0);
5144 }
5145
5146 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
5147 // tagged as a small integer.
5148 __ mov(r0, Operand(arg_count));
5149 __ InvokeBuiltin(native, CALL_JS);
5150 __ cmp(r0, Operand(0));
5151 __ pop(pc);
5152}
5153
5154
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005155// Allocates a heap number or jumps to the label if the young space is full and
5156// a scavenge is needed.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005157static void AllocateHeapNumber(
5158 MacroAssembler* masm,
5159 Label* need_gc, // Jump here if young space is full.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005160 Register result, // The tagged address of the new heap number.
5161 Register scratch1, // A scratch register.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005162 Register scratch2) { // Another scratch register.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005163 // Allocate an object in the heap for the heap number and tag it as a heap
5164 // object.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005165 __ AllocateInNewSpace(HeapNumber::kSize / kPointerSize,
5166 result,
5167 scratch1,
5168 scratch2,
5169 need_gc,
5170 TAG_OBJECT);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005171
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005172 // Get heap number map and store it in the allocated object.
5173 __ LoadRoot(scratch1, Heap::kHeapNumberMapRootIndex);
5174 __ str(scratch1, FieldMemOperand(result, HeapObject::kMapOffset));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005175}
5176
5177
5178// We fall into this code if the operands were Smis, but the result was
5179// not (eg. overflow). We branch into this code (to the not_smi label) if
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005180// the operands were not both Smi. The operands are in r0 and r1. In order
5181// to call the C-implemented binary fp operation routines we need to end up
5182// with the double precision floating point operands in r0 and r1 (for the
5183// value in r1) and r2 and r3 (for the value in r0).
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005184static void HandleBinaryOpSlowCases(MacroAssembler* masm,
5185 Label* not_smi,
5186 const Builtins::JavaScript& builtin,
5187 Token::Value operation,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005188 OverwriteMode mode) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005189 Label slow, slow_pop_2_first, do_the_call;
5190 Label r0_is_smi, r1_is_smi, finished_loading_r0, finished_loading_r1;
5191 // Smi-smi case (overflow).
5192 // Since both are Smis there is no heap number to overwrite, so allocate.
5193 // The new heap number is in r5. r6 and r7 are scratch.
5194 AllocateHeapNumber(masm, &slow, r5, r6, r7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005195
5196 if (CpuFeatures::IsSupported(VFP3)) {
5197 CpuFeatures::Scope scope(VFP3);
5198 __ IntegerToDoubleConversionWithVFP3(r0, r3, r2);
5199 __ IntegerToDoubleConversionWithVFP3(r1, r1, r0);
5200 } else {
5201 // Write Smi from r0 to r3 and r2 in double format. r6 is scratch.
5202 __ mov(r7, Operand(r0));
5203 ConvertToDoubleStub stub1(r3, r2, r7, r6);
5204 __ push(lr);
5205 __ Call(stub1.GetCode(), RelocInfo::CODE_TARGET);
5206 // Write Smi from r1 to r1 and r0 in double format. r6 is scratch.
5207 __ mov(r7, Operand(r1));
5208 ConvertToDoubleStub stub2(r1, r0, r7, r6);
5209 __ Call(stub2.GetCode(), RelocInfo::CODE_TARGET);
5210 __ pop(lr);
5211 }
5212
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005213 __ jmp(&do_the_call); // Tail call. No return.
5214
5215 // We jump to here if something goes wrong (one param is not a number of any
5216 // sort or new-space allocation fails).
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005217 __ bind(&slow);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005218
5219 // Push arguments to the stack
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005220 __ push(r1);
5221 __ push(r0);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005222
5223 if (Token::ADD == operation) {
5224 // Test for string arguments before calling runtime.
5225 // r1 : first argument
5226 // r0 : second argument
5227 // sp[0] : second argument
5228 // sp[1] : first argument
5229
5230 Label not_strings, not_string1, string1;
5231 __ tst(r1, Operand(kSmiTagMask));
5232 __ b(eq, &not_string1);
5233 __ CompareObjectType(r1, r2, r2, FIRST_NONSTRING_TYPE);
5234 __ b(ge, &not_string1);
5235
5236 // First argument is a a string, test second.
5237 __ tst(r0, Operand(kSmiTagMask));
5238 __ b(eq, &string1);
5239 __ CompareObjectType(r0, r2, r2, FIRST_NONSTRING_TYPE);
5240 __ b(ge, &string1);
5241
5242 // First and second argument are strings.
5243 __ TailCallRuntime(ExternalReference(Runtime::kStringAdd), 2, 1);
5244
5245 // Only first argument is a string.
5246 __ bind(&string1);
5247 __ mov(r0, Operand(2)); // Set number of arguments.
5248 __ InvokeBuiltin(Builtins::STRING_ADD_LEFT, JUMP_JS);
5249
5250 // First argument was not a string, test second.
5251 __ bind(&not_string1);
5252 __ tst(r0, Operand(kSmiTagMask));
5253 __ b(eq, &not_strings);
5254 __ CompareObjectType(r0, r2, r2, FIRST_NONSTRING_TYPE);
5255 __ b(ge, &not_strings);
5256
5257 // Only second argument is a string.
5258 __ b(&not_strings);
5259 __ mov(r0, Operand(2)); // Set number of arguments.
5260 __ InvokeBuiltin(Builtins::STRING_ADD_RIGHT, JUMP_JS);
5261
5262 __ bind(&not_strings);
5263 }
5264
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005265 __ mov(r0, Operand(1)); // Set number of arguments.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005266 __ InvokeBuiltin(builtin, JUMP_JS); // Tail call. No return.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005267
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005268 // We branch here if at least one of r0 and r1 is not a Smi.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005269 __ bind(not_smi);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005270 if (mode == NO_OVERWRITE) {
5271 // In the case where there is no chance of an overwritable float we may as
5272 // well do the allocation immediately while r0 and r1 are untouched.
5273 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5274 }
5275
5276 // Move r0 to a double in r2-r3.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005277 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005278 __ b(eq, &r0_is_smi); // It's a Smi so don't check it's a heap number.
5279 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005280 __ b(ne, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005281 if (mode == OVERWRITE_RIGHT) {
5282 __ mov(r5, Operand(r0)); // Overwrite this heap number.
5283 }
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005284 // Calling convention says that second double is in r2 and r3.
5285 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kValueOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005286 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kValueOffset + 4));
5287 __ jmp(&finished_loading_r0);
5288 __ bind(&r0_is_smi);
5289 if (mode == OVERWRITE_RIGHT) {
5290 // We can't overwrite a Smi so get address of new heap number into r5.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005291 AllocateHeapNumber(masm, &slow, r5, r6, r7);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005292 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005293
5294
5295 if (CpuFeatures::IsSupported(VFP3)) {
5296 CpuFeatures::Scope scope(VFP3);
5297 __ IntegerToDoubleConversionWithVFP3(r0, r3, r2);
5298 } else {
5299 // Write Smi from r0 to r3 and r2 in double format.
5300 __ mov(r7, Operand(r0));
5301 ConvertToDoubleStub stub3(r3, r2, r7, r6);
5302 __ push(lr);
5303 __ Call(stub3.GetCode(), RelocInfo::CODE_TARGET);
5304 __ pop(lr);
5305 }
5306
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005307 __ bind(&finished_loading_r0);
5308
5309 // Move r1 to a double in r0-r1.
5310 __ tst(r1, Operand(kSmiTagMask));
5311 __ b(eq, &r1_is_smi); // It's a Smi so don't check it's a heap number.
5312 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5313 __ b(ne, &slow);
5314 if (mode == OVERWRITE_LEFT) {
5315 __ mov(r5, Operand(r1)); // Overwrite this heap number.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005316 }
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005317 // Calling convention says that first double is in r0 and r1.
5318 __ ldr(r0, FieldMemOperand(r1, HeapNumber::kValueOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005319 __ ldr(r1, FieldMemOperand(r1, HeapNumber::kValueOffset + 4));
5320 __ jmp(&finished_loading_r1);
5321 __ bind(&r1_is_smi);
5322 if (mode == OVERWRITE_LEFT) {
5323 // We can't overwrite a Smi so get address of new heap number into r5.
5324 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5325 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005326
5327 if (CpuFeatures::IsSupported(VFP3)) {
5328 CpuFeatures::Scope scope(VFP3);
5329 __ IntegerToDoubleConversionWithVFP3(r1, r1, r0);
5330 } else {
5331 // Write Smi from r1 to r1 and r0 in double format.
5332 __ mov(r7, Operand(r1));
5333 ConvertToDoubleStub stub4(r1, r0, r7, r6);
5334 __ push(lr);
5335 __ Call(stub4.GetCode(), RelocInfo::CODE_TARGET);
5336 __ pop(lr);
5337 }
5338
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005339 __ bind(&finished_loading_r1);
5340
5341 __ bind(&do_the_call);
5342 // r0: Left value (least significant part of mantissa).
5343 // r1: Left value (sign, exponent, top of mantissa).
5344 // r2: Right value (least significant part of mantissa).
5345 // r3: Right value (sign, exponent, top of mantissa).
5346 // r5: Address of heap number for result.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005347
5348 if (CpuFeatures::IsSupported(VFP3) &&
5349 ((Token::MUL == operation) ||
5350 (Token::DIV == operation) ||
5351 (Token::ADD == operation) ||
5352 (Token::SUB == operation))) {
5353 CpuFeatures::Scope scope(VFP3);
5354 // ARMv7 VFP3 instructions to implement
5355 // double precision, add, subtract, multiply, divide.
5356 __ fmdrr(d6, r0, r1);
5357 __ fmdrr(d7, r2, r3);
5358
5359 if (Token::MUL == operation) {
5360 __ fmuld(d5, d6, d7);
5361 } else if (Token::DIV == operation) {
5362 __ fdivd(d5, d6, d7);
5363 } else if (Token::ADD == operation) {
5364 __ faddd(d5, d6, d7);
5365 } else if (Token::SUB == operation) {
5366 __ fsubd(d5, d6, d7);
5367 } else {
5368 UNREACHABLE();
5369 }
5370
5371 __ fmrrd(r0, r1, d5);
5372
5373 __ str(r0, FieldMemOperand(r5, HeapNumber::kValueOffset));
5374 __ str(r1, FieldMemOperand(r5, HeapNumber::kValueOffset + 4));
5375 __ mov(r0, Operand(r5));
5376 __ mov(pc, lr);
5377 return;
5378 }
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005379 __ push(lr); // For later.
5380 __ push(r5); // Address of heap number that is answer.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005381 __ AlignStack(0);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005382 // Call C routine that may not cause GC or other trouble.
5383 __ mov(r5, Operand(ExternalReference::double_fp_operation(operation)));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005384 __ Call(r5);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005385 __ pop(r4); // Address of heap number.
5386 __ cmp(r4, Operand(Smi::FromInt(0)));
5387 __ pop(r4, eq); // Conditional pop instruction to get rid of alignment push.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005388 // Store answer in the overwritable heap number.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005389#if !defined(USE_ARM_EABI)
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005390 // Double returned in fp coprocessor register 0 and 1, encoded as register
5391 // cr8. Offsets must be divisible by 4 for coprocessor so we need to
5392 // substract the tag from r4.
5393 __ sub(r5, r4, Operand(kHeapObjectTag));
5394 __ stc(p1, cr8, MemOperand(r5, HeapNumber::kValueOffset));
5395#else
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005396 // Double returned in registers 0 and 1.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005397 __ str(r0, FieldMemOperand(r4, HeapNumber::kValueOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005398 __ str(r1, FieldMemOperand(r4, HeapNumber::kValueOffset + 4));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005399#endif
5400 __ mov(r0, Operand(r4));
5401 // And we are done.
5402 __ pop(pc);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005403}
5404
5405
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005406// Tries to get a signed int32 out of a double precision floating point heap
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005407// number. Rounds towards 0. Fastest for doubles that are in the ranges
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005408// -0x7fffffff to -0x40000000 or 0x40000000 to 0x7fffffff. This corresponds
5409// almost to the range of signed int32 values that are not Smis. Jumps to the
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005410// label 'slow' if the double isn't in the range -0x80000000.0 to 0x80000000.0
5411// (excluding the endpoints).
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005412static void GetInt32(MacroAssembler* masm,
5413 Register source,
5414 Register dest,
5415 Register scratch,
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005416 Register scratch2,
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005417 Label* slow) {
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005418 Label right_exponent, done;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005419 // Get exponent word.
5420 __ ldr(scratch, FieldMemOperand(source, HeapNumber::kExponentOffset));
5421 // Get exponent alone in scratch2.
5422 __ and_(scratch2, scratch, Operand(HeapNumber::kExponentMask));
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005423 // Load dest with zero. We use this either for the final shift or
5424 // for the answer.
5425 __ mov(dest, Operand(0));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005426 // Check whether the exponent matches a 32 bit signed int that is not a Smi.
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005427 // A non-Smi integer is 1.xxx * 2^30 so the exponent is 30 (biased). This is
5428 // the exponent that we are fastest at and also the highest exponent we can
5429 // handle here.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005430 const uint32_t non_smi_exponent =
5431 (HeapNumber::kExponentBias + 30) << HeapNumber::kExponentShift;
5432 __ cmp(scratch2, Operand(non_smi_exponent));
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005433 // If we have a match of the int32-but-not-Smi exponent then skip some logic.
5434 __ b(eq, &right_exponent);
5435 // If the exponent is higher than that then go to slow case. This catches
5436 // numbers that don't fit in a signed int32, infinities and NaNs.
5437 __ b(gt, slow);
5438
5439 // We know the exponent is smaller than 30 (biased). If it is less than
5440 // 0 (biased) then the number is smaller in magnitude than 1.0 * 2^0, ie
5441 // it rounds to zero.
5442 const uint32_t zero_exponent =
5443 (HeapNumber::kExponentBias + 0) << HeapNumber::kExponentShift;
5444 __ sub(scratch2, scratch2, Operand(zero_exponent), SetCC);
5445 // Dest already has a Smi zero.
5446 __ b(lt, &done);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005447 if (!CpuFeatures::IsSupported(VFP3)) {
5448 // We have a shifted exponent between 0 and 30 in scratch2.
5449 __ mov(dest, Operand(scratch2, LSR, HeapNumber::kExponentShift));
5450 // We now have the exponent in dest. Subtract from 30 to get
5451 // how much to shift down.
5452 __ rsb(dest, dest, Operand(30));
5453 }
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005454 __ bind(&right_exponent);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005455 if (CpuFeatures::IsSupported(VFP3)) {
5456 CpuFeatures::Scope scope(VFP3);
5457 // ARMv7 VFP3 instructions implementing double precision to integer
5458 // conversion using round to zero.
5459 __ ldr(scratch2, FieldMemOperand(source, HeapNumber::kMantissaOffset));
5460 __ fmdrr(d7, scratch2, scratch);
5461 __ ftosid(s15, d7);
5462 __ fmrs(dest, s15);
5463 } else {
5464 // Get the top bits of the mantissa.
5465 __ and_(scratch2, scratch, Operand(HeapNumber::kMantissaMask));
5466 // Put back the implicit 1.
5467 __ orr(scratch2, scratch2, Operand(1 << HeapNumber::kExponentShift));
5468 // Shift up the mantissa bits to take up the space the exponent used to
5469 // take. We just orred in the implicit bit so that took care of one and
5470 // we want to leave the sign bit 0 so we subtract 2 bits from the shift
5471 // distance.
5472 const int shift_distance = HeapNumber::kNonMantissaBitsInTopWord - 2;
5473 __ mov(scratch2, Operand(scratch2, LSL, shift_distance));
5474 // Put sign in zero flag.
5475 __ tst(scratch, Operand(HeapNumber::kSignMask));
5476 // Get the second half of the double. For some exponents we don't
5477 // actually need this because the bits get shifted out again, but
5478 // it's probably slower to test than just to do it.
5479 __ ldr(scratch, FieldMemOperand(source, HeapNumber::kMantissaOffset));
5480 // Shift down 22 bits to get the last 10 bits.
5481 __ orr(scratch, scratch2, Operand(scratch, LSR, 32 - shift_distance));
5482 // Move down according to the exponent.
5483 __ mov(dest, Operand(scratch, LSR, dest));
5484 // Fix sign if sign bit was set.
5485 __ rsb(dest, dest, Operand(0), LeaveCC, ne);
5486 }
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005487 __ bind(&done);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005488}
5489
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005490// For bitwise ops where the inputs are not both Smis we here try to determine
5491// whether both inputs are either Smis or at least heap numbers that can be
5492// represented by a 32 bit signed value. We truncate towards zero as required
5493// by the ES spec. If this is the case we do the bitwise op and see if the
5494// result is a Smi. If so, great, otherwise we try to find a heap number to
5495// write the answer into (either by allocating or by overwriting).
5496// On entry the operands are in r0 and r1. On exit the answer is in r0.
5497void GenericBinaryOpStub::HandleNonSmiBitwiseOp(MacroAssembler* masm) {
5498 Label slow, result_not_a_smi;
5499 Label r0_is_smi, r1_is_smi;
5500 Label done_checking_r0, done_checking_r1;
5501
5502 __ tst(r1, Operand(kSmiTagMask));
5503 __ b(eq, &r1_is_smi); // It's a Smi so don't check it's a heap number.
5504 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5505 __ b(ne, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005506 GetInt32(masm, r1, r3, r5, r4, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005507 __ jmp(&done_checking_r1);
5508 __ bind(&r1_is_smi);
5509 __ mov(r3, Operand(r1, ASR, 1));
5510 __ bind(&done_checking_r1);
5511
5512 __ tst(r0, Operand(kSmiTagMask));
5513 __ b(eq, &r0_is_smi); // It's a Smi so don't check it's a heap number.
5514 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
5515 __ b(ne, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005516 GetInt32(masm, r0, r2, r5, r4, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005517 __ jmp(&done_checking_r0);
5518 __ bind(&r0_is_smi);
5519 __ mov(r2, Operand(r0, ASR, 1));
5520 __ bind(&done_checking_r0);
5521
5522 // r0 and r1: Original operands (Smi or heap numbers).
5523 // r2 and r3: Signed int32 operands.
5524 switch (op_) {
5525 case Token::BIT_OR: __ orr(r2, r2, Operand(r3)); break;
5526 case Token::BIT_XOR: __ eor(r2, r2, Operand(r3)); break;
5527 case Token::BIT_AND: __ and_(r2, r2, Operand(r3)); break;
5528 case Token::SAR:
5529 // Use only the 5 least significant bits of the shift count.
5530 __ and_(r2, r2, Operand(0x1f));
5531 __ mov(r2, Operand(r3, ASR, r2));
5532 break;
5533 case Token::SHR:
5534 // Use only the 5 least significant bits of the shift count.
5535 __ and_(r2, r2, Operand(0x1f));
5536 __ mov(r2, Operand(r3, LSR, r2), SetCC);
5537 // SHR is special because it is required to produce a positive answer.
5538 // The code below for writing into heap numbers isn't capable of writing
5539 // the register as an unsigned int so we go to slow case if we hit this
5540 // case.
5541 __ b(mi, &slow);
5542 break;
5543 case Token::SHL:
5544 // Use only the 5 least significant bits of the shift count.
5545 __ and_(r2, r2, Operand(0x1f));
5546 __ mov(r2, Operand(r3, LSL, r2));
5547 break;
5548 default: UNREACHABLE();
5549 }
5550 // check that the *signed* result fits in a smi
5551 __ add(r3, r2, Operand(0x40000000), SetCC);
5552 __ b(mi, &result_not_a_smi);
5553 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
5554 __ Ret();
5555
5556 Label have_to_allocate, got_a_heap_number;
5557 __ bind(&result_not_a_smi);
5558 switch (mode_) {
5559 case OVERWRITE_RIGHT: {
5560 __ tst(r0, Operand(kSmiTagMask));
5561 __ b(eq, &have_to_allocate);
5562 __ mov(r5, Operand(r0));
5563 break;
5564 }
5565 case OVERWRITE_LEFT: {
5566 __ tst(r1, Operand(kSmiTagMask));
5567 __ b(eq, &have_to_allocate);
5568 __ mov(r5, Operand(r1));
5569 break;
5570 }
5571 case NO_OVERWRITE: {
5572 // Get a new heap number in r5. r6 and r7 are scratch.
5573 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5574 }
5575 default: break;
5576 }
5577 __ bind(&got_a_heap_number);
5578 // r2: Answer as signed int32.
5579 // r5: Heap number to write answer into.
5580
5581 // Nothing can go wrong now, so move the heap number to r0, which is the
5582 // result.
5583 __ mov(r0, Operand(r5));
5584
5585 // Tail call that writes the int32 in r2 to the heap number in r0, using
5586 // r3 as scratch. r0 is preserved and returned.
5587 WriteInt32ToHeapNumberStub stub(r2, r0, r3);
5588 __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET);
5589
5590 if (mode_ != NO_OVERWRITE) {
5591 __ bind(&have_to_allocate);
5592 // Get a new heap number in r5. r6 and r7 are scratch.
5593 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5594 __ jmp(&got_a_heap_number);
5595 }
5596
5597 // If all else failed then we go to the runtime system.
5598 __ bind(&slow);
5599 __ push(r1); // restore stack
5600 __ push(r0);
5601 __ mov(r0, Operand(1)); // 1 argument (not counting receiver).
5602 switch (op_) {
5603 case Token::BIT_OR:
5604 __ InvokeBuiltin(Builtins::BIT_OR, JUMP_JS);
5605 break;
5606 case Token::BIT_AND:
5607 __ InvokeBuiltin(Builtins::BIT_AND, JUMP_JS);
5608 break;
5609 case Token::BIT_XOR:
5610 __ InvokeBuiltin(Builtins::BIT_XOR, JUMP_JS);
5611 break;
5612 case Token::SAR:
5613 __ InvokeBuiltin(Builtins::SAR, JUMP_JS);
5614 break;
5615 case Token::SHR:
5616 __ InvokeBuiltin(Builtins::SHR, JUMP_JS);
5617 break;
5618 case Token::SHL:
5619 __ InvokeBuiltin(Builtins::SHL, JUMP_JS);
5620 break;
5621 default:
5622 UNREACHABLE();
5623 }
5624}
5625
5626
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00005627// Can we multiply by x with max two shifts and an add.
5628// This answers yes to all integers from 2 to 10.
5629static bool IsEasyToMultiplyBy(int x) {
5630 if (x < 2) return false; // Avoid special cases.
5631 if (x > (Smi::kMaxValue + 1) >> 2) return false; // Almost always overflows.
5632 if (IsPowerOf2(x)) return true; // Simple shift.
5633 if (PopCountLessThanEqual2(x)) return true; // Shift and add and shift.
5634 if (IsPowerOf2(x + 1)) return true; // Patterns like 11111.
5635 return false;
5636}
5637
5638
5639// Can multiply by anything that IsEasyToMultiplyBy returns true for.
5640// Source and destination may be the same register. This routine does
5641// not set carry and overflow the way a mul instruction would.
5642static void MultiplyByKnownInt(MacroAssembler* masm,
5643 Register source,
5644 Register destination,
5645 int known_int) {
5646 if (IsPowerOf2(known_int)) {
5647 __ mov(destination, Operand(source, LSL, BitPosition(known_int)));
5648 } else if (PopCountLessThanEqual2(known_int)) {
5649 int first_bit = BitPosition(known_int);
5650 int second_bit = BitPosition(known_int ^ (1 << first_bit));
5651 __ add(destination, source, Operand(source, LSL, second_bit - first_bit));
5652 if (first_bit != 0) {
5653 __ mov(destination, Operand(destination, LSL, first_bit));
5654 }
5655 } else {
5656 ASSERT(IsPowerOf2(known_int + 1)); // Patterns like 1111.
5657 int the_bit = BitPosition(known_int + 1);
5658 __ rsb(destination, source, Operand(source, LSL, the_bit));
5659 }
5660}
5661
5662
5663// This function (as opposed to MultiplyByKnownInt) takes the known int in a
5664// a register for the cases where it doesn't know a good trick, and may deliver
5665// a result that needs shifting.
5666static void MultiplyByKnownInt2(
5667 MacroAssembler* masm,
5668 Register result,
5669 Register source,
5670 Register known_int_register, // Smi tagged.
5671 int known_int,
5672 int* required_shift) { // Including Smi tag shift
5673 switch (known_int) {
5674 case 3:
5675 __ add(result, source, Operand(source, LSL, 1));
5676 *required_shift = 1;
5677 break;
5678 case 5:
5679 __ add(result, source, Operand(source, LSL, 2));
5680 *required_shift = 1;
5681 break;
5682 case 6:
5683 __ add(result, source, Operand(source, LSL, 1));
5684 *required_shift = 2;
5685 break;
5686 case 7:
5687 __ rsb(result, source, Operand(source, LSL, 3));
5688 *required_shift = 1;
5689 break;
5690 case 9:
5691 __ add(result, source, Operand(source, LSL, 3));
5692 *required_shift = 1;
5693 break;
5694 case 10:
5695 __ add(result, source, Operand(source, LSL, 2));
5696 *required_shift = 2;
5697 break;
5698 default:
5699 ASSERT(!IsPowerOf2(known_int)); // That would be very inefficient.
5700 __ mul(result, source, known_int_register);
5701 *required_shift = 0;
5702 }
5703}
5704
5705
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005706void GenericBinaryOpStub::Generate(MacroAssembler* masm) {
5707 // r1 : x
5708 // r0 : y
5709 // result : r0
5710
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005711 // All ops need to know whether we are dealing with two Smis. Set up r2 to
5712 // tell us that.
5713 __ orr(r2, r1, Operand(r0)); // r2 = x | y;
5714
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005715 switch (op_) {
5716 case Token::ADD: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005717 Label not_smi;
5718 // Fast path.
5719 ASSERT(kSmiTag == 0); // Adjust code below.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005720 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005721 __ b(ne, &not_smi);
5722 __ add(r0, r1, Operand(r0), SetCC); // Add y optimistically.
5723 // Return if no overflow.
5724 __ Ret(vc);
5725 __ sub(r0, r0, Operand(r1)); // Revert optimistic add.
5726
5727 HandleBinaryOpSlowCases(masm,
5728 &not_smi,
5729 Builtins::ADD,
5730 Token::ADD,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005731 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005732 break;
5733 }
5734
5735 case Token::SUB: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005736 Label not_smi;
5737 // Fast path.
5738 ASSERT(kSmiTag == 0); // Adjust code below.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005739 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005740 __ b(ne, &not_smi);
5741 __ sub(r0, r1, Operand(r0), SetCC); // Subtract y optimistically.
5742 // Return if no overflow.
5743 __ Ret(vc);
5744 __ sub(r0, r1, Operand(r0)); // Revert optimistic subtract.
5745
5746 HandleBinaryOpSlowCases(masm,
5747 &not_smi,
5748 Builtins::SUB,
5749 Token::SUB,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005750 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005751 break;
5752 }
5753
5754 case Token::MUL: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005755 Label not_smi, slow;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005756 ASSERT(kSmiTag == 0); // adjust code below
5757 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005758 __ b(ne, &not_smi);
5759 // Remove tag from one operand (but keep sign), so that result is Smi.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005760 __ mov(ip, Operand(r0, ASR, kSmiTagSize));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005761 // Do multiplication
5762 __ smull(r3, r2, r1, ip); // r3 = lower 32 bits of ip*r1.
5763 // Go slow on overflows (overflow bit is not set).
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005764 __ mov(ip, Operand(r3, ASR, 31));
5765 __ cmp(ip, Operand(r2)); // no overflow if higher 33 bits are identical
5766 __ b(ne, &slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005767 // Go slow on zero result to handle -0.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005768 __ tst(r3, Operand(r3));
5769 __ mov(r0, Operand(r3), LeaveCC, ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005770 __ Ret(ne);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005771 // We need -0 if we were multiplying a negative number with 0 to get 0.
5772 // We know one of them was zero.
5773 __ add(r2, r0, Operand(r1), SetCC);
5774 __ mov(r0, Operand(Smi::FromInt(0)), LeaveCC, pl);
5775 __ Ret(pl); // Return Smi 0 if the non-zero one was positive.
5776 // Slow case. We fall through here if we multiplied a negative number
5777 // with 0, because that would mean we should produce -0.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005778 __ bind(&slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005779
5780 HandleBinaryOpSlowCases(masm,
5781 &not_smi,
5782 Builtins::MUL,
5783 Token::MUL,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00005784 mode_);
5785 break;
5786 }
5787
5788 case Token::DIV:
5789 case Token::MOD: {
5790 Label not_smi;
5791 if (specialized_on_rhs_) {
5792 Label smi_is_unsuitable;
5793 __ BranchOnNotSmi(r1, &not_smi);
5794 if (IsPowerOf2(constant_rhs_)) {
5795 if (op_ == Token::MOD) {
5796 __ and_(r0,
5797 r1,
5798 Operand(0x80000000u | ((constant_rhs_ << kSmiTagSize) - 1)),
5799 SetCC);
5800 // We now have the answer, but if the input was negative we also
5801 // have the sign bit. Our work is done if the result is
5802 // positive or zero:
5803 __ Ret(pl);
5804 // A mod of a negative left hand side must return a negative number.
5805 // Unfortunately if the answer is 0 then we must return -0. And we
5806 // already optimistically trashed r0 so we may need to restore it.
5807 __ eor(r0, r0, Operand(0x80000000u), SetCC);
5808 // Next two instructions are conditional on the answer being -0.
5809 __ mov(r0, Operand(Smi::FromInt(constant_rhs_)), LeaveCC, eq);
5810 __ b(eq, &smi_is_unsuitable);
5811 // We need to subtract the dividend. Eg. -3 % 4 == -3.
5812 __ sub(r0, r0, Operand(Smi::FromInt(constant_rhs_)));
5813 } else {
5814 ASSERT(op_ == Token::DIV);
5815 __ tst(r1,
5816 Operand(0x80000000u | ((constant_rhs_ << kSmiTagSize) - 1)));
5817 __ b(ne, &smi_is_unsuitable); // Go slow on negative or remainder.
5818 int shift = 0;
5819 int d = constant_rhs_;
5820 while ((d & 1) == 0) {
5821 d >>= 1;
5822 shift++;
5823 }
5824 __ mov(r0, Operand(r1, LSR, shift));
5825 __ bic(r0, r0, Operand(kSmiTagMask));
5826 }
5827 } else {
5828 // Not a power of 2.
5829 __ tst(r1, Operand(0x80000000u));
5830 __ b(ne, &smi_is_unsuitable);
5831 // Find a fixed point reciprocal of the divisor so we can divide by
5832 // multiplying.
5833 double divisor = 1.0 / constant_rhs_;
5834 int shift = 32;
5835 double scale = 4294967296.0; // 1 << 32.
5836 uint32_t mul;
5837 // Maximise the precision of the fixed point reciprocal.
5838 while (true) {
5839 mul = static_cast<uint32_t>(scale * divisor);
5840 if (mul >= 0x7fffffff) break;
5841 scale *= 2.0;
5842 shift++;
5843 }
5844 mul++;
5845 __ mov(r2, Operand(mul));
5846 __ umull(r3, r2, r2, r1);
5847 __ mov(r2, Operand(r2, LSR, shift - 31));
5848 // r2 is r1 / rhs. r2 is not Smi tagged.
5849 // r0 is still the known rhs. r0 is Smi tagged.
5850 // r1 is still the unkown lhs. r1 is Smi tagged.
5851 int required_r4_shift = 0; // Including the Smi tag shift of 1.
5852 // r4 = r2 * r0.
5853 MultiplyByKnownInt2(masm,
5854 r4,
5855 r2,
5856 r0,
5857 constant_rhs_,
5858 &required_r4_shift);
5859 // r4 << required_r4_shift is now the Smi tagged rhs * (r1 / rhs).
5860 if (op_ == Token::DIV) {
5861 __ sub(r3, r1, Operand(r4, LSL, required_r4_shift), SetCC);
5862 __ b(ne, &smi_is_unsuitable); // There was a remainder.
5863 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
5864 } else {
5865 ASSERT(op_ == Token::MOD);
5866 __ sub(r0, r1, Operand(r4, LSL, required_r4_shift));
5867 }
5868 }
5869 __ Ret();
5870 __ bind(&smi_is_unsuitable);
5871 } else {
5872 __ jmp(&not_smi);
5873 }
5874 HandleBinaryOpSlowCases(masm,
5875 &not_smi,
5876 op_ == Token::MOD ? Builtins::MOD : Builtins::DIV,
5877 op_,
5878 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005879 break;
5880 }
5881
5882 case Token::BIT_OR:
5883 case Token::BIT_AND:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005884 case Token::BIT_XOR:
5885 case Token::SAR:
5886 case Token::SHR:
5887 case Token::SHL: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005888 Label slow;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005889 ASSERT(kSmiTag == 0); // adjust code below
5890 __ tst(r2, Operand(kSmiTagMask));
5891 __ b(ne, &slow);
5892 switch (op_) {
5893 case Token::BIT_OR: __ orr(r0, r0, Operand(r1)); break;
5894 case Token::BIT_AND: __ and_(r0, r0, Operand(r1)); break;
5895 case Token::BIT_XOR: __ eor(r0, r0, Operand(r1)); break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005896 case Token::SAR:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005897 // Remove tags from right operand.
5898 __ mov(r2, Operand(r0, ASR, kSmiTagSize)); // y
5899 // Use only the 5 least significant bits of the shift count.
5900 __ and_(r2, r2, Operand(0x1f));
5901 __ mov(r0, Operand(r1, ASR, r2));
5902 // Smi tag result.
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00005903 __ bic(r0, r0, Operand(kSmiTagMask));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005904 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005905 case Token::SHR:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005906 // Remove tags from operands. We can't do this on a 31 bit number
5907 // because then the 0s get shifted into bit 30 instead of bit 31.
5908 __ mov(r3, Operand(r1, ASR, kSmiTagSize)); // x
5909 __ mov(r2, Operand(r0, ASR, kSmiTagSize)); // y
5910 // Use only the 5 least significant bits of the shift count.
5911 __ and_(r2, r2, Operand(0x1f));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005912 __ mov(r3, Operand(r3, LSR, r2));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005913 // Unsigned shift is not allowed to produce a negative number, so
5914 // check the sign bit and the sign bit after Smi tagging.
5915 __ tst(r3, Operand(0xc0000000));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005916 __ b(ne, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005917 // Smi tag result.
5918 __ mov(r0, Operand(r3, LSL, kSmiTagSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005919 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005920 case Token::SHL:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005921 // Remove tags from operands.
5922 __ mov(r3, Operand(r1, ASR, kSmiTagSize)); // x
5923 __ mov(r2, Operand(r0, ASR, kSmiTagSize)); // y
5924 // Use only the 5 least significant bits of the shift count.
5925 __ and_(r2, r2, Operand(0x1f));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005926 __ mov(r3, Operand(r3, LSL, r2));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005927 // Check that the signed result fits in a Smi.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005928 __ add(r2, r3, Operand(0x40000000), SetCC);
5929 __ b(mi, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005930 __ mov(r0, Operand(r3, LSL, kSmiTagSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005931 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005932 default: UNREACHABLE();
5933 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005934 __ Ret();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005935 __ bind(&slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005936 HandleNonSmiBitwiseOp(masm);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005937 break;
5938 }
5939
5940 default: UNREACHABLE();
5941 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005942 // This code should be unreachable.
5943 __ stop("Unreachable");
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005944}
5945
5946
5947void StackCheckStub::Generate(MacroAssembler* masm) {
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00005948 // Do tail-call to runtime routine. Runtime routines expect at least one
5949 // argument, so give it a Smi.
5950 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005951 __ push(r0);
ager@chromium.orga1645e22009-09-09 19:27:10 +00005952 __ TailCallRuntime(ExternalReference(Runtime::kStackGuard), 1, 1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005953
5954 __ StubReturn(1);
5955}
5956
5957
5958void UnarySubStub::Generate(MacroAssembler* masm) {
5959 Label undo;
5960 Label slow;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005961 Label not_smi;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005962
5963 // Enter runtime system if the value is not a smi.
5964 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005965 __ b(ne, &not_smi);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005966
5967 // Enter runtime system if the value of the expression is zero
5968 // to make sure that we switch between 0 and -0.
5969 __ cmp(r0, Operand(0));
5970 __ b(eq, &slow);
5971
5972 // The value of the expression is a smi that is not zero. Try
5973 // optimistic subtraction '0 - value'.
5974 __ rsb(r1, r0, Operand(0), SetCC);
5975 __ b(vs, &slow);
5976
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005977 __ mov(r0, Operand(r1)); // Set r0 to result.
5978 __ StubReturn(1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005979
5980 // Enter runtime system.
5981 __ bind(&slow);
5982 __ push(r0);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005983 __ mov(r0, Operand(0)); // Set number of arguments.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005984 __ InvokeBuiltin(Builtins::UNARY_MINUS, JUMP_JS);
5985
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005986 __ bind(&not_smi);
5987 __ CompareObjectType(r0, r1, r1, HEAP_NUMBER_TYPE);
5988 __ b(ne, &slow);
5989 // r0 is a heap number. Get a new heap number in r1.
5990 if (overwrite_) {
5991 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
5992 __ eor(r2, r2, Operand(HeapNumber::kSignMask)); // Flip sign.
5993 __ str(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
5994 } else {
5995 AllocateHeapNumber(masm, &slow, r1, r2, r3);
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005996 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kMantissaOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005997 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005998 __ str(r3, FieldMemOperand(r1, HeapNumber::kMantissaOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005999 __ eor(r2, r2, Operand(HeapNumber::kSignMask)); // Flip sign.
6000 __ str(r2, FieldMemOperand(r1, HeapNumber::kExponentOffset));
6001 __ mov(r0, Operand(r1));
6002 }
6003 __ StubReturn(1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006004}
6005
6006
ager@chromium.orga1645e22009-09-09 19:27:10 +00006007int CEntryStub::MinorKey() {
6008 ASSERT(result_size_ <= 2);
6009 // Result returned in r0 or r0+r1 by default.
6010 return 0;
6011}
6012
6013
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006014void CEntryStub::GenerateThrowTOS(MacroAssembler* masm) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006015 // r0 holds the exception.
6016
6017 // Adjust this code if not the case.
6018 ASSERT(StackHandlerConstants::kSize == 4 * kPointerSize);
6019
6020 // Drop the sp to the top of the handler.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006021 __ mov(r3, Operand(ExternalReference(Top::k_handler_address)));
6022 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006023
6024 // Restore the next handler and frame pointer, discard handler state.
6025 ASSERT(StackHandlerConstants::kNextOffset == 0);
6026 __ pop(r2);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006027 __ str(r2, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006028 ASSERT(StackHandlerConstants::kFPOffset == 2 * kPointerSize);
6029 __ ldm(ia_w, sp, r3.bit() | fp.bit()); // r3: discarded state.
6030
6031 // Before returning we restore the context from the frame pointer if
6032 // not NULL. The frame pointer is NULL in the exception handler of a
6033 // JS entry frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006034 __ cmp(fp, Operand(0));
6035 // Set cp to NULL if fp is NULL.
6036 __ mov(cp, Operand(0), LeaveCC, eq);
6037 // Restore cp otherwise.
6038 __ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset), ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006039#ifdef DEBUG
6040 if (FLAG_debug_code) {
6041 __ mov(lr, Operand(pc));
6042 }
6043#endif
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006044 ASSERT(StackHandlerConstants::kPCOffset == 3 * kPointerSize);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006045 __ pop(pc);
6046}
6047
6048
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006049void CEntryStub::GenerateThrowUncatchable(MacroAssembler* masm,
6050 UncatchableExceptionType type) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006051 // Adjust this code if not the case.
6052 ASSERT(StackHandlerConstants::kSize == 4 * kPointerSize);
6053
6054 // Drop sp to the top stack handler.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006055 __ mov(r3, Operand(ExternalReference(Top::k_handler_address)));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006056 __ ldr(sp, MemOperand(r3));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006057
6058 // Unwind the handlers until the ENTRY handler is found.
6059 Label loop, done;
6060 __ bind(&loop);
6061 // Load the type of the current stack handler.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006062 const int kStateOffset = StackHandlerConstants::kStateOffset;
6063 __ ldr(r2, MemOperand(sp, kStateOffset));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006064 __ cmp(r2, Operand(StackHandler::ENTRY));
6065 __ b(eq, &done);
6066 // Fetch the next handler in the list.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006067 const int kNextOffset = StackHandlerConstants::kNextOffset;
6068 __ ldr(sp, MemOperand(sp, kNextOffset));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006069 __ jmp(&loop);
6070 __ bind(&done);
6071
6072 // Set the top handler address to next handler past the current ENTRY handler.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006073 ASSERT(StackHandlerConstants::kNextOffset == 0);
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006074 __ pop(r2);
6075 __ str(r2, MemOperand(r3));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006076
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006077 if (type == OUT_OF_MEMORY) {
6078 // Set external caught exception to false.
6079 ExternalReference external_caught(Top::k_external_caught_exception_address);
6080 __ mov(r0, Operand(false));
6081 __ mov(r2, Operand(external_caught));
6082 __ str(r0, MemOperand(r2));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006083
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006084 // Set pending exception and r0 to out of memory exception.
6085 Failure* out_of_memory = Failure::OutOfMemoryException();
6086 __ mov(r0, Operand(reinterpret_cast<int32_t>(out_of_memory)));
6087 __ mov(r2, Operand(ExternalReference(Top::k_pending_exception_address)));
6088 __ str(r0, MemOperand(r2));
6089 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006090
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006091 // Stack layout at this point. See also StackHandlerConstants.
6092 // sp -> state (ENTRY)
6093 // fp
6094 // lr
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006095
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006096 // Discard handler state (r2 is not used) and restore frame pointer.
6097 ASSERT(StackHandlerConstants::kFPOffset == 2 * kPointerSize);
6098 __ ldm(ia_w, sp, r2.bit() | fp.bit()); // r2: discarded state.
6099 // Before returning we restore the context from the frame pointer if
6100 // not NULL. The frame pointer is NULL in the exception handler of a
6101 // JS entry frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006102 __ cmp(fp, Operand(0));
6103 // Set cp to NULL if fp is NULL.
6104 __ mov(cp, Operand(0), LeaveCC, eq);
6105 // Restore cp otherwise.
6106 __ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset), ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006107#ifdef DEBUG
6108 if (FLAG_debug_code) {
6109 __ mov(lr, Operand(pc));
6110 }
6111#endif
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006112 ASSERT(StackHandlerConstants::kPCOffset == 3 * kPointerSize);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006113 __ pop(pc);
6114}
6115
6116
6117void CEntryStub::GenerateCore(MacroAssembler* masm,
6118 Label* throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006119 Label* throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006120 Label* throw_out_of_memory_exception,
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006121 ExitFrame::Mode mode,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006122 bool do_gc,
6123 bool always_allocate) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006124 // r0: result parameter for PerformGC, if any
6125 // r4: number of arguments including receiver (C callee-saved)
6126 // r5: pointer to builtin function (C callee-saved)
6127 // r6: pointer to the first argument (C callee-saved)
6128
6129 if (do_gc) {
6130 // Passing r0.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006131 ExternalReference gc_reference = ExternalReference::perform_gc_function();
6132 __ Call(gc_reference.address(), RelocInfo::RUNTIME_ENTRY);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006133 }
6134
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006135 ExternalReference scope_depth =
6136 ExternalReference::heap_always_allocate_scope_depth();
6137 if (always_allocate) {
6138 __ mov(r0, Operand(scope_depth));
6139 __ ldr(r1, MemOperand(r0));
6140 __ add(r1, r1, Operand(1));
6141 __ str(r1, MemOperand(r0));
6142 }
6143
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006144 // Call C built-in.
6145 // r0 = argc, r1 = argv
6146 __ mov(r0, Operand(r4));
6147 __ mov(r1, Operand(r6));
6148
6149 // TODO(1242173): To let the GC traverse the return address of the exit
6150 // frames, we need to know where the return address is. Right now,
6151 // we push it on the stack to be able to find it again, but we never
6152 // restore from it in case of changes, which makes it impossible to
6153 // support moving the C entry code stub. This should be fixed, but currently
6154 // this is OK because the CEntryStub gets generated so early in the V8 boot
6155 // sequence that it is not moving ever.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006156 masm->add(lr, pc, Operand(4)); // compute return address: (pc + 8) + 4
6157 masm->push(lr);
6158 masm->Jump(r5);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006159
6160 if (always_allocate) {
6161 // It's okay to clobber r2 and r3 here. Don't mess with r0 and r1
6162 // though (contain the result).
6163 __ mov(r2, Operand(scope_depth));
6164 __ ldr(r3, MemOperand(r2));
6165 __ sub(r3, r3, Operand(1));
6166 __ str(r3, MemOperand(r2));
6167 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006168
6169 // check for failure result
6170 Label failure_returned;
6171 ASSERT(((kFailureTag + 1) & kFailureTagMask) == 0);
6172 // Lower 2 bits of r2 are 0 iff r0 has failure tag.
6173 __ add(r2, r0, Operand(1));
6174 __ tst(r2, Operand(kFailureTagMask));
6175 __ b(eq, &failure_returned);
6176
6177 // Exit C frame and return.
6178 // r0:r1: result
6179 // sp: stack pointer
6180 // fp: frame pointer
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006181 __ LeaveExitFrame(mode);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006182
6183 // check if we should retry or throw exception
6184 Label retry;
6185 __ bind(&failure_returned);
6186 ASSERT(Failure::RETRY_AFTER_GC == 0);
6187 __ tst(r0, Operand(((1 << kFailureTypeTagSize) - 1) << kFailureTagSize));
6188 __ b(eq, &retry);
6189
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006190 // Special handling of out of memory exceptions.
6191 Failure* out_of_memory = Failure::OutOfMemoryException();
6192 __ cmp(r0, Operand(reinterpret_cast<int32_t>(out_of_memory)));
6193 __ b(eq, throw_out_of_memory_exception);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006194
6195 // Retrieve the pending exception and clear the variable.
ager@chromium.org32912102009-01-16 10:38:43 +00006196 __ mov(ip, Operand(ExternalReference::the_hole_value_location()));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006197 __ ldr(r3, MemOperand(ip));
ager@chromium.org32912102009-01-16 10:38:43 +00006198 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006199 __ ldr(r0, MemOperand(ip));
6200 __ str(r3, MemOperand(ip));
6201
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006202 // Special handling of termination exceptions which are uncatchable
6203 // by javascript code.
6204 __ cmp(r0, Operand(Factory::termination_exception()));
6205 __ b(eq, throw_termination_exception);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006206
6207 // Handle normal exception.
6208 __ jmp(throw_normal_exception);
6209
6210 __ bind(&retry); // pass last failure (r0) as parameter (r0) when retrying
6211}
6212
6213
6214void CEntryStub::GenerateBody(MacroAssembler* masm, bool is_debug_break) {
6215 // Called from JavaScript; parameters are on stack as if calling JS function
6216 // r0: number of arguments including receiver
6217 // r1: pointer to builtin function
6218 // fp: frame pointer (restored after C call)
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006219 // sp: stack pointer (restored as callee's sp after C call)
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006220 // cp: current context (C callee-saved)
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006221
6222 // NOTE: Invocations of builtins may return failure objects
6223 // instead of a proper result. The builtin entry handles
6224 // this by performing a garbage collection and retrying the
6225 // builtin once.
6226
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006227 ExitFrame::Mode mode = is_debug_break
6228 ? ExitFrame::MODE_DEBUG
6229 : ExitFrame::MODE_NORMAL;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006230
6231 // Enter the exit frame that transitions from JavaScript to C++.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006232 __ EnterExitFrame(mode);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006233
6234 // r4: number of arguments (C callee-saved)
6235 // r5: pointer to builtin function (C callee-saved)
6236 // r6: pointer to first argument (C callee-saved)
6237
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006238 Label throw_normal_exception;
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006239 Label throw_termination_exception;
6240 Label throw_out_of_memory_exception;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006241
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00006242 // Call into the runtime system.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006243 GenerateCore(masm,
6244 &throw_normal_exception,
6245 &throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006246 &throw_out_of_memory_exception,
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006247 mode,
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00006248 false,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006249 false);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006250
6251 // Do space-specific GC and retry runtime call.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006252 GenerateCore(masm,
6253 &throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006254 &throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006255 &throw_out_of_memory_exception,
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006256 mode,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006257 true,
6258 false);
6259
6260 // Do full GC and retry runtime call one final time.
6261 Failure* failure = Failure::InternalError();
6262 __ mov(r0, Operand(reinterpret_cast<int32_t>(failure)));
6263 GenerateCore(masm,
6264 &throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006265 &throw_termination_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006266 &throw_out_of_memory_exception,
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006267 mode,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006268 true,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006269 true);
6270
6271 __ bind(&throw_out_of_memory_exception);
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006272 GenerateThrowUncatchable(masm, OUT_OF_MEMORY);
6273
6274 __ bind(&throw_termination_exception);
6275 GenerateThrowUncatchable(masm, TERMINATION);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006276
6277 __ bind(&throw_normal_exception);
6278 GenerateThrowTOS(masm);
6279}
6280
6281
6282void JSEntryStub::GenerateBody(MacroAssembler* masm, bool is_construct) {
6283 // r0: code entry
6284 // r1: function
6285 // r2: receiver
6286 // r3: argc
6287 // [sp+0]: argv
6288
6289 Label invoke, exit;
6290
6291 // Called from C, so do not pop argc and args on exit (preserve sp)
6292 // No need to save register-passed args
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006293 // Save callee-saved registers (incl. cp and fp), sp, and lr
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006294 __ stm(db_w, sp, kCalleeSaved | lr.bit());
6295
6296 // Get address of argv, see stm above.
6297 // r0: code entry
6298 // r1: function
6299 // r2: receiver
6300 // r3: argc
6301 __ add(r4, sp, Operand((kNumCalleeSaved + 1)*kPointerSize));
6302 __ ldr(r4, MemOperand(r4)); // argv
6303
6304 // Push a frame with special values setup to mark it as an entry frame.
6305 // r0: code entry
6306 // r1: function
6307 // r2: receiver
6308 // r3: argc
6309 // r4: argv
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006310 __ mov(r8, Operand(-1)); // Push a bad frame pointer to fail if it is used.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006311 int marker = is_construct ? StackFrame::ENTRY_CONSTRUCT : StackFrame::ENTRY;
6312 __ mov(r7, Operand(Smi::FromInt(marker)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006313 __ mov(r6, Operand(Smi::FromInt(marker)));
6314 __ mov(r5, Operand(ExternalReference(Top::k_c_entry_fp_address)));
6315 __ ldr(r5, MemOperand(r5));
6316 __ stm(db_w, sp, r5.bit() | r6.bit() | r7.bit() | r8.bit());
6317
6318 // Setup frame pointer for the frame to be pushed.
6319 __ add(fp, sp, Operand(-EntryFrameConstants::kCallerFPOffset));
6320
6321 // Call a faked try-block that does the invoke.
6322 __ bl(&invoke);
6323
6324 // Caught exception: Store result (exception) in the pending
6325 // exception field in the JSEnv and return a failure sentinel.
6326 // Coming in here the fp will be invalid because the PushTryHandler below
6327 // sets it to 0 to signal the existence of the JSEntry frame.
ager@chromium.org32912102009-01-16 10:38:43 +00006328 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006329 __ str(r0, MemOperand(ip));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006330 __ mov(r0, Operand(reinterpret_cast<int32_t>(Failure::Exception())));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006331 __ b(&exit);
6332
6333 // Invoke: Link this frame into the handler chain.
6334 __ bind(&invoke);
6335 // Must preserve r0-r4, r5-r7 are available.
6336 __ PushTryHandler(IN_JS_ENTRY, JS_ENTRY_HANDLER);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006337 // If an exception not caught by another handler occurs, this handler
6338 // returns control to the code after the bl(&invoke) above, which
6339 // restores all kCalleeSaved registers (including cp and fp) to their
6340 // saved values before returning a failure to C.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006341
6342 // Clear any pending exceptions.
6343 __ mov(ip, Operand(ExternalReference::the_hole_value_location()));
6344 __ ldr(r5, MemOperand(ip));
ager@chromium.org32912102009-01-16 10:38:43 +00006345 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006346 __ str(r5, MemOperand(ip));
6347
6348 // Invoke the function by calling through JS entry trampoline builtin.
6349 // Notice that we cannot store a reference to the trampoline code directly in
6350 // this stub, because runtime stubs are not traversed when doing GC.
6351
6352 // Expected registers by Builtins::JSEntryTrampoline
6353 // r0: code entry
6354 // r1: function
6355 // r2: receiver
6356 // r3: argc
6357 // r4: argv
6358 if (is_construct) {
6359 ExternalReference construct_entry(Builtins::JSConstructEntryTrampoline);
6360 __ mov(ip, Operand(construct_entry));
6361 } else {
6362 ExternalReference entry(Builtins::JSEntryTrampoline);
6363 __ mov(ip, Operand(entry));
6364 }
6365 __ ldr(ip, MemOperand(ip)); // deref address
6366
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006367 // Branch and link to JSEntryTrampoline. We don't use the double underscore
6368 // macro for the add instruction because we don't want the coverage tool
6369 // inserting instructions here after we read the pc.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006370 __ mov(lr, Operand(pc));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006371 masm->add(pc, ip, Operand(Code::kHeaderSize - kHeapObjectTag));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006372
6373 // Unlink this frame from the handler chain. When reading the
6374 // address of the next handler, there is no need to use the address
6375 // displacement since the current stack pointer (sp) points directly
6376 // to the stack handler.
6377 __ ldr(r3, MemOperand(sp, StackHandlerConstants::kNextOffset));
6378 __ mov(ip, Operand(ExternalReference(Top::k_handler_address)));
6379 __ str(r3, MemOperand(ip));
6380 // No need to restore registers
6381 __ add(sp, sp, Operand(StackHandlerConstants::kSize));
6382
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006383
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006384 __ bind(&exit); // r0 holds result
6385 // Restore the top frame descriptors from the stack.
6386 __ pop(r3);
6387 __ mov(ip, Operand(ExternalReference(Top::k_c_entry_fp_address)));
6388 __ str(r3, MemOperand(ip));
6389
6390 // Reset the stack to the callee saved registers.
6391 __ add(sp, sp, Operand(-EntryFrameConstants::kCallerFPOffset));
6392
6393 // Restore callee-saved registers and return.
6394#ifdef DEBUG
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006395 if (FLAG_debug_code) {
6396 __ mov(lr, Operand(pc));
6397 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006398#endif
6399 __ ldm(ia_w, sp, kCalleeSaved | pc.bit());
6400}
6401
6402
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006403// This stub performs an instanceof, calling the builtin function if
6404// necessary. Uses r1 for the object, r0 for the function that it may
6405// be an instance of (these are fetched from the stack).
6406void InstanceofStub::Generate(MacroAssembler* masm) {
6407 // Get the object - slow case for smis (we may need to throw an exception
6408 // depending on the rhs).
6409 Label slow, loop, is_instance, is_not_instance;
6410 __ ldr(r0, MemOperand(sp, 1 * kPointerSize));
6411 __ BranchOnSmi(r0, &slow);
6412
6413 // Check that the left hand is a JS object and put map in r3.
6414 __ CompareObjectType(r0, r3, r2, FIRST_JS_OBJECT_TYPE);
6415 __ b(lt, &slow);
6416 __ cmp(r2, Operand(LAST_JS_OBJECT_TYPE));
6417 __ b(gt, &slow);
6418
6419 // Get the prototype of the function (r4 is result, r2 is scratch).
6420 __ ldr(r1, MemOperand(sp, 0 * kPointerSize));
6421 __ TryGetFunctionPrototype(r1, r4, r2, &slow);
6422
6423 // Check that the function prototype is a JS object.
6424 __ BranchOnSmi(r4, &slow);
6425 __ CompareObjectType(r4, r5, r5, FIRST_JS_OBJECT_TYPE);
6426 __ b(lt, &slow);
6427 __ cmp(r5, Operand(LAST_JS_OBJECT_TYPE));
6428 __ b(gt, &slow);
6429
6430 // Register mapping: r3 is object map and r4 is function prototype.
6431 // Get prototype of object into r2.
6432 __ ldr(r2, FieldMemOperand(r3, Map::kPrototypeOffset));
6433
6434 // Loop through the prototype chain looking for the function prototype.
6435 __ bind(&loop);
6436 __ cmp(r2, Operand(r4));
6437 __ b(eq, &is_instance);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006438 __ LoadRoot(ip, Heap::kNullValueRootIndex);
6439 __ cmp(r2, ip);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006440 __ b(eq, &is_not_instance);
6441 __ ldr(r2, FieldMemOperand(r2, HeapObject::kMapOffset));
6442 __ ldr(r2, FieldMemOperand(r2, Map::kPrototypeOffset));
6443 __ jmp(&loop);
6444
6445 __ bind(&is_instance);
6446 __ mov(r0, Operand(Smi::FromInt(0)));
6447 __ pop();
6448 __ pop();
6449 __ mov(pc, Operand(lr)); // Return.
6450
6451 __ bind(&is_not_instance);
6452 __ mov(r0, Operand(Smi::FromInt(1)));
6453 __ pop();
6454 __ pop();
6455 __ mov(pc, Operand(lr)); // Return.
6456
6457 // Slow-case. Tail call builtin.
6458 __ bind(&slow);
6459 __ mov(r0, Operand(1)); // Arg count without receiver.
6460 __ InvokeBuiltin(Builtins::INSTANCE_OF, JUMP_JS);
6461}
6462
6463
ager@chromium.org7c537e22008-10-16 08:43:32 +00006464void ArgumentsAccessStub::GenerateReadLength(MacroAssembler* masm) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006465 // Check if the calling frame is an arguments adaptor frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006466 Label adaptor;
6467 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6468 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006469 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006470 __ b(eq, &adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006471
ager@chromium.org7c537e22008-10-16 08:43:32 +00006472 // Nothing to do: The formal number of parameters has already been
6473 // passed in register r0 by calling function. Just return it.
ager@chromium.org9085a012009-05-11 19:22:57 +00006474 __ Jump(lr);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006475
ager@chromium.org7c537e22008-10-16 08:43:32 +00006476 // Arguments adaptor case: Read the arguments length from the
6477 // adaptor frame and return it.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006478 __ bind(&adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006479 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
ager@chromium.org9085a012009-05-11 19:22:57 +00006480 __ Jump(lr);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006481}
6482
6483
ager@chromium.org7c537e22008-10-16 08:43:32 +00006484void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) {
6485 // The displacement is the offset of the last parameter (if any)
6486 // relative to the frame pointer.
6487 static const int kDisplacement =
6488 StandardFrameConstants::kCallerSPOffset - kPointerSize;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006489
ager@chromium.org7c537e22008-10-16 08:43:32 +00006490 // Check that the key is a smi.
6491 Label slow;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006492 __ BranchOnNotSmi(r1, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006493
ager@chromium.org7c537e22008-10-16 08:43:32 +00006494 // Check if the calling frame is an arguments adaptor frame.
6495 Label adaptor;
6496 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6497 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006498 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006499 __ b(eq, &adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006500
ager@chromium.org7c537e22008-10-16 08:43:32 +00006501 // Check index against formal parameters count limit passed in
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00006502 // through register r0. Use unsigned comparison to get negative
ager@chromium.org7c537e22008-10-16 08:43:32 +00006503 // check for free.
6504 __ cmp(r1, r0);
6505 __ b(cs, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006506
ager@chromium.org7c537e22008-10-16 08:43:32 +00006507 // Read the argument from the stack and return it.
6508 __ sub(r3, r0, r1);
6509 __ add(r3, fp, Operand(r3, LSL, kPointerSizeLog2 - kSmiTagSize));
6510 __ ldr(r0, MemOperand(r3, kDisplacement));
ager@chromium.org9085a012009-05-11 19:22:57 +00006511 __ Jump(lr);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006512
6513 // Arguments adaptor case: Check index against actual arguments
6514 // limit found in the arguments adaptor frame. Use unsigned
6515 // comparison to get negative check for free.
6516 __ bind(&adaptor);
6517 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
6518 __ cmp(r1, r0);
6519 __ b(cs, &slow);
6520
6521 // Read the argument from the adaptor frame and return it.
6522 __ sub(r3, r0, r1);
6523 __ add(r3, r2, Operand(r3, LSL, kPointerSizeLog2 - kSmiTagSize));
6524 __ ldr(r0, MemOperand(r3, kDisplacement));
ager@chromium.org9085a012009-05-11 19:22:57 +00006525 __ Jump(lr);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006526
6527 // Slow-case: Handle non-smi or out-of-bounds access to arguments
6528 // by calling the runtime system.
6529 __ bind(&slow);
6530 __ push(r1);
ager@chromium.orga1645e22009-09-09 19:27:10 +00006531 __ TailCallRuntime(ExternalReference(Runtime::kGetArgumentsProperty), 1, 1);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006532}
6533
6534
6535void ArgumentsAccessStub::GenerateNewObject(MacroAssembler* masm) {
6536 // Check if the calling frame is an arguments adaptor frame.
6537 Label runtime;
6538 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6539 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006540 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006541 __ b(ne, &runtime);
6542
6543 // Patch the arguments.length and the parameters pointer.
6544 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
6545 __ str(r0, MemOperand(sp, 0 * kPointerSize));
6546 __ add(r3, r2, Operand(r0, LSL, kPointerSizeLog2 - kSmiTagSize));
6547 __ add(r3, r3, Operand(StandardFrameConstants::kCallerSPOffset));
6548 __ str(r3, MemOperand(sp, 1 * kPointerSize));
6549
6550 // Do the runtime call to allocate the arguments object.
6551 __ bind(&runtime);
ager@chromium.orga1645e22009-09-09 19:27:10 +00006552 __ TailCallRuntime(ExternalReference(Runtime::kNewArgumentsFast), 3, 1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006553}
6554
6555
6556void CallFunctionStub::Generate(MacroAssembler* masm) {
6557 Label slow;
6558 // Get the function to call from the stack.
6559 // function, receiver [, arguments]
6560 __ ldr(r1, MemOperand(sp, (argc_ + 1) * kPointerSize));
6561
6562 // Check that the function is really a JavaScript function.
6563 // r1: pushed function (to be verified)
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006564 __ BranchOnSmi(r1, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006565 // Get the map of the function object.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006566 __ CompareObjectType(r1, r2, r2, JS_FUNCTION_TYPE);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006567 __ b(ne, &slow);
6568
6569 // Fast-case: Invoke the function now.
6570 // r1: pushed function
6571 ParameterCount actual(argc_);
6572 __ InvokeFunction(r1, actual, JUMP_FUNCTION);
6573
6574 // Slow-case: Non-function called.
6575 __ bind(&slow);
6576 __ mov(r0, Operand(argc_)); // Setup the number of arguments.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006577 __ mov(r2, Operand(0));
6578 __ GetBuiltinEntry(r3, Builtins::CALL_NON_FUNCTION);
6579 __ Jump(Handle<Code>(Builtins::builtin(Builtins::ArgumentsAdaptorTrampoline)),
6580 RelocInfo::CODE_TARGET);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006581}
6582
6583
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006584int CompareStub::MinorKey() {
6585 // Encode the two parameters in a unique 16 bit value.
6586 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15));
6587 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0);
6588}
6589
6590
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006591#undef __
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006592
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006593} } // namespace v8::internal