blob: b08615e613e89ff266a56a8a97de7933aec627c9 [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;
329 int return_sequence_length = Debug::kARMJSReturnSequenceLength;
330 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
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001563 // Compile the test.
1564 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).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001778 frame_->EmitPush(r0); // duplicate the object being enumerated
1779 frame_->EmitPush(r0);
1780 frame_->CallRuntime(Runtime::kGetPropertyNamesFast, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001781
1782 // If we got a Map, we can do a fast modification check.
1783 // Otherwise, we got a FixedArray, and we have to do a slow check.
1784 __ mov(r2, Operand(r0));
1785 __ ldr(r1, FieldMemOperand(r2, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001786 __ LoadRoot(ip, Heap::kMetaMapRootIndex);
1787 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001788 fixed_array.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001789
1790 // Get enum cache
1791 __ mov(r1, Operand(r0));
1792 __ ldr(r1, FieldMemOperand(r1, Map::kInstanceDescriptorsOffset));
1793 __ ldr(r1, FieldMemOperand(r1, DescriptorArray::kEnumerationIndexOffset));
1794 __ ldr(r2,
1795 FieldMemOperand(r1, DescriptorArray::kEnumCacheBridgeCacheOffset));
1796
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001797 frame_->EmitPush(r0); // map
1798 frame_->EmitPush(r2); // enum cache bridge cache
mads.s.ager31e71382008-08-13 09:32:07 +00001799 __ ldr(r0, FieldMemOperand(r2, FixedArray::kLengthOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001800 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001801 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001802 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001803 frame_->EmitPush(r0);
1804 entry.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001805
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001806 fixed_array.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001807 __ mov(r1, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001808 frame_->EmitPush(r1); // insert 0 in place of Map
1809 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001810
1811 // Push the length of the array and the initial index onto the stack.
mads.s.ager31e71382008-08-13 09:32:07 +00001812 __ ldr(r0, FieldMemOperand(r0, FixedArray::kLengthOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001813 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001814 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001815 __ mov(r0, Operand(Smi::FromInt(0))); // init index
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001816 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001817
1818 // Condition.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001819 entry.Bind();
mads.s.ager31e71382008-08-13 09:32:07 +00001820 // sp[0] : index
1821 // sp[1] : array/enum cache length
1822 // sp[2] : array or enum cache
1823 // sp[3] : 0 or map
1824 // sp[4] : enumerable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001825 // Grab the current frame's height for the break and continue
1826 // targets only after all the state is pushed on the frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001827 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
1828 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001829
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001830 __ ldr(r0, frame_->ElementAt(0)); // load the current count
1831 __ ldr(r1, frame_->ElementAt(1)); // load the length
1832 __ cmp(r0, Operand(r1)); // compare to the array length
1833 node->break_target()->Branch(hs);
1834
1835 __ ldr(r0, frame_->ElementAt(0));
mads.s.ager31e71382008-08-13 09:32:07 +00001836
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001837 // Get the i'th entry of the array.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001838 __ ldr(r2, frame_->ElementAt(2));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001839 __ add(r2, r2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
1840 __ ldr(r3, MemOperand(r2, r0, LSL, kPointerSizeLog2 - kSmiTagSize));
1841
1842 // Get Map or 0.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001843 __ ldr(r2, frame_->ElementAt(3));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001844 // Check if this (still) matches the map of the enumerable.
1845 // If not, we have to filter the key.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001846 __ ldr(r1, frame_->ElementAt(4));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001847 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
1848 __ cmp(r1, Operand(r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001849 end_del_check.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001850
1851 // Convert the entry to a string (or null if it isn't a property anymore).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001852 __ ldr(r0, frame_->ElementAt(4)); // push enumerable
1853 frame_->EmitPush(r0);
1854 frame_->EmitPush(r3); // push entry
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001855 Result arg_count_reg(r0);
1856 __ mov(r0, Operand(1));
1857 frame_->InvokeBuiltin(Builtins::FILTER_KEY, CALL_JS, &arg_count_reg, 2);
1858 __ mov(r3, Operand(r0));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001859
1860 // If the property has been removed while iterating, we just skip it.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001861 __ LoadRoot(ip, Heap::kNullValueRootIndex);
1862 __ cmp(r3, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001863 node->continue_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001864
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001865 end_del_check.Bind();
1866 // Store the entry in the 'each' expression and take another spin in the
1867 // loop. r3: i'th entry of the enum cache (or string there of)
1868 frame_->EmitPush(r3); // push entry
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001869 { Reference each(this, node->each());
1870 if (!each.is_illegal()) {
mads.s.ager31e71382008-08-13 09:32:07 +00001871 if (each.size() > 0) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001872 __ ldr(r0, frame_->ElementAt(each.size()));
1873 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001874 }
ager@chromium.org7c537e22008-10-16 08:43:32 +00001875 // If the reference was to a slot we rely on the convenient property
1876 // that it doesn't matter whether a value (eg, r3 pushed above) is
1877 // right on top of or right underneath a zero-sized reference.
1878 each.SetValue(NOT_CONST_INIT);
mads.s.ager31e71382008-08-13 09:32:07 +00001879 if (each.size() > 0) {
ager@chromium.org7c537e22008-10-16 08:43:32 +00001880 // It's safe to pop the value lying on top of the reference before
1881 // unloading the reference itself (which preserves the top of stack,
1882 // ie, now the topmost value of the non-zero sized reference), since
1883 // we will discard the top of stack after unloading the reference
1884 // anyway.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001885 frame_->EmitPop(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001886 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001887 }
1888 }
ager@chromium.org7c537e22008-10-16 08:43:32 +00001889 // Discard the i'th entry pushed above or else the remainder of the
1890 // reference, whichever is currently on top of the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001891 frame_->Drop();
1892
1893 // Body.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001894 CheckStack(); // TODO(1222600): ignore if body contains calls.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001895 VisitAndSpill(node->body());
1896
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001897 // Next. Reestablish a spilled frame in case we are coming here via
1898 // a continue in the body.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001899 node->continue_target()->Bind();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001900 frame_->SpillAll();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001901 frame_->EmitPop(r0);
1902 __ add(r0, r0, Operand(Smi::FromInt(1)));
1903 frame_->EmitPush(r0);
1904 entry.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001905
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001906 // Cleanup. No need to spill because VirtualFrame::Drop is safe for
1907 // any frame.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001908 node->break_target()->Bind();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001909 frame_->Drop(5);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001910
1911 // Exit.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001912 exit.Bind();
1913 node->continue_target()->Unuse();
1914 node->break_target()->Unuse();
1915 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001916}
1917
1918
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001919void CodeGenerator::VisitTryCatchStatement(TryCatchStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001920#ifdef DEBUG
1921 int original_height = frame_->height();
1922#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001923 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001924 Comment cmnt(masm_, "[ TryCatchStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001925 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001926
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001927 JumpTarget try_block;
1928 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001929
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001930 try_block.Call();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001931 // --- Catch block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001932 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001933
1934 // Store the caught exception in the catch variable.
1935 { Reference ref(this, node->catch_var());
ager@chromium.org7c537e22008-10-16 08:43:32 +00001936 ASSERT(ref.is_slot());
1937 // Here we make use of the convenient property that it doesn't matter
1938 // whether a value is immediately on top of or underneath a zero-sized
1939 // reference.
1940 ref.SetValue(NOT_CONST_INIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001941 }
1942
1943 // Remove the exception from the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001944 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001945
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001946 VisitStatementsAndSpill(node->catch_block()->statements());
1947 if (frame_ != NULL) {
1948 exit.Jump();
1949 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001950
1951
1952 // --- Try block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001953 try_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001954
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001955 frame_->PushTryHandler(TRY_CATCH_HANDLER);
1956 int handler_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001957
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001958 // Shadow the labels for all escapes from the try block, including
1959 // returns. During shadowing, the original label is hidden as the
1960 // LabelShadow and operations on the original actually affect the
1961 // shadowing label.
1962 //
1963 // We should probably try to unify the escaping labels and the return
1964 // label.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001965 int nof_escapes = node->escaping_targets()->length();
1966 List<ShadowTarget*> shadows(1 + nof_escapes);
1967
1968 // Add the shadow target for the function return.
1969 static const int kReturnShadowIndex = 0;
1970 shadows.Add(new ShadowTarget(&function_return_));
1971 bool function_return_was_shadowed = function_return_is_shadowed_;
1972 function_return_is_shadowed_ = true;
1973 ASSERT(shadows[kReturnShadowIndex]->other_target() == &function_return_);
1974
1975 // Add the remaining shadow targets.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001976 for (int i = 0; i < nof_escapes; i++) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001977 shadows.Add(new ShadowTarget(node->escaping_targets()->at(i)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001978 }
1979
1980 // Generate code for the statements in the try block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001981 VisitStatementsAndSpill(node->try_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001982
1983 // Stop the introduced shadowing and count the number of required unlinks.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001984 // After shadowing stops, the original labels are unshadowed and the
1985 // LabelShadows represent the formerly shadowing labels.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001986 bool has_unlinks = false;
1987 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001988 shadows[i]->StopShadowing();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001989 has_unlinks = has_unlinks || shadows[i]->is_linked();
1990 }
1991 function_return_is_shadowed_ = function_return_was_shadowed;
1992
1993 // Get an external reference to the handler address.
1994 ExternalReference handler_address(Top::k_handler_address);
1995
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001996 // If we can fall off the end of the try block, unlink from try chain.
1997 if (has_valid_frame()) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00001998 // The next handler address is on top of the frame. Unlink from
1999 // the handler list and drop the rest of this handler from the
2000 // frame.
2001 ASSERT(StackHandlerConstants::kNextOffset == 0);
2002 frame_->EmitPop(r1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002003 __ mov(r3, Operand(handler_address));
2004 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002005 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002006 if (has_unlinks) {
2007 exit.Jump();
2008 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002009 }
2010
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002011 // Generate unlink code for the (formerly) shadowing labels that have been
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002012 // jumped to. Deallocate each shadow target.
2013 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002014 if (shadows[i]->is_linked()) {
mads.s.ager31e71382008-08-13 09:32:07 +00002015 // Unlink from try chain;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002016 shadows[i]->Bind();
2017 // Because we can be jumping here (to spilled code) from unspilled
2018 // code, we need to reestablish a spilled frame at this block.
2019 frame_->SpillAll();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002020
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002021 // Reload sp from the top handler, because some statements that we
2022 // break from (eg, for...in) may have left stuff on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002023 __ mov(r3, Operand(handler_address));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002024 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002025 frame_->Forget(frame_->height() - handler_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002026
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002027 ASSERT(StackHandlerConstants::kNextOffset == 0);
2028 frame_->EmitPop(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002029 __ str(r1, MemOperand(r3));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002030 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002031
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002032 if (!function_return_is_shadowed_ && i == kReturnShadowIndex) {
2033 frame_->PrepareForReturn();
2034 }
2035 shadows[i]->other_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002036 }
2037 }
2038
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002039 exit.Bind();
2040 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002041}
2042
2043
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002044void CodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002045#ifdef DEBUG
2046 int original_height = frame_->height();
2047#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002048 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002049 Comment cmnt(masm_, "[ TryFinallyStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002050 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002051
2052 // State: Used to keep track of reason for entering the finally
2053 // block. Should probably be extended to hold information for
2054 // break/continue from within the try block.
2055 enum { FALLING, THROWING, JUMPING };
2056
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002057 JumpTarget try_block;
2058 JumpTarget finally_block;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002059
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002060 try_block.Call();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002061
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002062 frame_->EmitPush(r0); // save exception object on the stack
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002063 // In case of thrown exceptions, this is where we continue.
2064 __ mov(r2, Operand(Smi::FromInt(THROWING)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002065 finally_block.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002066
2067 // --- Try block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002068 try_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002069
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002070 frame_->PushTryHandler(TRY_FINALLY_HANDLER);
2071 int handler_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002072
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002073 // Shadow the labels for all escapes from the try block, including
2074 // returns. Shadowing hides the original label as the LabelShadow and
2075 // operations on the original actually affect the shadowing label.
2076 //
2077 // We should probably try to unify the escaping labels and the return
2078 // label.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002079 int nof_escapes = node->escaping_targets()->length();
2080 List<ShadowTarget*> shadows(1 + nof_escapes);
2081
2082 // Add the shadow target for the function return.
2083 static const int kReturnShadowIndex = 0;
2084 shadows.Add(new ShadowTarget(&function_return_));
2085 bool function_return_was_shadowed = function_return_is_shadowed_;
2086 function_return_is_shadowed_ = true;
2087 ASSERT(shadows[kReturnShadowIndex]->other_target() == &function_return_);
2088
2089 // Add the remaining shadow targets.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002090 for (int i = 0; i < nof_escapes; i++) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002091 shadows.Add(new ShadowTarget(node->escaping_targets()->at(i)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002092 }
2093
2094 // Generate code for the statements in the try block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002095 VisitStatementsAndSpill(node->try_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002096
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002097 // Stop the introduced shadowing and count the number of required unlinks.
2098 // After shadowing stops, the original labels are unshadowed and the
2099 // LabelShadows represent the formerly shadowing labels.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002100 int nof_unlinks = 0;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002101 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002102 shadows[i]->StopShadowing();
2103 if (shadows[i]->is_linked()) nof_unlinks++;
2104 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002105 function_return_is_shadowed_ = function_return_was_shadowed;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002106
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002107 // Get an external reference to the handler address.
2108 ExternalReference handler_address(Top::k_handler_address);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002109
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002110 // If we can fall off the end of the try block, unlink from the try
2111 // chain and set the state on the frame to FALLING.
2112 if (has_valid_frame()) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002113 // The next handler address is on top of the frame.
2114 ASSERT(StackHandlerConstants::kNextOffset == 0);
2115 frame_->EmitPop(r1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002116 __ mov(r3, Operand(handler_address));
2117 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002118 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002119
2120 // Fake a top of stack value (unneeded when FALLING) and set the
2121 // state in r2, then jump around the unlink blocks if any.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002122 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002123 frame_->EmitPush(r0);
2124 __ mov(r2, Operand(Smi::FromInt(FALLING)));
2125 if (nof_unlinks > 0) {
2126 finally_block.Jump();
2127 }
2128 }
2129
2130 // Generate code to unlink and set the state for the (formerly)
2131 // shadowing targets that have been jumped to.
2132 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002133 if (shadows[i]->is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002134 // If we have come from the shadowed return, the return value is
2135 // in (a non-refcounted reference to) r0. We must preserve it
2136 // until it is pushed.
2137 //
2138 // Because we can be jumping here (to spilled code) from
2139 // unspilled code, we need to reestablish a spilled frame at
2140 // this block.
2141 shadows[i]->Bind();
2142 frame_->SpillAll();
2143
2144 // Reload sp from the top handler, because some statements that
2145 // we break from (eg, for...in) may have left stuff on the
2146 // stack.
2147 __ mov(r3, Operand(handler_address));
2148 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002149 frame_->Forget(frame_->height() - handler_height);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002150
2151 // Unlink this handler and drop it from the frame. The next
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002152 // handler address is currently on top of the frame.
2153 ASSERT(StackHandlerConstants::kNextOffset == 0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002154 frame_->EmitPop(r1);
2155 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002156 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002157
2158 if (i == kReturnShadowIndex) {
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002159 // If this label shadowed the function return, materialize the
2160 // return value on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002161 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002162 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002163 // Fake TOS for targets that shadowed breaks and continues.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002164 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002165 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002166 }
2167 __ mov(r2, Operand(Smi::FromInt(JUMPING + i)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002168 if (--nof_unlinks > 0) {
2169 // If this is not the last unlink block, jump around the next.
2170 finally_block.Jump();
2171 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002172 }
2173 }
2174
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002175 // --- Finally block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002176 finally_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002177
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002178 // Push the state on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002179 frame_->EmitPush(r2);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002180
2181 // We keep two elements on the stack - the (possibly faked) result
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002182 // and the state - while evaluating the finally block.
2183 //
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002184 // Generate code for the statements in the finally block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002185 VisitStatementsAndSpill(node->finally_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002186
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002187 if (has_valid_frame()) {
2188 // Restore state and return value or faked TOS.
2189 frame_->EmitPop(r2);
2190 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002191 }
2192
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002193 // Generate code to jump to the right destination for all used
2194 // formerly shadowing targets. Deallocate each shadow target.
2195 for (int i = 0; i < shadows.length(); i++) {
2196 if (has_valid_frame() && shadows[i]->is_bound()) {
2197 JumpTarget* original = shadows[i]->other_target();
2198 __ cmp(r2, Operand(Smi::FromInt(JUMPING + i)));
2199 if (!function_return_is_shadowed_ && i == kReturnShadowIndex) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002200 JumpTarget skip;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002201 skip.Branch(ne);
2202 frame_->PrepareForReturn();
2203 original->Jump();
2204 skip.Bind();
2205 } else {
2206 original->Branch(eq);
2207 }
2208 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002209 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002210
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002211 if (has_valid_frame()) {
2212 // Check if we need to rethrow the exception.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002213 JumpTarget exit;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002214 __ cmp(r2, Operand(Smi::FromInt(THROWING)));
2215 exit.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002216
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002217 // Rethrow exception.
2218 frame_->EmitPush(r0);
2219 frame_->CallRuntime(Runtime::kReThrow, 1);
2220
2221 // Done.
2222 exit.Bind();
2223 }
2224 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002225}
2226
2227
ager@chromium.org7c537e22008-10-16 08:43:32 +00002228void CodeGenerator::VisitDebuggerStatement(DebuggerStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002229#ifdef DEBUG
2230 int original_height = frame_->height();
2231#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002232 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002233 Comment cmnt(masm_, "[ DebuggerStatament");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002234 CodeForStatementPosition(node);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002235#ifdef ENABLE_DEBUGGER_SUPPORT
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002236 frame_->CallRuntime(Runtime::kDebugBreak, 0);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002237#endif
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00002238 // Ignore the return value.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002239 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002240}
2241
2242
ager@chromium.org7c537e22008-10-16 08:43:32 +00002243void CodeGenerator::InstantiateBoilerplate(Handle<JSFunction> boilerplate) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002244 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002245 ASSERT(boilerplate->IsBoilerplate());
2246
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002247 // Create a new closure.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002248 frame_->EmitPush(cp);
ager@chromium.org3811b432009-10-28 14:53:37 +00002249 __ mov(r0, Operand(boilerplate));
2250 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002251 frame_->CallRuntime(Runtime::kNewClosure, 2);
2252 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002253}
2254
2255
ager@chromium.org7c537e22008-10-16 08:43:32 +00002256void CodeGenerator::VisitFunctionLiteral(FunctionLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002257#ifdef DEBUG
2258 int original_height = frame_->height();
2259#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002260 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002261 Comment cmnt(masm_, "[ FunctionLiteral");
2262
2263 // Build the function boilerplate and instantiate it.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002264 Handle<JSFunction> boilerplate =
2265 Compiler::BuildBoilerplate(node, script_, this);
kasper.lund212ac232008-07-16 07:07:30 +00002266 // Check for stack-overflow exception.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002267 if (HasStackOverflow()) {
2268 ASSERT(frame_->height() == original_height);
2269 return;
2270 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002271 InstantiateBoilerplate(boilerplate);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002272 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002273}
2274
2275
ager@chromium.org7c537e22008-10-16 08:43:32 +00002276void CodeGenerator::VisitFunctionBoilerplateLiteral(
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002277 FunctionBoilerplateLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002278#ifdef DEBUG
2279 int original_height = frame_->height();
2280#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002281 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002282 Comment cmnt(masm_, "[ FunctionBoilerplateLiteral");
2283 InstantiateBoilerplate(node->boilerplate());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002284 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002285}
2286
2287
ager@chromium.org7c537e22008-10-16 08:43:32 +00002288void CodeGenerator::VisitConditional(Conditional* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002289#ifdef DEBUG
2290 int original_height = frame_->height();
2291#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002292 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002293 Comment cmnt(masm_, "[ Conditional");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002294 JumpTarget then;
2295 JumpTarget else_;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002296 LoadConditionAndSpill(node->condition(), &then, &else_, true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002297 if (has_valid_frame()) {
2298 Branch(false, &else_);
2299 }
2300 if (has_valid_frame() || then.is_linked()) {
2301 then.Bind();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002302 LoadAndSpill(node->then_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002303 }
2304 if (else_.is_linked()) {
2305 JumpTarget exit;
2306 if (has_valid_frame()) exit.Jump();
2307 else_.Bind();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002308 LoadAndSpill(node->else_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002309 if (exit.is_linked()) exit.Bind();
2310 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002311 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002312}
2313
2314
ager@chromium.org7c537e22008-10-16 08:43:32 +00002315void CodeGenerator::LoadFromSlot(Slot* slot, TypeofState typeof_state) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002316 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002317 if (slot->type() == Slot::LOOKUP) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00002318 ASSERT(slot->var()->is_dynamic());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002319
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002320 JumpTarget slow;
2321 JumpTarget done;
ager@chromium.org381abbb2009-02-25 13:23:22 +00002322
2323 // Generate fast-case code for variables that might be shadowed by
2324 // eval-introduced variables. Eval is used a lot without
2325 // introducing variables. In those cases, we do not want to
2326 // perform a runtime call for all variables in the scope
2327 // containing the eval.
2328 if (slot->var()->mode() == Variable::DYNAMIC_GLOBAL) {
2329 LoadFromGlobalSlotCheckExtensions(slot, typeof_state, r1, r2, &slow);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002330 // If there was no control flow to slow, we can exit early.
2331 if (!slow.is_linked()) {
2332 frame_->EmitPush(r0);
2333 return;
2334 }
2335
2336 done.Jump();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002337
2338 } else if (slot->var()->mode() == Variable::DYNAMIC_LOCAL) {
2339 Slot* potential_slot = slot->var()->local_if_not_shadowed()->slot();
2340 // Only generate the fast case for locals that rewrite to slots.
2341 // This rules out argument loads.
2342 if (potential_slot != NULL) {
2343 __ ldr(r0,
2344 ContextSlotOperandCheckExtensions(potential_slot,
2345 r1,
2346 r2,
2347 &slow));
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002348 if (potential_slot->var()->mode() == Variable::CONST) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002349 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2350 __ cmp(r0, ip);
2351 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002352 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002353 // There is always control flow to slow from
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002354 // ContextSlotOperandCheckExtensions so we have to jump around
2355 // it.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002356 done.Jump();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002357 }
2358 }
2359
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002360 slow.Bind();
2361 frame_->EmitPush(cp);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002362 __ mov(r0, Operand(slot->var()->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002363 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002364
ager@chromium.org7c537e22008-10-16 08:43:32 +00002365 if (typeof_state == INSIDE_TYPEOF) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002366 frame_->CallRuntime(Runtime::kLoadContextSlotNoReferenceError, 2);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002367 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002368 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002369 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00002370
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002371 done.Bind();
2372 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002373
2374 } else {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002375 // Special handling for locals allocated in registers.
ager@chromium.org7c537e22008-10-16 08:43:32 +00002376 __ ldr(r0, SlotOperand(slot, r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002377 frame_->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002378 if (slot->var()->mode() == Variable::CONST) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002379 // Const slots may contain 'the hole' value (the constant hasn't been
2380 // initialized yet) which needs to be converted into the 'undefined'
2381 // value.
2382 Comment cmnt(masm_, "[ Unhole const");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002383 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002384 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2385 __ cmp(r0, ip);
2386 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002387 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002388 }
2389 }
2390}
2391
2392
ager@chromium.org381abbb2009-02-25 13:23:22 +00002393void CodeGenerator::LoadFromGlobalSlotCheckExtensions(Slot* slot,
2394 TypeofState typeof_state,
2395 Register tmp,
2396 Register tmp2,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002397 JumpTarget* slow) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00002398 // Check that no extension objects have been created by calls to
2399 // eval from the current scope to the global scope.
2400 Register context = cp;
2401 Scope* s = scope();
2402 while (s != NULL) {
2403 if (s->num_heap_slots() > 0) {
2404 if (s->calls_eval()) {
2405 // Check that extension is NULL.
2406 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
2407 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002408 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002409 }
2410 // Load next context in chain.
2411 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
2412 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
2413 context = tmp;
2414 }
2415 // If no outer scope calls eval, we do not need to check more
2416 // context extensions.
2417 if (!s->outer_scope_calls_eval() || s->is_eval_scope()) break;
2418 s = s->outer_scope();
2419 }
2420
2421 if (s->is_eval_scope()) {
2422 Label next, fast;
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002423 if (!context.is(tmp)) {
2424 __ mov(tmp, Operand(context));
2425 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00002426 __ bind(&next);
2427 // Terminate at global context.
2428 __ ldr(tmp2, FieldMemOperand(tmp, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002429 __ LoadRoot(ip, Heap::kGlobalContextMapRootIndex);
2430 __ cmp(tmp2, ip);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002431 __ b(eq, &fast);
2432 // Check that extension is NULL.
2433 __ ldr(tmp2, ContextOperand(tmp, Context::EXTENSION_INDEX));
2434 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002435 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002436 // Load next context in chain.
2437 __ ldr(tmp, ContextOperand(tmp, Context::CLOSURE_INDEX));
2438 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
2439 __ b(&next);
2440 __ bind(&fast);
2441 }
2442
2443 // All extension objects were empty and it is safe to use a global
2444 // load IC call.
2445 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
2446 // Load the global object.
2447 LoadGlobal();
2448 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002449 Result name(r2);
2450 __ mov(r2, Operand(slot->var()->name()));
ager@chromium.org381abbb2009-02-25 13:23:22 +00002451 // Call IC stub.
2452 if (typeof_state == INSIDE_TYPEOF) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002453 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET, &name, 0);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002454 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002455 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET_CONTEXT, &name, 0);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002456 }
2457
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002458 // Drop the global object. The result is in r0.
2459 frame_->Drop();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002460}
2461
2462
ager@chromium.org7c537e22008-10-16 08:43:32 +00002463void CodeGenerator::VisitSlot(Slot* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002464#ifdef DEBUG
2465 int original_height = frame_->height();
2466#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002467 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002468 Comment cmnt(masm_, "[ Slot");
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002469 LoadFromSlot(node, NOT_INSIDE_TYPEOF);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002470 ASSERT(frame_->height() == original_height + 1);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002471}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002472
ager@chromium.org7c537e22008-10-16 08:43:32 +00002473
2474void CodeGenerator::VisitVariableProxy(VariableProxy* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002475#ifdef DEBUG
2476 int original_height = frame_->height();
2477#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002478 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002479 Comment cmnt(masm_, "[ VariableProxy");
2480
2481 Variable* var = node->var();
2482 Expression* expr = var->rewrite();
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002483 if (expr != NULL) {
2484 Visit(expr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002485 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +00002486 ASSERT(var->is_global());
2487 Reference ref(this, node);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002488 ref.GetValueAndSpill();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002489 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002490 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002491}
2492
2493
ager@chromium.org7c537e22008-10-16 08:43:32 +00002494void CodeGenerator::VisitLiteral(Literal* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002495#ifdef DEBUG
2496 int original_height = frame_->height();
2497#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002498 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002499 Comment cmnt(masm_, "[ Literal");
mads.s.ager31e71382008-08-13 09:32:07 +00002500 __ mov(r0, Operand(node->handle()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002501 frame_->EmitPush(r0);
2502 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002503}
2504
2505
ager@chromium.org7c537e22008-10-16 08:43:32 +00002506void CodeGenerator::VisitRegExpLiteral(RegExpLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002507#ifdef DEBUG
2508 int original_height = frame_->height();
2509#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002510 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002511 Comment cmnt(masm_, "[ RexExp Literal");
2512
2513 // Retrieve the literal array and check the allocated entry.
2514
2515 // Load the function of this activation.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002516 __ ldr(r1, frame_->Function());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002517
2518 // Load the literals array of the function.
2519 __ ldr(r1, FieldMemOperand(r1, JSFunction::kLiteralsOffset));
2520
2521 // Load the literal at the ast saved index.
2522 int literal_offset =
2523 FixedArray::kHeaderSize + node->literal_index() * kPointerSize;
2524 __ ldr(r2, FieldMemOperand(r1, literal_offset));
2525
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002526 JumpTarget done;
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002527 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
2528 __ cmp(r2, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002529 done.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002530
2531 // If the entry is undefined we call the runtime system to computed
2532 // the literal.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002533 frame_->EmitPush(r1); // literal array (0)
mads.s.ager31e71382008-08-13 09:32:07 +00002534 __ mov(r0, Operand(Smi::FromInt(node->literal_index())));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002535 frame_->EmitPush(r0); // literal index (1)
mads.s.ager31e71382008-08-13 09:32:07 +00002536 __ mov(r0, Operand(node->pattern())); // RegExp pattern (2)
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002537 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002538 __ mov(r0, Operand(node->flags())); // RegExp flags (3)
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002539 frame_->EmitPush(r0);
2540 frame_->CallRuntime(Runtime::kMaterializeRegExpLiteral, 4);
mads.s.ager31e71382008-08-13 09:32:07 +00002541 __ mov(r2, Operand(r0));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002542
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002543 done.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002544 // Push the literal.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002545 frame_->EmitPush(r2);
2546 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002547}
2548
2549
2550// This deferred code stub will be used for creating the boilerplate
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002551// by calling Runtime_CreateObjectLiteralBoilerplate.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002552// Each created boilerplate is stored in the JSFunction and they are
2553// therefore context dependent.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002554class DeferredObjectLiteral: public DeferredCode {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002555 public:
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002556 explicit DeferredObjectLiteral(ObjectLiteral* node) : node_(node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002557 set_comment("[ DeferredObjectLiteral");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002558 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002559
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002560 virtual void Generate();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002561
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002562 private:
2563 ObjectLiteral* node_;
2564};
2565
2566
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002567void DeferredObjectLiteral::Generate() {
2568 // Argument is passed in r1.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002569
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002570 // If the entry is undefined we call the runtime system to compute
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002571 // the literal.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002572 // Literal array (0).
ager@chromium.orge2902be2009-06-08 12:21:35 +00002573 __ push(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002574 // Literal index (1).
mads.s.ager31e71382008-08-13 09:32:07 +00002575 __ mov(r0, Operand(Smi::FromInt(node_->literal_index())));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002576 __ push(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002577 // Constant properties (2).
mads.s.ager31e71382008-08-13 09:32:07 +00002578 __ mov(r0, Operand(node_->constant_properties()));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002579 __ push(r0);
2580 __ CallRuntime(Runtime::kCreateObjectLiteralBoilerplate, 3);
2581 __ mov(r2, Operand(r0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002582 // Result is returned in r2.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002583}
2584
2585
ager@chromium.org7c537e22008-10-16 08:43:32 +00002586void CodeGenerator::VisitObjectLiteral(ObjectLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002587#ifdef DEBUG
2588 int original_height = frame_->height();
2589#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002590 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002591 Comment cmnt(masm_, "[ ObjectLiteral");
2592
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002593 DeferredObjectLiteral* deferred = new DeferredObjectLiteral(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002594
2595 // Retrieve the literal array and check the allocated entry.
2596
2597 // Load the function of this activation.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002598 __ ldr(r1, frame_->Function());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002599
2600 // Load the literals array of the function.
2601 __ ldr(r1, FieldMemOperand(r1, JSFunction::kLiteralsOffset));
2602
2603 // Load the literal at the ast saved index.
2604 int literal_offset =
2605 FixedArray::kHeaderSize + node->literal_index() * kPointerSize;
2606 __ ldr(r2, FieldMemOperand(r1, literal_offset));
2607
2608 // Check whether we need to materialize the object literal boilerplate.
2609 // If so, jump to the deferred code.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002610 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
2611 __ cmp(r2, Operand(ip));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002612 deferred->Branch(eq);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002613 deferred->BindExit();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002614
2615 // Push the object literal boilerplate.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002616 frame_->EmitPush(r2);
mads.s.ager31e71382008-08-13 09:32:07 +00002617
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002618 // Clone the boilerplate object.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002619 Runtime::FunctionId clone_function_id = Runtime::kCloneLiteralBoilerplate;
2620 if (node->depth() == 1) {
2621 clone_function_id = Runtime::kCloneShallowLiteralBoilerplate;
2622 }
2623 frame_->CallRuntime(clone_function_id, 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002624 frame_->EmitPush(r0); // save the result
mads.s.ager31e71382008-08-13 09:32:07 +00002625 // r0: cloned object literal
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002626
2627 for (int i = 0; i < node->properties()->length(); i++) {
2628 ObjectLiteral::Property* property = node->properties()->at(i);
2629 Literal* key = property->key();
2630 Expression* value = property->value();
2631 switch (property->kind()) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002632 case ObjectLiteral::Property::CONSTANT:
2633 break;
2634 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
2635 if (CompileTimeValue::IsCompileTimeValue(property->value())) break;
2636 // else fall through
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002637 case ObjectLiteral::Property::COMPUTED: // fall through
2638 case ObjectLiteral::Property::PROTOTYPE: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002639 frame_->EmitPush(r0); // dup the result
2640 LoadAndSpill(key);
2641 LoadAndSpill(value);
2642 frame_->CallRuntime(Runtime::kSetProperty, 3);
mads.s.ager31e71382008-08-13 09:32:07 +00002643 // restore r0
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002644 __ ldr(r0, frame_->Top());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002645 break;
2646 }
2647 case ObjectLiteral::Property::SETTER: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002648 frame_->EmitPush(r0);
2649 LoadAndSpill(key);
mads.s.ager31e71382008-08-13 09:32:07 +00002650 __ mov(r0, Operand(Smi::FromInt(1)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002651 frame_->EmitPush(r0);
2652 LoadAndSpill(value);
2653 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002654 __ ldr(r0, frame_->Top());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002655 break;
2656 }
2657 case ObjectLiteral::Property::GETTER: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002658 frame_->EmitPush(r0);
2659 LoadAndSpill(key);
mads.s.ager31e71382008-08-13 09:32:07 +00002660 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002661 frame_->EmitPush(r0);
2662 LoadAndSpill(value);
2663 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002664 __ ldr(r0, frame_->Top());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002665 break;
2666 }
2667 }
2668 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002669 ASSERT(frame_->height() == original_height + 1);
2670}
2671
2672
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002673// This deferred code stub will be used for creating the boilerplate
2674// by calling Runtime_CreateArrayLiteralBoilerplate.
2675// Each created boilerplate is stored in the JSFunction and they are
2676// therefore context dependent.
2677class DeferredArrayLiteral: public DeferredCode {
2678 public:
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002679 explicit DeferredArrayLiteral(ArrayLiteral* node) : node_(node) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002680 set_comment("[ DeferredArrayLiteral");
2681 }
2682
2683 virtual void Generate();
2684
2685 private:
2686 ArrayLiteral* node_;
2687};
2688
2689
2690void DeferredArrayLiteral::Generate() {
2691 // Argument is passed in r1.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002692
2693 // If the entry is undefined we call the runtime system to computed
2694 // the literal.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002695 // Literal array (0).
ager@chromium.orge2902be2009-06-08 12:21:35 +00002696 __ push(r1);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002697 // Literal index (1).
2698 __ mov(r0, Operand(Smi::FromInt(node_->literal_index())));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002699 __ push(r0);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002700 // Constant properties (2).
2701 __ mov(r0, Operand(node_->literals()));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002702 __ push(r0);
2703 __ CallRuntime(Runtime::kCreateArrayLiteralBoilerplate, 3);
2704 __ mov(r2, Operand(r0));
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002705 // Result is returned in r2.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002706}
2707
2708
ager@chromium.org7c537e22008-10-16 08:43:32 +00002709void CodeGenerator::VisitArrayLiteral(ArrayLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002710#ifdef DEBUG
2711 int original_height = frame_->height();
2712#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002713 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002714 Comment cmnt(masm_, "[ ArrayLiteral");
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002715
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002716 DeferredArrayLiteral* deferred = new DeferredArrayLiteral(node);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002717
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002718 // Retrieve the literal array and check the allocated entry.
2719
2720 // Load the function of this activation.
2721 __ ldr(r1, frame_->Function());
2722
2723 // Load the literals array of the function.
2724 __ ldr(r1, FieldMemOperand(r1, JSFunction::kLiteralsOffset));
2725
2726 // Load the literal at the ast saved index.
2727 int literal_offset =
2728 FixedArray::kHeaderSize + node->literal_index() * kPointerSize;
2729 __ ldr(r2, FieldMemOperand(r1, literal_offset));
2730
2731 // Check whether we need to materialize the object literal boilerplate.
2732 // If so, jump to the deferred code.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002733 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
2734 __ cmp(r2, Operand(ip));
ager@chromium.orge2902be2009-06-08 12:21:35 +00002735 deferred->Branch(eq);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002736 deferred->BindExit();
2737
2738 // Push the object literal boilerplate.
2739 frame_->EmitPush(r2);
2740
2741 // Clone the boilerplate object.
2742 Runtime::FunctionId clone_function_id = Runtime::kCloneLiteralBoilerplate;
2743 if (node->depth() == 1) {
2744 clone_function_id = Runtime::kCloneShallowLiteralBoilerplate;
2745 }
2746 frame_->CallRuntime(clone_function_id, 1);
2747 frame_->EmitPush(r0); // save the result
2748 // r0: cloned object literal
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002749
2750 // Generate code to set the elements in the array that are not
2751 // literals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002752 for (int i = 0; i < node->values()->length(); i++) {
2753 Expression* value = node->values()->at(i);
2754
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002755 // If value is a literal the property value is already set in the
2756 // boilerplate object.
2757 if (value->AsLiteral() != NULL) continue;
2758 // If value is a materialized literal the property value is already set
2759 // in the boilerplate object if it is simple.
2760 if (CompileTimeValue::IsCompileTimeValue(value)) continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002761
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002762 // The property must be set by generated code.
2763 LoadAndSpill(value);
2764 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002765
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002766 // Fetch the object literal.
2767 __ ldr(r1, frame_->Top());
2768 // Get the elements array.
2769 __ ldr(r1, FieldMemOperand(r1, JSObject::kElementsOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002770
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002771 // Write to the indexed properties array.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00002772 int offset = i * kPointerSize + FixedArray::kHeaderSize;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002773 __ str(r0, FieldMemOperand(r1, offset));
2774
2775 // Update the write barrier for the array address.
2776 __ mov(r3, Operand(offset));
2777 __ RecordWrite(r1, r3, r2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002778 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002779 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002780}
2781
2782
ager@chromium.org32912102009-01-16 10:38:43 +00002783void CodeGenerator::VisitCatchExtensionObject(CatchExtensionObject* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002784#ifdef DEBUG
2785 int original_height = frame_->height();
2786#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002787 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org32912102009-01-16 10:38:43 +00002788 // Call runtime routine to allocate the catch extension object and
2789 // assign the exception value to the catch variable.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002790 Comment cmnt(masm_, "[ CatchExtensionObject");
2791 LoadAndSpill(node->key());
2792 LoadAndSpill(node->value());
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002793 frame_->CallRuntime(Runtime::kCreateCatchExtensionObject, 2);
2794 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002795 ASSERT(frame_->height() == original_height + 1);
ager@chromium.org32912102009-01-16 10:38:43 +00002796}
2797
2798
ager@chromium.org7c537e22008-10-16 08:43:32 +00002799void CodeGenerator::VisitAssignment(Assignment* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002800#ifdef DEBUG
2801 int original_height = frame_->height();
2802#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002803 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002804 Comment cmnt(masm_, "[ Assignment");
mads.s.ager31e71382008-08-13 09:32:07 +00002805
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002806 { Reference target(this, node->target());
2807 if (target.is_illegal()) {
2808 // Fool the virtual frame into thinking that we left the assignment's
2809 // value on the frame.
2810 __ mov(r0, Operand(Smi::FromInt(0)));
2811 frame_->EmitPush(r0);
2812 ASSERT(frame_->height() == original_height + 1);
2813 return;
2814 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002815
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002816 if (node->op() == Token::ASSIGN ||
2817 node->op() == Token::INIT_VAR ||
2818 node->op() == Token::INIT_CONST) {
2819 LoadAndSpill(node->value());
mads.s.ager31e71382008-08-13 09:32:07 +00002820
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002821 } else {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002822 // +=, *= and similar binary assignments.
2823 // Get the old value of the lhs.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002824 target.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002825 Literal* literal = node->value()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002826 bool overwrite =
2827 (node->value()->AsBinaryOperation() != NULL &&
2828 node->value()->AsBinaryOperation()->ResultOverwriteAllowed());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002829 if (literal != NULL && literal->handle()->IsSmi()) {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002830 SmiOperation(node->binary_op(),
2831 literal->handle(),
2832 false,
2833 overwrite ? OVERWRITE_RIGHT : NO_OVERWRITE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002834 frame_->EmitPush(r0);
2835
2836 } else {
2837 LoadAndSpill(node->value());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002838 GenericBinaryOperation(node->binary_op(),
2839 overwrite ? OVERWRITE_RIGHT : NO_OVERWRITE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002840 frame_->EmitPush(r0);
2841 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002842 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002843
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002844 Variable* var = node->target()->AsVariableProxy()->AsVariable();
2845 if (var != NULL &&
2846 (var->mode() == Variable::CONST) &&
2847 node->op() != Token::INIT_VAR && node->op() != Token::INIT_CONST) {
2848 // Assignment ignored - leave the value on the stack.
mads.s.ager31e71382008-08-13 09:32:07 +00002849
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002850 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002851 CodeForSourcePosition(node->position());
2852 if (node->op() == Token::INIT_CONST) {
2853 // Dynamic constant initializations must use the function context
2854 // and initialize the actual constant declared. Dynamic variable
2855 // initializations are simply assignments and use SetValue.
2856 target.SetValue(CONST_INIT);
2857 } else {
2858 target.SetValue(NOT_CONST_INIT);
2859 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002860 }
2861 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002862 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002863}
2864
2865
ager@chromium.org7c537e22008-10-16 08:43:32 +00002866void CodeGenerator::VisitThrow(Throw* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002867#ifdef DEBUG
2868 int original_height = frame_->height();
2869#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002870 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002871 Comment cmnt(masm_, "[ Throw");
2872
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002873 LoadAndSpill(node->exception());
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002874 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002875 frame_->CallRuntime(Runtime::kThrow, 1);
2876 frame_->EmitPush(r0);
2877 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002878}
2879
2880
ager@chromium.org7c537e22008-10-16 08:43:32 +00002881void CodeGenerator::VisitProperty(Property* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002882#ifdef DEBUG
2883 int original_height = frame_->height();
2884#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002885 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002886 Comment cmnt(masm_, "[ Property");
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002887
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002888 { Reference property(this, node);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002889 property.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002890 }
2891 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002892}
2893
2894
ager@chromium.org7c537e22008-10-16 08:43:32 +00002895void CodeGenerator::VisitCall(Call* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002896#ifdef DEBUG
2897 int original_height = frame_->height();
2898#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002899 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002900 Comment cmnt(masm_, "[ Call");
2901
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002902 Expression* function = node->expression();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002903 ZoneList<Expression*>* args = node->arguments();
2904
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002905 // Standard function call.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002906 // Check if the function is a variable or a property.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002907 Variable* var = function->AsVariableProxy()->AsVariable();
2908 Property* property = function->AsProperty();
2909
2910 // ------------------------------------------------------------------------
2911 // Fast-case: Use inline caching.
2912 // ---
2913 // According to ECMA-262, section 11.2.3, page 44, the function to call
2914 // must be resolved after the arguments have been evaluated. The IC code
2915 // automatically handles this by loading the arguments before the function
2916 // is resolved in cache misses (this also holds for megamorphic calls).
2917 // ------------------------------------------------------------------------
2918
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002919 if (var != NULL && var->is_possibly_eval()) {
2920 // ----------------------------------
2921 // JavaScript example: 'eval(arg)' // eval is not known to be shadowed
2922 // ----------------------------------
2923
2924 // In a call to eval, we first call %ResolvePossiblyDirectEval to
2925 // resolve the function we need to call and the receiver of the
2926 // call. Then we call the resolved function using the given
2927 // arguments.
2928 // Prepare stack for call to resolved function.
2929 LoadAndSpill(function);
2930 __ LoadRoot(r2, Heap::kUndefinedValueRootIndex);
2931 frame_->EmitPush(r2); // Slot for receiver
2932 int arg_count = args->length();
2933 for (int i = 0; i < arg_count; i++) {
2934 LoadAndSpill(args->at(i));
2935 }
2936
2937 // Prepare stack for call to ResolvePossiblyDirectEval.
2938 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize + kPointerSize));
2939 frame_->EmitPush(r1);
2940 if (arg_count > 0) {
2941 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize));
2942 frame_->EmitPush(r1);
2943 } else {
2944 frame_->EmitPush(r2);
2945 }
2946
2947 // Resolve the call.
2948 frame_->CallRuntime(Runtime::kResolvePossiblyDirectEval, 2);
2949
2950 // Touch up stack with the right values for the function and the receiver.
2951 __ ldr(r1, FieldMemOperand(r0, FixedArray::kHeaderSize));
2952 __ str(r1, MemOperand(sp, (arg_count + 1) * kPointerSize));
2953 __ ldr(r1, FieldMemOperand(r0, FixedArray::kHeaderSize + kPointerSize));
2954 __ str(r1, MemOperand(sp, arg_count * kPointerSize));
2955
2956 // Call the function.
2957 CodeForSourcePosition(node->position());
2958
2959 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
2960 CallFunctionStub call_function(arg_count, in_loop);
2961 frame_->CallStub(&call_function, arg_count + 1);
2962
2963 __ ldr(cp, frame_->Context());
2964 // Remove the function from the stack.
2965 frame_->Drop();
2966 frame_->EmitPush(r0);
2967
2968 } else if (var != NULL && !var->is_this() && var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002969 // ----------------------------------
2970 // JavaScript example: 'foo(1, 2, 3)' // foo is global
2971 // ----------------------------------
2972
2973 // Push the name of the function and the receiver onto the stack.
mads.s.ager31e71382008-08-13 09:32:07 +00002974 __ mov(r0, Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002975 frame_->EmitPush(r0);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002976
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00002977 // Pass the global object as the receiver and let the IC stub
2978 // patch the stack to use the global proxy as 'this' in the
2979 // invoked function.
2980 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002981
2982 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002983 int arg_count = args->length();
2984 for (int i = 0; i < arg_count; i++) {
2985 LoadAndSpill(args->at(i));
2986 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002987
2988 // Setup the receiver register and call the IC initialization code.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002989 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
2990 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002991 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002992 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET_CONTEXT,
2993 arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002994 __ ldr(cp, frame_->Context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002995 // Remove the function from the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002996 frame_->Drop();
2997 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002998
2999 } else if (var != NULL && var->slot() != NULL &&
3000 var->slot()->type() == Slot::LOOKUP) {
3001 // ----------------------------------
3002 // JavaScript example: 'with (obj) foo(1, 2, 3)' // foo is in obj
3003 // ----------------------------------
3004
3005 // Load the function
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003006 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00003007 __ mov(r0, Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003008 frame_->EmitPush(r0);
3009 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003010 // r0: slot value; r1: receiver
3011
3012 // Load the receiver.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003013 frame_->EmitPush(r0); // function
3014 frame_->EmitPush(r1); // receiver
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003015
3016 // Call the function.
3017 CallWithArguments(args, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003018 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003019
3020 } else if (property != NULL) {
3021 // Check if the key is a literal string.
3022 Literal* literal = property->key()->AsLiteral();
3023
3024 if (literal != NULL && literal->handle()->IsSymbol()) {
3025 // ------------------------------------------------------------------
3026 // JavaScript example: 'object.foo(1, 2, 3)' or 'map["key"](1, 2, 3)'
3027 // ------------------------------------------------------------------
3028
3029 // Push the name of the function and the receiver onto the stack.
mads.s.ager31e71382008-08-13 09:32:07 +00003030 __ mov(r0, Operand(literal->handle()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003031 frame_->EmitPush(r0);
3032 LoadAndSpill(property->obj());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003033
3034 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003035 int arg_count = args->length();
3036 for (int i = 0; i < arg_count; i++) {
3037 LoadAndSpill(args->at(i));
3038 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003039
3040 // Set the receiver register and call the IC initialization code.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003041 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3042 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003043 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003044 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003045 __ ldr(cp, frame_->Context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003046
3047 // Remove the function from the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003048 frame_->Drop();
mads.s.ager31e71382008-08-13 09:32:07 +00003049
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003050 frame_->EmitPush(r0); // push after get rid of function from the stack
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003051
3052 } else {
3053 // -------------------------------------------
3054 // JavaScript example: 'array[index](1, 2, 3)'
3055 // -------------------------------------------
3056
3057 // Load the function to call from the property through a reference.
3058 Reference ref(this, property);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003059 ref.GetValueAndSpill(); // receiver
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003060
3061 // Pass receiver to called function.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003062 if (property->is_synthetic()) {
3063 LoadGlobalReceiver(r0);
3064 } else {
3065 __ ldr(r0, frame_->ElementAt(ref.size()));
3066 frame_->EmitPush(r0);
3067 }
3068
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003069 // Call the function.
3070 CallWithArguments(args, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003071 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003072 }
3073
3074 } else {
3075 // ----------------------------------
3076 // JavaScript example: 'foo(1, 2, 3)' // foo is not global
3077 // ----------------------------------
3078
3079 // Load the function.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003080 LoadAndSpill(function);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003081
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003082 // Pass the global proxy as the receiver.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003083 LoadGlobalReceiver(r0);
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003084
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003085 // Call the function.
3086 CallWithArguments(args, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003087 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003088 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003089 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003090}
3091
3092
ager@chromium.org7c537e22008-10-16 08:43:32 +00003093void CodeGenerator::VisitCallNew(CallNew* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003094#ifdef DEBUG
3095 int original_height = frame_->height();
3096#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003097 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003098 Comment cmnt(masm_, "[ CallNew");
3099
3100 // According to ECMA-262, section 11.2.2, page 44, the function
3101 // expression in new calls must be evaluated before the
3102 // arguments. This is different from ordinary calls, where the
3103 // actual function to call is resolved after the arguments have been
3104 // evaluated.
3105
3106 // Compute function to call and use the global object as the
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003107 // receiver. There is no need to use the global proxy here because
3108 // it will always be replaced with a newly allocated object.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003109 LoadAndSpill(node->expression());
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003110 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003111
3112 // Push the arguments ("left-to-right") on the stack.
3113 ZoneList<Expression*>* args = node->arguments();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003114 int arg_count = args->length();
3115 for (int i = 0; i < arg_count; i++) {
3116 LoadAndSpill(args->at(i));
3117 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003118
mads.s.ager31e71382008-08-13 09:32:07 +00003119 // r0: the number of arguments.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003120 Result num_args(r0);
3121 __ mov(r0, Operand(arg_count));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003122
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003123 // Load the function into r1 as per calling convention.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003124 Result function(r1);
3125 __ ldr(r1, frame_->ElementAt(arg_count + 1));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003126
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003127 // Call the construct call builtin that handles allocation and
3128 // constructor invocation.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003129 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003130 Handle<Code> ic(Builtins::builtin(Builtins::JSConstructCall));
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003131 frame_->CallCodeObject(ic,
3132 RelocInfo::CONSTRUCT_CALL,
3133 &num_args,
3134 &function,
3135 arg_count + 1);
mads.s.ager31e71382008-08-13 09:32:07 +00003136
3137 // Discard old TOS value and push r0 on the stack (same as Pop(), push(r0)).
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003138 __ str(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003139 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003140}
3141
3142
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003143void CodeGenerator::GenerateClassOf(ZoneList<Expression*>* args) {
3144 VirtualFrame::SpilledScope spilled_scope;
3145 ASSERT(args->length() == 1);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003146 JumpTarget leave, null, function, non_function_constructor;
3147
3148 // Load the object into r0.
3149 LoadAndSpill(args->at(0));
3150 frame_->EmitPop(r0);
3151
3152 // If the object is a smi, we return null.
3153 __ tst(r0, Operand(kSmiTagMask));
3154 null.Branch(eq);
3155
3156 // Check that the object is a JS object but take special care of JS
3157 // functions to make sure they have 'Function' as their class.
3158 __ CompareObjectType(r0, r0, r1, FIRST_JS_OBJECT_TYPE);
3159 null.Branch(lt);
3160
3161 // As long as JS_FUNCTION_TYPE is the last instance type and it is
3162 // right after LAST_JS_OBJECT_TYPE, we can avoid checking for
3163 // LAST_JS_OBJECT_TYPE.
3164 ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
3165 ASSERT(JS_FUNCTION_TYPE == LAST_JS_OBJECT_TYPE + 1);
3166 __ cmp(r1, Operand(JS_FUNCTION_TYPE));
3167 function.Branch(eq);
3168
3169 // Check if the constructor in the map is a function.
3170 __ ldr(r0, FieldMemOperand(r0, Map::kConstructorOffset));
3171 __ CompareObjectType(r0, r1, r1, JS_FUNCTION_TYPE);
3172 non_function_constructor.Branch(ne);
3173
3174 // The r0 register now contains the constructor function. Grab the
3175 // instance class name from there.
3176 __ ldr(r0, FieldMemOperand(r0, JSFunction::kSharedFunctionInfoOffset));
3177 __ ldr(r0, FieldMemOperand(r0, SharedFunctionInfo::kInstanceClassNameOffset));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003178 frame_->EmitPush(r0);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003179 leave.Jump();
3180
3181 // Functions have class 'Function'.
3182 function.Bind();
3183 __ mov(r0, Operand(Factory::function_class_symbol()));
3184 frame_->EmitPush(r0);
3185 leave.Jump();
3186
3187 // Objects with a non-function constructor have class 'Object'.
3188 non_function_constructor.Bind();
3189 __ mov(r0, Operand(Factory::Object_symbol()));
3190 frame_->EmitPush(r0);
3191 leave.Jump();
3192
3193 // Non-JS objects have class null.
3194 null.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003195 __ LoadRoot(r0, Heap::kNullValueRootIndex);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003196 frame_->EmitPush(r0);
3197
3198 // All done.
3199 leave.Bind();
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003200}
3201
3202
ager@chromium.org7c537e22008-10-16 08:43:32 +00003203void CodeGenerator::GenerateValueOf(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003204 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003205 ASSERT(args->length() == 1);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003206 JumpTarget leave;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003207 LoadAndSpill(args->at(0));
3208 frame_->EmitPop(r0); // r0 contains object.
mads.s.ager31e71382008-08-13 09:32:07 +00003209 // if (object->IsSmi()) return the object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003210 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003211 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003212 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
3213 __ CompareObjectType(r0, r1, r1, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003214 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003215 // Load the value.
3216 __ ldr(r0, FieldMemOperand(r0, JSValue::kValueOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003217 leave.Bind();
3218 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003219}
3220
3221
ager@chromium.org7c537e22008-10-16 08:43:32 +00003222void CodeGenerator::GenerateSetValueOf(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003223 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003224 ASSERT(args->length() == 2);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003225 JumpTarget leave;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003226 LoadAndSpill(args->at(0)); // Load the object.
3227 LoadAndSpill(args->at(1)); // Load the value.
3228 frame_->EmitPop(r0); // r0 contains value
3229 frame_->EmitPop(r1); // r1 contains object
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003230 // if (object->IsSmi()) return object.
3231 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003232 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003233 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
3234 __ CompareObjectType(r1, r2, r2, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003235 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003236 // Store the value.
3237 __ str(r0, FieldMemOperand(r1, JSValue::kValueOffset));
3238 // Update the write barrier.
3239 __ mov(r2, Operand(JSValue::kValueOffset - kHeapObjectTag));
3240 __ RecordWrite(r1, r2, r3);
3241 // Leave.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003242 leave.Bind();
3243 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003244}
3245
3246
ager@chromium.org7c537e22008-10-16 08:43:32 +00003247void CodeGenerator::GenerateIsSmi(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003248 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003249 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003250 LoadAndSpill(args->at(0));
3251 frame_->EmitPop(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003252 __ tst(r0, Operand(kSmiTagMask));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003253 cc_reg_ = eq;
3254}
3255
3256
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003257void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003258 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003259 // See comment in CodeGenerator::GenerateLog in codegen-ia32.cc.
3260 ASSERT_EQ(args->length(), 3);
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00003261#ifdef ENABLE_LOGGING_AND_PROFILING
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003262 if (ShouldGenerateLog(args->at(0))) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003263 LoadAndSpill(args->at(1));
3264 LoadAndSpill(args->at(2));
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003265 __ CallRuntime(Runtime::kLog, 2);
3266 }
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00003267#endif
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003268 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003269 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003270}
3271
3272
ager@chromium.org7c537e22008-10-16 08:43:32 +00003273void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003274 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00003275 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003276 LoadAndSpill(args->at(0));
3277 frame_->EmitPop(r0);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003278 __ tst(r0, Operand(kSmiTagMask | 0x80000000u));
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00003279 cc_reg_ = eq;
3280}
3281
3282
kasper.lund7276f142008-07-30 08:49:36 +00003283// This should generate code that performs a charCodeAt() call or returns
3284// undefined in order to trigger the slow case, Runtime_StringCharCodeAt.
3285// It is not yet implemented on ARM, so it always goes to the slow case.
ager@chromium.org7c537e22008-10-16 08:43:32 +00003286void CodeGenerator::GenerateFastCharCodeAt(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003287 VirtualFrame::SpilledScope spilled_scope;
kasper.lund7276f142008-07-30 08:49:36 +00003288 ASSERT(args->length() == 2);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003289 Comment(masm_, "[ GenerateFastCharCodeAt");
3290
3291 LoadAndSpill(args->at(0));
3292 LoadAndSpill(args->at(1));
3293 frame_->EmitPop(r0); // Index.
3294 frame_->EmitPop(r1); // String.
3295
3296 Label slow, end, not_a_flat_string, ascii_string, try_again_with_new_string;
3297
3298 __ tst(r1, Operand(kSmiTagMask));
3299 __ b(eq, &slow); // The 'string' was a Smi.
3300
3301 ASSERT(kSmiTag == 0);
3302 __ tst(r0, Operand(kSmiTagMask | 0x80000000u));
3303 __ b(ne, &slow); // The index was negative or not a Smi.
3304
3305 __ bind(&try_again_with_new_string);
3306 __ CompareObjectType(r1, r2, r2, FIRST_NONSTRING_TYPE);
3307 __ b(ge, &slow);
3308
3309 // Now r2 has the string type.
3310 __ ldr(r3, FieldMemOperand(r1, String::kLengthOffset));
3311 __ and_(r4, r2, Operand(kStringSizeMask));
3312 __ add(r4, r4, Operand(String::kLongLengthShift));
3313 __ mov(r3, Operand(r3, LSR, r4));
3314 // Now r3 has the length of the string. Compare with the index.
3315 __ cmp(r3, Operand(r0, LSR, kSmiTagSize));
3316 __ b(le, &slow);
3317
3318 // Here we know the index is in range. Check that string is sequential.
3319 ASSERT_EQ(0, kSeqStringTag);
3320 __ tst(r2, Operand(kStringRepresentationMask));
3321 __ b(ne, &not_a_flat_string);
3322
3323 // Check whether it is an ASCII string.
3324 ASSERT_EQ(0, kTwoByteStringTag);
3325 __ tst(r2, Operand(kStringEncodingMask));
3326 __ b(ne, &ascii_string);
3327
3328 // 2-byte string. We can add without shifting since the Smi tag size is the
3329 // log2 of the number of bytes in a two-byte character.
3330 ASSERT_EQ(1, kSmiTagSize);
3331 ASSERT_EQ(0, kSmiShiftSize);
3332 __ add(r1, r1, Operand(r0));
3333 __ ldrh(r0, FieldMemOperand(r1, SeqTwoByteString::kHeaderSize));
3334 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
3335 __ jmp(&end);
3336
3337 __ bind(&ascii_string);
3338 __ add(r1, r1, Operand(r0, LSR, kSmiTagSize));
3339 __ ldrb(r0, FieldMemOperand(r1, SeqAsciiString::kHeaderSize));
3340 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
3341 __ jmp(&end);
3342
3343 __ bind(&not_a_flat_string);
3344 __ and_(r2, r2, Operand(kStringRepresentationMask));
3345 __ cmp(r2, Operand(kConsStringTag));
3346 __ b(ne, &slow);
3347
3348 // ConsString.
3349 // Check that the right hand side is the empty string (ie if this is really a
3350 // flat string in a cons string). If that is not the case we would rather go
3351 // to the runtime system now, to flatten the string.
3352 __ ldr(r2, FieldMemOperand(r1, ConsString::kSecondOffset));
3353 __ LoadRoot(r3, Heap::kEmptyStringRootIndex);
3354 __ cmp(r2, Operand(r3));
3355 __ b(ne, &slow);
3356
3357 // Get the first of the two strings.
3358 __ ldr(r1, FieldMemOperand(r1, ConsString::kFirstOffset));
3359 __ jmp(&try_again_with_new_string);
3360
3361 __ bind(&slow);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003362 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003363
3364 __ bind(&end);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003365 frame_->EmitPush(r0);
kasper.lund7276f142008-07-30 08:49:36 +00003366}
3367
3368
ager@chromium.org7c537e22008-10-16 08:43:32 +00003369void CodeGenerator::GenerateIsArray(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003370 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003371 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003372 LoadAndSpill(args->at(0));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003373 JumpTarget answer;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003374 // We need the CC bits to come out as not_equal in the case where the
3375 // object is a smi. This can't be done with the usual test opcode so
3376 // we use XOR to get the right CC bits.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003377 frame_->EmitPop(r0);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003378 __ and_(r1, r0, Operand(kSmiTagMask));
3379 __ eor(r1, r1, Operand(kSmiTagMask), SetCC);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003380 answer.Branch(ne);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003381 // It is a heap object - get the map. Check if the object is a JS array.
3382 __ CompareObjectType(r0, r1, r1, JS_ARRAY_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003383 answer.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003384 cc_reg_ = eq;
3385}
3386
3387
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003388void CodeGenerator::GenerateIsConstructCall(ZoneList<Expression*>* args) {
3389 VirtualFrame::SpilledScope spilled_scope;
3390 ASSERT(args->length() == 0);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003391
3392 // Get the frame pointer for the calling frame.
3393 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
3394
3395 // Skip the arguments adaptor frame if it exists.
3396 Label check_frame_marker;
3397 __ ldr(r1, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00003398 __ cmp(r1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003399 __ b(ne, &check_frame_marker);
3400 __ ldr(r2, MemOperand(r2, StandardFrameConstants::kCallerFPOffset));
3401
3402 // Check the marker in the calling frame.
3403 __ bind(&check_frame_marker);
3404 __ ldr(r1, MemOperand(r2, StandardFrameConstants::kMarkerOffset));
3405 __ cmp(r1, Operand(Smi::FromInt(StackFrame::CONSTRUCT)));
3406 cc_reg_ = eq;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003407}
3408
3409
ager@chromium.org7c537e22008-10-16 08:43:32 +00003410void CodeGenerator::GenerateArgumentsLength(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003411 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003412 ASSERT(args->length() == 0);
3413
mads.s.ager31e71382008-08-13 09:32:07 +00003414 // Seed the result with the formal parameters count, which will be used
3415 // in case no arguments adaptor frame is found below the current frame.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003416 __ mov(r0, Operand(Smi::FromInt(scope_->num_parameters())));
3417
3418 // Call the shared stub to get to the arguments.length.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003419 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_LENGTH);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003420 frame_->CallStub(&stub, 0);
3421 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003422}
3423
3424
ager@chromium.org7c537e22008-10-16 08:43:32 +00003425void CodeGenerator::GenerateArgumentsAccess(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003426 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003427 ASSERT(args->length() == 1);
3428
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003429 // Satisfy contract with ArgumentsAccessStub:
3430 // Load the key into r1 and the formal parameters count into r0.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003431 LoadAndSpill(args->at(0));
3432 frame_->EmitPop(r1);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003433 __ mov(r0, Operand(Smi::FromInt(scope_->num_parameters())));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003434
3435 // Call the shared stub to get to arguments[key].
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003436 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_ELEMENT);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003437 frame_->CallStub(&stub, 0);
3438 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003439}
3440
3441
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003442void CodeGenerator::GenerateRandomPositiveSmi(ZoneList<Expression*>* args) {
3443 VirtualFrame::SpilledScope spilled_scope;
3444 ASSERT(args->length() == 0);
3445 __ Call(ExternalReference::random_positive_smi_function().address(),
3446 RelocInfo::RUNTIME_ENTRY);
3447 frame_->EmitPush(r0);
3448}
3449
3450
3451void CodeGenerator::GenerateFastMathOp(MathOp op, ZoneList<Expression*>* args) {
3452 VirtualFrame::SpilledScope spilled_scope;
3453 LoadAndSpill(args->at(0));
3454 switch (op) {
3455 case SIN:
3456 frame_->CallRuntime(Runtime::kMath_sin, 1);
3457 break;
3458 case COS:
3459 frame_->CallRuntime(Runtime::kMath_cos, 1);
3460 break;
3461 }
3462 frame_->EmitPush(r0);
3463}
3464
3465
ager@chromium.org7c537e22008-10-16 08:43:32 +00003466void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003467 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org9258b6b2008-09-11 09:11:10 +00003468 ASSERT(args->length() == 2);
3469
3470 // Load the two objects into registers and perform the comparison.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003471 LoadAndSpill(args->at(0));
3472 LoadAndSpill(args->at(1));
3473 frame_->EmitPop(r0);
3474 frame_->EmitPop(r1);
ager@chromium.org9258b6b2008-09-11 09:11:10 +00003475 __ cmp(r0, Operand(r1));
3476 cc_reg_ = eq;
3477}
3478
3479
ager@chromium.org7c537e22008-10-16 08:43:32 +00003480void CodeGenerator::VisitCallRuntime(CallRuntime* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003481#ifdef DEBUG
3482 int original_height = frame_->height();
3483#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003484 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003485 if (CheckForInlineRuntimeCall(node)) {
3486 ASSERT((has_cc() && frame_->height() == original_height) ||
3487 (!has_cc() && frame_->height() == original_height + 1));
3488 return;
3489 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003490
3491 ZoneList<Expression*>* args = node->arguments();
3492 Comment cmnt(masm_, "[ CallRuntime");
3493 Runtime::Function* function = node->function();
3494
ager@chromium.org41826e72009-03-30 13:30:57 +00003495 if (function == NULL) {
mads.s.ager31e71382008-08-13 09:32:07 +00003496 // Prepare stack for calling JS runtime function.
3497 __ mov(r0, Operand(node->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003498 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003499 // Push the builtins object found in the current global object.
3500 __ ldr(r1, GlobalObject());
3501 __ ldr(r0, FieldMemOperand(r1, GlobalObject::kBuiltinsOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003502 frame_->EmitPush(r0);
ager@chromium.org41826e72009-03-30 13:30:57 +00003503 }
mads.s.ager31e71382008-08-13 09:32:07 +00003504
ager@chromium.org41826e72009-03-30 13:30:57 +00003505 // Push the arguments ("left-to-right").
3506 int arg_count = args->length();
3507 for (int i = 0; i < arg_count; i++) {
3508 LoadAndSpill(args->at(i));
3509 }
mads.s.ager31e71382008-08-13 09:32:07 +00003510
ager@chromium.org41826e72009-03-30 13:30:57 +00003511 if (function == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003512 // Call the JS runtime function.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003513 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3514 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003515 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003516 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003517 frame_->Drop();
3518 frame_->EmitPush(r0);
ager@chromium.org41826e72009-03-30 13:30:57 +00003519 } else {
3520 // Call the C runtime function.
3521 frame_->CallRuntime(function, arg_count);
3522 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003523 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003524 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003525}
3526
3527
ager@chromium.org7c537e22008-10-16 08:43:32 +00003528void CodeGenerator::VisitUnaryOperation(UnaryOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003529#ifdef DEBUG
3530 int original_height = frame_->height();
3531#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003532 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003533 Comment cmnt(masm_, "[ UnaryOperation");
3534
3535 Token::Value op = node->op();
3536
3537 if (op == Token::NOT) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003538 LoadConditionAndSpill(node->expression(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003539 false_target(),
3540 true_target(),
3541 true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003542 // LoadCondition may (and usually does) leave a test and branch to
3543 // be emitted by the caller. In that case, negate the condition.
3544 if (has_cc()) cc_reg_ = NegateCondition(cc_reg_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003545
3546 } else if (op == Token::DELETE) {
3547 Property* property = node->expression()->AsProperty();
mads.s.ager31e71382008-08-13 09:32:07 +00003548 Variable* variable = node->expression()->AsVariableProxy()->AsVariable();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003549 if (property != NULL) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003550 LoadAndSpill(property->obj());
3551 LoadAndSpill(property->key());
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003552 Result arg_count(r0);
3553 __ mov(r0, Operand(1)); // not counting receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003554 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, &arg_count, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003555
mads.s.ager31e71382008-08-13 09:32:07 +00003556 } else if (variable != NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003557 Slot* slot = variable->slot();
3558 if (variable->is_global()) {
3559 LoadGlobal();
mads.s.ager31e71382008-08-13 09:32:07 +00003560 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003561 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003562 Result arg_count(r0);
3563 __ mov(r0, Operand(1)); // not counting receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003564 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, &arg_count, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003565
3566 } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
3567 // lookup the context holding the named variable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003568 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00003569 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003570 frame_->EmitPush(r0);
3571 frame_->CallRuntime(Runtime::kLookupContext, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003572 // r0: context
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003573 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003574 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003575 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003576 Result arg_count(r0);
3577 __ mov(r0, Operand(1)); // not counting receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003578 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, &arg_count, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003579
mads.s.ager31e71382008-08-13 09:32:07 +00003580 } else {
3581 // Default: Result of deleting non-global, not dynamically
3582 // introduced variables is false.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003583 __ LoadRoot(r0, Heap::kFalseValueRootIndex);
mads.s.ager31e71382008-08-13 09:32:07 +00003584 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003585
3586 } else {
3587 // Default: Result of deleting expressions is true.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003588 LoadAndSpill(node->expression()); // may have side-effects
3589 frame_->Drop();
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003590 __ LoadRoot(r0, Heap::kTrueValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003591 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003592 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003593
3594 } else if (op == Token::TYPEOF) {
3595 // Special case for loading the typeof expression; see comment on
3596 // LoadTypeofExpression().
3597 LoadTypeofExpression(node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003598 frame_->CallRuntime(Runtime::kTypeof, 1);
3599 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003600
3601 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003602 LoadAndSpill(node->expression());
3603 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003604 switch (op) {
3605 case Token::NOT:
3606 case Token::DELETE:
3607 case Token::TYPEOF:
3608 UNREACHABLE(); // handled above
3609 break;
3610
3611 case Token::SUB: {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003612 bool overwrite =
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003613 (node->expression()->AsBinaryOperation() != NULL &&
3614 node->expression()->AsBinaryOperation()->ResultOverwriteAllowed());
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003615 UnarySubStub stub(overwrite);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003616 frame_->CallStub(&stub, 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003617 break;
3618 }
3619
3620 case Token::BIT_NOT: {
3621 // smi check
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003622 JumpTarget smi_label;
3623 JumpTarget continue_label;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003624 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003625 smi_label.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003626
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003627 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003628 Result arg_count(r0);
3629 __ mov(r0, Operand(0)); // not counting receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003630 frame_->InvokeBuiltin(Builtins::BIT_NOT, CALL_JS, &arg_count, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003631
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003632 continue_label.Jump();
3633 smi_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003634 __ mvn(r0, Operand(r0));
3635 __ bic(r0, r0, Operand(kSmiTagMask)); // bit-clear inverted smi-tag
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003636 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003637 break;
3638 }
3639
3640 case Token::VOID:
3641 // since the stack top is cached in r0, popping and then
3642 // pushing a value can be done by just writing to r0.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003643 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003644 break;
3645
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003646 case Token::ADD: {
3647 // Smi check.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003648 JumpTarget continue_label;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003649 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003650 continue_label.Branch(eq);
3651 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003652 Result arg_count(r0);
3653 __ mov(r0, Operand(0)); // not counting receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003654 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, &arg_count, 1);
3655 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003656 break;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003657 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003658 default:
3659 UNREACHABLE();
3660 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003661 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003662 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003663 ASSERT(!has_valid_frame() ||
3664 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003665 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003666}
3667
3668
ager@chromium.org7c537e22008-10-16 08:43:32 +00003669void CodeGenerator::VisitCountOperation(CountOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003670#ifdef DEBUG
3671 int original_height = frame_->height();
3672#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003673 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003674 Comment cmnt(masm_, "[ CountOperation");
3675
3676 bool is_postfix = node->is_postfix();
3677 bool is_increment = node->op() == Token::INC;
3678
3679 Variable* var = node->expression()->AsVariableProxy()->AsVariable();
3680 bool is_const = (var != NULL && var->mode() == Variable::CONST);
3681
3682 // Postfix: Make room for the result.
mads.s.ager31e71382008-08-13 09:32:07 +00003683 if (is_postfix) {
3684 __ mov(r0, Operand(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003685 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003686 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003687
3688 { Reference target(this, node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003689 if (target.is_illegal()) {
3690 // Spoof the virtual frame to have the expected height (one higher
3691 // than on entry).
3692 if (!is_postfix) {
3693 __ mov(r0, Operand(Smi::FromInt(0)));
3694 frame_->EmitPush(r0);
3695 }
3696 ASSERT(frame_->height() == original_height + 1);
3697 return;
3698 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003699 target.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003700 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003701
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003702 JumpTarget slow;
3703 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003704
3705 // Load the value (1) into register r1.
3706 __ mov(r1, Operand(Smi::FromInt(1)));
3707
3708 // Check for smi operand.
3709 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003710 slow.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003711
3712 // Postfix: Store the old value as the result.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003713 if (is_postfix) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003714 __ str(r0, frame_->ElementAt(target.size()));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003715 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003716
3717 // Perform optimistic increment/decrement.
3718 if (is_increment) {
3719 __ add(r0, r0, Operand(r1), SetCC);
3720 } else {
3721 __ sub(r0, r0, Operand(r1), SetCC);
3722 }
3723
3724 // If the increment/decrement didn't overflow, we're done.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003725 exit.Branch(vc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003726
3727 // Revert optimistic increment/decrement.
3728 if (is_increment) {
3729 __ sub(r0, r0, Operand(r1));
3730 } else {
3731 __ add(r0, r0, Operand(r1));
3732 }
3733
3734 // Slow case: Convert to number.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003735 slow.Bind();
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003736 {
3737 // Convert the operand to a number.
3738 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003739 Result arg_count(r0);
3740 __ mov(r0, Operand(0));
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003741 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, &arg_count, 1);
3742 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003743 if (is_postfix) {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003744 // Postfix: store to result (on the stack).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003745 __ str(r0, frame_->ElementAt(target.size()));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003746 }
3747
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003748 // Compute the new value.
3749 __ mov(r1, Operand(Smi::FromInt(1)));
3750 frame_->EmitPush(r0);
3751 frame_->EmitPush(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003752 if (is_increment) {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003753 frame_->CallRuntime(Runtime::kNumberAdd, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003754 } else {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003755 frame_->CallRuntime(Runtime::kNumberSub, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003756 }
3757
3758 // Store the new value in the target if not const.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003759 exit.Bind();
3760 frame_->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00003761 if (!is_const) target.SetValue(NOT_CONST_INIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003762 }
3763
3764 // Postfix: Discard the new value and use the old.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003765 if (is_postfix) frame_->EmitPop(r0);
3766 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003767}
3768
3769
ager@chromium.org7c537e22008-10-16 08:43:32 +00003770void CodeGenerator::VisitBinaryOperation(BinaryOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003771#ifdef DEBUG
3772 int original_height = frame_->height();
3773#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003774 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003775 Comment cmnt(masm_, "[ BinaryOperation");
3776 Token::Value op = node->op();
3777
3778 // According to ECMA-262 section 11.11, page 58, the binary logical
3779 // operators must yield the result of one of the two expressions
3780 // before any ToBoolean() conversions. This means that the value
3781 // produced by a && or || operator is not necessarily a boolean.
3782
3783 // NOTE: If the left hand side produces a materialized value (not in
3784 // the CC register), we force the right hand side to do the
3785 // same. This is necessary because we may have to branch to the exit
3786 // after evaluating the left hand side (due to the shortcut
3787 // semantics), but the compiler must (statically) know if the result
3788 // of compiling the binary operation is materialized or not.
3789
3790 if (op == Token::AND) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003791 JumpTarget is_true;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003792 LoadConditionAndSpill(node->left(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003793 &is_true,
3794 false_target(),
3795 false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003796 if (has_valid_frame() && !has_cc()) {
3797 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003798 JumpTarget pop_and_continue;
3799 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003800
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003801 __ ldr(r0, frame_->Top()); // Duplicate the stack top.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003802 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003803 // Avoid popping the result if it converts to 'false' using the
3804 // standard ToBoolean() conversion as described in ECMA-262,
3805 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00003806 ToBoolean(&pop_and_continue, &exit);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003807 Branch(false, &exit);
3808
3809 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003810 pop_and_continue.Bind();
3811 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003812
3813 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003814 is_true.Bind();
3815 LoadAndSpill(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003816
3817 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003818 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003819 } else if (has_cc() || is_true.is_linked()) {
3820 // The left-hand side is either (a) partially compiled to
3821 // control flow with a final branch left to emit or (b) fully
3822 // compiled to control flow and possibly true.
3823 if (has_cc()) {
3824 Branch(false, false_target());
3825 }
3826 is_true.Bind();
3827 LoadConditionAndSpill(node->right(),
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003828 true_target(),
3829 false_target(),
3830 false);
3831 } else {
3832 // Nothing to do.
3833 ASSERT(!has_valid_frame() && !has_cc() && !is_true.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003834 }
3835
3836 } else if (op == Token::OR) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003837 JumpTarget is_false;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003838 LoadConditionAndSpill(node->left(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003839 true_target(),
3840 &is_false,
3841 false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003842 if (has_valid_frame() && !has_cc()) {
3843 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003844 JumpTarget pop_and_continue;
3845 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003846
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003847 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003848 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003849 // Avoid popping the result if it converts to 'true' using the
3850 // standard ToBoolean() conversion as described in ECMA-262,
3851 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00003852 ToBoolean(&exit, &pop_and_continue);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003853 Branch(true, &exit);
3854
3855 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003856 pop_and_continue.Bind();
3857 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003858
3859 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003860 is_false.Bind();
3861 LoadAndSpill(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003862
3863 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003864 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003865 } else if (has_cc() || is_false.is_linked()) {
3866 // The left-hand side is either (a) partially compiled to
3867 // control flow with a final branch left to emit or (b) fully
3868 // compiled to control flow and possibly false.
3869 if (has_cc()) {
3870 Branch(true, true_target());
3871 }
3872 is_false.Bind();
3873 LoadConditionAndSpill(node->right(),
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003874 true_target(),
3875 false_target(),
3876 false);
3877 } else {
3878 // Nothing to do.
3879 ASSERT(!has_valid_frame() && !has_cc() && !is_false.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003880 }
3881
3882 } else {
3883 // Optimize for the case where (at least) one of the expressions
3884 // is a literal small integer.
3885 Literal* lliteral = node->left()->AsLiteral();
3886 Literal* rliteral = node->right()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003887 // NOTE: The code below assumes that the slow cases (calls to runtime)
3888 // never return a constant/immutable object.
3889 bool overwrite_left =
3890 (node->left()->AsBinaryOperation() != NULL &&
3891 node->left()->AsBinaryOperation()->ResultOverwriteAllowed());
3892 bool overwrite_right =
3893 (node->right()->AsBinaryOperation() != NULL &&
3894 node->right()->AsBinaryOperation()->ResultOverwriteAllowed());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003895
3896 if (rliteral != NULL && rliteral->handle()->IsSmi()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003897 LoadAndSpill(node->left());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003898 SmiOperation(node->op(),
3899 rliteral->handle(),
3900 false,
3901 overwrite_right ? OVERWRITE_RIGHT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003902
3903 } else if (lliteral != NULL && lliteral->handle()->IsSmi()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003904 LoadAndSpill(node->right());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003905 SmiOperation(node->op(),
3906 lliteral->handle(),
3907 true,
3908 overwrite_left ? OVERWRITE_LEFT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003909
3910 } else {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003911 OverwriteMode overwrite_mode = NO_OVERWRITE;
3912 if (overwrite_left) {
3913 overwrite_mode = OVERWRITE_LEFT;
3914 } else if (overwrite_right) {
3915 overwrite_mode = OVERWRITE_RIGHT;
3916 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003917 LoadAndSpill(node->left());
3918 LoadAndSpill(node->right());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003919 GenericBinaryOperation(node->op(), overwrite_mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003920 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003921 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003922 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003923 ASSERT(!has_valid_frame() ||
3924 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003925 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003926}
3927
3928
ager@chromium.org7c537e22008-10-16 08:43:32 +00003929void CodeGenerator::VisitThisFunction(ThisFunction* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003930#ifdef DEBUG
3931 int original_height = frame_->height();
3932#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003933 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003934 __ ldr(r0, frame_->Function());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003935 frame_->EmitPush(r0);
3936 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003937}
3938
3939
ager@chromium.org7c537e22008-10-16 08:43:32 +00003940void CodeGenerator::VisitCompareOperation(CompareOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003941#ifdef DEBUG
3942 int original_height = frame_->height();
3943#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003944 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003945 Comment cmnt(masm_, "[ CompareOperation");
3946
3947 // Get the expressions from the node.
3948 Expression* left = node->left();
3949 Expression* right = node->right();
3950 Token::Value op = node->op();
3951
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003952 // To make null checks efficient, we check if either left or right is the
3953 // literal 'null'. If so, we optimize the code by inlining a null check
3954 // instead of calling the (very) general runtime routine for checking
3955 // equality.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003956 if (op == Token::EQ || op == Token::EQ_STRICT) {
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003957 bool left_is_null =
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003958 left->AsLiteral() != NULL && left->AsLiteral()->IsNull();
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003959 bool right_is_null =
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003960 right->AsLiteral() != NULL && right->AsLiteral()->IsNull();
3961 // The 'null' value can only be equal to 'null' or 'undefined'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003962 if (left_is_null || right_is_null) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003963 LoadAndSpill(left_is_null ? right : left);
3964 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003965 __ LoadRoot(ip, Heap::kNullValueRootIndex);
3966 __ cmp(r0, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003967
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003968 // The 'null' value is only equal to 'undefined' if using non-strict
3969 // comparisons.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003970 if (op != Token::EQ_STRICT) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003971 true_target()->Branch(eq);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003972
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003973 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
3974 __ cmp(r0, Operand(ip));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003975 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003976
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003977 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003978 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003979
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003980 // It can be an undetectable object.
3981 __ ldr(r0, FieldMemOperand(r0, HeapObject::kMapOffset));
3982 __ ldrb(r0, FieldMemOperand(r0, Map::kBitFieldOffset));
3983 __ and_(r0, r0, Operand(1 << Map::kIsUndetectable));
3984 __ cmp(r0, Operand(1 << Map::kIsUndetectable));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003985 }
3986
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003987 cc_reg_ = eq;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003988 ASSERT(has_cc() && frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003989 return;
3990 }
3991 }
3992
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003993 // To make typeof testing for natives implemented in JavaScript really
3994 // efficient, we generate special code for expressions of the form:
3995 // 'typeof <expression> == <string>'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003996 UnaryOperation* operation = left->AsUnaryOperation();
3997 if ((op == Token::EQ || op == Token::EQ_STRICT) &&
3998 (operation != NULL && operation->op() == Token::TYPEOF) &&
3999 (right->AsLiteral() != NULL &&
4000 right->AsLiteral()->handle()->IsString())) {
4001 Handle<String> check(String::cast(*right->AsLiteral()->handle()));
4002
mads.s.ager31e71382008-08-13 09:32:07 +00004003 // Load the operand, move it to register r1.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004004 LoadTypeofExpression(operation->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004005 frame_->EmitPop(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004006
4007 if (check->Equals(Heap::number_symbol())) {
4008 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004009 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004010 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004011 __ LoadRoot(ip, Heap::kHeapNumberMapRootIndex);
4012 __ cmp(r1, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004013 cc_reg_ = eq;
4014
4015 } else if (check->Equals(Heap::string_symbol())) {
4016 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004017 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004018
4019 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
4020
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004021 // It can be an undetectable string object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004022 __ ldrb(r2, FieldMemOperand(r1, Map::kBitFieldOffset));
4023 __ and_(r2, r2, Operand(1 << Map::kIsUndetectable));
4024 __ cmp(r2, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004025 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004026
4027 __ ldrb(r2, FieldMemOperand(r1, Map::kInstanceTypeOffset));
4028 __ cmp(r2, Operand(FIRST_NONSTRING_TYPE));
4029 cc_reg_ = lt;
4030
4031 } else if (check->Equals(Heap::boolean_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004032 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
4033 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004034 true_target()->Branch(eq);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004035 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
4036 __ cmp(r1, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004037 cc_reg_ = eq;
4038
4039 } else if (check->Equals(Heap::undefined_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004040 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
4041 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004042 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004043
4044 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004045 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004046
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004047 // It can be an undetectable object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004048 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
4049 __ ldrb(r2, FieldMemOperand(r1, Map::kBitFieldOffset));
4050 __ and_(r2, r2, Operand(1 << Map::kIsUndetectable));
4051 __ cmp(r2, Operand(1 << Map::kIsUndetectable));
4052
4053 cc_reg_ = eq;
4054
4055 } else if (check->Equals(Heap::function_symbol())) {
4056 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004057 false_target()->Branch(eq);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004058 Register map_reg = r2;
4059 __ CompareObjectType(r1, map_reg, r1, JS_FUNCTION_TYPE);
4060 true_target()->Branch(eq);
4061 // Regular expressions are callable so typeof == 'function'.
4062 __ CompareInstanceType(map_reg, r1, JS_REGEXP_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004063 cc_reg_ = eq;
4064
4065 } else if (check->Equals(Heap::object_symbol())) {
4066 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004067 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004068
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004069 __ LoadRoot(ip, Heap::kNullValueRootIndex);
4070 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004071 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004072
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004073 Register map_reg = r2;
4074 __ CompareObjectType(r1, map_reg, r1, JS_REGEXP_TYPE);
4075 false_target()->Branch(eq);
4076
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004077 // It can be an undetectable object.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004078 __ ldrb(r1, FieldMemOperand(map_reg, Map::kBitFieldOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004079 __ and_(r1, r1, Operand(1 << Map::kIsUndetectable));
4080 __ cmp(r1, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004081 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004082
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004083 __ ldrb(r1, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
4084 __ cmp(r1, Operand(FIRST_JS_OBJECT_TYPE));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004085 false_target()->Branch(lt);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004086 __ cmp(r1, Operand(LAST_JS_OBJECT_TYPE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004087 cc_reg_ = le;
4088
4089 } else {
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004090 // Uncommon case: typeof testing against a string literal that is
4091 // never returned from the typeof operator.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004092 false_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004093 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004094 ASSERT(!has_valid_frame() ||
4095 (has_cc() && frame_->height() == original_height));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004096 return;
4097 }
4098
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004099 switch (op) {
4100 case Token::EQ:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004101 Comparison(eq, left, right, false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004102 break;
4103
4104 case Token::LT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004105 Comparison(lt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004106 break;
4107
4108 case Token::GT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004109 Comparison(gt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004110 break;
4111
4112 case Token::LTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004113 Comparison(le, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004114 break;
4115
4116 case Token::GTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004117 Comparison(ge, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004118 break;
4119
4120 case Token::EQ_STRICT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004121 Comparison(eq, left, right, true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004122 break;
4123
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004124 case Token::IN: {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004125 LoadAndSpill(left);
4126 LoadAndSpill(right);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004127 Result arg_count(r0);
4128 __ mov(r0, Operand(1)); // not counting receiver
4129 frame_->InvokeBuiltin(Builtins::IN, CALL_JS, &arg_count, 2);
4130 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004131 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004132 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004133
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004134 case Token::INSTANCEOF: {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004135 LoadAndSpill(left);
4136 LoadAndSpill(right);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004137 InstanceofStub stub;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004138 frame_->CallStub(&stub, 2);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004139 // At this point if instanceof succeeded then r0 == 0.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004140 __ tst(r0, Operand(r0));
ager@chromium.org7c537e22008-10-16 08:43:32 +00004141 cc_reg_ = eq;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004142 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004143 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004144
4145 default:
4146 UNREACHABLE();
4147 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004148 ASSERT((has_cc() && frame_->height() == original_height) ||
4149 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004150}
4151
4152
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004153#ifdef DEBUG
4154bool CodeGenerator::HasValidEntryRegisters() { return true; }
4155#endif
4156
4157
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004158#undef __
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004159#define __ ACCESS_MASM(masm)
4160
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004161
ager@chromium.org7c537e22008-10-16 08:43:32 +00004162Handle<String> Reference::GetName() {
4163 ASSERT(type_ == NAMED);
4164 Property* property = expression_->AsProperty();
4165 if (property == NULL) {
4166 // Global variable reference treated as a named property reference.
4167 VariableProxy* proxy = expression_->AsVariableProxy();
4168 ASSERT(proxy->AsVariable() != NULL);
4169 ASSERT(proxy->AsVariable()->is_global());
4170 return proxy->name();
4171 } else {
4172 Literal* raw_name = property->key()->AsLiteral();
4173 ASSERT(raw_name != NULL);
4174 return Handle<String>(String::cast(*raw_name->handle()));
4175 }
4176}
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004177
ager@chromium.org7c537e22008-10-16 08:43:32 +00004178
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004179void Reference::GetValue() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004180 ASSERT(cgen_->HasValidEntryRegisters());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004181 ASSERT(!is_illegal());
4182 ASSERT(!cgen_->has_cc());
4183 MacroAssembler* masm = cgen_->masm();
4184 Property* property = expression_->AsProperty();
4185 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004186 cgen_->CodeForSourcePosition(property->position());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004187 }
4188
4189 switch (type_) {
4190 case SLOT: {
4191 Comment cmnt(masm, "[ Load from Slot");
4192 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot();
4193 ASSERT(slot != NULL);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004194 cgen_->LoadFromSlot(slot, NOT_INSIDE_TYPEOF);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004195 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004196 }
4197
ager@chromium.org7c537e22008-10-16 08:43:32 +00004198 case NAMED: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004199 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004200 Comment cmnt(masm, "[ Load from named Property");
ager@chromium.org7c537e22008-10-16 08:43:32 +00004201 Handle<String> name(GetName());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004202 Variable* var = expression_->AsVariableProxy()->AsVariable();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004203 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
4204 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004205 Result name_reg(r2);
4206 __ mov(r2, Operand(name));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004207 ASSERT(var == NULL || var->is_global());
4208 RelocInfo::Mode rmode = (var == NULL)
4209 ? RelocInfo::CODE_TARGET
4210 : RelocInfo::CODE_TARGET_CONTEXT;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004211 frame->CallCodeObject(ic, rmode, &name_reg, 0);
4212 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004213 break;
4214 }
4215
4216 case KEYED: {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004217 // TODO(181): Implement inlined version of array indexing once
4218 // loop nesting is properly tracked on ARM.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004219 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004220 Comment cmnt(masm, "[ Load from keyed Property");
4221 ASSERT(property != NULL);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004222 Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Initialize));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004223 Variable* var = expression_->AsVariableProxy()->AsVariable();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004224 ASSERT(var == NULL || var->is_global());
4225 RelocInfo::Mode rmode = (var == NULL)
4226 ? RelocInfo::CODE_TARGET
4227 : RelocInfo::CODE_TARGET_CONTEXT;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004228 frame->CallCodeObject(ic, rmode, 0);
4229 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004230 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004231 }
4232
4233 default:
4234 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004235 }
4236}
4237
4238
ager@chromium.org7c537e22008-10-16 08:43:32 +00004239void Reference::SetValue(InitState init_state) {
4240 ASSERT(!is_illegal());
4241 ASSERT(!cgen_->has_cc());
4242 MacroAssembler* masm = cgen_->masm();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004243 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004244 Property* property = expression_->AsProperty();
4245 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004246 cgen_->CodeForSourcePosition(property->position());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004247 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004248
ager@chromium.org7c537e22008-10-16 08:43:32 +00004249 switch (type_) {
4250 case SLOT: {
4251 Comment cmnt(masm, "[ Store to Slot");
4252 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot();
4253 ASSERT(slot != NULL);
4254 if (slot->type() == Slot::LOOKUP) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00004255 ASSERT(slot->var()->is_dynamic());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004256
ager@chromium.org7c537e22008-10-16 08:43:32 +00004257 // For now, just do a runtime call.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004258 frame->EmitPush(cp);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004259 __ mov(r0, Operand(slot->var()->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004260 frame->EmitPush(r0);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004261
ager@chromium.org7c537e22008-10-16 08:43:32 +00004262 if (init_state == CONST_INIT) {
4263 // Same as the case for a normal store, but ignores attribute
4264 // (e.g. READ_ONLY) of context slot so that we can initialize
4265 // const properties (introduced via eval("const foo = (some
4266 // expr);")). Also, uses the current function context instead of
4267 // the top context.
4268 //
4269 // Note that we must declare the foo upon entry of eval(), via a
4270 // context slot declaration, but we cannot initialize it at the
4271 // same time, because the const declaration may be at the end of
4272 // the eval code (sigh...) and the const variable may have been
4273 // used before (where its value is 'undefined'). Thus, we can only
4274 // do the initialization when we actually encounter the expression
4275 // and when the expression operands are defined and valid, and
4276 // thus we need the split into 2 operations: declaration of the
4277 // context slot followed by initialization.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004278 frame->CallRuntime(Runtime::kInitializeConstContextSlot, 3);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004279 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004280 frame->CallRuntime(Runtime::kStoreContextSlot, 3);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004281 }
4282 // Storing a variable must keep the (new) value on the expression
4283 // stack. This is necessary for compiling assignment expressions.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004284 frame->EmitPush(r0);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004285
ager@chromium.org7c537e22008-10-16 08:43:32 +00004286 } else {
ager@chromium.org381abbb2009-02-25 13:23:22 +00004287 ASSERT(!slot->var()->is_dynamic());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004288
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004289 JumpTarget exit;
ager@chromium.org7c537e22008-10-16 08:43:32 +00004290 if (init_state == CONST_INIT) {
4291 ASSERT(slot->var()->mode() == Variable::CONST);
4292 // Only the first const initialization must be executed (the slot
4293 // still contains 'the hole' value). When the assignment is
4294 // executed, the code is identical to a normal store (see below).
4295 Comment cmnt(masm, "[ Init const");
4296 __ ldr(r2, cgen_->SlotOperand(slot, r2));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004297 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
4298 __ cmp(r2, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004299 exit.Branch(ne);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004300 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004301
ager@chromium.org7c537e22008-10-16 08:43:32 +00004302 // We must execute the store. Storing a variable must keep the
4303 // (new) value on the stack. This is necessary for compiling
4304 // assignment expressions.
4305 //
4306 // Note: We will reach here even with slot->var()->mode() ==
4307 // Variable::CONST because of const declarations which will
4308 // initialize consts to 'the hole' value and by doing so, end up
4309 // calling this code. r2 may be loaded with context; used below in
4310 // RecordWrite.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004311 frame->EmitPop(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004312 __ str(r0, cgen_->SlotOperand(slot, r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004313 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004314 if (slot->type() == Slot::CONTEXT) {
4315 // Skip write barrier if the written value is a smi.
4316 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004317 exit.Branch(eq);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004318 // r2 is loaded with context when calling SlotOperand above.
4319 int offset = FixedArray::kHeaderSize + slot->index() * kPointerSize;
4320 __ mov(r3, Operand(offset));
4321 __ RecordWrite(r2, r3, r1);
4322 }
4323 // If we definitely did not jump over the assignment, we do not need
4324 // to bind the exit label. Doing so can defeat peephole
4325 // optimization.
4326 if (init_state == CONST_INIT || slot->type() == Slot::CONTEXT) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004327 exit.Bind();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004328 }
4329 }
4330 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004331 }
4332
ager@chromium.org7c537e22008-10-16 08:43:32 +00004333 case NAMED: {
4334 Comment cmnt(masm, "[ Store to named Property");
4335 // Call the appropriate IC code.
ager@chromium.org7c537e22008-10-16 08:43:32 +00004336 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004337 Handle<String> name(GetName());
4338
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004339 Result value(r0);
4340 frame->EmitPop(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004341
4342 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004343 Result property_name(r2);
4344 __ mov(r2, Operand(name));
4345 frame->CallCodeObject(ic,
4346 RelocInfo::CODE_TARGET,
4347 &value,
4348 &property_name,
4349 0);
4350 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004351 break;
4352 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004353
ager@chromium.org7c537e22008-10-16 08:43:32 +00004354 case KEYED: {
4355 Comment cmnt(masm, "[ Store to keyed Property");
4356 Property* property = expression_->AsProperty();
4357 ASSERT(property != NULL);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004358 cgen_->CodeForSourcePosition(property->position());
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004359
4360 // Call IC code.
4361 Handle<Code> ic(Builtins::builtin(Builtins::KeyedStoreIC_Initialize));
4362 // TODO(1222589): Make the IC grab the values from the stack.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004363 Result value(r0);
4364 frame->EmitPop(r0); // value
4365 frame->CallCodeObject(ic, RelocInfo::CODE_TARGET, &value, 0);
4366 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004367 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004368 }
ager@chromium.org7c537e22008-10-16 08:43:32 +00004369
4370 default:
4371 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004372 }
4373}
4374
4375
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004376// Count leading zeros in a 32 bit word. On ARM5 and later it uses the clz
4377// instruction. On pre-ARM5 hardware this routine gives the wrong answer for 0
4378// (31 instead of 32).
4379static void CountLeadingZeros(
4380 MacroAssembler* masm,
4381 Register source,
4382 Register scratch,
4383 Register zeros) {
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +00004384#ifdef CAN_USE_ARMV5_INSTRUCTIONS
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004385 __ clz(zeros, source); // This instruction is only supported after ARM5.
4386#else
4387 __ mov(zeros, Operand(0));
4388 __ mov(scratch, source);
4389 // Top 16.
4390 __ tst(scratch, Operand(0xffff0000));
4391 __ add(zeros, zeros, Operand(16), LeaveCC, eq);
4392 __ mov(scratch, Operand(scratch, LSL, 16), LeaveCC, eq);
4393 // Top 8.
4394 __ tst(scratch, Operand(0xff000000));
4395 __ add(zeros, zeros, Operand(8), LeaveCC, eq);
4396 __ mov(scratch, Operand(scratch, LSL, 8), LeaveCC, eq);
4397 // Top 4.
4398 __ tst(scratch, Operand(0xf0000000));
4399 __ add(zeros, zeros, Operand(4), LeaveCC, eq);
4400 __ mov(scratch, Operand(scratch, LSL, 4), LeaveCC, eq);
4401 // Top 2.
4402 __ tst(scratch, Operand(0xc0000000));
4403 __ add(zeros, zeros, Operand(2), LeaveCC, eq);
4404 __ mov(scratch, Operand(scratch, LSL, 2), LeaveCC, eq);
4405 // Top bit.
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004406 __ tst(scratch, Operand(0x80000000u));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004407 __ add(zeros, zeros, Operand(1), LeaveCC, eq);
4408#endif
4409}
4410
4411
4412// Takes a Smi and converts to an IEEE 64 bit floating point value in two
4413// registers. The format is 1 sign bit, 11 exponent bits (biased 1023) and
4414// 52 fraction bits (20 in the first word, 32 in the second). Zeros is a
4415// scratch register. Destroys the source register. No GC occurs during this
4416// stub so you don't have to set up the frame.
4417class ConvertToDoubleStub : public CodeStub {
4418 public:
4419 ConvertToDoubleStub(Register result_reg_1,
4420 Register result_reg_2,
4421 Register source_reg,
4422 Register scratch_reg)
4423 : result1_(result_reg_1),
4424 result2_(result_reg_2),
4425 source_(source_reg),
4426 zeros_(scratch_reg) { }
4427
4428 private:
4429 Register result1_;
4430 Register result2_;
4431 Register source_;
4432 Register zeros_;
4433
4434 // Minor key encoding in 16 bits.
4435 class ModeBits: public BitField<OverwriteMode, 0, 2> {};
4436 class OpBits: public BitField<Token::Value, 2, 14> {};
4437
4438 Major MajorKey() { return ConvertToDouble; }
4439 int MinorKey() {
4440 // Encode the parameters in a unique 16 bit value.
4441 return result1_.code() +
4442 (result2_.code() << 4) +
4443 (source_.code() << 8) +
4444 (zeros_.code() << 12);
4445 }
4446
4447 void Generate(MacroAssembler* masm);
4448
4449 const char* GetName() { return "ConvertToDoubleStub"; }
4450
4451#ifdef DEBUG
4452 void Print() { PrintF("ConvertToDoubleStub\n"); }
4453#endif
4454};
4455
4456
4457void ConvertToDoubleStub::Generate(MacroAssembler* masm) {
4458#ifndef BIG_ENDIAN_FLOATING_POINT
4459 Register exponent = result1_;
4460 Register mantissa = result2_;
4461#else
4462 Register exponent = result2_;
4463 Register mantissa = result1_;
4464#endif
4465 Label not_special;
4466 // Convert from Smi to integer.
4467 __ mov(source_, Operand(source_, ASR, kSmiTagSize));
4468 // Move sign bit from source to destination. This works because the sign bit
4469 // in the exponent word of the double has the same position and polarity as
4470 // the 2's complement sign bit in a Smi.
4471 ASSERT(HeapNumber::kSignMask == 0x80000000u);
4472 __ and_(exponent, source_, Operand(HeapNumber::kSignMask), SetCC);
4473 // Subtract from 0 if source was negative.
4474 __ rsb(source_, source_, Operand(0), LeaveCC, ne);
4475 __ cmp(source_, Operand(1));
4476 __ b(gt, &not_special);
4477
4478 // We have -1, 0 or 1, which we treat specially.
4479 __ cmp(source_, Operand(0));
4480 // For 1 or -1 we need to or in the 0 exponent (biased to 1023).
4481 static const uint32_t exponent_word_for_1 =
4482 HeapNumber::kExponentBias << HeapNumber::kExponentShift;
4483 __ orr(exponent, exponent, Operand(exponent_word_for_1), LeaveCC, ne);
4484 // 1, 0 and -1 all have 0 for the second word.
4485 __ mov(mantissa, Operand(0));
4486 __ Ret();
4487
4488 __ bind(&not_special);
4489 // Count leading zeros. Uses result2 for a scratch register on pre-ARM5.
4490 // Gets the wrong answer for 0, but we already checked for that case above.
4491 CountLeadingZeros(masm, source_, mantissa, zeros_);
4492 // Compute exponent and or it into the exponent register.
4493 // We use result2 as a scratch register here.
4494 __ rsb(mantissa, zeros_, Operand(31 + HeapNumber::kExponentBias));
4495 __ orr(exponent,
4496 exponent,
4497 Operand(mantissa, LSL, HeapNumber::kExponentShift));
4498 // Shift up the source chopping the top bit off.
4499 __ add(zeros_, zeros_, Operand(1));
4500 // This wouldn't work for 1.0 or -1.0 as the shift would be 32 which means 0.
4501 __ mov(source_, Operand(source_, LSL, zeros_));
4502 // Compute lower part of fraction (last 12 bits).
4503 __ mov(mantissa, Operand(source_, LSL, HeapNumber::kMantissaBitsInTopWord));
4504 // And the top (top 20 bits).
4505 __ orr(exponent,
4506 exponent,
4507 Operand(source_, LSR, 32 - HeapNumber::kMantissaBitsInTopWord));
4508 __ Ret();
4509}
4510
4511
4512// This stub can convert a signed int32 to a heap number (double). It does
4513// not work for int32s that are in Smi range! No GC occurs during this stub
4514// so you don't have to set up the frame.
4515class WriteInt32ToHeapNumberStub : public CodeStub {
4516 public:
4517 WriteInt32ToHeapNumberStub(Register the_int,
4518 Register the_heap_number,
4519 Register scratch)
4520 : the_int_(the_int),
4521 the_heap_number_(the_heap_number),
4522 scratch_(scratch) { }
4523
4524 private:
4525 Register the_int_;
4526 Register the_heap_number_;
4527 Register scratch_;
4528
4529 // Minor key encoding in 16 bits.
4530 class ModeBits: public BitField<OverwriteMode, 0, 2> {};
4531 class OpBits: public BitField<Token::Value, 2, 14> {};
4532
4533 Major MajorKey() { return WriteInt32ToHeapNumber; }
4534 int MinorKey() {
4535 // Encode the parameters in a unique 16 bit value.
4536 return the_int_.code() +
4537 (the_heap_number_.code() << 4) +
4538 (scratch_.code() << 8);
4539 }
4540
4541 void Generate(MacroAssembler* masm);
4542
4543 const char* GetName() { return "WriteInt32ToHeapNumberStub"; }
4544
4545#ifdef DEBUG
4546 void Print() { PrintF("WriteInt32ToHeapNumberStub\n"); }
4547#endif
4548};
4549
4550
4551// See comment for class.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004552void WriteInt32ToHeapNumberStub::Generate(MacroAssembler* masm) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004553 Label max_negative_int;
4554 // the_int_ has the answer which is a signed int32 but not a Smi.
4555 // We test for the special value that has a different exponent. This test
4556 // has the neat side effect of setting the flags according to the sign.
4557 ASSERT(HeapNumber::kSignMask == 0x80000000u);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004558 __ cmp(the_int_, Operand(0x80000000u));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004559 __ b(eq, &max_negative_int);
4560 // Set up the correct exponent in scratch_. All non-Smi int32s have the same.
4561 // A non-Smi integer is 1.xxx * 2^30 so the exponent is 30 (biased).
4562 uint32_t non_smi_exponent =
4563 (HeapNumber::kExponentBias + 30) << HeapNumber::kExponentShift;
4564 __ mov(scratch_, Operand(non_smi_exponent));
4565 // Set the sign bit in scratch_ if the value was negative.
4566 __ orr(scratch_, scratch_, Operand(HeapNumber::kSignMask), LeaveCC, cs);
4567 // Subtract from 0 if the value was negative.
4568 __ rsb(the_int_, the_int_, Operand(0), LeaveCC, cs);
4569 // We should be masking the implict first digit of the mantissa away here,
4570 // but it just ends up combining harmlessly with the last digit of the
4571 // exponent that happens to be 1. The sign bit is 0 so we shift 10 to get
4572 // the most significant 1 to hit the last bit of the 12 bit sign and exponent.
4573 ASSERT(((1 << HeapNumber::kExponentShift) & non_smi_exponent) != 0);
4574 const int shift_distance = HeapNumber::kNonMantissaBitsInTopWord - 2;
4575 __ orr(scratch_, scratch_, Operand(the_int_, LSR, shift_distance));
4576 __ str(scratch_, FieldMemOperand(the_heap_number_,
4577 HeapNumber::kExponentOffset));
4578 __ mov(scratch_, Operand(the_int_, LSL, 32 - shift_distance));
4579 __ str(scratch_, FieldMemOperand(the_heap_number_,
4580 HeapNumber::kMantissaOffset));
4581 __ Ret();
4582
4583 __ bind(&max_negative_int);
4584 // The max negative int32 is stored as a positive number in the mantissa of
4585 // a double because it uses a sign bit instead of using two's complement.
4586 // The actual mantissa bits stored are all 0 because the implicit most
4587 // significant 1 bit is not stored.
4588 non_smi_exponent += 1 << HeapNumber::kExponentShift;
4589 __ mov(ip, Operand(HeapNumber::kSignMask | non_smi_exponent));
4590 __ str(ip, FieldMemOperand(the_heap_number_, HeapNumber::kExponentOffset));
4591 __ mov(ip, Operand(0));
4592 __ str(ip, FieldMemOperand(the_heap_number_, HeapNumber::kMantissaOffset));
4593 __ Ret();
4594}
4595
4596
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004597// Handle the case where the lhs and rhs are the same object.
4598// Equality is almost reflexive (everything but NaN), so this is a test
4599// for "identity and not NaN".
4600static void EmitIdenticalObjectComparison(MacroAssembler* masm,
4601 Label* slow,
4602 Condition cc) {
4603 Label not_identical;
4604 __ cmp(r0, Operand(r1));
4605 __ b(ne, &not_identical);
4606
4607 Register exp_mask_reg = r5;
4608 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
4609
4610 // Test for NaN. Sadly, we can't just compare to Factory::nan_value(),
4611 // so we do the second best thing - test it ourselves.
4612 Label heap_number, return_equal;
4613 // They are both equal and they are not both Smis so both of them are not
4614 // Smis. If it's not a heap number, then return equal.
4615 if (cc == lt || cc == gt) {
4616 __ CompareObjectType(r0, r4, r4, FIRST_JS_OBJECT_TYPE);
4617 __ b(ge, slow);
4618 } else {
4619 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
4620 __ b(eq, &heap_number);
4621 // Comparing JS objects with <=, >= is complicated.
4622 if (cc != eq) {
4623 __ cmp(r4, Operand(FIRST_JS_OBJECT_TYPE));
4624 __ b(ge, slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004625 // Normally here we fall through to return_equal, but undefined is
4626 // special: (undefined == undefined) == true, but (undefined <= undefined)
4627 // == false! See ECMAScript 11.8.5.
4628 if (cc == le || cc == ge) {
4629 __ cmp(r4, Operand(ODDBALL_TYPE));
4630 __ b(ne, &return_equal);
4631 __ LoadRoot(r2, Heap::kUndefinedValueRootIndex);
4632 __ cmp(r0, Operand(r2));
4633 __ b(ne, &return_equal);
4634 if (cc == le) {
4635 __ mov(r0, Operand(GREATER)); // undefined <= undefined should fail.
4636 } else {
4637 __ mov(r0, Operand(LESS)); // undefined >= undefined should fail.
4638 }
4639 __ mov(pc, Operand(lr)); // Return.
4640 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004641 }
4642 }
4643 __ bind(&return_equal);
4644 if (cc == lt) {
4645 __ mov(r0, Operand(GREATER)); // Things aren't less than themselves.
4646 } else if (cc == gt) {
4647 __ mov(r0, Operand(LESS)); // Things aren't greater than themselves.
4648 } else {
4649 __ mov(r0, Operand(0)); // Things are <=, >=, ==, === themselves.
4650 }
4651 __ mov(pc, Operand(lr)); // Return.
4652
4653 // For less and greater we don't have to check for NaN since the result of
4654 // x < x is false regardless. For the others here is some code to check
4655 // for NaN.
4656 if (cc != lt && cc != gt) {
4657 __ bind(&heap_number);
4658 // It is a heap number, so return non-equal if it's NaN and equal if it's
4659 // not NaN.
4660 // The representation of NaN values has all exponent bits (52..62) set,
4661 // and not all mantissa bits (0..51) clear.
4662 // Read top bits of double representation (second word of value).
4663 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
4664 // Test that exponent bits are all set.
4665 __ and_(r3, r2, Operand(exp_mask_reg));
4666 __ cmp(r3, Operand(exp_mask_reg));
4667 __ b(ne, &return_equal);
4668
4669 // Shift out flag and all exponent bits, retaining only mantissa.
4670 __ mov(r2, Operand(r2, LSL, HeapNumber::kNonMantissaBitsInTopWord));
4671 // Or with all low-bits of mantissa.
4672 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kMantissaOffset));
4673 __ orr(r0, r3, Operand(r2), SetCC);
4674 // For equal we already have the right value in r0: Return zero (equal)
4675 // if all bits in mantissa are zero (it's an Infinity) and non-zero if not
4676 // (it's a NaN). For <= and >= we need to load r0 with the failing value
4677 // if it's a NaN.
4678 if (cc != eq) {
4679 // All-zero means Infinity means equal.
4680 __ mov(pc, Operand(lr), LeaveCC, eq); // Return equal
4681 if (cc == le) {
4682 __ mov(r0, Operand(GREATER)); // NaN <= NaN should fail.
4683 } else {
4684 __ mov(r0, Operand(LESS)); // NaN >= NaN should fail.
4685 }
4686 }
4687 __ mov(pc, Operand(lr)); // Return.
4688 }
4689 // No fall through here.
4690
4691 __ bind(&not_identical);
4692}
4693
4694
4695// See comment at call site.
4696static void EmitSmiNonsmiComparison(MacroAssembler* masm,
4697 Label* rhs_not_nan,
4698 Label* slow,
4699 bool strict) {
4700 Label lhs_is_smi;
4701 __ tst(r0, Operand(kSmiTagMask));
4702 __ b(eq, &lhs_is_smi);
4703
4704 // Rhs is a Smi. Check whether the non-smi is a heap number.
4705 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
4706 if (strict) {
4707 // If lhs was not a number and rhs was a Smi then strict equality cannot
4708 // succeed. Return non-equal (r0 is already not zero)
4709 __ mov(pc, Operand(lr), LeaveCC, ne); // Return.
4710 } else {
4711 // Smi compared non-strictly with a non-Smi non-heap-number. Call
4712 // the runtime.
4713 __ b(ne, slow);
4714 }
4715
4716 // Rhs is a smi, lhs is a number.
4717 __ push(lr);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004718
4719 if (CpuFeatures::IsSupported(VFP3)) {
4720 CpuFeatures::Scope scope(VFP3);
4721 __ IntegerToDoubleConversionWithVFP3(r1, r3, r2);
4722 } else {
4723 __ mov(r7, Operand(r1));
4724 ConvertToDoubleStub stub1(r3, r2, r7, r6);
4725 __ Call(stub1.GetCode(), RelocInfo::CODE_TARGET);
4726 }
4727
4728
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004729 // r3 and r2 are rhs as double.
4730 __ ldr(r1, FieldMemOperand(r0, HeapNumber::kValueOffset + kPointerSize));
4731 __ ldr(r0, FieldMemOperand(r0, HeapNumber::kValueOffset));
4732 // We now have both loaded as doubles but we can skip the lhs nan check
4733 // since it's a Smi.
4734 __ pop(lr);
4735 __ jmp(rhs_not_nan);
4736
4737 __ bind(&lhs_is_smi);
4738 // Lhs is a Smi. Check whether the non-smi is a heap number.
4739 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
4740 if (strict) {
4741 // If lhs was not a number and rhs was a Smi then strict equality cannot
4742 // succeed. Return non-equal.
4743 __ mov(r0, Operand(1), LeaveCC, ne); // Non-zero indicates not equal.
4744 __ mov(pc, Operand(lr), LeaveCC, ne); // Return.
4745 } else {
4746 // Smi compared non-strictly with a non-Smi non-heap-number. Call
4747 // the runtime.
4748 __ b(ne, slow);
4749 }
4750
4751 // Lhs is a smi, rhs is a number.
4752 // r0 is Smi and r1 is heap number.
4753 __ push(lr);
4754 __ ldr(r2, FieldMemOperand(r1, HeapNumber::kValueOffset));
4755 __ ldr(r3, FieldMemOperand(r1, HeapNumber::kValueOffset + kPointerSize));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004756
4757 if (CpuFeatures::IsSupported(VFP3)) {
4758 CpuFeatures::Scope scope(VFP3);
4759 __ IntegerToDoubleConversionWithVFP3(r0, r1, r0);
4760 } else {
4761 __ mov(r7, Operand(r0));
4762 ConvertToDoubleStub stub2(r1, r0, r7, r6);
4763 __ Call(stub2.GetCode(), RelocInfo::CODE_TARGET);
4764 }
4765
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004766 __ pop(lr);
4767 // Fall through to both_loaded_as_doubles.
4768}
4769
4770
4771void EmitNanCheck(MacroAssembler* masm, Label* rhs_not_nan, Condition cc) {
4772 bool exp_first = (HeapNumber::kExponentOffset == HeapNumber::kValueOffset);
4773 Register lhs_exponent = exp_first ? r0 : r1;
4774 Register rhs_exponent = exp_first ? r2 : r3;
4775 Register lhs_mantissa = exp_first ? r1 : r0;
4776 Register rhs_mantissa = exp_first ? r3 : r2;
4777 Label one_is_nan, neither_is_nan;
4778
4779 Register exp_mask_reg = r5;
4780
4781 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
4782 __ and_(r4, rhs_exponent, Operand(exp_mask_reg));
4783 __ cmp(r4, Operand(exp_mask_reg));
4784 __ b(ne, rhs_not_nan);
4785 __ mov(r4,
4786 Operand(rhs_exponent, LSL, HeapNumber::kNonMantissaBitsInTopWord),
4787 SetCC);
4788 __ b(ne, &one_is_nan);
4789 __ cmp(rhs_mantissa, Operand(0));
4790 __ b(ne, &one_is_nan);
4791
4792 __ bind(rhs_not_nan);
4793 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
4794 __ and_(r4, lhs_exponent, Operand(exp_mask_reg));
4795 __ cmp(r4, Operand(exp_mask_reg));
4796 __ b(ne, &neither_is_nan);
4797 __ mov(r4,
4798 Operand(lhs_exponent, LSL, HeapNumber::kNonMantissaBitsInTopWord),
4799 SetCC);
4800 __ b(ne, &one_is_nan);
4801 __ cmp(lhs_mantissa, Operand(0));
4802 __ b(eq, &neither_is_nan);
4803
4804 __ bind(&one_is_nan);
4805 // NaN comparisons always fail.
4806 // Load whatever we need in r0 to make the comparison fail.
4807 if (cc == lt || cc == le) {
4808 __ mov(r0, Operand(GREATER));
4809 } else {
4810 __ mov(r0, Operand(LESS));
4811 }
4812 __ mov(pc, Operand(lr)); // Return.
4813
4814 __ bind(&neither_is_nan);
4815}
4816
4817
4818// See comment at call site.
4819static void EmitTwoNonNanDoubleComparison(MacroAssembler* masm, Condition cc) {
4820 bool exp_first = (HeapNumber::kExponentOffset == HeapNumber::kValueOffset);
4821 Register lhs_exponent = exp_first ? r0 : r1;
4822 Register rhs_exponent = exp_first ? r2 : r3;
4823 Register lhs_mantissa = exp_first ? r1 : r0;
4824 Register rhs_mantissa = exp_first ? r3 : r2;
4825
4826 // r0, r1, r2, r3 have the two doubles. Neither is a NaN.
4827 if (cc == eq) {
4828 // Doubles are not equal unless they have the same bit pattern.
4829 // Exception: 0 and -0.
4830 __ cmp(lhs_mantissa, Operand(rhs_mantissa));
4831 __ orr(r0, lhs_mantissa, Operand(rhs_mantissa), LeaveCC, ne);
4832 // Return non-zero if the numbers are unequal.
4833 __ mov(pc, Operand(lr), LeaveCC, ne);
4834
4835 __ sub(r0, lhs_exponent, Operand(rhs_exponent), SetCC);
4836 // If exponents are equal then return 0.
4837 __ mov(pc, Operand(lr), LeaveCC, eq);
4838
4839 // Exponents are unequal. The only way we can return that the numbers
4840 // are equal is if one is -0 and the other is 0. We already dealt
4841 // with the case where both are -0 or both are 0.
4842 // We start by seeing if the mantissas (that are equal) or the bottom
4843 // 31 bits of the rhs exponent are non-zero. If so we return not
4844 // equal.
4845 __ orr(r4, rhs_mantissa, Operand(rhs_exponent, LSL, kSmiTagSize), SetCC);
4846 __ mov(r0, Operand(r4), LeaveCC, ne);
4847 __ mov(pc, Operand(lr), LeaveCC, ne); // Return conditionally.
4848 // Now they are equal if and only if the lhs exponent is zero in its
4849 // low 31 bits.
4850 __ mov(r0, Operand(lhs_exponent, LSL, kSmiTagSize));
4851 __ mov(pc, Operand(lr));
4852 } else {
4853 // Call a native function to do a comparison between two non-NaNs.
4854 // Call C routine that may not cause GC or other trouble.
4855 __ mov(r5, Operand(ExternalReference::compare_doubles()));
4856 __ Jump(r5); // Tail call.
4857 }
4858}
4859
4860
4861// See comment at call site.
4862static void EmitStrictTwoHeapObjectCompare(MacroAssembler* masm) {
4863 // If either operand is a JSObject or an oddball value, then they are
4864 // not equal since their pointers are different.
4865 // There is no test for undetectability in strict equality.
4866 ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
4867 Label first_non_object;
4868 // Get the type of the first operand into r2 and compare it with
4869 // FIRST_JS_OBJECT_TYPE.
4870 __ CompareObjectType(r0, r2, r2, FIRST_JS_OBJECT_TYPE);
4871 __ b(lt, &first_non_object);
4872
4873 // Return non-zero (r0 is not zero)
4874 Label return_not_equal;
4875 __ bind(&return_not_equal);
4876 __ mov(pc, Operand(lr)); // Return.
4877
4878 __ bind(&first_non_object);
4879 // Check for oddballs: true, false, null, undefined.
4880 __ cmp(r2, Operand(ODDBALL_TYPE));
4881 __ b(eq, &return_not_equal);
4882
4883 __ CompareObjectType(r1, r3, r3, FIRST_JS_OBJECT_TYPE);
4884 __ b(ge, &return_not_equal);
4885
4886 // Check for oddballs: true, false, null, undefined.
4887 __ cmp(r3, Operand(ODDBALL_TYPE));
4888 __ b(eq, &return_not_equal);
4889}
4890
4891
4892// See comment at call site.
4893static void EmitCheckForTwoHeapNumbers(MacroAssembler* masm,
4894 Label* both_loaded_as_doubles,
4895 Label* not_heap_numbers,
4896 Label* slow) {
4897 __ CompareObjectType(r0, r2, r2, HEAP_NUMBER_TYPE);
4898 __ b(ne, not_heap_numbers);
4899 __ CompareObjectType(r1, r3, r3, HEAP_NUMBER_TYPE);
4900 __ b(ne, slow); // First was a heap number, second wasn't. Go slow case.
4901
4902 // Both are heap numbers. Load them up then jump to the code we have
4903 // for that.
4904 __ ldr(r2, FieldMemOperand(r1, HeapNumber::kValueOffset));
4905 __ ldr(r3, FieldMemOperand(r1, HeapNumber::kValueOffset + kPointerSize));
4906 __ ldr(r1, FieldMemOperand(r0, HeapNumber::kValueOffset + kPointerSize));
4907 __ ldr(r0, FieldMemOperand(r0, HeapNumber::kValueOffset));
4908 __ jmp(both_loaded_as_doubles);
4909}
4910
4911
4912// Fast negative check for symbol-to-symbol equality.
4913static void EmitCheckForSymbols(MacroAssembler* masm, Label* slow) {
4914 // r2 is object type of r0.
4915 __ tst(r2, Operand(kIsNotStringMask));
4916 __ b(ne, slow);
4917 __ tst(r2, Operand(kIsSymbolMask));
4918 __ b(eq, slow);
4919 __ CompareObjectType(r1, r3, r3, FIRST_NONSTRING_TYPE);
4920 __ b(ge, slow);
4921 __ tst(r3, Operand(kIsSymbolMask));
4922 __ b(eq, slow);
4923
4924 // Both are symbols. We already checked they weren't the same pointer
4925 // so they are not equal.
4926 __ mov(r0, Operand(1)); // Non-zero indicates not equal.
4927 __ mov(pc, Operand(lr)); // Return.
4928}
4929
4930
4931// On entry r0 and r1 are the things to be compared. On exit r0 is 0,
4932// positive or negative to indicate the result of the comparison.
4933void CompareStub::Generate(MacroAssembler* masm) {
4934 Label slow; // Call builtin.
4935 Label not_smis, both_loaded_as_doubles, rhs_not_nan;
4936
4937 // NOTICE! This code is only reached after a smi-fast-case check, so
4938 // it is certain that at least one operand isn't a smi.
4939
4940 // Handle the case where the objects are identical. Either returns the answer
4941 // or goes to slow. Only falls through if the objects were not identical.
4942 EmitIdenticalObjectComparison(masm, &slow, cc_);
4943
4944 // If either is a Smi (we know that not both are), then they can only
4945 // be strictly equal if the other is a HeapNumber.
4946 ASSERT_EQ(0, kSmiTag);
4947 ASSERT_EQ(0, Smi::FromInt(0));
4948 __ and_(r2, r0, Operand(r1));
4949 __ tst(r2, Operand(kSmiTagMask));
4950 __ b(ne, &not_smis);
4951 // One operand is a smi. EmitSmiNonsmiComparison generates code that can:
4952 // 1) Return the answer.
4953 // 2) Go to slow.
4954 // 3) Fall through to both_loaded_as_doubles.
4955 // 4) Jump to rhs_not_nan.
4956 // In cases 3 and 4 we have found out we were dealing with a number-number
4957 // comparison and the numbers have been loaded into r0, r1, r2, r3 as doubles.
4958 EmitSmiNonsmiComparison(masm, &rhs_not_nan, &slow, strict_);
4959
4960 __ bind(&both_loaded_as_doubles);
4961 // r0, r1, r2, r3 are the double representations of the left hand side
4962 // and the right hand side.
4963
4964 // Checks for NaN in the doubles we have loaded. Can return the answer or
4965 // fall through if neither is a NaN. Also binds rhs_not_nan.
4966 EmitNanCheck(masm, &rhs_not_nan, cc_);
4967
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004968 if (CpuFeatures::IsSupported(VFP3)) {
4969 CpuFeatures::Scope scope(VFP3);
4970 // ARMv7 VFP3 instructions to implement double precision comparison.
4971 __ fmdrr(d6, r0, r1);
4972 __ fmdrr(d7, r2, r3);
4973
4974 __ fcmp(d6, d7);
4975 __ vmrs(pc);
4976 __ mov(r0, Operand(0), LeaveCC, eq);
4977 __ mov(r0, Operand(1), LeaveCC, lt);
4978 __ mvn(r0, Operand(0), LeaveCC, gt);
4979 __ mov(pc, Operand(lr));
4980 } else {
4981 // Compares two doubles in r0, r1, r2, r3 that are not NaNs. Returns the
4982 // answer. Never falls through.
4983 EmitTwoNonNanDoubleComparison(masm, cc_);
4984 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004985
4986 __ bind(&not_smis);
4987 // At this point we know we are dealing with two different objects,
4988 // and neither of them is a Smi. The objects are in r0 and r1.
4989 if (strict_) {
4990 // This returns non-equal for some object types, or falls through if it
4991 // was not lucky.
4992 EmitStrictTwoHeapObjectCompare(masm);
4993 }
4994
4995 Label check_for_symbols;
4996 // Check for heap-number-heap-number comparison. Can jump to slow case,
4997 // or load both doubles into r0, r1, r2, r3 and jump to the code that handles
4998 // that case. If the inputs are not doubles then jumps to check_for_symbols.
4999 // In this case r2 will contain the type of r0.
5000 EmitCheckForTwoHeapNumbers(masm,
5001 &both_loaded_as_doubles,
5002 &check_for_symbols,
5003 &slow);
5004
5005 __ bind(&check_for_symbols);
5006 if (cc_ == eq) {
5007 // Either jumps to slow or returns the answer. Assumes that r2 is the type
5008 // of r0 on entry.
5009 EmitCheckForSymbols(masm, &slow);
5010 }
5011
5012 __ bind(&slow);
5013 __ push(lr);
5014 __ push(r1);
5015 __ push(r0);
5016 // Figure out which native to call and setup the arguments.
5017 Builtins::JavaScript native;
5018 int arg_count = 1; // Not counting receiver.
5019 if (cc_ == eq) {
5020 native = strict_ ? Builtins::STRICT_EQUALS : Builtins::EQUALS;
5021 } else {
5022 native = Builtins::COMPARE;
5023 int ncr; // NaN compare result
5024 if (cc_ == lt || cc_ == le) {
5025 ncr = GREATER;
5026 } else {
5027 ASSERT(cc_ == gt || cc_ == ge); // remaining cases
5028 ncr = LESS;
5029 }
5030 arg_count++;
5031 __ mov(r0, Operand(Smi::FromInt(ncr)));
5032 __ push(r0);
5033 }
5034
5035 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
5036 // tagged as a small integer.
5037 __ mov(r0, Operand(arg_count));
5038 __ InvokeBuiltin(native, CALL_JS);
5039 __ cmp(r0, Operand(0));
5040 __ pop(pc);
5041}
5042
5043
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005044// Allocates a heap number or jumps to the label if the young space is full and
5045// a scavenge is needed.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005046static void AllocateHeapNumber(
5047 MacroAssembler* masm,
5048 Label* need_gc, // Jump here if young space is full.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005049 Register result, // The tagged address of the new heap number.
5050 Register scratch1, // A scratch register.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005051 Register scratch2) { // Another scratch register.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005052 // Allocate an object in the heap for the heap number and tag it as a heap
5053 // object.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005054 __ AllocateInNewSpace(HeapNumber::kSize / kPointerSize,
5055 result,
5056 scratch1,
5057 scratch2,
5058 need_gc,
5059 TAG_OBJECT);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005060
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005061 // Get heap number map and store it in the allocated object.
5062 __ LoadRoot(scratch1, Heap::kHeapNumberMapRootIndex);
5063 __ str(scratch1, FieldMemOperand(result, HeapObject::kMapOffset));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005064}
5065
5066
5067// We fall into this code if the operands were Smis, but the result was
5068// not (eg. overflow). We branch into this code (to the not_smi label) if
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005069// the operands were not both Smi. The operands are in r0 and r1. In order
5070// to call the C-implemented binary fp operation routines we need to end up
5071// with the double precision floating point operands in r0 and r1 (for the
5072// value in r1) and r2 and r3 (for the value in r0).
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005073static void HandleBinaryOpSlowCases(MacroAssembler* masm,
5074 Label* not_smi,
5075 const Builtins::JavaScript& builtin,
5076 Token::Value operation,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005077 OverwriteMode mode) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005078 Label slow, slow_pop_2_first, do_the_call;
5079 Label r0_is_smi, r1_is_smi, finished_loading_r0, finished_loading_r1;
5080 // Smi-smi case (overflow).
5081 // Since both are Smis there is no heap number to overwrite, so allocate.
5082 // The new heap number is in r5. r6 and r7 are scratch.
5083 AllocateHeapNumber(masm, &slow, r5, r6, r7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005084
5085 if (CpuFeatures::IsSupported(VFP3)) {
5086 CpuFeatures::Scope scope(VFP3);
5087 __ IntegerToDoubleConversionWithVFP3(r0, r3, r2);
5088 __ IntegerToDoubleConversionWithVFP3(r1, r1, r0);
5089 } else {
5090 // Write Smi from r0 to r3 and r2 in double format. r6 is scratch.
5091 __ mov(r7, Operand(r0));
5092 ConvertToDoubleStub stub1(r3, r2, r7, r6);
5093 __ push(lr);
5094 __ Call(stub1.GetCode(), RelocInfo::CODE_TARGET);
5095 // Write Smi from r1 to r1 and r0 in double format. r6 is scratch.
5096 __ mov(r7, Operand(r1));
5097 ConvertToDoubleStub stub2(r1, r0, r7, r6);
5098 __ Call(stub2.GetCode(), RelocInfo::CODE_TARGET);
5099 __ pop(lr);
5100 }
5101
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005102 __ jmp(&do_the_call); // Tail call. No return.
5103
5104 // We jump to here if something goes wrong (one param is not a number of any
5105 // sort or new-space allocation fails).
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005106 __ bind(&slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005107 __ push(r1);
5108 __ push(r0);
5109 __ mov(r0, Operand(1)); // Set number of arguments.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005110 __ InvokeBuiltin(builtin, JUMP_JS); // Tail call. No return.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005111
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005112 // We branch here if at least one of r0 and r1 is not a Smi.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005113 __ bind(not_smi);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005114 if (mode == NO_OVERWRITE) {
5115 // In the case where there is no chance of an overwritable float we may as
5116 // well do the allocation immediately while r0 and r1 are untouched.
5117 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5118 }
5119
5120 // Move r0 to a double in r2-r3.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005121 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005122 __ b(eq, &r0_is_smi); // It's a Smi so don't check it's a heap number.
5123 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005124 __ b(ne, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005125 if (mode == OVERWRITE_RIGHT) {
5126 __ mov(r5, Operand(r0)); // Overwrite this heap number.
5127 }
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005128 // Calling convention says that second double is in r2 and r3.
5129 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kValueOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005130 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kValueOffset + 4));
5131 __ jmp(&finished_loading_r0);
5132 __ bind(&r0_is_smi);
5133 if (mode == OVERWRITE_RIGHT) {
5134 // We can't overwrite a Smi so get address of new heap number into r5.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005135 AllocateHeapNumber(masm, &slow, r5, r6, r7);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005136 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005137
5138
5139 if (CpuFeatures::IsSupported(VFP3)) {
5140 CpuFeatures::Scope scope(VFP3);
5141 __ IntegerToDoubleConversionWithVFP3(r0, r3, r2);
5142 } else {
5143 // Write Smi from r0 to r3 and r2 in double format.
5144 __ mov(r7, Operand(r0));
5145 ConvertToDoubleStub stub3(r3, r2, r7, r6);
5146 __ push(lr);
5147 __ Call(stub3.GetCode(), RelocInfo::CODE_TARGET);
5148 __ pop(lr);
5149 }
5150
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005151 __ bind(&finished_loading_r0);
5152
5153 // Move r1 to a double in r0-r1.
5154 __ tst(r1, Operand(kSmiTagMask));
5155 __ b(eq, &r1_is_smi); // It's a Smi so don't check it's a heap number.
5156 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5157 __ b(ne, &slow);
5158 if (mode == OVERWRITE_LEFT) {
5159 __ mov(r5, Operand(r1)); // Overwrite this heap number.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005160 }
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005161 // Calling convention says that first double is in r0 and r1.
5162 __ ldr(r0, FieldMemOperand(r1, HeapNumber::kValueOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005163 __ ldr(r1, FieldMemOperand(r1, HeapNumber::kValueOffset + 4));
5164 __ jmp(&finished_loading_r1);
5165 __ bind(&r1_is_smi);
5166 if (mode == OVERWRITE_LEFT) {
5167 // We can't overwrite a Smi so get address of new heap number into r5.
5168 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5169 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005170
5171 if (CpuFeatures::IsSupported(VFP3)) {
5172 CpuFeatures::Scope scope(VFP3);
5173 __ IntegerToDoubleConversionWithVFP3(r1, r1, r0);
5174 } else {
5175 // Write Smi from r1 to r1 and r0 in double format.
5176 __ mov(r7, Operand(r1));
5177 ConvertToDoubleStub stub4(r1, r0, r7, r6);
5178 __ push(lr);
5179 __ Call(stub4.GetCode(), RelocInfo::CODE_TARGET);
5180 __ pop(lr);
5181 }
5182
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005183 __ bind(&finished_loading_r1);
5184
5185 __ bind(&do_the_call);
5186 // r0: Left value (least significant part of mantissa).
5187 // r1: Left value (sign, exponent, top of mantissa).
5188 // r2: Right value (least significant part of mantissa).
5189 // r3: Right value (sign, exponent, top of mantissa).
5190 // r5: Address of heap number for result.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005191
5192 if (CpuFeatures::IsSupported(VFP3) &&
5193 ((Token::MUL == operation) ||
5194 (Token::DIV == operation) ||
5195 (Token::ADD == operation) ||
5196 (Token::SUB == operation))) {
5197 CpuFeatures::Scope scope(VFP3);
5198 // ARMv7 VFP3 instructions to implement
5199 // double precision, add, subtract, multiply, divide.
5200 __ fmdrr(d6, r0, r1);
5201 __ fmdrr(d7, r2, r3);
5202
5203 if (Token::MUL == operation) {
5204 __ fmuld(d5, d6, d7);
5205 } else if (Token::DIV == operation) {
5206 __ fdivd(d5, d6, d7);
5207 } else if (Token::ADD == operation) {
5208 __ faddd(d5, d6, d7);
5209 } else if (Token::SUB == operation) {
5210 __ fsubd(d5, d6, d7);
5211 } else {
5212 UNREACHABLE();
5213 }
5214
5215 __ fmrrd(r0, r1, d5);
5216
5217 __ str(r0, FieldMemOperand(r5, HeapNumber::kValueOffset));
5218 __ str(r1, FieldMemOperand(r5, HeapNumber::kValueOffset + 4));
5219 __ mov(r0, Operand(r5));
5220 __ mov(pc, lr);
5221 return;
5222 }
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005223 __ push(lr); // For later.
5224 __ push(r5); // Address of heap number that is answer.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005225 __ AlignStack(0);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005226 // Call C routine that may not cause GC or other trouble.
5227 __ mov(r5, Operand(ExternalReference::double_fp_operation(operation)));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005228 __ Call(r5);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005229 __ pop(r4); // Address of heap number.
5230 __ cmp(r4, Operand(Smi::FromInt(0)));
5231 __ pop(r4, eq); // Conditional pop instruction to get rid of alignment push.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005232 // Store answer in the overwritable heap number.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005233#if !defined(USE_ARM_EABI)
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005234 // Double returned in fp coprocessor register 0 and 1, encoded as register
5235 // cr8. Offsets must be divisible by 4 for coprocessor so we need to
5236 // substract the tag from r4.
5237 __ sub(r5, r4, Operand(kHeapObjectTag));
5238 __ stc(p1, cr8, MemOperand(r5, HeapNumber::kValueOffset));
5239#else
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005240 // Double returned in registers 0 and 1.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005241 __ str(r0, FieldMemOperand(r4, HeapNumber::kValueOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005242 __ str(r1, FieldMemOperand(r4, HeapNumber::kValueOffset + 4));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005243#endif
5244 __ mov(r0, Operand(r4));
5245 // And we are done.
5246 __ pop(pc);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005247}
5248
5249
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005250// Tries to get a signed int32 out of a double precision floating point heap
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005251// number. Rounds towards 0. Fastest for doubles that are in the ranges
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005252// -0x7fffffff to -0x40000000 or 0x40000000 to 0x7fffffff. This corresponds
5253// almost to the range of signed int32 values that are not Smis. Jumps to the
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005254// label 'slow' if the double isn't in the range -0x80000000.0 to 0x80000000.0
5255// (excluding the endpoints).
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005256static void GetInt32(MacroAssembler* masm,
5257 Register source,
5258 Register dest,
5259 Register scratch,
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005260 Register scratch2,
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005261 Label* slow) {
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005262 Label right_exponent, done;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005263 // Get exponent word.
5264 __ ldr(scratch, FieldMemOperand(source, HeapNumber::kExponentOffset));
5265 // Get exponent alone in scratch2.
5266 __ and_(scratch2, scratch, Operand(HeapNumber::kExponentMask));
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005267 // Load dest with zero. We use this either for the final shift or
5268 // for the answer.
5269 __ mov(dest, Operand(0));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005270 // Check whether the exponent matches a 32 bit signed int that is not a Smi.
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005271 // A non-Smi integer is 1.xxx * 2^30 so the exponent is 30 (biased). This is
5272 // the exponent that we are fastest at and also the highest exponent we can
5273 // handle here.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005274 const uint32_t non_smi_exponent =
5275 (HeapNumber::kExponentBias + 30) << HeapNumber::kExponentShift;
5276 __ cmp(scratch2, Operand(non_smi_exponent));
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005277 // If we have a match of the int32-but-not-Smi exponent then skip some logic.
5278 __ b(eq, &right_exponent);
5279 // If the exponent is higher than that then go to slow case. This catches
5280 // numbers that don't fit in a signed int32, infinities and NaNs.
5281 __ b(gt, slow);
5282
5283 // We know the exponent is smaller than 30 (biased). If it is less than
5284 // 0 (biased) then the number is smaller in magnitude than 1.0 * 2^0, ie
5285 // it rounds to zero.
5286 const uint32_t zero_exponent =
5287 (HeapNumber::kExponentBias + 0) << HeapNumber::kExponentShift;
5288 __ sub(scratch2, scratch2, Operand(zero_exponent), SetCC);
5289 // Dest already has a Smi zero.
5290 __ b(lt, &done);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005291 if (!CpuFeatures::IsSupported(VFP3)) {
5292 // We have a shifted exponent between 0 and 30 in scratch2.
5293 __ mov(dest, Operand(scratch2, LSR, HeapNumber::kExponentShift));
5294 // We now have the exponent in dest. Subtract from 30 to get
5295 // how much to shift down.
5296 __ rsb(dest, dest, Operand(30));
5297 }
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005298 __ bind(&right_exponent);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005299 if (CpuFeatures::IsSupported(VFP3)) {
5300 CpuFeatures::Scope scope(VFP3);
5301 // ARMv7 VFP3 instructions implementing double precision to integer
5302 // conversion using round to zero.
5303 __ ldr(scratch2, FieldMemOperand(source, HeapNumber::kMantissaOffset));
5304 __ fmdrr(d7, scratch2, scratch);
5305 __ ftosid(s15, d7);
5306 __ fmrs(dest, s15);
5307 } else {
5308 // Get the top bits of the mantissa.
5309 __ and_(scratch2, scratch, Operand(HeapNumber::kMantissaMask));
5310 // Put back the implicit 1.
5311 __ orr(scratch2, scratch2, Operand(1 << HeapNumber::kExponentShift));
5312 // Shift up the mantissa bits to take up the space the exponent used to
5313 // take. We just orred in the implicit bit so that took care of one and
5314 // we want to leave the sign bit 0 so we subtract 2 bits from the shift
5315 // distance.
5316 const int shift_distance = HeapNumber::kNonMantissaBitsInTopWord - 2;
5317 __ mov(scratch2, Operand(scratch2, LSL, shift_distance));
5318 // Put sign in zero flag.
5319 __ tst(scratch, Operand(HeapNumber::kSignMask));
5320 // Get the second half of the double. For some exponents we don't
5321 // actually need this because the bits get shifted out again, but
5322 // it's probably slower to test than just to do it.
5323 __ ldr(scratch, FieldMemOperand(source, HeapNumber::kMantissaOffset));
5324 // Shift down 22 bits to get the last 10 bits.
5325 __ orr(scratch, scratch2, Operand(scratch, LSR, 32 - shift_distance));
5326 // Move down according to the exponent.
5327 __ mov(dest, Operand(scratch, LSR, dest));
5328 // Fix sign if sign bit was set.
5329 __ rsb(dest, dest, Operand(0), LeaveCC, ne);
5330 }
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005331 __ bind(&done);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005332}
5333
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005334// For bitwise ops where the inputs are not both Smis we here try to determine
5335// whether both inputs are either Smis or at least heap numbers that can be
5336// represented by a 32 bit signed value. We truncate towards zero as required
5337// by the ES spec. If this is the case we do the bitwise op and see if the
5338// result is a Smi. If so, great, otherwise we try to find a heap number to
5339// write the answer into (either by allocating or by overwriting).
5340// On entry the operands are in r0 and r1. On exit the answer is in r0.
5341void GenericBinaryOpStub::HandleNonSmiBitwiseOp(MacroAssembler* masm) {
5342 Label slow, result_not_a_smi;
5343 Label r0_is_smi, r1_is_smi;
5344 Label done_checking_r0, done_checking_r1;
5345
5346 __ tst(r1, Operand(kSmiTagMask));
5347 __ b(eq, &r1_is_smi); // It's a Smi so don't check it's a heap number.
5348 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5349 __ b(ne, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005350 GetInt32(masm, r1, r3, r5, r4, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005351 __ jmp(&done_checking_r1);
5352 __ bind(&r1_is_smi);
5353 __ mov(r3, Operand(r1, ASR, 1));
5354 __ bind(&done_checking_r1);
5355
5356 __ tst(r0, Operand(kSmiTagMask));
5357 __ b(eq, &r0_is_smi); // It's a Smi so don't check it's a heap number.
5358 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
5359 __ b(ne, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005360 GetInt32(masm, r0, r2, r5, r4, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005361 __ jmp(&done_checking_r0);
5362 __ bind(&r0_is_smi);
5363 __ mov(r2, Operand(r0, ASR, 1));
5364 __ bind(&done_checking_r0);
5365
5366 // r0 and r1: Original operands (Smi or heap numbers).
5367 // r2 and r3: Signed int32 operands.
5368 switch (op_) {
5369 case Token::BIT_OR: __ orr(r2, r2, Operand(r3)); break;
5370 case Token::BIT_XOR: __ eor(r2, r2, Operand(r3)); break;
5371 case Token::BIT_AND: __ and_(r2, r2, Operand(r3)); break;
5372 case Token::SAR:
5373 // Use only the 5 least significant bits of the shift count.
5374 __ and_(r2, r2, Operand(0x1f));
5375 __ mov(r2, Operand(r3, ASR, r2));
5376 break;
5377 case Token::SHR:
5378 // Use only the 5 least significant bits of the shift count.
5379 __ and_(r2, r2, Operand(0x1f));
5380 __ mov(r2, Operand(r3, LSR, r2), SetCC);
5381 // SHR is special because it is required to produce a positive answer.
5382 // The code below for writing into heap numbers isn't capable of writing
5383 // the register as an unsigned int so we go to slow case if we hit this
5384 // case.
5385 __ b(mi, &slow);
5386 break;
5387 case Token::SHL:
5388 // Use only the 5 least significant bits of the shift count.
5389 __ and_(r2, r2, Operand(0x1f));
5390 __ mov(r2, Operand(r3, LSL, r2));
5391 break;
5392 default: UNREACHABLE();
5393 }
5394 // check that the *signed* result fits in a smi
5395 __ add(r3, r2, Operand(0x40000000), SetCC);
5396 __ b(mi, &result_not_a_smi);
5397 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
5398 __ Ret();
5399
5400 Label have_to_allocate, got_a_heap_number;
5401 __ bind(&result_not_a_smi);
5402 switch (mode_) {
5403 case OVERWRITE_RIGHT: {
5404 __ tst(r0, Operand(kSmiTagMask));
5405 __ b(eq, &have_to_allocate);
5406 __ mov(r5, Operand(r0));
5407 break;
5408 }
5409 case OVERWRITE_LEFT: {
5410 __ tst(r1, Operand(kSmiTagMask));
5411 __ b(eq, &have_to_allocate);
5412 __ mov(r5, Operand(r1));
5413 break;
5414 }
5415 case NO_OVERWRITE: {
5416 // Get a new heap number in r5. r6 and r7 are scratch.
5417 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5418 }
5419 default: break;
5420 }
5421 __ bind(&got_a_heap_number);
5422 // r2: Answer as signed int32.
5423 // r5: Heap number to write answer into.
5424
5425 // Nothing can go wrong now, so move the heap number to r0, which is the
5426 // result.
5427 __ mov(r0, Operand(r5));
5428
5429 // Tail call that writes the int32 in r2 to the heap number in r0, using
5430 // r3 as scratch. r0 is preserved and returned.
5431 WriteInt32ToHeapNumberStub stub(r2, r0, r3);
5432 __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET);
5433
5434 if (mode_ != NO_OVERWRITE) {
5435 __ bind(&have_to_allocate);
5436 // Get a new heap number in r5. r6 and r7 are scratch.
5437 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5438 __ jmp(&got_a_heap_number);
5439 }
5440
5441 // If all else failed then we go to the runtime system.
5442 __ bind(&slow);
5443 __ push(r1); // restore stack
5444 __ push(r0);
5445 __ mov(r0, Operand(1)); // 1 argument (not counting receiver).
5446 switch (op_) {
5447 case Token::BIT_OR:
5448 __ InvokeBuiltin(Builtins::BIT_OR, JUMP_JS);
5449 break;
5450 case Token::BIT_AND:
5451 __ InvokeBuiltin(Builtins::BIT_AND, JUMP_JS);
5452 break;
5453 case Token::BIT_XOR:
5454 __ InvokeBuiltin(Builtins::BIT_XOR, JUMP_JS);
5455 break;
5456 case Token::SAR:
5457 __ InvokeBuiltin(Builtins::SAR, JUMP_JS);
5458 break;
5459 case Token::SHR:
5460 __ InvokeBuiltin(Builtins::SHR, JUMP_JS);
5461 break;
5462 case Token::SHL:
5463 __ InvokeBuiltin(Builtins::SHL, JUMP_JS);
5464 break;
5465 default:
5466 UNREACHABLE();
5467 }
5468}
5469
5470
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00005471// Can we multiply by x with max two shifts and an add.
5472// This answers yes to all integers from 2 to 10.
5473static bool IsEasyToMultiplyBy(int x) {
5474 if (x < 2) return false; // Avoid special cases.
5475 if (x > (Smi::kMaxValue + 1) >> 2) return false; // Almost always overflows.
5476 if (IsPowerOf2(x)) return true; // Simple shift.
5477 if (PopCountLessThanEqual2(x)) return true; // Shift and add and shift.
5478 if (IsPowerOf2(x + 1)) return true; // Patterns like 11111.
5479 return false;
5480}
5481
5482
5483// Can multiply by anything that IsEasyToMultiplyBy returns true for.
5484// Source and destination may be the same register. This routine does
5485// not set carry and overflow the way a mul instruction would.
5486static void MultiplyByKnownInt(MacroAssembler* masm,
5487 Register source,
5488 Register destination,
5489 int known_int) {
5490 if (IsPowerOf2(known_int)) {
5491 __ mov(destination, Operand(source, LSL, BitPosition(known_int)));
5492 } else if (PopCountLessThanEqual2(known_int)) {
5493 int first_bit = BitPosition(known_int);
5494 int second_bit = BitPosition(known_int ^ (1 << first_bit));
5495 __ add(destination, source, Operand(source, LSL, second_bit - first_bit));
5496 if (first_bit != 0) {
5497 __ mov(destination, Operand(destination, LSL, first_bit));
5498 }
5499 } else {
5500 ASSERT(IsPowerOf2(known_int + 1)); // Patterns like 1111.
5501 int the_bit = BitPosition(known_int + 1);
5502 __ rsb(destination, source, Operand(source, LSL, the_bit));
5503 }
5504}
5505
5506
5507// This function (as opposed to MultiplyByKnownInt) takes the known int in a
5508// a register for the cases where it doesn't know a good trick, and may deliver
5509// a result that needs shifting.
5510static void MultiplyByKnownInt2(
5511 MacroAssembler* masm,
5512 Register result,
5513 Register source,
5514 Register known_int_register, // Smi tagged.
5515 int known_int,
5516 int* required_shift) { // Including Smi tag shift
5517 switch (known_int) {
5518 case 3:
5519 __ add(result, source, Operand(source, LSL, 1));
5520 *required_shift = 1;
5521 break;
5522 case 5:
5523 __ add(result, source, Operand(source, LSL, 2));
5524 *required_shift = 1;
5525 break;
5526 case 6:
5527 __ add(result, source, Operand(source, LSL, 1));
5528 *required_shift = 2;
5529 break;
5530 case 7:
5531 __ rsb(result, source, Operand(source, LSL, 3));
5532 *required_shift = 1;
5533 break;
5534 case 9:
5535 __ add(result, source, Operand(source, LSL, 3));
5536 *required_shift = 1;
5537 break;
5538 case 10:
5539 __ add(result, source, Operand(source, LSL, 2));
5540 *required_shift = 2;
5541 break;
5542 default:
5543 ASSERT(!IsPowerOf2(known_int)); // That would be very inefficient.
5544 __ mul(result, source, known_int_register);
5545 *required_shift = 0;
5546 }
5547}
5548
5549
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005550void GenericBinaryOpStub::Generate(MacroAssembler* masm) {
5551 // r1 : x
5552 // r0 : y
5553 // result : r0
5554
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005555 // All ops need to know whether we are dealing with two Smis. Set up r2 to
5556 // tell us that.
5557 __ orr(r2, r1, Operand(r0)); // r2 = x | y;
5558
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005559 switch (op_) {
5560 case Token::ADD: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005561 Label not_smi;
5562 // Fast path.
5563 ASSERT(kSmiTag == 0); // Adjust code below.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005564 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005565 __ b(ne, &not_smi);
5566 __ add(r0, r1, Operand(r0), SetCC); // Add y optimistically.
5567 // Return if no overflow.
5568 __ Ret(vc);
5569 __ sub(r0, r0, Operand(r1)); // Revert optimistic add.
5570
5571 HandleBinaryOpSlowCases(masm,
5572 &not_smi,
5573 Builtins::ADD,
5574 Token::ADD,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005575 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005576 break;
5577 }
5578
5579 case Token::SUB: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005580 Label not_smi;
5581 // Fast path.
5582 ASSERT(kSmiTag == 0); // Adjust code below.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005583 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005584 __ b(ne, &not_smi);
5585 __ sub(r0, r1, Operand(r0), SetCC); // Subtract y optimistically.
5586 // Return if no overflow.
5587 __ Ret(vc);
5588 __ sub(r0, r1, Operand(r0)); // Revert optimistic subtract.
5589
5590 HandleBinaryOpSlowCases(masm,
5591 &not_smi,
5592 Builtins::SUB,
5593 Token::SUB,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005594 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005595 break;
5596 }
5597
5598 case Token::MUL: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005599 Label not_smi, slow;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005600 ASSERT(kSmiTag == 0); // adjust code below
5601 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005602 __ b(ne, &not_smi);
5603 // Remove tag from one operand (but keep sign), so that result is Smi.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005604 __ mov(ip, Operand(r0, ASR, kSmiTagSize));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005605 // Do multiplication
5606 __ smull(r3, r2, r1, ip); // r3 = lower 32 bits of ip*r1.
5607 // Go slow on overflows (overflow bit is not set).
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005608 __ mov(ip, Operand(r3, ASR, 31));
5609 __ cmp(ip, Operand(r2)); // no overflow if higher 33 bits are identical
5610 __ b(ne, &slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005611 // Go slow on zero result to handle -0.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005612 __ tst(r3, Operand(r3));
5613 __ mov(r0, Operand(r3), LeaveCC, ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005614 __ Ret(ne);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005615 // We need -0 if we were multiplying a negative number with 0 to get 0.
5616 // We know one of them was zero.
5617 __ add(r2, r0, Operand(r1), SetCC);
5618 __ mov(r0, Operand(Smi::FromInt(0)), LeaveCC, pl);
5619 __ Ret(pl); // Return Smi 0 if the non-zero one was positive.
5620 // Slow case. We fall through here if we multiplied a negative number
5621 // with 0, because that would mean we should produce -0.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005622 __ bind(&slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005623
5624 HandleBinaryOpSlowCases(masm,
5625 &not_smi,
5626 Builtins::MUL,
5627 Token::MUL,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00005628 mode_);
5629 break;
5630 }
5631
5632 case Token::DIV:
5633 case Token::MOD: {
5634 Label not_smi;
5635 if (specialized_on_rhs_) {
5636 Label smi_is_unsuitable;
5637 __ BranchOnNotSmi(r1, &not_smi);
5638 if (IsPowerOf2(constant_rhs_)) {
5639 if (op_ == Token::MOD) {
5640 __ and_(r0,
5641 r1,
5642 Operand(0x80000000u | ((constant_rhs_ << kSmiTagSize) - 1)),
5643 SetCC);
5644 // We now have the answer, but if the input was negative we also
5645 // have the sign bit. Our work is done if the result is
5646 // positive or zero:
5647 __ Ret(pl);
5648 // A mod of a negative left hand side must return a negative number.
5649 // Unfortunately if the answer is 0 then we must return -0. And we
5650 // already optimistically trashed r0 so we may need to restore it.
5651 __ eor(r0, r0, Operand(0x80000000u), SetCC);
5652 // Next two instructions are conditional on the answer being -0.
5653 __ mov(r0, Operand(Smi::FromInt(constant_rhs_)), LeaveCC, eq);
5654 __ b(eq, &smi_is_unsuitable);
5655 // We need to subtract the dividend. Eg. -3 % 4 == -3.
5656 __ sub(r0, r0, Operand(Smi::FromInt(constant_rhs_)));
5657 } else {
5658 ASSERT(op_ == Token::DIV);
5659 __ tst(r1,
5660 Operand(0x80000000u | ((constant_rhs_ << kSmiTagSize) - 1)));
5661 __ b(ne, &smi_is_unsuitable); // Go slow on negative or remainder.
5662 int shift = 0;
5663 int d = constant_rhs_;
5664 while ((d & 1) == 0) {
5665 d >>= 1;
5666 shift++;
5667 }
5668 __ mov(r0, Operand(r1, LSR, shift));
5669 __ bic(r0, r0, Operand(kSmiTagMask));
5670 }
5671 } else {
5672 // Not a power of 2.
5673 __ tst(r1, Operand(0x80000000u));
5674 __ b(ne, &smi_is_unsuitable);
5675 // Find a fixed point reciprocal of the divisor so we can divide by
5676 // multiplying.
5677 double divisor = 1.0 / constant_rhs_;
5678 int shift = 32;
5679 double scale = 4294967296.0; // 1 << 32.
5680 uint32_t mul;
5681 // Maximise the precision of the fixed point reciprocal.
5682 while (true) {
5683 mul = static_cast<uint32_t>(scale * divisor);
5684 if (mul >= 0x7fffffff) break;
5685 scale *= 2.0;
5686 shift++;
5687 }
5688 mul++;
5689 __ mov(r2, Operand(mul));
5690 __ umull(r3, r2, r2, r1);
5691 __ mov(r2, Operand(r2, LSR, shift - 31));
5692 // r2 is r1 / rhs. r2 is not Smi tagged.
5693 // r0 is still the known rhs. r0 is Smi tagged.
5694 // r1 is still the unkown lhs. r1 is Smi tagged.
5695 int required_r4_shift = 0; // Including the Smi tag shift of 1.
5696 // r4 = r2 * r0.
5697 MultiplyByKnownInt2(masm,
5698 r4,
5699 r2,
5700 r0,
5701 constant_rhs_,
5702 &required_r4_shift);
5703 // r4 << required_r4_shift is now the Smi tagged rhs * (r1 / rhs).
5704 if (op_ == Token::DIV) {
5705 __ sub(r3, r1, Operand(r4, LSL, required_r4_shift), SetCC);
5706 __ b(ne, &smi_is_unsuitable); // There was a remainder.
5707 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
5708 } else {
5709 ASSERT(op_ == Token::MOD);
5710 __ sub(r0, r1, Operand(r4, LSL, required_r4_shift));
5711 }
5712 }
5713 __ Ret();
5714 __ bind(&smi_is_unsuitable);
5715 } else {
5716 __ jmp(&not_smi);
5717 }
5718 HandleBinaryOpSlowCases(masm,
5719 &not_smi,
5720 op_ == Token::MOD ? Builtins::MOD : Builtins::DIV,
5721 op_,
5722 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005723 break;
5724 }
5725
5726 case Token::BIT_OR:
5727 case Token::BIT_AND:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005728 case Token::BIT_XOR:
5729 case Token::SAR:
5730 case Token::SHR:
5731 case Token::SHL: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005732 Label slow;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005733 ASSERT(kSmiTag == 0); // adjust code below
5734 __ tst(r2, Operand(kSmiTagMask));
5735 __ b(ne, &slow);
5736 switch (op_) {
5737 case Token::BIT_OR: __ orr(r0, r0, Operand(r1)); break;
5738 case Token::BIT_AND: __ and_(r0, r0, Operand(r1)); break;
5739 case Token::BIT_XOR: __ eor(r0, r0, Operand(r1)); break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005740 case Token::SAR:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005741 // Remove tags from right operand.
5742 __ mov(r2, Operand(r0, ASR, kSmiTagSize)); // y
5743 // Use only the 5 least significant bits of the shift count.
5744 __ and_(r2, r2, Operand(0x1f));
5745 __ mov(r0, Operand(r1, ASR, r2));
5746 // Smi tag result.
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00005747 __ bic(r0, r0, Operand(kSmiTagMask));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005748 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005749 case Token::SHR:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005750 // Remove tags from operands. We can't do this on a 31 bit number
5751 // because then the 0s get shifted into bit 30 instead of bit 31.
5752 __ mov(r3, Operand(r1, ASR, kSmiTagSize)); // x
5753 __ mov(r2, Operand(r0, ASR, kSmiTagSize)); // y
5754 // Use only the 5 least significant bits of the shift count.
5755 __ and_(r2, r2, Operand(0x1f));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005756 __ mov(r3, Operand(r3, LSR, r2));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005757 // Unsigned shift is not allowed to produce a negative number, so
5758 // check the sign bit and the sign bit after Smi tagging.
5759 __ tst(r3, Operand(0xc0000000));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005760 __ b(ne, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005761 // Smi tag result.
5762 __ mov(r0, Operand(r3, LSL, kSmiTagSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005763 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005764 case Token::SHL:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005765 // Remove tags from operands.
5766 __ mov(r3, Operand(r1, ASR, kSmiTagSize)); // x
5767 __ mov(r2, Operand(r0, ASR, kSmiTagSize)); // y
5768 // Use only the 5 least significant bits of the shift count.
5769 __ and_(r2, r2, Operand(0x1f));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005770 __ mov(r3, Operand(r3, LSL, r2));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005771 // Check that the signed result fits in a Smi.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005772 __ add(r2, r3, Operand(0x40000000), SetCC);
5773 __ b(mi, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005774 __ mov(r0, Operand(r3, LSL, kSmiTagSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005775 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005776 default: UNREACHABLE();
5777 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005778 __ Ret();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005779 __ bind(&slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005780 HandleNonSmiBitwiseOp(masm);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005781 break;
5782 }
5783
5784 default: UNREACHABLE();
5785 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005786 // This code should be unreachable.
5787 __ stop("Unreachable");
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005788}
5789
5790
5791void StackCheckStub::Generate(MacroAssembler* masm) {
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00005792 // Do tail-call to runtime routine. Runtime routines expect at least one
5793 // argument, so give it a Smi.
5794 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005795 __ push(r0);
ager@chromium.orga1645e22009-09-09 19:27:10 +00005796 __ TailCallRuntime(ExternalReference(Runtime::kStackGuard), 1, 1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005797
5798 __ StubReturn(1);
5799}
5800
5801
5802void UnarySubStub::Generate(MacroAssembler* masm) {
5803 Label undo;
5804 Label slow;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005805 Label not_smi;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005806
5807 // Enter runtime system if the value is not a smi.
5808 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005809 __ b(ne, &not_smi);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005810
5811 // Enter runtime system if the value of the expression is zero
5812 // to make sure that we switch between 0 and -0.
5813 __ cmp(r0, Operand(0));
5814 __ b(eq, &slow);
5815
5816 // The value of the expression is a smi that is not zero. Try
5817 // optimistic subtraction '0 - value'.
5818 __ rsb(r1, r0, Operand(0), SetCC);
5819 __ b(vs, &slow);
5820
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005821 __ mov(r0, Operand(r1)); // Set r0 to result.
5822 __ StubReturn(1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005823
5824 // Enter runtime system.
5825 __ bind(&slow);
5826 __ push(r0);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005827 __ mov(r0, Operand(0)); // Set number of arguments.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005828 __ InvokeBuiltin(Builtins::UNARY_MINUS, JUMP_JS);
5829
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005830 __ bind(&not_smi);
5831 __ CompareObjectType(r0, r1, r1, HEAP_NUMBER_TYPE);
5832 __ b(ne, &slow);
5833 // r0 is a heap number. Get a new heap number in r1.
5834 if (overwrite_) {
5835 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
5836 __ eor(r2, r2, Operand(HeapNumber::kSignMask)); // Flip sign.
5837 __ str(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
5838 } else {
5839 AllocateHeapNumber(masm, &slow, r1, r2, r3);
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005840 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kMantissaOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005841 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005842 __ str(r3, FieldMemOperand(r1, HeapNumber::kMantissaOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005843 __ eor(r2, r2, Operand(HeapNumber::kSignMask)); // Flip sign.
5844 __ str(r2, FieldMemOperand(r1, HeapNumber::kExponentOffset));
5845 __ mov(r0, Operand(r1));
5846 }
5847 __ StubReturn(1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005848}
5849
5850
ager@chromium.orga1645e22009-09-09 19:27:10 +00005851int CEntryStub::MinorKey() {
5852 ASSERT(result_size_ <= 2);
5853 // Result returned in r0 or r0+r1 by default.
5854 return 0;
5855}
5856
5857
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005858void CEntryStub::GenerateThrowTOS(MacroAssembler* masm) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005859 // r0 holds the exception.
5860
5861 // Adjust this code if not the case.
5862 ASSERT(StackHandlerConstants::kSize == 4 * kPointerSize);
5863
5864 // Drop the sp to the top of the handler.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005865 __ mov(r3, Operand(ExternalReference(Top::k_handler_address)));
5866 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005867
5868 // Restore the next handler and frame pointer, discard handler state.
5869 ASSERT(StackHandlerConstants::kNextOffset == 0);
5870 __ pop(r2);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005871 __ str(r2, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005872 ASSERT(StackHandlerConstants::kFPOffset == 2 * kPointerSize);
5873 __ ldm(ia_w, sp, r3.bit() | fp.bit()); // r3: discarded state.
5874
5875 // Before returning we restore the context from the frame pointer if
5876 // not NULL. The frame pointer is NULL in the exception handler of a
5877 // JS entry frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005878 __ cmp(fp, Operand(0));
5879 // Set cp to NULL if fp is NULL.
5880 __ mov(cp, Operand(0), LeaveCC, eq);
5881 // Restore cp otherwise.
5882 __ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset), ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005883#ifdef DEBUG
5884 if (FLAG_debug_code) {
5885 __ mov(lr, Operand(pc));
5886 }
5887#endif
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005888 ASSERT(StackHandlerConstants::kPCOffset == 3 * kPointerSize);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005889 __ pop(pc);
5890}
5891
5892
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00005893void CEntryStub::GenerateThrowUncatchable(MacroAssembler* masm,
5894 UncatchableExceptionType type) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005895 // Adjust this code if not the case.
5896 ASSERT(StackHandlerConstants::kSize == 4 * kPointerSize);
5897
5898 // Drop sp to the top stack handler.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005899 __ mov(r3, Operand(ExternalReference(Top::k_handler_address)));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005900 __ ldr(sp, MemOperand(r3));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005901
5902 // Unwind the handlers until the ENTRY handler is found.
5903 Label loop, done;
5904 __ bind(&loop);
5905 // Load the type of the current stack handler.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005906 const int kStateOffset = StackHandlerConstants::kStateOffset;
5907 __ ldr(r2, MemOperand(sp, kStateOffset));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005908 __ cmp(r2, Operand(StackHandler::ENTRY));
5909 __ b(eq, &done);
5910 // Fetch the next handler in the list.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005911 const int kNextOffset = StackHandlerConstants::kNextOffset;
5912 __ ldr(sp, MemOperand(sp, kNextOffset));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005913 __ jmp(&loop);
5914 __ bind(&done);
5915
5916 // Set the top handler address to next handler past the current ENTRY handler.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005917 ASSERT(StackHandlerConstants::kNextOffset == 0);
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00005918 __ pop(r2);
5919 __ str(r2, MemOperand(r3));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005920
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00005921 if (type == OUT_OF_MEMORY) {
5922 // Set external caught exception to false.
5923 ExternalReference external_caught(Top::k_external_caught_exception_address);
5924 __ mov(r0, Operand(false));
5925 __ mov(r2, Operand(external_caught));
5926 __ str(r0, MemOperand(r2));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005927
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00005928 // Set pending exception and r0 to out of memory exception.
5929 Failure* out_of_memory = Failure::OutOfMemoryException();
5930 __ mov(r0, Operand(reinterpret_cast<int32_t>(out_of_memory)));
5931 __ mov(r2, Operand(ExternalReference(Top::k_pending_exception_address)));
5932 __ str(r0, MemOperand(r2));
5933 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005934
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005935 // Stack layout at this point. See also StackHandlerConstants.
5936 // sp -> state (ENTRY)
5937 // fp
5938 // lr
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005939
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005940 // Discard handler state (r2 is not used) and restore frame pointer.
5941 ASSERT(StackHandlerConstants::kFPOffset == 2 * kPointerSize);
5942 __ ldm(ia_w, sp, r2.bit() | fp.bit()); // r2: discarded state.
5943 // Before returning we restore the context from the frame pointer if
5944 // not NULL. The frame pointer is NULL in the exception handler of a
5945 // JS entry frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005946 __ cmp(fp, Operand(0));
5947 // Set cp to NULL if fp is NULL.
5948 __ mov(cp, Operand(0), LeaveCC, eq);
5949 // Restore cp otherwise.
5950 __ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset), ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005951#ifdef DEBUG
5952 if (FLAG_debug_code) {
5953 __ mov(lr, Operand(pc));
5954 }
5955#endif
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005956 ASSERT(StackHandlerConstants::kPCOffset == 3 * kPointerSize);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005957 __ pop(pc);
5958}
5959
5960
5961void CEntryStub::GenerateCore(MacroAssembler* masm,
5962 Label* throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00005963 Label* throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005964 Label* throw_out_of_memory_exception,
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005965 ExitFrame::Mode mode,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00005966 bool do_gc,
5967 bool always_allocate) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005968 // r0: result parameter for PerformGC, if any
5969 // r4: number of arguments including receiver (C callee-saved)
5970 // r5: pointer to builtin function (C callee-saved)
5971 // r6: pointer to the first argument (C callee-saved)
5972
5973 if (do_gc) {
5974 // Passing r0.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005975 ExternalReference gc_reference = ExternalReference::perform_gc_function();
5976 __ Call(gc_reference.address(), RelocInfo::RUNTIME_ENTRY);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005977 }
5978
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00005979 ExternalReference scope_depth =
5980 ExternalReference::heap_always_allocate_scope_depth();
5981 if (always_allocate) {
5982 __ mov(r0, Operand(scope_depth));
5983 __ ldr(r1, MemOperand(r0));
5984 __ add(r1, r1, Operand(1));
5985 __ str(r1, MemOperand(r0));
5986 }
5987
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005988 // Call C built-in.
5989 // r0 = argc, r1 = argv
5990 __ mov(r0, Operand(r4));
5991 __ mov(r1, Operand(r6));
5992
5993 // TODO(1242173): To let the GC traverse the return address of the exit
5994 // frames, we need to know where the return address is. Right now,
5995 // we push it on the stack to be able to find it again, but we never
5996 // restore from it in case of changes, which makes it impossible to
5997 // support moving the C entry code stub. This should be fixed, but currently
5998 // this is OK because the CEntryStub gets generated so early in the V8 boot
5999 // sequence that it is not moving ever.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006000 masm->add(lr, pc, Operand(4)); // compute return address: (pc + 8) + 4
6001 masm->push(lr);
6002 masm->Jump(r5);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006003
6004 if (always_allocate) {
6005 // It's okay to clobber r2 and r3 here. Don't mess with r0 and r1
6006 // though (contain the result).
6007 __ mov(r2, Operand(scope_depth));
6008 __ ldr(r3, MemOperand(r2));
6009 __ sub(r3, r3, Operand(1));
6010 __ str(r3, MemOperand(r2));
6011 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006012
6013 // check for failure result
6014 Label failure_returned;
6015 ASSERT(((kFailureTag + 1) & kFailureTagMask) == 0);
6016 // Lower 2 bits of r2 are 0 iff r0 has failure tag.
6017 __ add(r2, r0, Operand(1));
6018 __ tst(r2, Operand(kFailureTagMask));
6019 __ b(eq, &failure_returned);
6020
6021 // Exit C frame and return.
6022 // r0:r1: result
6023 // sp: stack pointer
6024 // fp: frame pointer
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006025 __ LeaveExitFrame(mode);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006026
6027 // check if we should retry or throw exception
6028 Label retry;
6029 __ bind(&failure_returned);
6030 ASSERT(Failure::RETRY_AFTER_GC == 0);
6031 __ tst(r0, Operand(((1 << kFailureTypeTagSize) - 1) << kFailureTagSize));
6032 __ b(eq, &retry);
6033
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006034 // Special handling of out of memory exceptions.
6035 Failure* out_of_memory = Failure::OutOfMemoryException();
6036 __ cmp(r0, Operand(reinterpret_cast<int32_t>(out_of_memory)));
6037 __ b(eq, throw_out_of_memory_exception);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006038
6039 // Retrieve the pending exception and clear the variable.
ager@chromium.org32912102009-01-16 10:38:43 +00006040 __ mov(ip, Operand(ExternalReference::the_hole_value_location()));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006041 __ ldr(r3, MemOperand(ip));
ager@chromium.org32912102009-01-16 10:38:43 +00006042 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006043 __ ldr(r0, MemOperand(ip));
6044 __ str(r3, MemOperand(ip));
6045
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006046 // Special handling of termination exceptions which are uncatchable
6047 // by javascript code.
6048 __ cmp(r0, Operand(Factory::termination_exception()));
6049 __ b(eq, throw_termination_exception);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006050
6051 // Handle normal exception.
6052 __ jmp(throw_normal_exception);
6053
6054 __ bind(&retry); // pass last failure (r0) as parameter (r0) when retrying
6055}
6056
6057
6058void CEntryStub::GenerateBody(MacroAssembler* masm, bool is_debug_break) {
6059 // Called from JavaScript; parameters are on stack as if calling JS function
6060 // r0: number of arguments including receiver
6061 // r1: pointer to builtin function
6062 // fp: frame pointer (restored after C call)
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006063 // sp: stack pointer (restored as callee's sp after C call)
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006064 // cp: current context (C callee-saved)
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006065
6066 // NOTE: Invocations of builtins may return failure objects
6067 // instead of a proper result. The builtin entry handles
6068 // this by performing a garbage collection and retrying the
6069 // builtin once.
6070
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006071 ExitFrame::Mode mode = is_debug_break
6072 ? ExitFrame::MODE_DEBUG
6073 : ExitFrame::MODE_NORMAL;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006074
6075 // Enter the exit frame that transitions from JavaScript to C++.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006076 __ EnterExitFrame(mode);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006077
6078 // r4: number of arguments (C callee-saved)
6079 // r5: pointer to builtin function (C callee-saved)
6080 // r6: pointer to first argument (C callee-saved)
6081
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006082 Label throw_normal_exception;
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006083 Label throw_termination_exception;
6084 Label throw_out_of_memory_exception;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006085
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00006086 // Call into the runtime system.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006087 GenerateCore(masm,
6088 &throw_normal_exception,
6089 &throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006090 &throw_out_of_memory_exception,
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006091 mode,
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00006092 false,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006093 false);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006094
6095 // Do space-specific GC and retry runtime call.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006096 GenerateCore(masm,
6097 &throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006098 &throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006099 &throw_out_of_memory_exception,
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006100 mode,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006101 true,
6102 false);
6103
6104 // Do full GC and retry runtime call one final time.
6105 Failure* failure = Failure::InternalError();
6106 __ mov(r0, Operand(reinterpret_cast<int32_t>(failure)));
6107 GenerateCore(masm,
6108 &throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006109 &throw_termination_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006110 &throw_out_of_memory_exception,
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006111 mode,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006112 true,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006113 true);
6114
6115 __ bind(&throw_out_of_memory_exception);
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006116 GenerateThrowUncatchable(masm, OUT_OF_MEMORY);
6117
6118 __ bind(&throw_termination_exception);
6119 GenerateThrowUncatchable(masm, TERMINATION);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006120
6121 __ bind(&throw_normal_exception);
6122 GenerateThrowTOS(masm);
6123}
6124
6125
6126void JSEntryStub::GenerateBody(MacroAssembler* masm, bool is_construct) {
6127 // r0: code entry
6128 // r1: function
6129 // r2: receiver
6130 // r3: argc
6131 // [sp+0]: argv
6132
6133 Label invoke, exit;
6134
6135 // Called from C, so do not pop argc and args on exit (preserve sp)
6136 // No need to save register-passed args
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006137 // Save callee-saved registers (incl. cp and fp), sp, and lr
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006138 __ stm(db_w, sp, kCalleeSaved | lr.bit());
6139
6140 // Get address of argv, see stm above.
6141 // r0: code entry
6142 // r1: function
6143 // r2: receiver
6144 // r3: argc
6145 __ add(r4, sp, Operand((kNumCalleeSaved + 1)*kPointerSize));
6146 __ ldr(r4, MemOperand(r4)); // argv
6147
6148 // Push a frame with special values setup to mark it as an entry frame.
6149 // r0: code entry
6150 // r1: function
6151 // r2: receiver
6152 // r3: argc
6153 // r4: argv
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006154 __ mov(r8, Operand(-1)); // Push a bad frame pointer to fail if it is used.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006155 int marker = is_construct ? StackFrame::ENTRY_CONSTRUCT : StackFrame::ENTRY;
6156 __ mov(r7, Operand(Smi::FromInt(marker)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006157 __ mov(r6, Operand(Smi::FromInt(marker)));
6158 __ mov(r5, Operand(ExternalReference(Top::k_c_entry_fp_address)));
6159 __ ldr(r5, MemOperand(r5));
6160 __ stm(db_w, sp, r5.bit() | r6.bit() | r7.bit() | r8.bit());
6161
6162 // Setup frame pointer for the frame to be pushed.
6163 __ add(fp, sp, Operand(-EntryFrameConstants::kCallerFPOffset));
6164
6165 // Call a faked try-block that does the invoke.
6166 __ bl(&invoke);
6167
6168 // Caught exception: Store result (exception) in the pending
6169 // exception field in the JSEnv and return a failure sentinel.
6170 // Coming in here the fp will be invalid because the PushTryHandler below
6171 // sets it to 0 to signal the existence of the JSEntry frame.
ager@chromium.org32912102009-01-16 10:38:43 +00006172 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006173 __ str(r0, MemOperand(ip));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006174 __ mov(r0, Operand(reinterpret_cast<int32_t>(Failure::Exception())));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006175 __ b(&exit);
6176
6177 // Invoke: Link this frame into the handler chain.
6178 __ bind(&invoke);
6179 // Must preserve r0-r4, r5-r7 are available.
6180 __ PushTryHandler(IN_JS_ENTRY, JS_ENTRY_HANDLER);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006181 // If an exception not caught by another handler occurs, this handler
6182 // returns control to the code after the bl(&invoke) above, which
6183 // restores all kCalleeSaved registers (including cp and fp) to their
6184 // saved values before returning a failure to C.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006185
6186 // Clear any pending exceptions.
6187 __ mov(ip, Operand(ExternalReference::the_hole_value_location()));
6188 __ ldr(r5, MemOperand(ip));
ager@chromium.org32912102009-01-16 10:38:43 +00006189 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006190 __ str(r5, MemOperand(ip));
6191
6192 // Invoke the function by calling through JS entry trampoline builtin.
6193 // Notice that we cannot store a reference to the trampoline code directly in
6194 // this stub, because runtime stubs are not traversed when doing GC.
6195
6196 // Expected registers by Builtins::JSEntryTrampoline
6197 // r0: code entry
6198 // r1: function
6199 // r2: receiver
6200 // r3: argc
6201 // r4: argv
6202 if (is_construct) {
6203 ExternalReference construct_entry(Builtins::JSConstructEntryTrampoline);
6204 __ mov(ip, Operand(construct_entry));
6205 } else {
6206 ExternalReference entry(Builtins::JSEntryTrampoline);
6207 __ mov(ip, Operand(entry));
6208 }
6209 __ ldr(ip, MemOperand(ip)); // deref address
6210
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006211 // Branch and link to JSEntryTrampoline. We don't use the double underscore
6212 // macro for the add instruction because we don't want the coverage tool
6213 // inserting instructions here after we read the pc.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006214 __ mov(lr, Operand(pc));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006215 masm->add(pc, ip, Operand(Code::kHeaderSize - kHeapObjectTag));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006216
6217 // Unlink this frame from the handler chain. When reading the
6218 // address of the next handler, there is no need to use the address
6219 // displacement since the current stack pointer (sp) points directly
6220 // to the stack handler.
6221 __ ldr(r3, MemOperand(sp, StackHandlerConstants::kNextOffset));
6222 __ mov(ip, Operand(ExternalReference(Top::k_handler_address)));
6223 __ str(r3, MemOperand(ip));
6224 // No need to restore registers
6225 __ add(sp, sp, Operand(StackHandlerConstants::kSize));
6226
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006227
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006228 __ bind(&exit); // r0 holds result
6229 // Restore the top frame descriptors from the stack.
6230 __ pop(r3);
6231 __ mov(ip, Operand(ExternalReference(Top::k_c_entry_fp_address)));
6232 __ str(r3, MemOperand(ip));
6233
6234 // Reset the stack to the callee saved registers.
6235 __ add(sp, sp, Operand(-EntryFrameConstants::kCallerFPOffset));
6236
6237 // Restore callee-saved registers and return.
6238#ifdef DEBUG
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006239 if (FLAG_debug_code) {
6240 __ mov(lr, Operand(pc));
6241 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006242#endif
6243 __ ldm(ia_w, sp, kCalleeSaved | pc.bit());
6244}
6245
6246
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006247// This stub performs an instanceof, calling the builtin function if
6248// necessary. Uses r1 for the object, r0 for the function that it may
6249// be an instance of (these are fetched from the stack).
6250void InstanceofStub::Generate(MacroAssembler* masm) {
6251 // Get the object - slow case for smis (we may need to throw an exception
6252 // depending on the rhs).
6253 Label slow, loop, is_instance, is_not_instance;
6254 __ ldr(r0, MemOperand(sp, 1 * kPointerSize));
6255 __ BranchOnSmi(r0, &slow);
6256
6257 // Check that the left hand is a JS object and put map in r3.
6258 __ CompareObjectType(r0, r3, r2, FIRST_JS_OBJECT_TYPE);
6259 __ b(lt, &slow);
6260 __ cmp(r2, Operand(LAST_JS_OBJECT_TYPE));
6261 __ b(gt, &slow);
6262
6263 // Get the prototype of the function (r4 is result, r2 is scratch).
6264 __ ldr(r1, MemOperand(sp, 0 * kPointerSize));
6265 __ TryGetFunctionPrototype(r1, r4, r2, &slow);
6266
6267 // Check that the function prototype is a JS object.
6268 __ BranchOnSmi(r4, &slow);
6269 __ CompareObjectType(r4, r5, r5, FIRST_JS_OBJECT_TYPE);
6270 __ b(lt, &slow);
6271 __ cmp(r5, Operand(LAST_JS_OBJECT_TYPE));
6272 __ b(gt, &slow);
6273
6274 // Register mapping: r3 is object map and r4 is function prototype.
6275 // Get prototype of object into r2.
6276 __ ldr(r2, FieldMemOperand(r3, Map::kPrototypeOffset));
6277
6278 // Loop through the prototype chain looking for the function prototype.
6279 __ bind(&loop);
6280 __ cmp(r2, Operand(r4));
6281 __ b(eq, &is_instance);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006282 __ LoadRoot(ip, Heap::kNullValueRootIndex);
6283 __ cmp(r2, ip);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006284 __ b(eq, &is_not_instance);
6285 __ ldr(r2, FieldMemOperand(r2, HeapObject::kMapOffset));
6286 __ ldr(r2, FieldMemOperand(r2, Map::kPrototypeOffset));
6287 __ jmp(&loop);
6288
6289 __ bind(&is_instance);
6290 __ mov(r0, Operand(Smi::FromInt(0)));
6291 __ pop();
6292 __ pop();
6293 __ mov(pc, Operand(lr)); // Return.
6294
6295 __ bind(&is_not_instance);
6296 __ mov(r0, Operand(Smi::FromInt(1)));
6297 __ pop();
6298 __ pop();
6299 __ mov(pc, Operand(lr)); // Return.
6300
6301 // Slow-case. Tail call builtin.
6302 __ bind(&slow);
6303 __ mov(r0, Operand(1)); // Arg count without receiver.
6304 __ InvokeBuiltin(Builtins::INSTANCE_OF, JUMP_JS);
6305}
6306
6307
ager@chromium.org7c537e22008-10-16 08:43:32 +00006308void ArgumentsAccessStub::GenerateReadLength(MacroAssembler* masm) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006309 // Check if the calling frame is an arguments adaptor frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006310 Label adaptor;
6311 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6312 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006313 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006314 __ b(eq, &adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006315
ager@chromium.org7c537e22008-10-16 08:43:32 +00006316 // Nothing to do: The formal number of parameters has already been
6317 // passed in register r0 by calling function. Just return it.
ager@chromium.org9085a012009-05-11 19:22:57 +00006318 __ Jump(lr);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006319
ager@chromium.org7c537e22008-10-16 08:43:32 +00006320 // Arguments adaptor case: Read the arguments length from the
6321 // adaptor frame and return it.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006322 __ bind(&adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006323 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
ager@chromium.org9085a012009-05-11 19:22:57 +00006324 __ Jump(lr);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006325}
6326
6327
ager@chromium.org7c537e22008-10-16 08:43:32 +00006328void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) {
6329 // The displacement is the offset of the last parameter (if any)
6330 // relative to the frame pointer.
6331 static const int kDisplacement =
6332 StandardFrameConstants::kCallerSPOffset - kPointerSize;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006333
ager@chromium.org7c537e22008-10-16 08:43:32 +00006334 // Check that the key is a smi.
6335 Label slow;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006336 __ BranchOnNotSmi(r1, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006337
ager@chromium.org7c537e22008-10-16 08:43:32 +00006338 // Check if the calling frame is an arguments adaptor frame.
6339 Label adaptor;
6340 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6341 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006342 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006343 __ b(eq, &adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006344
ager@chromium.org7c537e22008-10-16 08:43:32 +00006345 // Check index against formal parameters count limit passed in
6346 // through register eax. Use unsigned comparison to get negative
6347 // check for free.
6348 __ cmp(r1, r0);
6349 __ b(cs, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006350
ager@chromium.org7c537e22008-10-16 08:43:32 +00006351 // Read the argument from the stack and return it.
6352 __ sub(r3, r0, r1);
6353 __ add(r3, fp, Operand(r3, LSL, kPointerSizeLog2 - kSmiTagSize));
6354 __ ldr(r0, MemOperand(r3, kDisplacement));
ager@chromium.org9085a012009-05-11 19:22:57 +00006355 __ Jump(lr);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006356
6357 // Arguments adaptor case: Check index against actual arguments
6358 // limit found in the arguments adaptor frame. Use unsigned
6359 // comparison to get negative check for free.
6360 __ bind(&adaptor);
6361 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
6362 __ cmp(r1, r0);
6363 __ b(cs, &slow);
6364
6365 // Read the argument from the adaptor frame and return it.
6366 __ sub(r3, r0, r1);
6367 __ add(r3, r2, Operand(r3, LSL, kPointerSizeLog2 - kSmiTagSize));
6368 __ ldr(r0, MemOperand(r3, kDisplacement));
ager@chromium.org9085a012009-05-11 19:22:57 +00006369 __ Jump(lr);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006370
6371 // Slow-case: Handle non-smi or out-of-bounds access to arguments
6372 // by calling the runtime system.
6373 __ bind(&slow);
6374 __ push(r1);
ager@chromium.orga1645e22009-09-09 19:27:10 +00006375 __ TailCallRuntime(ExternalReference(Runtime::kGetArgumentsProperty), 1, 1);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006376}
6377
6378
6379void ArgumentsAccessStub::GenerateNewObject(MacroAssembler* masm) {
6380 // Check if the calling frame is an arguments adaptor frame.
6381 Label runtime;
6382 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6383 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006384 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006385 __ b(ne, &runtime);
6386
6387 // Patch the arguments.length and the parameters pointer.
6388 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
6389 __ str(r0, MemOperand(sp, 0 * kPointerSize));
6390 __ add(r3, r2, Operand(r0, LSL, kPointerSizeLog2 - kSmiTagSize));
6391 __ add(r3, r3, Operand(StandardFrameConstants::kCallerSPOffset));
6392 __ str(r3, MemOperand(sp, 1 * kPointerSize));
6393
6394 // Do the runtime call to allocate the arguments object.
6395 __ bind(&runtime);
ager@chromium.orga1645e22009-09-09 19:27:10 +00006396 __ TailCallRuntime(ExternalReference(Runtime::kNewArgumentsFast), 3, 1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006397}
6398
6399
6400void CallFunctionStub::Generate(MacroAssembler* masm) {
6401 Label slow;
6402 // Get the function to call from the stack.
6403 // function, receiver [, arguments]
6404 __ ldr(r1, MemOperand(sp, (argc_ + 1) * kPointerSize));
6405
6406 // Check that the function is really a JavaScript function.
6407 // r1: pushed function (to be verified)
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006408 __ BranchOnSmi(r1, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006409 // Get the map of the function object.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006410 __ CompareObjectType(r1, r2, r2, JS_FUNCTION_TYPE);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006411 __ b(ne, &slow);
6412
6413 // Fast-case: Invoke the function now.
6414 // r1: pushed function
6415 ParameterCount actual(argc_);
6416 __ InvokeFunction(r1, actual, JUMP_FUNCTION);
6417
6418 // Slow-case: Non-function called.
6419 __ bind(&slow);
6420 __ mov(r0, Operand(argc_)); // Setup the number of arguments.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006421 __ mov(r2, Operand(0));
6422 __ GetBuiltinEntry(r3, Builtins::CALL_NON_FUNCTION);
6423 __ Jump(Handle<Code>(Builtins::builtin(Builtins::ArgumentsAdaptorTrampoline)),
6424 RelocInfo::CODE_TARGET);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006425}
6426
6427
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006428int CompareStub::MinorKey() {
6429 // Encode the two parameters in a unique 16 bit value.
6430 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15));
6431 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0);
6432}
6433
6434
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006435#undef __
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006436
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006437} } // namespace v8::internal