blob: 698d0c827d3feabe187101a7f55295e47f5d10d7 [file] [log] [blame]
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001// Copyright 2010 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#include "v8.h"
29
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000030#if defined(V8_TARGET_ARCH_ARM)
31
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000032#include "bootstrapper.h"
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +000033#include "code-stubs.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000034#include "codegen-inl.h"
ager@chromium.orgc4c92722009-11-18 14:12:51 +000035#include "compiler.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036#include "debug.h"
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000037#include "ic-inl.h"
ricow@chromium.orgc9c80822010-04-21 08:22:37 +000038#include "jsregexp.h"
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000039#include "jump-target-light-inl.h"
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000040#include "parser.h"
ricow@chromium.orgc9c80822010-04-21 08:22:37 +000041#include "regexp-macro-assembler.h"
42#include "regexp-stack.h"
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000043#include "register-allocator-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000044#include "runtime.h"
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000045#include "scopes.h"
sgjesse@chromium.org833cdd72010-02-26 10:06:16 +000046#include "virtual-frame-inl.h"
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000047#include "virtual-frame-arm-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000048
kasperl@chromium.org71affb52009-05-26 05:44:31 +000049namespace v8 {
50namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000051
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000052
ricow@chromium.org30ce4112010-05-31 10:38:25 +000053#define __ ACCESS_MASM(masm_)
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000054
ager@chromium.orge2902be2009-06-08 12:21:35 +000055// -------------------------------------------------------------------------
56// Platform-specific DeferredCode functions.
57
58void DeferredCode::SaveRegisters() {
ricow@chromium.org30ce4112010-05-31 10:38:25 +000059 // On ARM you either have a completely spilled frame or you
60 // handle it yourself, but at the moment there's no automation
61 // of registers and deferred code.
ager@chromium.orge2902be2009-06-08 12:21:35 +000062}
63
64
65void DeferredCode::RestoreRegisters() {
ricow@chromium.org30ce4112010-05-31 10:38:25 +000066}
67
68
69// -------------------------------------------------------------------------
70// Platform-specific RuntimeCallHelper functions.
71
72void VirtualFrameRuntimeCallHelper::BeforeCall(MacroAssembler* masm) const {
73 frame_state_->frame()->AssertIsSpilled();
74}
75
76
77void VirtualFrameRuntimeCallHelper::AfterCall(MacroAssembler* masm) const {
78}
79
80
81void ICRuntimeCallHelper::BeforeCall(MacroAssembler* masm) const {
82 masm->EnterInternalFrame();
83}
84
85
86void ICRuntimeCallHelper::AfterCall(MacroAssembler* masm) const {
87 masm->LeaveInternalFrame();
ager@chromium.orge2902be2009-06-08 12:21:35 +000088}
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),
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +000096 previous_(owner->state()) {
97 owner->set_state(this);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000098}
99
100
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000101ConditionCodeGenState::ConditionCodeGenState(CodeGenerator* owner,
102 JumpTarget* true_target,
103 JumpTarget* false_target)
104 : CodeGenState(owner),
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000105 true_target_(true_target),
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000106 false_target_(false_target) {
107 owner->set_state(this);
108}
109
110
111TypeInfoCodeGenState::TypeInfoCodeGenState(CodeGenerator* owner,
112 Slot* slot,
113 TypeInfo type_info)
114 : CodeGenState(owner),
115 slot_(slot) {
116 owner->set_state(this);
117 old_type_info_ = owner->set_type_info(slot, type_info);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000118}
119
120
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000121CodeGenState::~CodeGenState() {
122 ASSERT(owner_->state() == this);
123 owner_->set_state(previous_);
124}
125
126
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000127TypeInfoCodeGenState::~TypeInfoCodeGenState() {
128 owner()->set_type_info(slot_, old_type_info_);
129}
130
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000131// -------------------------------------------------------------------------
ager@chromium.org7c537e22008-10-16 08:43:32 +0000132// CodeGenerator implementation
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000133
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +0000134int CodeGenerator::inlined_write_barrier_size_ = -1;
135
ager@chromium.org5c838252010-02-19 08:53:10 +0000136CodeGenerator::CodeGenerator(MacroAssembler* masm)
137 : deferred_(8),
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000138 masm_(masm),
ager@chromium.org5c838252010-02-19 08:53:10 +0000139 info_(NULL),
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000140 frame_(NULL),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000141 allocator_(NULL),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000142 cc_reg_(al),
143 state_(NULL),
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000144 loop_nesting_(0),
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000145 type_info_(NULL),
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000146 function_return_(JumpTarget::BIDIRECTIONAL),
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +0000147 function_return_is_shadowed_(false) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000148}
149
150
151// Calling conventions:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000152// fp: caller's frame pointer
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000153// sp: stack pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000154// r1: called JS function
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000155// cp: callee's context
156
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000157void CodeGenerator::Generate(CompilationInfo* info) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000158 // Record the position for debugging purposes.
ager@chromium.org5c838252010-02-19 08:53:10 +0000159 CodeForFunctionPosition(info->function());
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000160 Comment cmnt(masm_, "[ function compiled by virtual frame code generator");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000161
162 // Initialize state.
ager@chromium.org5c838252010-02-19 08:53:10 +0000163 info_ = info;
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000164
165 int slots = scope()->num_parameters() + scope()->num_stack_slots();
166 ScopedVector<TypeInfo> type_info_array(slots);
167 type_info_ = &type_info_array;
168
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000169 ASSERT(allocator_ == NULL);
170 RegisterAllocator register_allocator(this);
171 allocator_ = &register_allocator;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000172 ASSERT(frame_ == NULL);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000173 frame_ = new VirtualFrame();
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000174 cc_reg_ = al;
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000175
176 // Adjust for function-level loop nesting.
177 ASSERT_EQ(0, loop_nesting_);
178 loop_nesting_ = info->loop_nesting();
179
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000180 {
181 CodeGenState state(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000182
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000183 // Entry:
184 // Stack: receiver, arguments
185 // lr: return address
186 // fp: caller's frame pointer
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000187 // sp: stack pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000188 // r1: called JS function
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000189 // cp: callee's context
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000190 allocator_->Initialize();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000191
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000192#ifdef DEBUG
193 if (strlen(FLAG_stop_at) > 0 &&
ager@chromium.org5c838252010-02-19 08:53:10 +0000194 info->function()->name()->IsEqualTo(CStrVector(FLAG_stop_at))) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000195 frame_->SpillAll();
kasper.lund7276f142008-07-30 08:49:36 +0000196 __ stop("stop-at");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000197 }
198#endif
199
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000200 frame_->Enter();
201 // tos: code slot
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000202
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000203 // Allocate space for locals and initialize them. This also checks
204 // for stack overflow.
205 frame_->AllocateStackSlots();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000206
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000207 frame_->AssertIsSpilled();
208 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
209 if (heap_slots > 0) {
210 // Allocate local context.
211 // Get outer context and create a new context based on it.
212 __ ldr(r0, frame_->Function());
213 frame_->EmitPush(r0);
214 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
215 FastNewContextStub stub(heap_slots);
216 frame_->CallStub(&stub, 1);
217 } else {
218 frame_->CallRuntime(Runtime::kNewContext, 1);
219 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000220
221#ifdef DEBUG
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000222 JumpTarget verified_true;
223 __ cmp(r0, cp);
224 verified_true.Branch(eq);
225 __ stop("NewContext: r0 is expected to be the same as cp");
226 verified_true.Bind();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000227#endif
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000228 // Update context local.
229 __ str(cp, frame_->Context());
230 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000231
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000232 // TODO(1241774): Improve this code:
233 // 1) only needed if we have a context
234 // 2) no need to recompute context ptr every single time
235 // 3) don't copy parameter operand code from SlotOperand!
236 {
237 Comment cmnt2(masm_, "[ copy context parameters into .context");
238 // Note that iteration order is relevant here! If we have the same
239 // parameter twice (e.g., function (x, y, x)), and that parameter
240 // needs to be copied into the context, it must be the last argument
241 // passed to the parameter that needs to be copied. This is a rare
242 // case so we don't check for it, instead we rely on the copying
243 // order: such a parameter is copied repeatedly into the same
244 // context location and thus the last value is what is seen inside
245 // the function.
246 frame_->AssertIsSpilled();
247 for (int i = 0; i < scope()->num_parameters(); i++) {
248 Variable* par = scope()->parameter(i);
249 Slot* slot = par->slot();
250 if (slot != NULL && slot->type() == Slot::CONTEXT) {
251 ASSERT(!scope()->is_global_scope()); // No params in global scope.
252 __ ldr(r1, frame_->ParameterAt(i));
253 // Loads r2 with context; used below in RecordWrite.
254 __ str(r1, SlotOperand(slot, r2));
255 // Load the offset into r3.
256 int slot_offset =
257 FixedArray::kHeaderSize + slot->index() * kPointerSize;
258 __ RecordWrite(r2, Operand(slot_offset), r3, r1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000259 }
260 }
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000261 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000262
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000263 // Store the arguments object. This must happen after context
264 // initialization because the arguments object may be stored in
265 // the context.
266 if (ArgumentsMode() != NO_ARGUMENTS_ALLOCATION) {
267 StoreArgumentsObject(true);
268 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000269
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000270 // Initialize ThisFunction reference if present.
271 if (scope()->is_function_scope() && scope()->function() != NULL) {
272 frame_->EmitPushRoot(Heap::kTheHoleValueRootIndex);
273 StoreToSlot(scope()->function()->slot(), NOT_CONST_INIT);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000274 }
275
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000276 // Initialize the function return target after the locals are set
277 // up, because it needs the expected frame height from the frame.
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +0000278 function_return_.SetExpectedHeight();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000279 function_return_is_shadowed_ = false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000280
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000281 // Generate code to 'execute' declarations and initialize functions
282 // (source elements). In case of an illegal redeclaration we need to
283 // handle that instead of processing the declarations.
ager@chromium.org5c838252010-02-19 08:53:10 +0000284 if (scope()->HasIllegalRedeclaration()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000285 Comment cmnt(masm_, "[ illegal redeclarations");
ager@chromium.org5c838252010-02-19 08:53:10 +0000286 scope()->VisitIllegalRedeclaration(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000287 } else {
288 Comment cmnt(masm_, "[ declarations");
ager@chromium.org5c838252010-02-19 08:53:10 +0000289 ProcessDeclarations(scope()->declarations());
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000290 // Bail out if a stack-overflow exception occurred when processing
291 // declarations.
kasper.lund212ac232008-07-16 07:07:30 +0000292 if (HasStackOverflow()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000293 }
294
mads.s.ager31e71382008-08-13 09:32:07 +0000295 if (FLAG_trace) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000296 frame_->CallRuntime(Runtime::kTraceEnter, 0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000297 // Ignore the return value.
mads.s.ager31e71382008-08-13 09:32:07 +0000298 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000299
300 // Compile the body of the function in a vanilla state. Don't
301 // bother compiling all the code if the scope has an illegal
302 // redeclaration.
ager@chromium.org5c838252010-02-19 08:53:10 +0000303 if (!scope()->HasIllegalRedeclaration()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000304 Comment cmnt(masm_, "[ function body");
305#ifdef DEBUG
306 bool is_builtin = Bootstrapper::IsActive();
307 bool should_trace =
308 is_builtin ? FLAG_trace_builtin_calls : FLAG_trace_calls;
mads.s.ager31e71382008-08-13 09:32:07 +0000309 if (should_trace) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000310 frame_->CallRuntime(Runtime::kDebugTrace, 0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000311 // Ignore the return value.
mads.s.ager31e71382008-08-13 09:32:07 +0000312 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000313#endif
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000314 VisitStatements(info->function()->body());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000315 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000316 }
317
whesse@chromium.org2c186ca2010-06-16 11:32:39 +0000318 // Handle the return from the function.
319 if (has_valid_frame()) {
320 // If there is a valid frame, control flow can fall off the end of
321 // the body. In that case there is an implicit return statement.
322 ASSERT(!function_return_is_shadowed_);
323 frame_->PrepareForReturn();
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000324 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
whesse@chromium.org2c186ca2010-06-16 11:32:39 +0000325 if (function_return_.is_bound()) {
326 function_return_.Jump();
327 } else {
328 function_return_.Bind();
329 GenerateReturnSequence();
330 }
331 } else if (function_return_.is_linked()) {
332 // If the return target has dangling jumps to it, then we have not
333 // yet generated the return sequence. This can happen when (a)
334 // control does not flow off the end of the body so we did not
335 // compile an artificial return statement just above, and (b) there
336 // are return statements in the body but (c) they are all shadowed.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000337 function_return_.Bind();
whesse@chromium.org2c186ca2010-06-16 11:32:39 +0000338 GenerateReturnSequence();
mads.s.ager31e71382008-08-13 09:32:07 +0000339 }
340
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000341 // Adjust for function-level loop nesting.
342 ASSERT(loop_nesting_ == info->loop_nesting());
343 loop_nesting_ = 0;
344
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000345 // Code generation state must be reset.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000346 ASSERT(!has_cc());
347 ASSERT(state_ == NULL);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000348 ASSERT(loop_nesting() == 0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000349 ASSERT(!function_return_is_shadowed_);
350 function_return_.Unuse();
351 DeleteFrame();
352
353 // Process any deferred code using the register allocator.
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000354 if (!HasStackOverflow()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000355 ProcessDeferred();
356 }
357
358 allocator_ = NULL;
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000359 type_info_ = NULL;
360}
361
362
363int CodeGenerator::NumberOfSlot(Slot* slot) {
364 if (slot == NULL) return kInvalidSlotNumber;
365 switch (slot->type()) {
366 case Slot::PARAMETER:
367 return slot->index();
368 case Slot::LOCAL:
369 return slot->index() + scope()->num_parameters();
370 default:
371 break;
372 }
373 return kInvalidSlotNumber;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000374}
375
376
ager@chromium.org7c537e22008-10-16 08:43:32 +0000377MemOperand CodeGenerator::SlotOperand(Slot* slot, Register tmp) {
378 // Currently, this assertion will fail if we try to assign to
379 // a constant variable that is constant because it is read-only
380 // (such as the variable referring to a named function expression).
381 // We need to implement assignments to read-only variables.
382 // Ideally, we should do this during AST generation (by converting
383 // such assignments into expression statements); however, in general
384 // we may not be able to make the decision until past AST generation,
385 // that is when the entire program is known.
386 ASSERT(slot != NULL);
387 int index = slot->index();
388 switch (slot->type()) {
389 case Slot::PARAMETER:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000390 return frame_->ParameterAt(index);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000391
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000392 case Slot::LOCAL:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000393 return frame_->LocalAt(index);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000394
395 case Slot::CONTEXT: {
396 // Follow the context chain if necessary.
397 ASSERT(!tmp.is(cp)); // do not overwrite context register
398 Register context = cp;
399 int chain_length = scope()->ContextChainLength(slot->var()->scope());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000400 for (int i = 0; i < chain_length; i++) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000401 // Load the closure.
402 // (All contexts, even 'with' contexts, have a closure,
403 // and it is the same for all contexts inside a function.
404 // There is no need to go to the function context first.)
405 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
406 // Load the function context (which is the incoming, outer context).
407 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
408 context = tmp;
409 }
410 // We may have a 'with' context now. Get the function context.
411 // (In fact this mov may never be the needed, since the scope analysis
412 // may not permit a direct context access in this case and thus we are
413 // always at a function context. However it is safe to dereference be-
414 // cause the function context of a function context is itself. Before
415 // deleting this mov we should try to create a counter-example first,
416 // though...)
417 __ ldr(tmp, ContextOperand(context, Context::FCONTEXT_INDEX));
418 return ContextOperand(tmp, index);
419 }
420
421 default:
422 UNREACHABLE();
423 return MemOperand(r0, 0);
424 }
425}
426
427
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000428MemOperand CodeGenerator::ContextSlotOperandCheckExtensions(
429 Slot* slot,
430 Register tmp,
431 Register tmp2,
432 JumpTarget* slow) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000433 ASSERT(slot->type() == Slot::CONTEXT);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000434 Register context = cp;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000435
ager@chromium.org381abbb2009-02-25 13:23:22 +0000436 for (Scope* s = scope(); s != slot->var()->scope(); s = s->outer_scope()) {
437 if (s->num_heap_slots() > 0) {
438 if (s->calls_eval()) {
439 // Check that extension is NULL.
440 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
441 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000442 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000443 }
444 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
445 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
446 context = tmp;
447 }
448 }
449 // Check that last extension is NULL.
450 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
451 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000452 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000453 __ ldr(tmp, ContextOperand(context, Context::FCONTEXT_INDEX));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000454 return ContextOperand(tmp, slot->index());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000455}
456
457
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000458// Loads a value on TOS. If it is a boolean value, the result may have been
459// (partially) translated into branches, or it may have set the condition
460// code register. If force_cc is set, the value is forced to set the
461// condition code register and no value is pushed. If the condition code
462// register was set, has_cc() is true and cc_reg_ contains the condition to
463// test for 'true'.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000464void CodeGenerator::LoadCondition(Expression* x,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000465 JumpTarget* true_target,
466 JumpTarget* false_target,
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000467 bool force_cc) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000468 ASSERT(!has_cc());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000469 int original_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000470
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000471 { ConditionCodeGenState new_state(this, true_target, false_target);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000472 Visit(x);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000473
474 // If we hit a stack overflow, we may not have actually visited
475 // the expression. In that case, we ensure that we have a
476 // valid-looking frame state because we will continue to generate
477 // code as we unwind the C++ stack.
478 //
479 // It's possible to have both a stack overflow and a valid frame
480 // state (eg, a subexpression overflowed, visiting it returned
481 // with a dummied frame state, and visiting this expression
482 // returned with a normal-looking state).
483 if (HasStackOverflow() &&
484 has_valid_frame() &&
485 !has_cc() &&
486 frame_->height() == original_height) {
487 true_target->Jump();
488 }
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000489 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000490 if (force_cc && frame_ != NULL && !has_cc()) {
mads.s.ager31e71382008-08-13 09:32:07 +0000491 // Convert the TOS value to a boolean in the condition code register.
492 ToBoolean(true_target, false_target);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000493 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000494 ASSERT(!force_cc || !has_valid_frame() || has_cc());
495 ASSERT(!has_valid_frame() ||
496 (has_cc() && frame_->height() == original_height) ||
497 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000498}
499
500
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000501void CodeGenerator::Load(Expression* expr) {
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000502 // We generally assume that we are not in a spilled scope for most
503 // of the code generator. A failure to ensure this caused issue 815
504 // and this assert is designed to catch similar issues.
505 frame_->AssertIsNotSpilled();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000506#ifdef DEBUG
507 int original_height = frame_->height();
508#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000509 JumpTarget true_target;
510 JumpTarget false_target;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000511 LoadCondition(expr, &true_target, &false_target, false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000512
513 if (has_cc()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000514 // Convert cc_reg_ into a boolean value.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000515 JumpTarget loaded;
516 JumpTarget materialize_true;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000517 materialize_true.Branch(cc_reg_);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000518 frame_->EmitPushRoot(Heap::kFalseValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000519 loaded.Jump();
520 materialize_true.Bind();
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000521 frame_->EmitPushRoot(Heap::kTrueValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000522 loaded.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000523 cc_reg_ = al;
524 }
525
526 if (true_target.is_linked() || false_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000527 // We have at least one condition value that has been "translated"
528 // into a branch, thus it needs to be loaded explicitly.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000529 JumpTarget loaded;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000530 if (frame_ != NULL) {
531 loaded.Jump(); // Don't lose the current TOS.
532 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000533 bool both = true_target.is_linked() && false_target.is_linked();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000534 // Load "true" if necessary.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000535 if (true_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000536 true_target.Bind();
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000537 frame_->EmitPushRoot(Heap::kTrueValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000538 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000539 // If both "true" and "false" need to be loaded jump across the code for
540 // "false".
541 if (both) {
542 loaded.Jump();
543 }
544 // Load "false" if necessary.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000545 if (false_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000546 false_target.Bind();
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000547 frame_->EmitPushRoot(Heap::kFalseValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000548 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000549 // A value is loaded on all paths reaching this point.
550 loaded.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000551 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000552 ASSERT(has_valid_frame());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000553 ASSERT(!has_cc());
ager@chromium.orgac091b72010-05-05 07:34:42 +0000554 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000555}
556
557
ager@chromium.org7c537e22008-10-16 08:43:32 +0000558void CodeGenerator::LoadGlobal() {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000559 Register reg = frame_->GetTOSRegister();
560 __ ldr(reg, GlobalObject());
561 frame_->EmitPush(reg);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000562}
563
564
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000565void CodeGenerator::LoadGlobalReceiver(Register scratch) {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000566 Register reg = frame_->GetTOSRegister();
567 __ ldr(reg, ContextOperand(cp, Context::GLOBAL_INDEX));
568 __ ldr(reg,
569 FieldMemOperand(reg, GlobalObject::kGlobalReceiverOffset));
570 frame_->EmitPush(reg);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000571}
572
573
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000574ArgumentsAllocationMode CodeGenerator::ArgumentsMode() {
575 if (scope()->arguments() == NULL) return NO_ARGUMENTS_ALLOCATION;
576 ASSERT(scope()->arguments_shadow() != NULL);
577 // We don't want to do lazy arguments allocation for functions that
578 // have heap-allocated contexts, because it interfers with the
579 // uninitialized const tracking in the context objects.
580 return (scope()->num_heap_slots() > 0)
581 ? EAGER_ARGUMENTS_ALLOCATION
582 : LAZY_ARGUMENTS_ALLOCATION;
583}
584
585
586void CodeGenerator::StoreArgumentsObject(bool initial) {
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000587 ArgumentsAllocationMode mode = ArgumentsMode();
588 ASSERT(mode != NO_ARGUMENTS_ALLOCATION);
589
590 Comment cmnt(masm_, "[ store arguments object");
591 if (mode == LAZY_ARGUMENTS_ALLOCATION && initial) {
592 // When using lazy arguments allocation, we store the hole value
593 // as a sentinel indicating that the arguments object hasn't been
594 // allocated yet.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000595 frame_->EmitPushRoot(Heap::kTheHoleValueRootIndex);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000596 } else {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000597 frame_->SpillAll();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000598 ArgumentsAccessStub stub(ArgumentsAccessStub::NEW_OBJECT);
599 __ ldr(r2, frame_->Function());
600 // The receiver is below the arguments, the return address, and the
601 // frame pointer on the stack.
602 const int kReceiverDisplacement = 2 + scope()->num_parameters();
603 __ add(r1, fp, Operand(kReceiverDisplacement * kPointerSize));
604 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
605 frame_->Adjust(3);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000606 __ Push(r2, r1, r0);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000607 frame_->CallStub(&stub, 3);
608 frame_->EmitPush(r0);
609 }
610
611 Variable* arguments = scope()->arguments()->var();
612 Variable* shadow = scope()->arguments_shadow()->var();
613 ASSERT(arguments != NULL && arguments->slot() != NULL);
614 ASSERT(shadow != NULL && shadow->slot() != NULL);
615 JumpTarget done;
616 if (mode == LAZY_ARGUMENTS_ALLOCATION && !initial) {
617 // We have to skip storing into the arguments slot if it has
618 // already been written to. This can happen if the a function
619 // has a local variable named 'arguments'.
620 LoadFromSlot(scope()->arguments()->var()->slot(), NOT_INSIDE_TYPEOF);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000621 Register arguments = frame_->PopToRegister();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000622 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000623 __ cmp(arguments, ip);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000624 done.Branch(ne);
625 }
626 StoreToSlot(arguments->slot(), NOT_CONST_INIT);
627 if (mode == LAZY_ARGUMENTS_ALLOCATION) done.Bind();
628 StoreToSlot(shadow->slot(), NOT_CONST_INIT);
629}
630
631
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000632void CodeGenerator::LoadTypeofExpression(Expression* expr) {
633 // Special handling of identifiers as subexpressions of typeof.
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000634 Variable* variable = expr->AsVariableProxy()->AsVariable();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000635 if (variable != NULL && !variable->is_this() && variable->is_global()) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000636 // For a global variable we build the property reference
637 // <global>.<variable> and perform a (regular non-contextual) property
638 // load to make sure we do not get reference errors.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000639 Slot global(variable, Slot::CONTEXT, Context::GLOBAL_INDEX);
640 Literal key(variable->name());
ager@chromium.org236ad962008-09-25 09:45:57 +0000641 Property property(&global, &key, RelocInfo::kNoPosition);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000642 Reference ref(this, &property);
ager@chromium.org357bf652010-04-12 11:30:10 +0000643 ref.GetValue();
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000644 } else if (variable != NULL && variable->slot() != NULL) {
645 // For a variable that rewrites to a slot, we signal it is the immediate
646 // subexpression of a typeof.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000647 LoadFromSlotCheckForArguments(variable->slot(), INSIDE_TYPEOF);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000648 } else {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000649 // Anything else can be handled normally.
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000650 Load(expr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000651 }
652}
653
654
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000655Reference::Reference(CodeGenerator* cgen,
656 Expression* expression,
657 bool persist_after_get)
658 : cgen_(cgen),
659 expression_(expression),
660 type_(ILLEGAL),
661 persist_after_get_(persist_after_get) {
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000662 // We generally assume that we are not in a spilled scope for most
663 // of the code generator. A failure to ensure this caused issue 815
664 // and this assert is designed to catch similar issues.
665 cgen->frame()->AssertIsNotSpilled();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000666 cgen->LoadReference(this);
667}
668
669
670Reference::~Reference() {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000671 ASSERT(is_unloaded() || is_illegal());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000672}
673
674
ager@chromium.org7c537e22008-10-16 08:43:32 +0000675void CodeGenerator::LoadReference(Reference* ref) {
676 Comment cmnt(masm_, "[ LoadReference");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000677 Expression* e = ref->expression();
678 Property* property = e->AsProperty();
679 Variable* var = e->AsVariableProxy()->AsVariable();
680
681 if (property != NULL) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000682 // The expression is either a property or a variable proxy that rewrites
683 // to a property.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000684 Load(property->obj());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000685 if (property->key()->IsPropertyName()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000686 ref->set_type(Reference::NAMED);
687 } else {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000688 Load(property->key());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000689 ref->set_type(Reference::KEYED);
690 }
691 } else if (var != NULL) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000692 // The expression is a variable proxy that does not rewrite to a
693 // property. Global variables are treated as named property references.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000694 if (var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000695 LoadGlobal();
696 ref->set_type(Reference::NAMED);
697 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000698 ASSERT(var->slot() != NULL);
699 ref->set_type(Reference::SLOT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000700 }
701 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000702 // Anything else is a runtime error.
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000703 Load(e);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000704 frame_->CallRuntime(Runtime::kThrowReferenceError, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000705 }
706}
707
708
ager@chromium.org7c537e22008-10-16 08:43:32 +0000709void CodeGenerator::UnloadReference(Reference* ref) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000710 int size = ref->size();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000711 ref->set_unloaded();
ager@chromium.org357bf652010-04-12 11:30:10 +0000712 if (size == 0) return;
713
714 // Pop a reference from the stack while preserving TOS.
715 VirtualFrame::RegisterAllocationScope scope(this);
716 Comment cmnt(masm_, "[ UnloadReference");
717 if (size > 0) {
718 Register tos = frame_->PopToRegister();
719 frame_->Drop(size);
720 frame_->EmitPush(tos);
721 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000722}
723
724
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000725// ECMA-262, section 9.2, page 30: ToBoolean(). Convert the given
726// register to a boolean in the condition code register. The code
727// may jump to 'false_target' in case the register converts to 'false'.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000728void CodeGenerator::ToBoolean(JumpTarget* true_target,
729 JumpTarget* false_target) {
mads.s.ager31e71382008-08-13 09:32:07 +0000730 // Note: The generated code snippet does not change stack variables.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000731 // Only the condition code should be set.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000732 bool known_smi = frame_->KnownSmiAt(0);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000733 Register tos = frame_->PopToRegister();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000734
735 // Fast case checks
736
mads.s.ager31e71382008-08-13 09:32:07 +0000737 // Check if the value is 'false'.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000738 if (!known_smi) {
739 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
740 __ cmp(tos, ip);
741 false_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000742
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000743 // Check if the value is 'true'.
744 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
745 __ cmp(tos, ip);
746 true_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000747
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000748 // Check if the value is 'undefined'.
749 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
750 __ cmp(tos, ip);
751 false_target->Branch(eq);
752 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000753
mads.s.ager31e71382008-08-13 09:32:07 +0000754 // Check if the value is a smi.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000755 __ cmp(tos, Operand(Smi::FromInt(0)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000756
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000757 if (!known_smi) {
758 false_target->Branch(eq);
759 __ tst(tos, Operand(kSmiTagMask));
760 true_target->Branch(eq);
761
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000762 // Slow case.
763 if (CpuFeatures::IsSupported(VFP3)) {
764 CpuFeatures::Scope scope(VFP3);
765 // Implements the slow case by using ToBooleanStub.
766 // The ToBooleanStub takes a single argument, and
767 // returns a non-zero value for true, or zero for false.
768 // Both the argument value and the return value use the
769 // register assigned to tos_
770 ToBooleanStub stub(tos);
771 frame_->CallStub(&stub, 0);
772 // Convert the result in "tos" to a condition code.
773 __ cmp(tos, Operand(0));
774 } else {
775 // Implements slow case by calling the runtime.
776 frame_->EmitPush(tos);
777 frame_->CallRuntime(Runtime::kToBool, 1);
778 // Convert the result (r0) to a condition code.
779 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
780 __ cmp(r0, ip);
781 }
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000782 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000783
784 cc_reg_ = ne;
785}
786
787
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000788void CodeGenerator::GenericBinaryOperation(Token::Value op,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000789 OverwriteMode overwrite_mode,
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000790 GenerateInlineSmi inline_smi,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000791 int constant_rhs) {
ager@chromium.org357bf652010-04-12 11:30:10 +0000792 // top of virtual frame: y
793 // 2nd elt. on virtual frame : x
794 // result : top of virtual frame
795
796 // Stub is entered with a call: 'return address' is in lr.
797 switch (op) {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000798 case Token::ADD:
799 case Token::SUB:
800 if (inline_smi) {
801 JumpTarget done;
802 Register rhs = frame_->PopToRegister();
803 Register lhs = frame_->PopToRegister(rhs);
804 Register scratch = VirtualFrame::scratch0();
805 __ orr(scratch, rhs, Operand(lhs));
806 // Check they are both small and positive.
807 __ tst(scratch, Operand(kSmiTagMask | 0xc0000000));
808 ASSERT(rhs.is(r0) || lhs.is(r0)); // r0 is free now.
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +0000809 STATIC_ASSERT(kSmiTag == 0);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000810 if (op == Token::ADD) {
811 __ add(r0, lhs, Operand(rhs), LeaveCC, eq);
812 } else {
813 __ sub(r0, lhs, Operand(rhs), LeaveCC, eq);
814 }
815 done.Branch(eq);
816 GenericBinaryOpStub stub(op, overwrite_mode, lhs, rhs, constant_rhs);
817 frame_->SpillAll();
818 frame_->CallStub(&stub, 0);
819 done.Bind();
820 frame_->EmitPush(r0);
821 break;
822 } else {
823 // Fall through!
824 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000825 case Token::BIT_OR:
826 case Token::BIT_AND:
827 case Token::BIT_XOR:
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000828 if (inline_smi) {
829 bool rhs_is_smi = frame_->KnownSmiAt(0);
830 bool lhs_is_smi = frame_->KnownSmiAt(1);
831 Register rhs = frame_->PopToRegister();
832 Register lhs = frame_->PopToRegister(rhs);
833 Register smi_test_reg;
834 Condition cond;
835 if (!rhs_is_smi || !lhs_is_smi) {
836 if (rhs_is_smi) {
837 smi_test_reg = lhs;
838 } else if (lhs_is_smi) {
839 smi_test_reg = rhs;
840 } else {
841 smi_test_reg = VirtualFrame::scratch0();
842 __ orr(smi_test_reg, rhs, Operand(lhs));
843 }
844 // Check they are both Smis.
845 __ tst(smi_test_reg, Operand(kSmiTagMask));
846 cond = eq;
847 } else {
848 cond = al;
849 }
850 ASSERT(rhs.is(r0) || lhs.is(r0)); // r0 is free now.
851 if (op == Token::BIT_OR) {
852 __ orr(r0, lhs, Operand(rhs), LeaveCC, cond);
853 } else if (op == Token::BIT_AND) {
854 __ and_(r0, lhs, Operand(rhs), LeaveCC, cond);
855 } else {
856 ASSERT(op == Token::BIT_XOR);
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +0000857 STATIC_ASSERT(kSmiTag == 0);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000858 __ eor(r0, lhs, Operand(rhs), LeaveCC, cond);
859 }
860 if (cond != al) {
861 JumpTarget done;
862 done.Branch(cond);
863 GenericBinaryOpStub stub(op, overwrite_mode, lhs, rhs, constant_rhs);
864 frame_->SpillAll();
865 frame_->CallStub(&stub, 0);
866 done.Bind();
867 }
868 frame_->EmitPush(r0);
869 break;
870 } else {
871 // Fall through!
872 }
873 case Token::MUL:
874 case Token::DIV:
875 case Token::MOD:
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000876 case Token::SHL:
877 case Token::SHR:
878 case Token::SAR: {
ager@chromium.org357bf652010-04-12 11:30:10 +0000879 Register rhs = frame_->PopToRegister();
880 Register lhs = frame_->PopToRegister(rhs); // Don't pop to rhs register.
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000881 GenericBinaryOpStub stub(op, overwrite_mode, lhs, rhs, constant_rhs);
882 frame_->SpillAll();
883 frame_->CallStub(&stub, 0);
ager@chromium.org357bf652010-04-12 11:30:10 +0000884 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000885 break;
886 }
887
ager@chromium.org357bf652010-04-12 11:30:10 +0000888 case Token::COMMA: {
889 Register scratch = frame_->PopToRegister();
890 // Simply discard left value.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000891 frame_->Drop();
ager@chromium.org357bf652010-04-12 11:30:10 +0000892 frame_->EmitPush(scratch);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000893 break;
ager@chromium.org357bf652010-04-12 11:30:10 +0000894 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000895
896 default:
897 // Other cases should have been handled before this point.
898 UNREACHABLE();
899 break;
900 }
901}
902
903
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000904class DeferredInlineSmiOperation: public DeferredCode {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000905 public:
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000906 DeferredInlineSmiOperation(Token::Value op,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000907 int value,
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000908 bool reversed,
ager@chromium.org357bf652010-04-12 11:30:10 +0000909 OverwriteMode overwrite_mode,
910 Register tos)
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000911 : op_(op),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000912 value_(value),
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000913 reversed_(reversed),
ager@chromium.org357bf652010-04-12 11:30:10 +0000914 overwrite_mode_(overwrite_mode),
915 tos_register_(tos) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000916 set_comment("[ DeferredInlinedSmiOperation");
917 }
918
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000919 virtual void Generate();
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +0000920 // This stub makes explicit calls to SaveRegisters(), RestoreRegisters() and
921 // Exit(). Currently on ARM SaveRegisters() and RestoreRegisters() are empty
922 // methods, it is the responsibility of the deferred code to save and restore
923 // registers.
924 virtual bool AutoSaveAndRestore() { return false; }
925
926 void JumpToNonSmiInput(Condition cond);
927 void JumpToAnswerOutOfRange(Condition cond);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000928
929 private:
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +0000930 void GenerateNonSmiInput();
931 void GenerateAnswerOutOfRange();
932 void WriteNonSmiAnswer(Register answer,
933 Register heap_number,
934 Register scratch);
935
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000936 Token::Value op_;
937 int value_;
938 bool reversed_;
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000939 OverwriteMode overwrite_mode_;
ager@chromium.org357bf652010-04-12 11:30:10 +0000940 Register tos_register_;
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +0000941 Label non_smi_input_;
942 Label answer_out_of_range_;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000943};
944
945
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +0000946// For bit operations we try harder and handle the case where the input is not
947// a Smi but a 32bits integer without calling the generic stub.
948void DeferredInlineSmiOperation::JumpToNonSmiInput(Condition cond) {
949 ASSERT(Token::IsBitOp(op_));
950
951 __ b(cond, &non_smi_input_);
952}
953
954
955// For bit operations the result is always 32bits so we handle the case where
956// the result does not fit in a Smi without calling the generic stub.
957void DeferredInlineSmiOperation::JumpToAnswerOutOfRange(Condition cond) {
958 ASSERT(Token::IsBitOp(op_));
959
960 if ((op_ == Token::SHR) && !CpuFeatures::IsSupported(VFP3)) {
961 // >>> requires an unsigned to double conversion and the non VFP code
962 // does not support this conversion.
963 __ b(cond, entry_label());
964 } else {
965 __ b(cond, &answer_out_of_range_);
966 }
967}
968
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000969
970// On entry the non-constant side of the binary operation is in tos_register_
971// and the constant smi side is nowhere. The tos_register_ is not used by the
972// virtual frame. On exit the answer is in the tos_register_ and the virtual
973// frame is unchanged.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000974void DeferredInlineSmiOperation::Generate() {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000975 VirtualFrame copied_frame(*frame_state()->frame());
976 copied_frame.SpillAll();
977
ager@chromium.org357bf652010-04-12 11:30:10 +0000978 Register lhs = r1;
979 Register rhs = r0;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000980 switch (op_) {
981 case Token::ADD: {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000982 // Revert optimistic add.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000983 if (reversed_) {
ager@chromium.org357bf652010-04-12 11:30:10 +0000984 __ sub(r0, tos_register_, Operand(Smi::FromInt(value_)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000985 __ mov(r1, Operand(Smi::FromInt(value_)));
986 } else {
ager@chromium.org357bf652010-04-12 11:30:10 +0000987 __ sub(r1, tos_register_, Operand(Smi::FromInt(value_)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000988 __ mov(r0, Operand(Smi::FromInt(value_)));
989 }
990 break;
991 }
992
993 case Token::SUB: {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000994 // Revert optimistic sub.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000995 if (reversed_) {
ager@chromium.org357bf652010-04-12 11:30:10 +0000996 __ rsb(r0, tos_register_, Operand(Smi::FromInt(value_)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000997 __ mov(r1, Operand(Smi::FromInt(value_)));
998 } else {
ager@chromium.org357bf652010-04-12 11:30:10 +0000999 __ add(r1, tos_register_, Operand(Smi::FromInt(value_)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001000 __ mov(r0, Operand(Smi::FromInt(value_)));
1001 }
1002 break;
1003 }
1004
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001005 // For these operations there is no optimistic operation that needs to be
1006 // reverted.
1007 case Token::MUL:
1008 case Token::MOD:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001009 case Token::BIT_OR:
1010 case Token::BIT_XOR:
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001011 case Token::BIT_AND:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001012 case Token::SHL:
1013 case Token::SHR:
1014 case Token::SAR: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001015 if (tos_register_.is(r1)) {
1016 __ mov(r0, Operand(Smi::FromInt(value_)));
1017 } else {
1018 ASSERT(tos_register_.is(r0));
1019 __ mov(r1, Operand(Smi::FromInt(value_)));
1020 }
1021 if (reversed_ == tos_register_.is(r1)) {
ager@chromium.org357bf652010-04-12 11:30:10 +00001022 lhs = r0;
1023 rhs = r1;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001024 }
1025 break;
1026 }
1027
1028 default:
ager@chromium.orge2902be2009-06-08 12:21:35 +00001029 // Other cases should have been handled before this point.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001030 UNREACHABLE();
1031 break;
1032 }
1033
ager@chromium.org357bf652010-04-12 11:30:10 +00001034 GenericBinaryOpStub stub(op_, overwrite_mode_, lhs, rhs, value_);
ager@chromium.orge2902be2009-06-08 12:21:35 +00001035 __ CallStub(&stub);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001036
ager@chromium.org357bf652010-04-12 11:30:10 +00001037 // The generic stub returns its value in r0, but that's not
1038 // necessarily what we want. We want whatever the inlined code
1039 // expected, which is that the answer is in the same register as
1040 // the operand was.
1041 __ Move(tos_register_, r0);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001042
1043 // The tos register was not in use for the virtual frame that we
1044 // came into this function with, so we can merge back to that frame
1045 // without trashing it.
1046 copied_frame.MergeTo(frame_state()->frame());
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001047
1048 Exit();
1049
1050 if (non_smi_input_.is_linked()) {
1051 GenerateNonSmiInput();
1052 }
1053
1054 if (answer_out_of_range_.is_linked()) {
1055 GenerateAnswerOutOfRange();
1056 }
1057}
1058
1059
1060// Convert and write the integer answer into heap_number.
1061void DeferredInlineSmiOperation::WriteNonSmiAnswer(Register answer,
1062 Register heap_number,
1063 Register scratch) {
1064 if (CpuFeatures::IsSupported(VFP3)) {
1065 CpuFeatures::Scope scope(VFP3);
1066 __ vmov(s0, answer);
1067 if (op_ == Token::SHR) {
1068 __ vcvt_f64_u32(d0, s0);
1069 } else {
1070 __ vcvt_f64_s32(d0, s0);
1071 }
1072 __ sub(scratch, heap_number, Operand(kHeapObjectTag));
1073 __ vstr(d0, scratch, HeapNumber::kValueOffset);
1074 } else {
1075 WriteInt32ToHeapNumberStub stub(answer, heap_number, scratch);
1076 __ CallStub(&stub);
1077 }
1078}
1079
1080
1081void DeferredInlineSmiOperation::GenerateNonSmiInput() {
1082 // We know the left hand side is not a Smi and the right hand side is an
1083 // immediate value (value_) which can be represented as a Smi. We only
1084 // handle bit operations.
1085 ASSERT(Token::IsBitOp(op_));
1086
1087 if (FLAG_debug_code) {
1088 __ Abort("Should not fall through!");
1089 }
1090
1091 __ bind(&non_smi_input_);
1092 if (FLAG_debug_code) {
1093 __ AbortIfSmi(tos_register_);
1094 }
1095
1096 // This routine uses the registers from r2 to r6. At the moment they are
1097 // not used by the register allocator, but when they are it should use
1098 // SpillAll and MergeTo like DeferredInlineSmiOperation::Generate() above.
1099
1100 Register heap_number_map = r7;
1101 __ LoadRoot(heap_number_map, Heap::kHeapNumberMapRootIndex);
1102 __ ldr(r3, FieldMemOperand(tos_register_, HeapNumber::kMapOffset));
1103 __ cmp(r3, heap_number_map);
1104 // Not a number, fall back to the GenericBinaryOpStub.
1105 __ b(ne, entry_label());
1106
1107 Register int32 = r2;
1108 // Not a 32bits signed int, fall back to the GenericBinaryOpStub.
1109 __ ConvertToInt32(tos_register_, int32, r4, r5, entry_label());
1110
1111 // tos_register_ (r0 or r1): Original heap number.
1112 // int32: signed 32bits int.
1113
1114 Label result_not_a_smi;
1115 int shift_value = value_ & 0x1f;
1116 switch (op_) {
1117 case Token::BIT_OR: __ orr(int32, int32, Operand(value_)); break;
1118 case Token::BIT_XOR: __ eor(int32, int32, Operand(value_)); break;
1119 case Token::BIT_AND: __ and_(int32, int32, Operand(value_)); break;
1120 case Token::SAR:
1121 ASSERT(!reversed_);
1122 if (shift_value != 0) {
1123 __ mov(int32, Operand(int32, ASR, shift_value));
1124 }
1125 break;
1126 case Token::SHR:
1127 ASSERT(!reversed_);
1128 if (shift_value != 0) {
1129 __ mov(int32, Operand(int32, LSR, shift_value), SetCC);
1130 } else {
1131 // SHR is special because it is required to produce a positive answer.
1132 __ cmp(int32, Operand(0));
1133 }
1134 if (CpuFeatures::IsSupported(VFP3)) {
1135 __ b(mi, &result_not_a_smi);
1136 } else {
1137 // Non VFP code cannot convert from unsigned to double, so fall back
1138 // to GenericBinaryOpStub.
1139 __ b(mi, entry_label());
1140 }
1141 break;
1142 case Token::SHL:
1143 ASSERT(!reversed_);
1144 if (shift_value != 0) {
1145 __ mov(int32, Operand(int32, LSL, shift_value));
1146 }
1147 break;
1148 default: UNREACHABLE();
1149 }
1150 // Check that the *signed* result fits in a smi. Not necessary for AND, SAR
1151 // if the shift if more than 0 or SHR if the shit is more than 1.
1152 if (!( (op_ == Token::AND) ||
1153 ((op_ == Token::SAR) && (shift_value > 0)) ||
1154 ((op_ == Token::SHR) && (shift_value > 1)))) {
1155 __ add(r3, int32, Operand(0x40000000), SetCC);
1156 __ b(mi, &result_not_a_smi);
1157 }
1158 __ mov(tos_register_, Operand(int32, LSL, kSmiTagSize));
1159 Exit();
1160
1161 if (result_not_a_smi.is_linked()) {
1162 __ bind(&result_not_a_smi);
1163 if (overwrite_mode_ != OVERWRITE_LEFT) {
1164 ASSERT((overwrite_mode_ == NO_OVERWRITE) ||
1165 (overwrite_mode_ == OVERWRITE_RIGHT));
1166 // If the allocation fails, fall back to the GenericBinaryOpStub.
1167 __ AllocateHeapNumber(r4, r5, r6, heap_number_map, entry_label());
1168 // Nothing can go wrong now, so overwrite tos.
1169 __ mov(tos_register_, Operand(r4));
1170 }
1171
1172 // int32: answer as signed 32bits integer.
1173 // tos_register_: Heap number to write the answer into.
1174 WriteNonSmiAnswer(int32, tos_register_, r3);
1175
1176 Exit();
1177 }
1178}
1179
1180
1181void DeferredInlineSmiOperation::GenerateAnswerOutOfRange() {
1182 // The input from a bitwise operation were Smis but the result cannot fit
1183 // into a Smi, so we store it into a heap number. tos_resgiter_ holds the
1184 // result to be converted.
1185 ASSERT(Token::IsBitOp(op_));
1186 ASSERT(!reversed_);
1187
1188 if (FLAG_debug_code) {
1189 __ Abort("Should not fall through!");
1190 }
1191
1192 __ bind(&answer_out_of_range_);
1193 if (((value_ & 0x1f) == 0) && (op_ == Token::SHR)) {
1194 // >>> 0 is a special case where the result is already tagged but wrong
1195 // because the Smi is negative. We untag it.
1196 __ mov(tos_register_, Operand(tos_register_, ASR, kSmiTagSize));
1197 }
1198
1199 // This routine uses the registers from r2 to r6. At the moment they are
1200 // not used by the register allocator, but when they are it should use
1201 // SpillAll and MergeTo like DeferredInlineSmiOperation::Generate() above.
1202
1203 // Allocate the result heap number.
1204 Register heap_number_map = r7;
1205 Register heap_number = r4;
1206 __ LoadRoot(heap_number_map, Heap::kHeapNumberMapRootIndex);
1207 // If the allocation fails, fall back to the GenericBinaryOpStub.
1208 __ AllocateHeapNumber(heap_number, r5, r6, heap_number_map, entry_label());
1209 WriteNonSmiAnswer(tos_register_, heap_number, r3);
1210 __ mov(tos_register_, Operand(heap_number));
1211
1212 Exit();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001213}
1214
1215
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001216static bool PopCountLessThanEqual2(unsigned int x) {
1217 x &= x - 1;
1218 return (x & (x - 1)) == 0;
1219}
1220
1221
1222// Returns the index of the lowest bit set.
1223static int BitPosition(unsigned x) {
1224 int bit_posn = 0;
1225 while ((x & 0xf) == 0) {
1226 bit_posn += 4;
1227 x >>= 4;
1228 }
1229 while ((x & 1) == 0) {
1230 bit_posn++;
1231 x >>= 1;
1232 }
1233 return bit_posn;
1234}
1235
1236
ricow@chromium.org65fae842010-08-25 15:26:24 +00001237// Can we multiply by x with max two shifts and an add.
1238// This answers yes to all integers from 2 to 10.
1239static bool IsEasyToMultiplyBy(int x) {
1240 if (x < 2) return false; // Avoid special cases.
1241 if (x > (Smi::kMaxValue + 1) >> 2) return false; // Almost always overflows.
1242 if (IsPowerOf2(x)) return true; // Simple shift.
1243 if (PopCountLessThanEqual2(x)) return true; // Shift and add and shift.
1244 if (IsPowerOf2(x + 1)) return true; // Patterns like 11111.
1245 return false;
1246}
1247
1248
1249// Can multiply by anything that IsEasyToMultiplyBy returns true for.
1250// Source and destination may be the same register. This routine does
1251// not set carry and overflow the way a mul instruction would.
1252static void InlineMultiplyByKnownInt(MacroAssembler* masm,
1253 Register source,
1254 Register destination,
1255 int known_int) {
1256 if (IsPowerOf2(known_int)) {
1257 masm->mov(destination, Operand(source, LSL, BitPosition(known_int)));
1258 } else if (PopCountLessThanEqual2(known_int)) {
1259 int first_bit = BitPosition(known_int);
1260 int second_bit = BitPosition(known_int ^ (1 << first_bit));
1261 masm->add(destination, source,
1262 Operand(source, LSL, second_bit - first_bit));
1263 if (first_bit != 0) {
1264 masm->mov(destination, Operand(destination, LSL, first_bit));
1265 }
1266 } else {
1267 ASSERT(IsPowerOf2(known_int + 1)); // Patterns like 1111.
1268 int the_bit = BitPosition(known_int + 1);
1269 masm->rsb(destination, source, Operand(source, LSL, the_bit));
1270 }
1271}
1272
1273
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001274void CodeGenerator::SmiOperation(Token::Value op,
1275 Handle<Object> value,
1276 bool reversed,
1277 OverwriteMode mode) {
ager@chromium.org357bf652010-04-12 11:30:10 +00001278 int int_value = Smi::cast(*value)->value();
1279
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001280 bool both_sides_are_smi = frame_->KnownSmiAt(0);
1281
ager@chromium.org357bf652010-04-12 11:30:10 +00001282 bool something_to_inline;
1283 switch (op) {
1284 case Token::ADD:
1285 case Token::SUB:
1286 case Token::BIT_AND:
1287 case Token::BIT_OR:
1288 case Token::BIT_XOR: {
1289 something_to_inline = true;
1290 break;
1291 }
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001292 case Token::SHL: {
1293 something_to_inline = (both_sides_are_smi || !reversed);
1294 break;
1295 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001296 case Token::SHR:
1297 case Token::SAR: {
1298 if (reversed) {
1299 something_to_inline = false;
1300 } else {
1301 something_to_inline = true;
1302 }
1303 break;
1304 }
1305 case Token::MOD: {
1306 if (reversed || int_value < 2 || !IsPowerOf2(int_value)) {
1307 something_to_inline = false;
1308 } else {
1309 something_to_inline = true;
1310 }
1311 break;
1312 }
1313 case Token::MUL: {
1314 if (!IsEasyToMultiplyBy(int_value)) {
1315 something_to_inline = false;
1316 } else {
1317 something_to_inline = true;
1318 }
1319 break;
1320 }
1321 default: {
1322 something_to_inline = false;
1323 break;
1324 }
1325 }
1326
1327 if (!something_to_inline) {
1328 if (!reversed) {
1329 // Push the rhs onto the virtual frame by putting it in a TOS register.
1330 Register rhs = frame_->GetTOSRegister();
1331 __ mov(rhs, Operand(value));
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001332 frame_->EmitPush(rhs, TypeInfo::Smi());
1333 GenericBinaryOperation(op, mode, GENERATE_INLINE_SMI, int_value);
ager@chromium.org357bf652010-04-12 11:30:10 +00001334 } else {
1335 // Pop the rhs, then push lhs and rhs in the right order. Only performs
1336 // at most one pop, the rest takes place in TOS registers.
1337 Register lhs = frame_->GetTOSRegister(); // Get reg for pushing.
1338 Register rhs = frame_->PopToRegister(lhs); // Don't use lhs for this.
1339 __ mov(lhs, Operand(value));
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001340 frame_->EmitPush(lhs, TypeInfo::Smi());
1341 TypeInfo t = both_sides_are_smi ? TypeInfo::Smi() : TypeInfo::Unknown();
1342 frame_->EmitPush(rhs, t);
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001343 GenericBinaryOperation(op, mode, GENERATE_INLINE_SMI,
1344 GenericBinaryOpStub::kUnknownIntValue);
ager@chromium.org357bf652010-04-12 11:30:10 +00001345 }
1346 return;
1347 }
1348
1349 // We move the top of stack to a register (normally no move is invoved).
1350 Register tos = frame_->PopToRegister();
ager@chromium.org357bf652010-04-12 11:30:10 +00001351 switch (op) {
1352 case Token::ADD: {
1353 DeferredCode* deferred =
1354 new DeferredInlineSmiOperation(op, int_value, reversed, mode, tos);
1355
1356 __ add(tos, tos, Operand(value), SetCC);
1357 deferred->Branch(vs);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001358 if (!both_sides_are_smi) {
1359 __ tst(tos, Operand(kSmiTagMask));
1360 deferred->Branch(ne);
1361 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001362 deferred->BindExit();
1363 frame_->EmitPush(tos);
1364 break;
1365 }
1366
1367 case Token::SUB: {
1368 DeferredCode* deferred =
1369 new DeferredInlineSmiOperation(op, int_value, reversed, mode, tos);
1370
1371 if (reversed) {
1372 __ rsb(tos, tos, Operand(value), SetCC);
1373 } else {
1374 __ sub(tos, tos, Operand(value), SetCC);
1375 }
1376 deferred->Branch(vs);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001377 if (!both_sides_are_smi) {
1378 __ tst(tos, Operand(kSmiTagMask));
1379 deferred->Branch(ne);
1380 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001381 deferred->BindExit();
1382 frame_->EmitPush(tos);
1383 break;
1384 }
1385
1386
1387 case Token::BIT_OR:
1388 case Token::BIT_XOR:
1389 case Token::BIT_AND: {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001390 if (both_sides_are_smi) {
1391 switch (op) {
1392 case Token::BIT_OR: __ orr(tos, tos, Operand(value)); break;
1393 case Token::BIT_XOR: __ eor(tos, tos, Operand(value)); break;
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00001394 case Token::BIT_AND: __ And(tos, tos, Operand(value)); break;
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001395 default: UNREACHABLE();
1396 }
1397 frame_->EmitPush(tos, TypeInfo::Smi());
1398 } else {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001399 DeferredInlineSmiOperation* deferred =
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001400 new DeferredInlineSmiOperation(op, int_value, reversed, mode, tos);
1401 __ tst(tos, Operand(kSmiTagMask));
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001402 deferred->JumpToNonSmiInput(ne);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001403 switch (op) {
1404 case Token::BIT_OR: __ orr(tos, tos, Operand(value)); break;
1405 case Token::BIT_XOR: __ eor(tos, tos, Operand(value)); break;
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00001406 case Token::BIT_AND: __ And(tos, tos, Operand(value)); break;
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001407 default: UNREACHABLE();
1408 }
1409 deferred->BindExit();
1410 TypeInfo result_type =
1411 (op == Token::BIT_AND) ? TypeInfo::Smi() : TypeInfo::Integer32();
1412 frame_->EmitPush(tos, result_type);
ager@chromium.org357bf652010-04-12 11:30:10 +00001413 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001414 break;
1415 }
1416
1417 case Token::SHL:
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001418 if (reversed) {
1419 ASSERT(both_sides_are_smi);
1420 int max_shift = 0;
1421 int max_result = int_value == 0 ? 1 : int_value;
1422 while (Smi::IsValid(max_result << 1)) {
1423 max_shift++;
1424 max_result <<= 1;
1425 }
1426 DeferredCode* deferred =
1427 new DeferredInlineSmiOperation(op, int_value, true, mode, tos);
1428 // Mask off the last 5 bits of the shift operand (rhs). This is part
1429 // of the definition of shift in JS and we know we have a Smi so we
1430 // can safely do this. The masked version gets passed to the
1431 // deferred code, but that makes no difference.
1432 __ and_(tos, tos, Operand(Smi::FromInt(0x1f)));
1433 __ cmp(tos, Operand(Smi::FromInt(max_shift)));
1434 deferred->Branch(ge);
1435 Register scratch = VirtualFrame::scratch0();
1436 __ mov(scratch, Operand(tos, ASR, kSmiTagSize)); // Untag.
1437 __ mov(tos, Operand(Smi::FromInt(int_value))); // Load constant.
1438 __ mov(tos, Operand(tos, LSL, scratch)); // Shift constant.
1439 deferred->BindExit();
1440 TypeInfo result = TypeInfo::Integer32();
1441 frame_->EmitPush(tos, result);
1442 break;
1443 }
1444 // Fall through!
ager@chromium.org357bf652010-04-12 11:30:10 +00001445 case Token::SHR:
1446 case Token::SAR: {
1447 ASSERT(!reversed);
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001448 int shift_value = int_value & 0x1f;
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001449 TypeInfo result = TypeInfo::Number();
1450
1451 if (op == Token::SHR) {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001452 if (shift_value > 1) {
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001453 result = TypeInfo::Smi();
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001454 } else if (shift_value > 0) {
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001455 result = TypeInfo::Integer32();
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00001456 }
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001457 } else if (op == Token::SAR) {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001458 if (shift_value > 0) {
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001459 result = TypeInfo::Smi();
1460 } else {
1461 result = TypeInfo::Integer32();
1462 }
1463 } else {
1464 ASSERT(op == Token::SHL);
1465 result = TypeInfo::Integer32();
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00001466 }
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001467
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001468 DeferredInlineSmiOperation* deferred =
ager@chromium.org357bf652010-04-12 11:30:10 +00001469 new DeferredInlineSmiOperation(op, shift_value, false, mode, tos);
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001470 if (!both_sides_are_smi) {
1471 __ tst(tos, Operand(kSmiTagMask));
1472 deferred->JumpToNonSmiInput(ne);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001473 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001474 switch (op) {
1475 case Token::SHL: {
1476 if (shift_value != 0) {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001477 Register scratch = VirtualFrame::scratch0();
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001478 int adjusted_shift = shift_value - kSmiTagSize;
1479 ASSERT(adjusted_shift >= 0);
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001480
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001481 if (adjusted_shift != 0) {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001482 __ mov(tos, Operand(tos, LSL, adjusted_shift));
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001483 }
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001484 // Check that the *signed* result fits in a smi.
1485 __ add(scratch, tos, Operand(0x40000000), SetCC);
1486 deferred->JumpToAnswerOutOfRange(mi);
1487 __ mov(tos, Operand(tos, LSL, kSmiTagSize));
ager@chromium.org357bf652010-04-12 11:30:10 +00001488 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001489 break;
1490 }
1491 case Token::SHR: {
ager@chromium.org357bf652010-04-12 11:30:10 +00001492 if (shift_value != 0) {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001493 Register scratch = VirtualFrame::scratch0();
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001494 __ mov(scratch, Operand(tos, ASR, kSmiTagSize)); // Remove tag.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001495 __ mov(tos, Operand(scratch, LSR, shift_value));
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001496 if (shift_value == 1) {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001497 // Check that the *unsigned* result fits in a smi.
1498 // Neither of the two high-order bits can be set:
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001499 // - 0x80000000: high bit would be lost when smi tagging
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001500 // - 0x40000000: this number would convert to negative when Smi
1501 // tagging.
1502 // These two cases can only happen with shifts by 0 or 1 when
1503 // handed a valid smi.
1504 __ tst(tos, Operand(0xc0000000));
1505 if (!CpuFeatures::IsSupported(VFP3)) {
1506 // If the unsigned result does not fit in a Smi, we require an
1507 // unsigned to double conversion. Without VFP V8 has to fall
1508 // back to the runtime. The deferred code will expect tos
1509 // to hold the original Smi to be shifted.
1510 __ mov(tos, Operand(scratch, LSL, kSmiTagSize), LeaveCC, ne);
1511 }
1512 deferred->JumpToAnswerOutOfRange(ne);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001513 }
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001514 __ mov(tos, Operand(tos, LSL, kSmiTagSize));
1515 } else {
1516 __ cmp(tos, Operand(0));
1517 deferred->JumpToAnswerOutOfRange(mi);
ager@chromium.org357bf652010-04-12 11:30:10 +00001518 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001519 break;
1520 }
1521 case Token::SAR: {
1522 if (shift_value != 0) {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001523 // Do the shift and the tag removal in one operation. If the shift
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001524 // is 31 bits (the highest possible value) then we emit the
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001525 // instruction as a shift by 0 which in the ARM ISA means shift
1526 // arithmetically by 32.
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001527 __ mov(tos, Operand(tos, ASR, (kSmiTagSize + shift_value) & 0x1f));
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001528 __ mov(tos, Operand(tos, LSL, kSmiTagSize));
ager@chromium.org357bf652010-04-12 11:30:10 +00001529 }
1530 break;
1531 }
1532 default: UNREACHABLE();
1533 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001534 deferred->BindExit();
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001535 frame_->EmitPush(tos, result);
ager@chromium.org357bf652010-04-12 11:30:10 +00001536 break;
1537 }
1538
1539 case Token::MOD: {
1540 ASSERT(!reversed);
1541 ASSERT(int_value >= 2);
1542 ASSERT(IsPowerOf2(int_value));
1543 DeferredCode* deferred =
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001544 new DeferredInlineSmiOperation(op, int_value, reversed, mode, tos);
ager@chromium.org357bf652010-04-12 11:30:10 +00001545 unsigned mask = (0x80000000u | kSmiTagMask);
1546 __ tst(tos, Operand(mask));
1547 deferred->Branch(ne); // Go to deferred code on non-Smis and negative.
1548 mask = (int_value << kSmiTagSize) - 1;
1549 __ and_(tos, tos, Operand(mask));
1550 deferred->BindExit();
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001551 // Mod of positive power of 2 Smi gives a Smi if the lhs is an integer.
1552 frame_->EmitPush(
1553 tos,
1554 both_sides_are_smi ? TypeInfo::Smi() : TypeInfo::Number());
ager@chromium.org357bf652010-04-12 11:30:10 +00001555 break;
1556 }
1557
1558 case Token::MUL: {
1559 ASSERT(IsEasyToMultiplyBy(int_value));
1560 DeferredCode* deferred =
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001561 new DeferredInlineSmiOperation(op, int_value, reversed, mode, tos);
ager@chromium.org357bf652010-04-12 11:30:10 +00001562 unsigned max_smi_that_wont_overflow = Smi::kMaxValue / int_value;
1563 max_smi_that_wont_overflow <<= kSmiTagSize;
1564 unsigned mask = 0x80000000u;
1565 while ((mask & max_smi_that_wont_overflow) == 0) {
1566 mask |= mask >> 1;
1567 }
1568 mask |= kSmiTagMask;
1569 // This does a single mask that checks for a too high value in a
1570 // conservative way and for a non-Smi. It also filters out negative
1571 // numbers, unfortunately, but since this code is inline we prefer
1572 // brevity to comprehensiveness.
1573 __ tst(tos, Operand(mask));
1574 deferred->Branch(ne);
ricow@chromium.org65fae842010-08-25 15:26:24 +00001575 InlineMultiplyByKnownInt(masm_, tos, tos, int_value);
ager@chromium.org357bf652010-04-12 11:30:10 +00001576 deferred->BindExit();
1577 frame_->EmitPush(tos);
1578 break;
1579 }
1580
1581 default:
1582 UNREACHABLE();
1583 break;
1584 }
1585}
1586
1587
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001588void CodeGenerator::Comparison(Condition cc,
1589 Expression* left,
1590 Expression* right,
1591 bool strict) {
ager@chromium.org357bf652010-04-12 11:30:10 +00001592 VirtualFrame::RegisterAllocationScope scope(this);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001593
ager@chromium.org357bf652010-04-12 11:30:10 +00001594 if (left != NULL) Load(left);
1595 if (right != NULL) Load(right);
1596
mads.s.ager31e71382008-08-13 09:32:07 +00001597 // sp[0] : y
1598 // sp[1] : x
1599 // result : cc register
1600
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001601 // Strict only makes sense for equality comparisons.
1602 ASSERT(!strict || cc == eq);
1603
ager@chromium.org357bf652010-04-12 11:30:10 +00001604 Register lhs;
1605 Register rhs;
1606
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001607 bool lhs_is_smi;
1608 bool rhs_is_smi;
1609
ager@chromium.org357bf652010-04-12 11:30:10 +00001610 // We load the top two stack positions into registers chosen by the virtual
1611 // frame. This should keep the register shuffling to a minimum.
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001612 // Implement '>' and '<=' by reversal to obtain ECMA-262 conversion order.
1613 if (cc == gt || cc == le) {
1614 cc = ReverseCondition(cc);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001615 lhs_is_smi = frame_->KnownSmiAt(0);
1616 rhs_is_smi = frame_->KnownSmiAt(1);
ager@chromium.org357bf652010-04-12 11:30:10 +00001617 lhs = frame_->PopToRegister();
1618 rhs = frame_->PopToRegister(lhs); // Don't pop to the same register again!
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001619 } else {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001620 rhs_is_smi = frame_->KnownSmiAt(0);
1621 lhs_is_smi = frame_->KnownSmiAt(1);
ager@chromium.org357bf652010-04-12 11:30:10 +00001622 rhs = frame_->PopToRegister();
1623 lhs = frame_->PopToRegister(rhs); // Don't pop to the same register again!
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001624 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001625
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001626 bool both_sides_are_smi = (lhs_is_smi && rhs_is_smi);
1627
ager@chromium.org357bf652010-04-12 11:30:10 +00001628 ASSERT(rhs.is(r0) || rhs.is(r1));
1629 ASSERT(lhs.is(r0) || lhs.is(r1));
1630
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001631 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001632
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001633 if (!both_sides_are_smi) {
1634 // Now we have the two sides in r0 and r1. We flush any other registers
1635 // because the stub doesn't know about register allocation.
1636 frame_->SpillAll();
1637 Register scratch = VirtualFrame::scratch0();
1638 Register smi_test_reg;
1639 if (lhs_is_smi) {
1640 smi_test_reg = rhs;
1641 } else if (rhs_is_smi) {
1642 smi_test_reg = lhs;
1643 } else {
1644 __ orr(scratch, lhs, Operand(rhs));
1645 smi_test_reg = scratch;
1646 }
1647 __ tst(smi_test_reg, Operand(kSmiTagMask));
1648 JumpTarget smi;
1649 smi.Branch(eq);
1650
1651 // Perform non-smi comparison by stub.
1652 // CompareStub takes arguments in r0 and r1, returns <0, >0 or 0 in r0.
1653 // We call with 0 args because there are 0 on the stack.
ager@chromium.orgb5737492010-07-15 09:29:43 +00001654 CompareStub stub(cc, strict, kBothCouldBeNaN, true, lhs, rhs);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001655 frame_->CallStub(&stub, 0);
1656 __ cmp(r0, Operand(0));
1657 exit.Jump();
1658
1659 smi.Bind();
ager@chromium.org357bf652010-04-12 11:30:10 +00001660 }
1661
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001662 // Do smi comparisons by pointer comparison.
ager@chromium.org357bf652010-04-12 11:30:10 +00001663 __ cmp(lhs, Operand(rhs));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001664
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001665 exit.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001666 cc_reg_ = cc;
1667}
1668
1669
mads.s.ager31e71382008-08-13 09:32:07 +00001670// Call the function on the stack with the given arguments.
ager@chromium.org7c537e22008-10-16 08:43:32 +00001671void CodeGenerator::CallWithArguments(ZoneList<Expression*>* args,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001672 CallFunctionFlags flags,
1673 int position) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001674 // Push the arguments ("left-to-right") on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001675 int arg_count = args->length();
1676 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001677 Load(args->at(i));
mads.s.ager31e71382008-08-13 09:32:07 +00001678 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001679
kasper.lund7276f142008-07-30 08:49:36 +00001680 // Record the position for debugging purposes.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001681 CodeForSourcePosition(position);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001682
kasper.lund7276f142008-07-30 08:49:36 +00001683 // Use the shared code stub to call the function.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001684 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001685 CallFunctionStub call_function(arg_count, in_loop, flags);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001686 frame_->CallStub(&call_function, arg_count + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001687
1688 // Restore context and pop function from the stack.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001689 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001690 frame_->Drop(); // discard the TOS
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001691}
1692
1693
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001694void CodeGenerator::CallApplyLazy(Expression* applicand,
1695 Expression* receiver,
1696 VariableProxy* arguments,
1697 int position) {
1698 // An optimized implementation of expressions of the form
1699 // x.apply(y, arguments).
1700 // If the arguments object of the scope has not been allocated,
1701 // and x.apply is Function.prototype.apply, this optimization
1702 // just copies y and the arguments of the current function on the
1703 // stack, as receiver and arguments, and calls x.
1704 // In the implementation comments, we call x the applicand
1705 // and y the receiver.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001706
1707 ASSERT(ArgumentsMode() == LAZY_ARGUMENTS_ALLOCATION);
1708 ASSERT(arguments->IsArguments());
1709
1710 // Load applicand.apply onto the stack. This will usually
1711 // give us a megamorphic load site. Not super, but it works.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001712 Load(applicand);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001713 Handle<String> name = Factory::LookupAsciiSymbol("apply");
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001714 frame_->Dup();
ager@chromium.orgac091b72010-05-05 07:34:42 +00001715 frame_->CallLoadIC(name, RelocInfo::CODE_TARGET);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001716 frame_->EmitPush(r0);
1717
1718 // Load the receiver and the existing arguments object onto the
1719 // expression stack. Avoid allocating the arguments object here.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001720 Load(receiver);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001721 LoadFromSlot(scope()->arguments()->var()->slot(), NOT_INSIDE_TYPEOF);
1722
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001723 // At this point the top two stack elements are probably in registers
1724 // since they were just loaded. Ensure they are in regs and get the
1725 // regs.
1726 Register receiver_reg = frame_->Peek2();
1727 Register arguments_reg = frame_->Peek();
1728
1729 // From now on the frame is spilled.
1730 frame_->SpillAll();
1731
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001732 // Emit the source position information after having loaded the
1733 // receiver and the arguments.
1734 CodeForSourcePosition(position);
1735 // Contents of the stack at this point:
1736 // sp[0]: arguments object of the current function or the hole.
1737 // sp[1]: receiver
1738 // sp[2]: applicand.apply
1739 // sp[3]: applicand.
1740
1741 // Check if the arguments object has been lazily allocated
1742 // already. If so, just use that instead of copying the arguments
1743 // from the stack. This also deals with cases where a local variable
1744 // named 'arguments' has been introduced.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001745 JumpTarget slow;
1746 Label done;
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001747 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001748 __ cmp(ip, arguments_reg);
1749 slow.Branch(ne);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001750
1751 Label build_args;
1752 // Get rid of the arguments object probe.
1753 frame_->Drop();
1754 // Stack now has 3 elements on it.
1755 // Contents of stack at this point:
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001756 // sp[0]: receiver - in the receiver_reg register.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001757 // sp[1]: applicand.apply
1758 // sp[2]: applicand.
1759
1760 // Check that the receiver really is a JavaScript object.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001761 __ BranchOnSmi(receiver_reg, &build_args);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001762 // We allow all JSObjects including JSFunctions. As long as
1763 // JS_FUNCTION_TYPE is the last instance type and it is right
1764 // after LAST_JS_OBJECT_TYPE, we do not have to check the upper
1765 // bound.
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00001766 STATIC_ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
1767 STATIC_ASSERT(JS_FUNCTION_TYPE == LAST_JS_OBJECT_TYPE + 1);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001768 __ CompareObjectType(receiver_reg, r2, r3, FIRST_JS_OBJECT_TYPE);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001769 __ b(lt, &build_args);
1770
1771 // Check that applicand.apply is Function.prototype.apply.
1772 __ ldr(r0, MemOperand(sp, kPointerSize));
1773 __ BranchOnSmi(r0, &build_args);
1774 __ CompareObjectType(r0, r1, r2, JS_FUNCTION_TYPE);
1775 __ b(ne, &build_args);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001776 Handle<Code> apply_code(Builtins::builtin(Builtins::FunctionApply));
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001777 __ ldr(r1, FieldMemOperand(r0, JSFunction::kCodeEntryOffset));
1778 __ sub(r1, r1, Operand(Code::kHeaderSize - kHeapObjectTag));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001779 __ cmp(r1, Operand(apply_code));
1780 __ b(ne, &build_args);
1781
1782 // Check that applicand is a function.
1783 __ ldr(r1, MemOperand(sp, 2 * kPointerSize));
1784 __ BranchOnSmi(r1, &build_args);
1785 __ CompareObjectType(r1, r2, r3, JS_FUNCTION_TYPE);
1786 __ b(ne, &build_args);
1787
1788 // Copy the arguments to this function possibly from the
1789 // adaptor frame below it.
1790 Label invoke, adapted;
1791 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
1792 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
1793 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
1794 __ b(eq, &adapted);
1795
1796 // No arguments adaptor frame. Copy fixed number of arguments.
1797 __ mov(r0, Operand(scope()->num_parameters()));
1798 for (int i = 0; i < scope()->num_parameters(); i++) {
1799 __ ldr(r2, frame_->ParameterAt(i));
1800 __ push(r2);
1801 }
1802 __ jmp(&invoke);
1803
1804 // Arguments adaptor frame present. Copy arguments from there, but
1805 // avoid copying too many arguments to avoid stack overflows.
1806 __ bind(&adapted);
1807 static const uint32_t kArgumentsLimit = 1 * KB;
1808 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
1809 __ mov(r0, Operand(r0, LSR, kSmiTagSize));
1810 __ mov(r3, r0);
1811 __ cmp(r0, Operand(kArgumentsLimit));
1812 __ b(gt, &build_args);
1813
1814 // Loop through the arguments pushing them onto the execution
1815 // stack. We don't inform the virtual frame of the push, so we don't
1816 // have to worry about getting rid of the elements from the virtual
1817 // frame.
1818 Label loop;
1819 // r3 is a small non-negative integer, due to the test above.
1820 __ cmp(r3, Operand(0));
1821 __ b(eq, &invoke);
1822 // Compute the address of the first argument.
1823 __ add(r2, r2, Operand(r3, LSL, kPointerSizeLog2));
1824 __ add(r2, r2, Operand(kPointerSize));
1825 __ bind(&loop);
1826 // Post-decrement argument address by kPointerSize on each iteration.
1827 __ ldr(r4, MemOperand(r2, kPointerSize, NegPostIndex));
1828 __ push(r4);
1829 __ sub(r3, r3, Operand(1), SetCC);
1830 __ b(gt, &loop);
1831
1832 // Invoke the function.
1833 __ bind(&invoke);
1834 ParameterCount actual(r0);
1835 __ InvokeFunction(r1, actual, CALL_FUNCTION);
1836 // Drop applicand.apply and applicand from the stack, and push
1837 // the result of the function call, but leave the spilled frame
1838 // unchanged, with 3 elements, so it is correct when we compile the
1839 // slow-case code.
1840 __ add(sp, sp, Operand(2 * kPointerSize));
1841 __ push(r0);
1842 // Stack now has 1 element:
1843 // sp[0]: result
1844 __ jmp(&done);
1845
1846 // Slow-case: Allocate the arguments object since we know it isn't
1847 // there, and fall-through to the slow-case where we call
1848 // applicand.apply.
1849 __ bind(&build_args);
1850 // Stack now has 3 elements, because we have jumped from where:
1851 // sp[0]: receiver
1852 // sp[1]: applicand.apply
1853 // sp[2]: applicand.
1854 StoreArgumentsObject(false);
1855
1856 // Stack and frame now have 4 elements.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001857 slow.Bind();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001858
1859 // Generic computation of x.apply(y, args) with no special optimization.
1860 // Flip applicand.apply and applicand on the stack, so
1861 // applicand looks like the receiver of the applicand.apply call.
1862 // Then process it as a normal function call.
1863 __ ldr(r0, MemOperand(sp, 3 * kPointerSize));
1864 __ ldr(r1, MemOperand(sp, 2 * kPointerSize));
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00001865 __ Strd(r0, r1, MemOperand(sp, 2 * kPointerSize));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001866
1867 CallFunctionStub call_function(2, NOT_IN_LOOP, NO_CALL_FUNCTION_FLAGS);
1868 frame_->CallStub(&call_function, 3);
1869 // The function and its two arguments have been dropped.
1870 frame_->Drop(); // Drop the receiver as well.
1871 frame_->EmitPush(r0);
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001872 frame_->SpillAll(); // A spilled frame is also jumping to label done.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001873 // Stack now has 1 element:
1874 // sp[0]: result
1875 __ bind(&done);
1876
1877 // Restore the context register after a call.
1878 __ ldr(cp, frame_->Context());
1879}
1880
1881
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001882void CodeGenerator::Branch(bool if_true, JumpTarget* target) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001883 ASSERT(has_cc());
1884 Condition cc = if_true ? cc_reg_ : NegateCondition(cc_reg_);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001885 target->Branch(cc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001886 cc_reg_ = al;
1887}
1888
1889
ager@chromium.org7c537e22008-10-16 08:43:32 +00001890void CodeGenerator::CheckStack() {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001891 frame_->SpillAll();
ager@chromium.org3811b432009-10-28 14:53:37 +00001892 Comment cmnt(masm_, "[ check stack");
1893 __ LoadRoot(ip, Heap::kStackLimitRootIndex);
1894 // Put the lr setup instruction in the delay slot. kInstrSize is added to
1895 // the implicit 8 byte offset that always applies to operations with pc and
1896 // gives a return address 12 bytes down.
1897 masm_->add(lr, pc, Operand(Assembler::kInstrSize));
1898 masm_->cmp(sp, Operand(ip));
1899 StackCheckStub stub;
1900 // Call the stub if lower.
1901 masm_->mov(pc,
1902 Operand(reinterpret_cast<intptr_t>(stub.GetCode().location()),
1903 RelocInfo::CODE_TARGET),
1904 LeaveCC,
1905 lo);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001906}
1907
1908
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001909void CodeGenerator::VisitStatements(ZoneList<Statement*>* statements) {
1910#ifdef DEBUG
1911 int original_height = frame_->height();
1912#endif
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001913 for (int i = 0; frame_ != NULL && i < statements->length(); i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001914 Visit(statements->at(i));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001915 }
1916 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1917}
1918
1919
ager@chromium.org7c537e22008-10-16 08:43:32 +00001920void CodeGenerator::VisitBlock(Block* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001921#ifdef DEBUG
1922 int original_height = frame_->height();
1923#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001924 Comment cmnt(masm_, "[ Block");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001925 CodeForStatementPosition(node);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001926 node->break_target()->SetExpectedHeight();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001927 VisitStatements(node->statements());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001928 if (node->break_target()->is_linked()) {
1929 node->break_target()->Bind();
1930 }
1931 node->break_target()->Unuse();
1932 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001933}
1934
1935
ager@chromium.org7c537e22008-10-16 08:43:32 +00001936void CodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) {
ager@chromium.org3811b432009-10-28 14:53:37 +00001937 frame_->EmitPush(cp);
ager@chromium.orgac091b72010-05-05 07:34:42 +00001938 frame_->EmitPush(Operand(pairs));
1939 frame_->EmitPush(Operand(Smi::FromInt(is_eval() ? 1 : 0)));
1940
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001941 frame_->CallRuntime(Runtime::kDeclareGlobals, 3);
mads.s.ager31e71382008-08-13 09:32:07 +00001942 // The result is discarded.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001943}
1944
1945
ager@chromium.org7c537e22008-10-16 08:43:32 +00001946void CodeGenerator::VisitDeclaration(Declaration* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001947#ifdef DEBUG
1948 int original_height = frame_->height();
1949#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001950 Comment cmnt(masm_, "[ Declaration");
1951 Variable* var = node->proxy()->var();
1952 ASSERT(var != NULL); // must have been resolved
1953 Slot* slot = var->slot();
1954
1955 // If it was not possible to allocate the variable at compile time,
1956 // we need to "declare" it at runtime to make sure it actually
1957 // exists in the local context.
1958 if (slot != NULL && slot->type() == Slot::LOOKUP) {
1959 // Variables with a "LOOKUP" slot were introduced as non-locals
1960 // during variable resolution and must have mode DYNAMIC.
ager@chromium.org381abbb2009-02-25 13:23:22 +00001961 ASSERT(var->is_dynamic());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001962 // For now, just do a runtime call.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001963 frame_->EmitPush(cp);
ager@chromium.orgac091b72010-05-05 07:34:42 +00001964 frame_->EmitPush(Operand(var->name()));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001965 // Declaration nodes are always declared in only two modes.
1966 ASSERT(node->mode() == Variable::VAR || node->mode() == Variable::CONST);
1967 PropertyAttributes attr = node->mode() == Variable::VAR ? NONE : READ_ONLY;
ager@chromium.orgac091b72010-05-05 07:34:42 +00001968 frame_->EmitPush(Operand(Smi::FromInt(attr)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001969 // Push initial value, if any.
1970 // Note: For variables we must not push an initial value (such as
1971 // 'undefined') because we may have a (legal) redeclaration and we
1972 // must not destroy the current value.
1973 if (node->mode() == Variable::CONST) {
ager@chromium.orgac091b72010-05-05 07:34:42 +00001974 frame_->EmitPushRoot(Heap::kTheHoleValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001975 } else if (node->fun() != NULL) {
ager@chromium.orgac091b72010-05-05 07:34:42 +00001976 Load(node->fun());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001977 } else {
ager@chromium.orgac091b72010-05-05 07:34:42 +00001978 frame_->EmitPush(Operand(0));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001979 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00001980
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001981 frame_->CallRuntime(Runtime::kDeclareContextSlot, 4);
ager@chromium.org7c537e22008-10-16 08:43:32 +00001982 // Ignore the return value (declarations are statements).
ager@chromium.orgac091b72010-05-05 07:34:42 +00001983
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001984 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001985 return;
1986 }
1987
1988 ASSERT(!var->is_global());
1989
1990 // If we have a function or a constant, we need to initialize the variable.
1991 Expression* val = NULL;
1992 if (node->mode() == Variable::CONST) {
1993 val = new Literal(Factory::the_hole_value());
1994 } else {
1995 val = node->fun(); // NULL if we don't have a function
1996 }
1997
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001998
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001999 if (val != NULL) {
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002000 WriteBarrierCharacter wb_info =
2001 val->type()->IsLikelySmi() ? LIKELY_SMI : UNLIKELY_SMI;
2002 if (val->AsLiteral() != NULL) wb_info = NEVER_NEWSPACE;
ager@chromium.orgac091b72010-05-05 07:34:42 +00002003 // Set initial value.
2004 Reference target(this, node->proxy());
2005 Load(val);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002006 target.SetValue(NOT_CONST_INIT, wb_info);
ager@chromium.orgac091b72010-05-05 07:34:42 +00002007
iposva@chromium.org245aa852009-02-10 00:49:54 +00002008 // Get rid of the assigned value (declarations are statements).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002009 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002010 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002011 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002012}
2013
2014
ager@chromium.org7c537e22008-10-16 08:43:32 +00002015void CodeGenerator::VisitExpressionStatement(ExpressionStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002016#ifdef DEBUG
2017 int original_height = frame_->height();
2018#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002019 Comment cmnt(masm_, "[ ExpressionStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002020 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002021 Expression* expression = node->expression();
2022 expression->MarkAsStatement();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002023 Load(expression);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002024 frame_->Drop();
2025 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002026}
2027
2028
ager@chromium.org7c537e22008-10-16 08:43:32 +00002029void CodeGenerator::VisitEmptyStatement(EmptyStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002030#ifdef DEBUG
2031 int original_height = frame_->height();
2032#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002033 Comment cmnt(masm_, "// EmptyStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002034 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002035 // nothing to do
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002036 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002037}
2038
2039
ager@chromium.org7c537e22008-10-16 08:43:32 +00002040void CodeGenerator::VisitIfStatement(IfStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002041#ifdef DEBUG
2042 int original_height = frame_->height();
2043#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002044 Comment cmnt(masm_, "[ IfStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002045 // Generate different code depending on which parts of the if statement
2046 // are present or not.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002047 bool has_then_stm = node->HasThenStatement();
2048 bool has_else_stm = node->HasElseStatement();
2049
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002050 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002051
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002052 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002053 if (has_then_stm && has_else_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00002054 Comment cmnt(masm_, "[ IfThenElse");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002055 JumpTarget then;
2056 JumpTarget else_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002057 // if (cond)
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002058 LoadCondition(node->condition(), &then, &else_, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002059 if (frame_ != NULL) {
2060 Branch(false, &else_);
2061 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002062 // then
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002063 if (frame_ != NULL || then.is_linked()) {
2064 then.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002065 Visit(node->then_statement());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002066 }
2067 if (frame_ != NULL) {
2068 exit.Jump();
2069 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002070 // else
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002071 if (else_.is_linked()) {
2072 else_.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002073 Visit(node->else_statement());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002074 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002075
2076 } else if (has_then_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00002077 Comment cmnt(masm_, "[ IfThen");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002078 ASSERT(!has_else_stm);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002079 JumpTarget then;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002080 // if (cond)
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002081 LoadCondition(node->condition(), &then, &exit, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002082 if (frame_ != NULL) {
2083 Branch(false, &exit);
2084 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002085 // then
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002086 if (frame_ != NULL || then.is_linked()) {
2087 then.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002088 Visit(node->then_statement());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002089 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002090
2091 } else if (has_else_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00002092 Comment cmnt(masm_, "[ IfElse");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002093 ASSERT(!has_then_stm);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002094 JumpTarget else_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002095 // if (!cond)
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002096 LoadCondition(node->condition(), &exit, &else_, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002097 if (frame_ != NULL) {
2098 Branch(true, &exit);
2099 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002100 // else
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002101 if (frame_ != NULL || else_.is_linked()) {
2102 else_.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002103 Visit(node->else_statement());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002104 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002105
2106 } else {
mads.s.ager31e71382008-08-13 09:32:07 +00002107 Comment cmnt(masm_, "[ If");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002108 ASSERT(!has_then_stm && !has_else_stm);
2109 // if (cond)
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002110 LoadCondition(node->condition(), &exit, &exit, false);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002111 if (frame_ != NULL) {
2112 if (has_cc()) {
2113 cc_reg_ = al;
2114 } else {
2115 frame_->Drop();
2116 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002117 }
2118 }
2119
2120 // end
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002121 if (exit.is_linked()) {
2122 exit.Bind();
2123 }
2124 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002125}
2126
2127
ager@chromium.org7c537e22008-10-16 08:43:32 +00002128void CodeGenerator::VisitContinueStatement(ContinueStatement* node) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002129 Comment cmnt(masm_, "[ ContinueStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002130 CodeForStatementPosition(node);
2131 node->target()->continue_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002132}
2133
2134
ager@chromium.org7c537e22008-10-16 08:43:32 +00002135void CodeGenerator::VisitBreakStatement(BreakStatement* node) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002136 Comment cmnt(masm_, "[ BreakStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002137 CodeForStatementPosition(node);
2138 node->target()->break_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002139}
2140
2141
ager@chromium.org7c537e22008-10-16 08:43:32 +00002142void CodeGenerator::VisitReturnStatement(ReturnStatement* node) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002143 Comment cmnt(masm_, "[ ReturnStatement");
mads.s.ager31e71382008-08-13 09:32:07 +00002144
ager@chromium.org4af710e2009-09-15 12:20:11 +00002145 CodeForStatementPosition(node);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002146 Load(node->expression());
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002147 frame_->PopToR0();
2148 frame_->PrepareForReturn();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002149 if (function_return_is_shadowed_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002150 function_return_.Jump();
2151 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002152 // Pop the result from the frame and prepare the frame for
2153 // returning thus making it easier to merge.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00002154 if (function_return_.is_bound()) {
2155 // If the function return label is already bound we reuse the
2156 // code by jumping to the return site.
2157 function_return_.Jump();
2158 } else {
2159 function_return_.Bind();
2160 GenerateReturnSequence();
2161 }
2162 }
2163}
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002164
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00002165
2166void CodeGenerator::GenerateReturnSequence() {
2167 if (FLAG_trace) {
2168 // Push the return value on the stack as the parameter.
2169 // Runtime::TraceExit returns the parameter as it is.
2170 frame_->EmitPush(r0);
2171 frame_->CallRuntime(Runtime::kTraceExit, 1);
2172 }
2173
2174#ifdef DEBUG
2175 // Add a label for checking the size of the code used for returning.
2176 Label check_exit_codesize;
2177 masm_->bind(&check_exit_codesize);
2178#endif
2179 // Make sure that the constant pool is not emitted inside of the return
2180 // sequence.
2181 { Assembler::BlockConstPoolScope block_const_pool(masm_);
2182 // Tear down the frame which will restore the caller's frame pointer and
2183 // the link register.
2184 frame_->Exit();
2185
2186 // Here we use masm_-> instead of the __ macro to avoid the code coverage
2187 // tool from instrumenting as we rely on the code size here.
2188 int32_t sp_delta = (scope()->num_parameters() + 1) * kPointerSize;
2189 masm_->add(sp, sp, Operand(sp_delta));
2190 masm_->Jump(lr);
2191 DeleteFrame();
2192
2193#ifdef DEBUG
2194 // Check that the size of the code used for returning matches what is
2195 // expected by the debugger. If the sp_delts above cannot be encoded in
2196 // the add instruction the add will generate two instructions.
2197 int return_sequence_length =
2198 masm_->InstructionsGeneratedSince(&check_exit_codesize);
2199 CHECK(return_sequence_length ==
2200 Assembler::kJSReturnSequenceInstructions ||
2201 return_sequence_length ==
2202 Assembler::kJSReturnSequenceInstructions + 1);
2203#endif
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002204 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002205}
2206
2207
ager@chromium.org7c537e22008-10-16 08:43:32 +00002208void CodeGenerator::VisitWithEnterStatement(WithEnterStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002209#ifdef DEBUG
2210 int original_height = frame_->height();
2211#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002212 Comment cmnt(masm_, "[ WithEnterStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002213 CodeForStatementPosition(node);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002214 Load(node->expression());
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002215 if (node->is_catch_block()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002216 frame_->CallRuntime(Runtime::kPushCatchContext, 1);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002217 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002218 frame_->CallRuntime(Runtime::kPushContext, 1);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002219 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002220#ifdef DEBUG
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002221 JumpTarget verified_true;
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00002222 __ cmp(r0, cp);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002223 verified_true.Branch(eq);
2224 __ stop("PushContext: r0 is expected to be the same as cp");
2225 verified_true.Bind();
2226#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002227 // Update context local.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002228 __ str(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002229 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002230}
2231
2232
ager@chromium.org7c537e22008-10-16 08:43:32 +00002233void CodeGenerator::VisitWithExitStatement(WithExitStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002234#ifdef DEBUG
2235 int original_height = frame_->height();
2236#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002237 Comment cmnt(masm_, "[ WithExitStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002238 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002239 // Pop context.
2240 __ ldr(cp, ContextOperand(cp, Context::PREVIOUS_INDEX));
2241 // Update context local.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002242 __ str(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002243 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002244}
2245
2246
ager@chromium.org7c537e22008-10-16 08:43:32 +00002247void CodeGenerator::VisitSwitchStatement(SwitchStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002248#ifdef DEBUG
2249 int original_height = frame_->height();
2250#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002251 Comment cmnt(masm_, "[ SwitchStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002252 CodeForStatementPosition(node);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002253 node->break_target()->SetExpectedHeight();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002254
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002255 Load(node->tag());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002256
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002257 JumpTarget next_test;
2258 JumpTarget fall_through;
2259 JumpTarget default_entry;
2260 JumpTarget default_exit(JumpTarget::BIDIRECTIONAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002261 ZoneList<CaseClause*>* cases = node->cases();
2262 int length = cases->length();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002263 CaseClause* default_clause = NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002264
2265 for (int i = 0; i < length; i++) {
2266 CaseClause* clause = cases->at(i);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002267 if (clause->is_default()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002268 // Remember the default clause and compile it at the end.
2269 default_clause = clause;
2270 continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002271 }
2272
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002273 Comment cmnt(masm_, "[ Case clause");
2274 // Compile the test.
2275 next_test.Bind();
2276 next_test.Unuse();
2277 // Duplicate TOS.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00002278 frame_->Dup();
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00002279 Comparison(eq, NULL, clause->label(), true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002280 Branch(false, &next_test);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002281
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002282 // Before entering the body from the test, remove the switch value from
2283 // the stack.
2284 frame_->Drop();
2285
2286 // Label the body so that fall through is enabled.
2287 if (i > 0 && cases->at(i - 1)->is_default()) {
2288 default_exit.Bind();
2289 } else {
2290 fall_through.Bind();
2291 fall_through.Unuse();
2292 }
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002293 VisitStatements(clause->statements());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002294
2295 // If control flow can fall through from the body, jump to the next body
2296 // or the end of the statement.
2297 if (frame_ != NULL) {
2298 if (i < length - 1 && cases->at(i + 1)->is_default()) {
2299 default_entry.Jump();
2300 } else {
2301 fall_through.Jump();
2302 }
2303 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002304 }
2305
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002306 // The final "test" removes the switch value.
2307 next_test.Bind();
2308 frame_->Drop();
2309
2310 // If there is a default clause, compile it.
2311 if (default_clause != NULL) {
2312 Comment cmnt(masm_, "[ Default clause");
2313 default_entry.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002314 VisitStatements(default_clause->statements());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002315 // If control flow can fall out of the default and there is a case after
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00002316 // it, jump to that case's body.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002317 if (frame_ != NULL && default_exit.is_bound()) {
2318 default_exit.Jump();
2319 }
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002320 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002321
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002322 if (fall_through.is_linked()) {
2323 fall_through.Bind();
2324 }
2325
2326 if (node->break_target()->is_linked()) {
2327 node->break_target()->Bind();
2328 }
2329 node->break_target()->Unuse();
2330 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002331}
2332
2333
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002334void CodeGenerator::VisitDoWhileStatement(DoWhileStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002335#ifdef DEBUG
2336 int original_height = frame_->height();
2337#endif
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002338 Comment cmnt(masm_, "[ DoWhileStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002339 CodeForStatementPosition(node);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002340 node->break_target()->SetExpectedHeight();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002341 JumpTarget body(JumpTarget::BIDIRECTIONAL);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00002342 IncrementLoopNesting();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002343
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002344 // Label the top of the loop for the backward CFG edge. If the test
2345 // is always true we can use the continue target, and if the test is
2346 // always false there is no need.
2347 ConditionAnalysis info = AnalyzeCondition(node->cond());
2348 switch (info) {
2349 case ALWAYS_TRUE:
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002350 node->continue_target()->SetExpectedHeight();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002351 node->continue_target()->Bind();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002352 break;
2353 case ALWAYS_FALSE:
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002354 node->continue_target()->SetExpectedHeight();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002355 break;
2356 case DONT_KNOW:
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002357 node->continue_target()->SetExpectedHeight();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002358 body.Bind();
2359 break;
2360 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002361
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002362 CheckStack(); // TODO(1222600): ignore if body contains calls.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002363 Visit(node->body());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002364
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00002365 // Compile the test.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002366 switch (info) {
2367 case ALWAYS_TRUE:
2368 // If control can fall off the end of the body, jump back to the
2369 // top.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002370 if (has_valid_frame()) {
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002371 node->continue_target()->Jump();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002372 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002373 break;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002374 case ALWAYS_FALSE:
2375 // If we have a continue in the body, we only have to bind its
2376 // jump target.
2377 if (node->continue_target()->is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002378 node->continue_target()->Bind();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002379 }
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002380 break;
2381 case DONT_KNOW:
2382 // We have to compile the test expression if it can be reached by
2383 // control flow falling out of the body or via continue.
2384 if (node->continue_target()->is_linked()) {
2385 node->continue_target()->Bind();
2386 }
2387 if (has_valid_frame()) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002388 Comment cmnt(masm_, "[ DoWhileCondition");
2389 CodeForDoWhileConditionPosition(node);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002390 LoadCondition(node->cond(), &body, node->break_target(), true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002391 if (has_valid_frame()) {
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002392 // A invalid frame here indicates that control did not
2393 // fall out of the test expression.
2394 Branch(true, &body);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002395 }
2396 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002397 break;
2398 }
2399
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002400 if (node->break_target()->is_linked()) {
2401 node->break_target()->Bind();
2402 }
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00002403 DecrementLoopNesting();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002404 ASSERT(!has_valid_frame() || frame_->height() == original_height);
2405}
2406
2407
2408void CodeGenerator::VisitWhileStatement(WhileStatement* node) {
2409#ifdef DEBUG
2410 int original_height = frame_->height();
2411#endif
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002412 Comment cmnt(masm_, "[ WhileStatement");
2413 CodeForStatementPosition(node);
2414
2415 // If the test is never true and has no side effects there is no need
2416 // to compile the test or body.
2417 ConditionAnalysis info = AnalyzeCondition(node->cond());
2418 if (info == ALWAYS_FALSE) return;
2419
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002420 node->break_target()->SetExpectedHeight();
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00002421 IncrementLoopNesting();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002422
2423 // Label the top of the loop with the continue target for the backward
2424 // CFG edge.
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002425 node->continue_target()->SetExpectedHeight();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002426 node->continue_target()->Bind();
2427
2428 if (info == DONT_KNOW) {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00002429 JumpTarget body(JumpTarget::BIDIRECTIONAL);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002430 LoadCondition(node->cond(), &body, node->break_target(), true);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002431 if (has_valid_frame()) {
2432 // A NULL frame indicates that control did not fall out of the
2433 // test expression.
2434 Branch(false, node->break_target());
2435 }
2436 if (has_valid_frame() || body.is_linked()) {
2437 body.Bind();
2438 }
2439 }
2440
2441 if (has_valid_frame()) {
2442 CheckStack(); // TODO(1222600): ignore if body contains calls.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002443 Visit(node->body());
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002444
2445 // If control flow can fall out of the body, jump back to the top.
2446 if (has_valid_frame()) {
2447 node->continue_target()->Jump();
2448 }
2449 }
2450 if (node->break_target()->is_linked()) {
2451 node->break_target()->Bind();
2452 }
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00002453 DecrementLoopNesting();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002454 ASSERT(!has_valid_frame() || frame_->height() == original_height);
2455}
2456
2457
2458void CodeGenerator::VisitForStatement(ForStatement* node) {
2459#ifdef DEBUG
2460 int original_height = frame_->height();
2461#endif
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002462 Comment cmnt(masm_, "[ ForStatement");
2463 CodeForStatementPosition(node);
2464 if (node->init() != NULL) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002465 Visit(node->init());
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002466 }
2467
2468 // If the test is never true there is no need to compile the test or
2469 // body.
2470 ConditionAnalysis info = AnalyzeCondition(node->cond());
2471 if (info == ALWAYS_FALSE) return;
2472
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002473 node->break_target()->SetExpectedHeight();
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00002474 IncrementLoopNesting();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002475
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00002476 // We know that the loop index is a smi if it is not modified in the
2477 // loop body and it is checked against a constant limit in the loop
2478 // condition. In this case, we reset the static type information of the
2479 // loop index to smi before compiling the body, the update expression, and
2480 // the bottom check of the loop condition.
2481 TypeInfoCodeGenState type_info_scope(this,
2482 node->is_fast_smi_loop() ?
2483 node->loop_variable()->slot() :
2484 NULL,
2485 TypeInfo::Smi());
2486
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002487 // If there is no update statement, label the top of the loop with the
2488 // continue target, otherwise with the loop target.
2489 JumpTarget loop(JumpTarget::BIDIRECTIONAL);
2490 if (node->next() == NULL) {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002491 node->continue_target()->SetExpectedHeight();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002492 node->continue_target()->Bind();
2493 } else {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002494 node->continue_target()->SetExpectedHeight();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002495 loop.Bind();
2496 }
2497
2498 // If the test is always true, there is no need to compile it.
2499 if (info == DONT_KNOW) {
2500 JumpTarget body;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002501 LoadCondition(node->cond(), &body, node->break_target(), true);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002502 if (has_valid_frame()) {
2503 Branch(false, node->break_target());
2504 }
2505 if (has_valid_frame() || body.is_linked()) {
2506 body.Bind();
2507 }
2508 }
2509
2510 if (has_valid_frame()) {
2511 CheckStack(); // TODO(1222600): ignore if body contains calls.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002512 Visit(node->body());
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002513
2514 if (node->next() == NULL) {
2515 // If there is no update statement and control flow can fall out
2516 // of the loop, jump directly to the continue label.
2517 if (has_valid_frame()) {
2518 node->continue_target()->Jump();
2519 }
2520 } else {
2521 // If there is an update statement and control flow can reach it
2522 // via falling out of the body of the loop or continuing, we
2523 // compile the update statement.
2524 if (node->continue_target()->is_linked()) {
2525 node->continue_target()->Bind();
2526 }
2527 if (has_valid_frame()) {
2528 // Record source position of the statement as this code which is
2529 // after the code for the body actually belongs to the loop
2530 // statement and not the body.
2531 CodeForStatementPosition(node);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002532 Visit(node->next());
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002533 loop.Jump();
2534 }
2535 }
2536 }
2537 if (node->break_target()->is_linked()) {
2538 node->break_target()->Bind();
2539 }
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00002540 DecrementLoopNesting();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002541 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002542}
2543
2544
ager@chromium.org7c537e22008-10-16 08:43:32 +00002545void CodeGenerator::VisitForInStatement(ForInStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002546#ifdef DEBUG
2547 int original_height = frame_->height();
2548#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002549 Comment cmnt(masm_, "[ ForInStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002550 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002551
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002552 JumpTarget primitive;
2553 JumpTarget jsobject;
2554 JumpTarget fixed_array;
2555 JumpTarget entry(JumpTarget::BIDIRECTIONAL);
2556 JumpTarget end_del_check;
2557 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002558
2559 // Get the object to enumerate over (converted to JSObject).
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002560 Load(node->enumerable());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002561
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002562 VirtualFrame::SpilledScope spilled_scope(frame_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002563 // Both SpiderMonkey and kjs ignore null and undefined in contrast
2564 // to the specification. 12.6.4 mandates a call to ToObject.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002565 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002566 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
2567 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002568 exit.Branch(eq);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002569 __ LoadRoot(ip, Heap::kNullValueRootIndex);
2570 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002571 exit.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002572
2573 // Stack layout in body:
2574 // [iteration counter (Smi)]
2575 // [length of array]
2576 // [FixedArray]
2577 // [Map or 0]
2578 // [Object]
2579
2580 // Check if enumerable is already a JSObject
2581 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002582 primitive.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002583 __ CompareObjectType(r0, r1, r1, FIRST_JS_OBJECT_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002584 jsobject.Branch(hs);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002585
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002586 primitive.Bind();
2587 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002588 frame_->InvokeBuiltin(Builtins::TO_OBJECT, CALL_JS, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002589
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002590 jsobject.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002591 // Get the set of properties (as a FixedArray or Map).
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00002592 // r0: value to be iterated over
2593 frame_->EmitPush(r0); // Push the object being iterated over.
2594
2595 // Check cache validity in generated code. This is a fast case for
2596 // the JSObject::IsSimpleEnum cache validity checks. If we cannot
2597 // guarantee cache validity, call the runtime system to check cache
2598 // validity or get the property names in a fixed array.
2599 JumpTarget call_runtime;
2600 JumpTarget loop(JumpTarget::BIDIRECTIONAL);
2601 JumpTarget check_prototype;
2602 JumpTarget use_cache;
2603 __ mov(r1, Operand(r0));
2604 loop.Bind();
2605 // Check that there are no elements.
2606 __ ldr(r2, FieldMemOperand(r1, JSObject::kElementsOffset));
2607 __ LoadRoot(r4, Heap::kEmptyFixedArrayRootIndex);
2608 __ cmp(r2, r4);
2609 call_runtime.Branch(ne);
2610 // Check that instance descriptors are not empty so that we can
2611 // check for an enum cache. Leave the map in r3 for the subsequent
2612 // prototype load.
2613 __ ldr(r3, FieldMemOperand(r1, HeapObject::kMapOffset));
2614 __ ldr(r2, FieldMemOperand(r3, Map::kInstanceDescriptorsOffset));
2615 __ LoadRoot(ip, Heap::kEmptyDescriptorArrayRootIndex);
2616 __ cmp(r2, ip);
2617 call_runtime.Branch(eq);
2618 // Check that there in an enum cache in the non-empty instance
2619 // descriptors. This is the case if the next enumeration index
2620 // field does not contain a smi.
2621 __ ldr(r2, FieldMemOperand(r2, DescriptorArray::kEnumerationIndexOffset));
2622 __ tst(r2, Operand(kSmiTagMask));
2623 call_runtime.Branch(eq);
2624 // For all objects but the receiver, check that the cache is empty.
2625 // r4: empty fixed array root.
2626 __ cmp(r1, r0);
2627 check_prototype.Branch(eq);
2628 __ ldr(r2, FieldMemOperand(r2, DescriptorArray::kEnumCacheBridgeCacheOffset));
2629 __ cmp(r2, r4);
2630 call_runtime.Branch(ne);
2631 check_prototype.Bind();
2632 // Load the prototype from the map and loop if non-null.
2633 __ ldr(r1, FieldMemOperand(r3, Map::kPrototypeOffset));
2634 __ LoadRoot(ip, Heap::kNullValueRootIndex);
2635 __ cmp(r1, ip);
2636 loop.Branch(ne);
2637 // The enum cache is valid. Load the map of the object being
2638 // iterated over and use the cache for the iteration.
2639 __ ldr(r0, FieldMemOperand(r0, HeapObject::kMapOffset));
2640 use_cache.Jump();
2641
2642 call_runtime.Bind();
2643 // Call the runtime to get the property names for the object.
2644 frame_->EmitPush(r0); // push the object (slot 4) for the runtime call
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002645 frame_->CallRuntime(Runtime::kGetPropertyNamesFast, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002646
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00002647 // If we got a map from the runtime call, we can do a fast
2648 // modification check. Otherwise, we got a fixed array, and we have
2649 // to do a slow check.
2650 // r0: map or fixed array (result from call to
2651 // Runtime::kGetPropertyNamesFast)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002652 __ mov(r2, Operand(r0));
2653 __ ldr(r1, FieldMemOperand(r2, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002654 __ LoadRoot(ip, Heap::kMetaMapRootIndex);
2655 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002656 fixed_array.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002657
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00002658 use_cache.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002659 // Get enum cache
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00002660 // r0: map (either the result from a call to
2661 // Runtime::kGetPropertyNamesFast or has been fetched directly from
2662 // the object)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002663 __ mov(r1, Operand(r0));
2664 __ ldr(r1, FieldMemOperand(r1, Map::kInstanceDescriptorsOffset));
2665 __ ldr(r1, FieldMemOperand(r1, DescriptorArray::kEnumerationIndexOffset));
2666 __ ldr(r2,
2667 FieldMemOperand(r1, DescriptorArray::kEnumCacheBridgeCacheOffset));
2668
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002669 frame_->EmitPush(r0); // map
2670 frame_->EmitPush(r2); // enum cache bridge cache
mads.s.ager31e71382008-08-13 09:32:07 +00002671 __ ldr(r0, FieldMemOperand(r2, FixedArray::kLengthOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002672 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002673 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002674 frame_->EmitPush(r0);
2675 entry.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002676
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002677 fixed_array.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002678 __ mov(r1, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002679 frame_->EmitPush(r1); // insert 0 in place of Map
2680 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002681
2682 // Push the length of the array and the initial index onto the stack.
mads.s.ager31e71382008-08-13 09:32:07 +00002683 __ ldr(r0, FieldMemOperand(r0, FixedArray::kLengthOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002684 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002685 __ mov(r0, Operand(Smi::FromInt(0))); // init index
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002686 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002687
2688 // Condition.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002689 entry.Bind();
mads.s.ager31e71382008-08-13 09:32:07 +00002690 // sp[0] : index
2691 // sp[1] : array/enum cache length
2692 // sp[2] : array or enum cache
2693 // sp[3] : 0 or map
2694 // sp[4] : enumerable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002695 // Grab the current frame's height for the break and continue
2696 // targets only after all the state is pushed on the frame.
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00002697 node->break_target()->SetExpectedHeight();
2698 node->continue_target()->SetExpectedHeight();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002699
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00002700 // Load the current count to r0, load the length to r1.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00002701 __ Ldrd(r0, r1, frame_->ElementAt(0));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00002702 __ cmp(r0, r1); // compare to the array length
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002703 node->break_target()->Branch(hs);
2704
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002705 // Get the i'th entry of the array.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002706 __ ldr(r2, frame_->ElementAt(2));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002707 __ add(r2, r2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
2708 __ ldr(r3, MemOperand(r2, r0, LSL, kPointerSizeLog2 - kSmiTagSize));
2709
2710 // Get Map or 0.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002711 __ ldr(r2, frame_->ElementAt(3));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002712 // Check if this (still) matches the map of the enumerable.
2713 // If not, we have to filter the key.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002714 __ ldr(r1, frame_->ElementAt(4));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002715 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
2716 __ cmp(r1, Operand(r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002717 end_del_check.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002718
2719 // Convert the entry to a string (or null if it isn't a property anymore).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002720 __ ldr(r0, frame_->ElementAt(4)); // push enumerable
2721 frame_->EmitPush(r0);
2722 frame_->EmitPush(r3); // push entry
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002723 frame_->InvokeBuiltin(Builtins::FILTER_KEY, CALL_JS, 2);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002724 __ mov(r3, Operand(r0), SetCC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002725 // If the property has been removed while iterating, we just skip it.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002726 node->continue_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002727
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002728 end_del_check.Bind();
2729 // Store the entry in the 'each' expression and take another spin in the
2730 // loop. r3: i'th entry of the enum cache (or string there of)
2731 frame_->EmitPush(r3); // push entry
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002732 { VirtualFrame::RegisterAllocationScope scope(this);
2733 Reference each(this, node->each());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002734 if (!each.is_illegal()) {
mads.s.ager31e71382008-08-13 09:32:07 +00002735 if (each.size() > 0) {
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002736 // Loading a reference may leave the frame in an unspilled state.
2737 frame_->SpillAll(); // Sync stack to memory.
2738 // Get the value (under the reference on the stack) from memory.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002739 __ ldr(r0, frame_->ElementAt(each.size()));
2740 frame_->EmitPush(r0);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002741 each.SetValue(NOT_CONST_INIT, UNLIKELY_SMI);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002742 frame_->Drop(2); // The result of the set and the extra pushed value.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002743 } else {
2744 // If the reference was to a slot we rely on the convenient property
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002745 // that it doesn't matter whether a value (eg, ebx pushed above) is
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002746 // right on top of or right underneath a zero-sized reference.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002747 each.SetValue(NOT_CONST_INIT, UNLIKELY_SMI);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002748 frame_->Drop(1); // Drop the result of the set operation.
mads.s.ager31e71382008-08-13 09:32:07 +00002749 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002750 }
2751 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002752 // Body.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002753 CheckStack(); // TODO(1222600): ignore if body contains calls.
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002754 { VirtualFrame::RegisterAllocationScope scope(this);
2755 Visit(node->body());
2756 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002757
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002758 // Next. Reestablish a spilled frame in case we are coming here via
2759 // a continue in the body.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002760 node->continue_target()->Bind();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002761 frame_->SpillAll();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002762 frame_->EmitPop(r0);
2763 __ add(r0, r0, Operand(Smi::FromInt(1)));
2764 frame_->EmitPush(r0);
2765 entry.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002766
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002767 // Cleanup. No need to spill because VirtualFrame::Drop is safe for
2768 // any frame.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002769 node->break_target()->Bind();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002770 frame_->Drop(5);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002771
2772 // Exit.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002773 exit.Bind();
2774 node->continue_target()->Unuse();
2775 node->break_target()->Unuse();
2776 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002777}
2778
2779
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002780void CodeGenerator::VisitTryCatchStatement(TryCatchStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002781#ifdef DEBUG
2782 int original_height = frame_->height();
2783#endif
ager@chromium.org357bf652010-04-12 11:30:10 +00002784 VirtualFrame::SpilledScope spilled_scope(frame_);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002785 Comment cmnt(masm_, "[ TryCatchStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002786 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002787
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002788 JumpTarget try_block;
2789 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002790
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002791 try_block.Call();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002792 // --- Catch block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002793 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002794
2795 // Store the caught exception in the catch variable.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002796 Variable* catch_var = node->catch_var()->var();
2797 ASSERT(catch_var != NULL && catch_var->slot() != NULL);
2798 StoreToSlot(catch_var->slot(), NOT_CONST_INIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002799
2800 // Remove the exception from the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002801 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002802
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002803 { VirtualFrame::RegisterAllocationScope scope(this);
2804 VisitStatements(node->catch_block()->statements());
2805 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002806 if (frame_ != NULL) {
2807 exit.Jump();
2808 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002809
2810
2811 // --- Try block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002812 try_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002813
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002814 frame_->PushTryHandler(TRY_CATCH_HANDLER);
2815 int handler_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002816
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002817 // Shadow the labels for all escapes from the try block, including
2818 // returns. During shadowing, the original label is hidden as the
2819 // LabelShadow and operations on the original actually affect the
2820 // shadowing label.
2821 //
2822 // We should probably try to unify the escaping labels and the return
2823 // label.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002824 int nof_escapes = node->escaping_targets()->length();
2825 List<ShadowTarget*> shadows(1 + nof_escapes);
2826
2827 // Add the shadow target for the function return.
2828 static const int kReturnShadowIndex = 0;
2829 shadows.Add(new ShadowTarget(&function_return_));
2830 bool function_return_was_shadowed = function_return_is_shadowed_;
2831 function_return_is_shadowed_ = true;
2832 ASSERT(shadows[kReturnShadowIndex]->other_target() == &function_return_);
2833
2834 // Add the remaining shadow targets.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002835 for (int i = 0; i < nof_escapes; i++) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002836 shadows.Add(new ShadowTarget(node->escaping_targets()->at(i)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002837 }
2838
2839 // Generate code for the statements in the try block.
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002840 { VirtualFrame::RegisterAllocationScope scope(this);
2841 VisitStatements(node->try_block()->statements());
2842 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002843
2844 // Stop the introduced shadowing and count the number of required unlinks.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002845 // After shadowing stops, the original labels are unshadowed and the
2846 // LabelShadows represent the formerly shadowing labels.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002847 bool has_unlinks = false;
2848 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002849 shadows[i]->StopShadowing();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002850 has_unlinks = has_unlinks || shadows[i]->is_linked();
2851 }
2852 function_return_is_shadowed_ = function_return_was_shadowed;
2853
2854 // Get an external reference to the handler address.
2855 ExternalReference handler_address(Top::k_handler_address);
2856
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002857 // If we can fall off the end of the try block, unlink from try chain.
2858 if (has_valid_frame()) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002859 // The next handler address is on top of the frame. Unlink from
2860 // the handler list and drop the rest of this handler from the
2861 // frame.
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00002862 STATIC_ASSERT(StackHandlerConstants::kNextOffset == 0);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002863 frame_->EmitPop(r1); // r0 can contain the return value.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002864 __ mov(r3, Operand(handler_address));
2865 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002866 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002867 if (has_unlinks) {
2868 exit.Jump();
2869 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002870 }
2871
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002872 // Generate unlink code for the (formerly) shadowing labels that have been
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002873 // jumped to. Deallocate each shadow target.
2874 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002875 if (shadows[i]->is_linked()) {
mads.s.ager31e71382008-08-13 09:32:07 +00002876 // Unlink from try chain;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002877 shadows[i]->Bind();
2878 // Because we can be jumping here (to spilled code) from unspilled
2879 // code, we need to reestablish a spilled frame at this block.
2880 frame_->SpillAll();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002881
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002882 // Reload sp from the top handler, because some statements that we
2883 // break from (eg, for...in) may have left stuff on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002884 __ mov(r3, Operand(handler_address));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002885 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002886 frame_->Forget(frame_->height() - handler_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002887
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00002888 STATIC_ASSERT(StackHandlerConstants::kNextOffset == 0);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002889 frame_->EmitPop(r1); // r0 can contain the return value.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002890 __ str(r1, MemOperand(r3));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002891 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002892
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002893 if (!function_return_is_shadowed_ && i == kReturnShadowIndex) {
2894 frame_->PrepareForReturn();
2895 }
2896 shadows[i]->other_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002897 }
2898 }
2899
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002900 exit.Bind();
2901 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002902}
2903
2904
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002905void CodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002906#ifdef DEBUG
2907 int original_height = frame_->height();
2908#endif
ager@chromium.org357bf652010-04-12 11:30:10 +00002909 VirtualFrame::SpilledScope spilled_scope(frame_);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002910 Comment cmnt(masm_, "[ TryFinallyStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002911 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002912
2913 // State: Used to keep track of reason for entering the finally
2914 // block. Should probably be extended to hold information for
2915 // break/continue from within the try block.
2916 enum { FALLING, THROWING, JUMPING };
2917
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002918 JumpTarget try_block;
2919 JumpTarget finally_block;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002920
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002921 try_block.Call();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002922
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002923 frame_->EmitPush(r0); // save exception object on the stack
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002924 // In case of thrown exceptions, this is where we continue.
2925 __ mov(r2, Operand(Smi::FromInt(THROWING)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002926 finally_block.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002927
2928 // --- Try block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002929 try_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002930
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002931 frame_->PushTryHandler(TRY_FINALLY_HANDLER);
2932 int handler_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002933
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002934 // Shadow the labels for all escapes from the try block, including
2935 // returns. Shadowing hides the original label as the LabelShadow and
2936 // operations on the original actually affect the shadowing label.
2937 //
2938 // We should probably try to unify the escaping labels and the return
2939 // label.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002940 int nof_escapes = node->escaping_targets()->length();
2941 List<ShadowTarget*> shadows(1 + nof_escapes);
2942
2943 // Add the shadow target for the function return.
2944 static const int kReturnShadowIndex = 0;
2945 shadows.Add(new ShadowTarget(&function_return_));
2946 bool function_return_was_shadowed = function_return_is_shadowed_;
2947 function_return_is_shadowed_ = true;
2948 ASSERT(shadows[kReturnShadowIndex]->other_target() == &function_return_);
2949
2950 // Add the remaining shadow targets.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002951 for (int i = 0; i < nof_escapes; i++) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002952 shadows.Add(new ShadowTarget(node->escaping_targets()->at(i)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002953 }
2954
2955 // Generate code for the statements in the try block.
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00002956 { VirtualFrame::RegisterAllocationScope scope(this);
2957 VisitStatements(node->try_block()->statements());
2958 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002959
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002960 // Stop the introduced shadowing and count the number of required unlinks.
2961 // After shadowing stops, the original labels are unshadowed and the
2962 // LabelShadows represent the formerly shadowing labels.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002963 int nof_unlinks = 0;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002964 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002965 shadows[i]->StopShadowing();
2966 if (shadows[i]->is_linked()) nof_unlinks++;
2967 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002968 function_return_is_shadowed_ = function_return_was_shadowed;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002969
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002970 // Get an external reference to the handler address.
2971 ExternalReference handler_address(Top::k_handler_address);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002972
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002973 // If we can fall off the end of the try block, unlink from the try
2974 // chain and set the state on the frame to FALLING.
2975 if (has_valid_frame()) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002976 // The next handler address is on top of the frame.
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00002977 STATIC_ASSERT(StackHandlerConstants::kNextOffset == 0);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002978 frame_->EmitPop(r1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002979 __ mov(r3, Operand(handler_address));
2980 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002981 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002982
2983 // Fake a top of stack value (unneeded when FALLING) and set the
2984 // state in r2, then jump around the unlink blocks if any.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002985 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002986 frame_->EmitPush(r0);
2987 __ mov(r2, Operand(Smi::FromInt(FALLING)));
2988 if (nof_unlinks > 0) {
2989 finally_block.Jump();
2990 }
2991 }
2992
2993 // Generate code to unlink and set the state for the (formerly)
2994 // shadowing targets that have been jumped to.
2995 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002996 if (shadows[i]->is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002997 // If we have come from the shadowed return, the return value is
2998 // in (a non-refcounted reference to) r0. We must preserve it
2999 // until it is pushed.
3000 //
3001 // Because we can be jumping here (to spilled code) from
3002 // unspilled code, we need to reestablish a spilled frame at
3003 // this block.
3004 shadows[i]->Bind();
3005 frame_->SpillAll();
3006
3007 // Reload sp from the top handler, because some statements that
3008 // we break from (eg, for...in) may have left stuff on the
3009 // stack.
3010 __ mov(r3, Operand(handler_address));
3011 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003012 frame_->Forget(frame_->height() - handler_height);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003013
3014 // Unlink this handler and drop it from the frame. The next
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003015 // handler address is currently on top of the frame.
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00003016 STATIC_ASSERT(StackHandlerConstants::kNextOffset == 0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003017 frame_->EmitPop(r1);
3018 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003019 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003020
3021 if (i == kReturnShadowIndex) {
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003022 // If this label shadowed the function return, materialize the
3023 // return value on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003024 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003025 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003026 // Fake TOS for targets that shadowed breaks and continues.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003027 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003028 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003029 }
3030 __ mov(r2, Operand(Smi::FromInt(JUMPING + i)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003031 if (--nof_unlinks > 0) {
3032 // If this is not the last unlink block, jump around the next.
3033 finally_block.Jump();
3034 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003035 }
3036 }
3037
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003038 // --- Finally block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003039 finally_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003040
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003041 // Push the state on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003042 frame_->EmitPush(r2);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003043
3044 // We keep two elements on the stack - the (possibly faked) result
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003045 // and the state - while evaluating the finally block.
3046 //
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003047 // Generate code for the statements in the finally block.
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00003048 { VirtualFrame::RegisterAllocationScope scope(this);
3049 VisitStatements(node->finally_block()->statements());
3050 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003051
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003052 if (has_valid_frame()) {
3053 // Restore state and return value or faked TOS.
3054 frame_->EmitPop(r2);
3055 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003056 }
3057
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003058 // Generate code to jump to the right destination for all used
3059 // formerly shadowing targets. Deallocate each shadow target.
3060 for (int i = 0; i < shadows.length(); i++) {
3061 if (has_valid_frame() && shadows[i]->is_bound()) {
3062 JumpTarget* original = shadows[i]->other_target();
3063 __ cmp(r2, Operand(Smi::FromInt(JUMPING + i)));
3064 if (!function_return_is_shadowed_ && i == kReturnShadowIndex) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003065 JumpTarget skip;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003066 skip.Branch(ne);
3067 frame_->PrepareForReturn();
3068 original->Jump();
3069 skip.Bind();
3070 } else {
3071 original->Branch(eq);
3072 }
3073 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003074 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003075
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003076 if (has_valid_frame()) {
3077 // Check if we need to rethrow the exception.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003078 JumpTarget exit;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003079 __ cmp(r2, Operand(Smi::FromInt(THROWING)));
3080 exit.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003081
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003082 // Rethrow exception.
3083 frame_->EmitPush(r0);
3084 frame_->CallRuntime(Runtime::kReThrow, 1);
3085
3086 // Done.
3087 exit.Bind();
3088 }
3089 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003090}
3091
3092
ager@chromium.org7c537e22008-10-16 08:43:32 +00003093void CodeGenerator::VisitDebuggerStatement(DebuggerStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003094#ifdef DEBUG
3095 int original_height = frame_->height();
3096#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003097 Comment cmnt(masm_, "[ DebuggerStatament");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003098 CodeForStatementPosition(node);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003099#ifdef ENABLE_DEBUGGER_SUPPORT
ager@chromium.org5c838252010-02-19 08:53:10 +00003100 frame_->DebugBreak();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003101#endif
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003102 // Ignore the return value.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003103 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003104}
3105
3106
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00003107void CodeGenerator::InstantiateFunction(
3108 Handle<SharedFunctionInfo> function_info) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003109 // Use the fast case closure allocation code that allocates in new
3110 // space for nested functions that don't need literals cloning.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00003111 if (scope()->is_function_scope() && function_info->num_literals() == 0) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003112 FastNewClosureStub stub;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003113 frame_->EmitPush(Operand(function_info));
3114 frame_->SpillAll();
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003115 frame_->CallStub(&stub, 1);
3116 frame_->EmitPush(r0);
3117 } else {
3118 // Create a new closure.
3119 frame_->EmitPush(cp);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003120 frame_->EmitPush(Operand(function_info));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003121 frame_->CallRuntime(Runtime::kNewClosure, 2);
3122 frame_->EmitPush(r0);
3123 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003124}
3125
3126
ager@chromium.org7c537e22008-10-16 08:43:32 +00003127void CodeGenerator::VisitFunctionLiteral(FunctionLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003128#ifdef DEBUG
3129 int original_height = frame_->height();
3130#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003131 Comment cmnt(masm_, "[ FunctionLiteral");
3132
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00003133 // Build the function info and instantiate it.
3134 Handle<SharedFunctionInfo> function_info =
3135 Compiler::BuildFunctionInfo(node, script(), this);
kasper.lund212ac232008-07-16 07:07:30 +00003136 // Check for stack-overflow exception.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003137 if (HasStackOverflow()) {
3138 ASSERT(frame_->height() == original_height);
3139 return;
3140 }
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00003141 InstantiateFunction(function_info);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003142 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003143}
3144
3145
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00003146void CodeGenerator::VisitSharedFunctionInfoLiteral(
3147 SharedFunctionInfoLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003148#ifdef DEBUG
3149 int original_height = frame_->height();
3150#endif
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00003151 Comment cmnt(masm_, "[ SharedFunctionInfoLiteral");
3152 InstantiateFunction(node->shared_function_info());
ager@chromium.orgac091b72010-05-05 07:34:42 +00003153 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003154}
3155
3156
ager@chromium.org7c537e22008-10-16 08:43:32 +00003157void CodeGenerator::VisitConditional(Conditional* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003158#ifdef DEBUG
3159 int original_height = frame_->height();
3160#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003161 Comment cmnt(masm_, "[ Conditional");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003162 JumpTarget then;
3163 JumpTarget else_;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003164 LoadCondition(node->condition(), &then, &else_, true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003165 if (has_valid_frame()) {
3166 Branch(false, &else_);
3167 }
3168 if (has_valid_frame() || then.is_linked()) {
3169 then.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003170 Load(node->then_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003171 }
3172 if (else_.is_linked()) {
3173 JumpTarget exit;
3174 if (has_valid_frame()) exit.Jump();
3175 else_.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003176 Load(node->else_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003177 if (exit.is_linked()) exit.Bind();
3178 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003179 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003180}
3181
3182
ager@chromium.org7c537e22008-10-16 08:43:32 +00003183void CodeGenerator::LoadFromSlot(Slot* slot, TypeofState typeof_state) {
3184 if (slot->type() == Slot::LOOKUP) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00003185 ASSERT(slot->var()->is_dynamic());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003186
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003187 // JumpTargets do not yet support merging frames so the frame must be
3188 // spilled when jumping to these targets.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003189 JumpTarget slow;
3190 JumpTarget done;
ager@chromium.org381abbb2009-02-25 13:23:22 +00003191
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00003192 // Generate fast case for loading from slots that correspond to
3193 // local/global variables or arguments unless they are shadowed by
3194 // eval-introduced bindings.
3195 EmitDynamicLoadFromSlotFastCase(slot,
3196 typeof_state,
3197 &slow,
3198 &done);
ager@chromium.org381abbb2009-02-25 13:23:22 +00003199
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003200 slow.Bind();
3201 frame_->EmitPush(cp);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003202 frame_->EmitPush(Operand(slot->var()->name()));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003203
ager@chromium.org7c537e22008-10-16 08:43:32 +00003204 if (typeof_state == INSIDE_TYPEOF) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003205 frame_->CallRuntime(Runtime::kLoadContextSlotNoReferenceError, 2);
ager@chromium.org7c537e22008-10-16 08:43:32 +00003206 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003207 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003208 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00003209
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003210 done.Bind();
3211 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003212
3213 } else {
ager@chromium.org357bf652010-04-12 11:30:10 +00003214 Register scratch = VirtualFrame::scratch0();
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003215 TypeInfo info = type_info(slot);
3216 frame_->EmitPush(SlotOperand(slot, scratch), info);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003217
ager@chromium.org7c537e22008-10-16 08:43:32 +00003218 if (slot->var()->mode() == Variable::CONST) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003219 // Const slots may contain 'the hole' value (the constant hasn't been
3220 // initialized yet) which needs to be converted into the 'undefined'
3221 // value.
3222 Comment cmnt(masm_, "[ Unhole const");
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003223 Register tos = frame_->PopToRegister();
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003224 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003225 __ cmp(tos, ip);
3226 __ LoadRoot(tos, Heap::kUndefinedValueRootIndex, eq);
3227 frame_->EmitPush(tos);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003228 }
3229 }
3230}
3231
3232
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003233void CodeGenerator::LoadFromSlotCheckForArguments(Slot* slot,
3234 TypeofState state) {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003235 VirtualFrame::RegisterAllocationScope scope(this);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003236 LoadFromSlot(slot, state);
3237
3238 // Bail out quickly if we're not using lazy arguments allocation.
3239 if (ArgumentsMode() != LAZY_ARGUMENTS_ALLOCATION) return;
3240
3241 // ... or if the slot isn't a non-parameter arguments slot.
3242 if (slot->type() == Slot::PARAMETER || !slot->is_arguments()) return;
3243
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003244 // Load the loaded value from the stack into a register but leave it on the
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003245 // stack.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003246 Register tos = frame_->Peek();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003247
3248 // If the loaded value is the sentinel that indicates that we
3249 // haven't loaded the arguments object yet, we need to do it now.
3250 JumpTarget exit;
3251 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003252 __ cmp(tos, ip);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003253 exit.Branch(ne);
3254 frame_->Drop();
3255 StoreArgumentsObject(false);
3256 exit.Bind();
3257}
3258
3259
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003260void CodeGenerator::StoreToSlot(Slot* slot, InitState init_state) {
3261 ASSERT(slot != NULL);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003262 VirtualFrame::RegisterAllocationScope scope(this);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003263 if (slot->type() == Slot::LOOKUP) {
3264 ASSERT(slot->var()->is_dynamic());
3265
3266 // For now, just do a runtime call.
3267 frame_->EmitPush(cp);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003268 frame_->EmitPush(Operand(slot->var()->name()));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003269
3270 if (init_state == CONST_INIT) {
3271 // Same as the case for a normal store, but ignores attribute
3272 // (e.g. READ_ONLY) of context slot so that we can initialize
3273 // const properties (introduced via eval("const foo = (some
3274 // expr);")). Also, uses the current function context instead of
3275 // the top context.
3276 //
3277 // Note that we must declare the foo upon entry of eval(), via a
3278 // context slot declaration, but we cannot initialize it at the
3279 // same time, because the const declaration may be at the end of
3280 // the eval code (sigh...) and the const variable may have been
3281 // used before (where its value is 'undefined'). Thus, we can only
3282 // do the initialization when we actually encounter the expression
3283 // and when the expression operands are defined and valid, and
3284 // thus we need the split into 2 operations: declaration of the
3285 // context slot followed by initialization.
3286 frame_->CallRuntime(Runtime::kInitializeConstContextSlot, 3);
3287 } else {
3288 frame_->CallRuntime(Runtime::kStoreContextSlot, 3);
3289 }
3290 // Storing a variable must keep the (new) value on the expression
3291 // stack. This is necessary for compiling assignment expressions.
3292 frame_->EmitPush(r0);
3293
3294 } else {
3295 ASSERT(!slot->var()->is_dynamic());
ager@chromium.org357bf652010-04-12 11:30:10 +00003296 Register scratch = VirtualFrame::scratch0();
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003297 Register scratch2 = VirtualFrame::scratch1();
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003298
ager@chromium.org357bf652010-04-12 11:30:10 +00003299 // The frame must be spilled when branching to this target.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003300 JumpTarget exit;
ager@chromium.org357bf652010-04-12 11:30:10 +00003301
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003302 if (init_state == CONST_INIT) {
3303 ASSERT(slot->var()->mode() == Variable::CONST);
3304 // Only the first const initialization must be executed (the slot
3305 // still contains 'the hole' value). When the assignment is
3306 // executed, the code is identical to a normal store (see below).
3307 Comment cmnt(masm_, "[ Init const");
ager@chromium.org357bf652010-04-12 11:30:10 +00003308 __ ldr(scratch, SlotOperand(slot, scratch));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003309 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00003310 __ cmp(scratch, ip);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003311 exit.Branch(ne);
3312 }
3313
3314 // We must execute the store. Storing a variable must keep the
3315 // (new) value on the stack. This is necessary for compiling
3316 // assignment expressions.
3317 //
3318 // Note: We will reach here even with slot->var()->mode() ==
3319 // Variable::CONST because of const declarations which will
3320 // initialize consts to 'the hole' value and by doing so, end up
3321 // calling this code. r2 may be loaded with context; used below in
3322 // RecordWrite.
ager@chromium.org357bf652010-04-12 11:30:10 +00003323 Register tos = frame_->Peek();
3324 __ str(tos, SlotOperand(slot, scratch));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003325 if (slot->type() == Slot::CONTEXT) {
3326 // Skip write barrier if the written value is a smi.
ager@chromium.org357bf652010-04-12 11:30:10 +00003327 __ tst(tos, Operand(kSmiTagMask));
3328 // We don't use tos any more after here.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003329 exit.Branch(eq);
ager@chromium.org357bf652010-04-12 11:30:10 +00003330 // scratch is loaded with context when calling SlotOperand above.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003331 int offset = FixedArray::kHeaderSize + slot->index() * kPointerSize;
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003332 // We need an extra register. Until we have a way to do that in the
3333 // virtual frame we will cheat and ask for a free TOS register.
3334 Register scratch3 = frame_->GetTOSRegister();
3335 __ RecordWrite(scratch, Operand(offset), scratch2, scratch3);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003336 }
3337 // If we definitely did not jump over the assignment, we do not need
3338 // to bind the exit label. Doing so can defeat peephole
3339 // optimization.
3340 if (init_state == CONST_INIT || slot->type() == Slot::CONTEXT) {
3341 exit.Bind();
3342 }
3343 }
3344}
3345
3346
ager@chromium.org381abbb2009-02-25 13:23:22 +00003347void CodeGenerator::LoadFromGlobalSlotCheckExtensions(Slot* slot,
3348 TypeofState typeof_state,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003349 JumpTarget* slow) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00003350 // Check that no extension objects have been created by calls to
3351 // eval from the current scope to the global scope.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003352 Register tmp = frame_->scratch0();
3353 Register tmp2 = frame_->scratch1();
ager@chromium.org381abbb2009-02-25 13:23:22 +00003354 Register context = cp;
3355 Scope* s = scope();
3356 while (s != NULL) {
3357 if (s->num_heap_slots() > 0) {
3358 if (s->calls_eval()) {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003359 frame_->SpillAll();
ager@chromium.org381abbb2009-02-25 13:23:22 +00003360 // Check that extension is NULL.
3361 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
3362 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003363 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00003364 }
3365 // Load next context in chain.
3366 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
3367 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
3368 context = tmp;
3369 }
3370 // If no outer scope calls eval, we do not need to check more
3371 // context extensions.
3372 if (!s->outer_scope_calls_eval() || s->is_eval_scope()) break;
3373 s = s->outer_scope();
3374 }
3375
3376 if (s->is_eval_scope()) {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003377 frame_->SpillAll();
ager@chromium.org381abbb2009-02-25 13:23:22 +00003378 Label next, fast;
ager@chromium.org357bf652010-04-12 11:30:10 +00003379 __ Move(tmp, context);
ager@chromium.org381abbb2009-02-25 13:23:22 +00003380 __ bind(&next);
3381 // Terminate at global context.
3382 __ ldr(tmp2, FieldMemOperand(tmp, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003383 __ LoadRoot(ip, Heap::kGlobalContextMapRootIndex);
3384 __ cmp(tmp2, ip);
ager@chromium.org381abbb2009-02-25 13:23:22 +00003385 __ b(eq, &fast);
3386 // Check that extension is NULL.
3387 __ ldr(tmp2, ContextOperand(tmp, Context::EXTENSION_INDEX));
3388 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003389 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00003390 // Load next context in chain.
3391 __ ldr(tmp, ContextOperand(tmp, Context::CLOSURE_INDEX));
3392 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
3393 __ b(&next);
3394 __ bind(&fast);
3395 }
3396
ager@chromium.org381abbb2009-02-25 13:23:22 +00003397 // Load the global object.
3398 LoadGlobal();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003399 // Setup the name register and call load IC.
ager@chromium.orgac091b72010-05-05 07:34:42 +00003400 frame_->CallLoadIC(slot->var()->name(),
3401 typeof_state == INSIDE_TYPEOF
3402 ? RelocInfo::CODE_TARGET
3403 : RelocInfo::CODE_TARGET_CONTEXT);
ager@chromium.org381abbb2009-02-25 13:23:22 +00003404}
3405
3406
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00003407void CodeGenerator::EmitDynamicLoadFromSlotFastCase(Slot* slot,
3408 TypeofState typeof_state,
3409 JumpTarget* slow,
3410 JumpTarget* done) {
3411 // Generate fast-case code for variables that might be shadowed by
3412 // eval-introduced variables. Eval is used a lot without
3413 // introducing variables. In those cases, we do not want to
3414 // perform a runtime call for all variables in the scope
3415 // containing the eval.
3416 if (slot->var()->mode() == Variable::DYNAMIC_GLOBAL) {
3417 LoadFromGlobalSlotCheckExtensions(slot, typeof_state, slow);
3418 frame_->SpillAll();
3419 done->Jump();
3420
3421 } else if (slot->var()->mode() == Variable::DYNAMIC_LOCAL) {
3422 frame_->SpillAll();
3423 Slot* potential_slot = slot->var()->local_if_not_shadowed()->slot();
3424 Expression* rewrite = slot->var()->local_if_not_shadowed()->rewrite();
3425 if (potential_slot != NULL) {
3426 // Generate fast case for locals that rewrite to slots.
3427 __ ldr(r0,
3428 ContextSlotOperandCheckExtensions(potential_slot,
3429 r1,
3430 r2,
3431 slow));
3432 if (potential_slot->var()->mode() == Variable::CONST) {
3433 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
3434 __ cmp(r0, ip);
3435 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
3436 }
3437 done->Jump();
3438 } else if (rewrite != NULL) {
3439 // Generate fast case for argument loads.
3440 Property* property = rewrite->AsProperty();
3441 if (property != NULL) {
3442 VariableProxy* obj_proxy = property->obj()->AsVariableProxy();
3443 Literal* key_literal = property->key()->AsLiteral();
3444 if (obj_proxy != NULL &&
3445 key_literal != NULL &&
3446 obj_proxy->IsArguments() &&
3447 key_literal->handle()->IsSmi()) {
3448 // Load arguments object if there are no eval-introduced
3449 // variables. Then load the argument from the arguments
3450 // object using keyed load.
3451 __ ldr(r0,
3452 ContextSlotOperandCheckExtensions(obj_proxy->var()->slot(),
3453 r1,
3454 r2,
3455 slow));
3456 frame_->EmitPush(r0);
3457 __ mov(r1, Operand(key_literal->handle()));
3458 frame_->EmitPush(r1);
3459 EmitKeyedLoad();
3460 done->Jump();
3461 }
3462 }
3463 }
3464 }
3465}
3466
3467
ager@chromium.org7c537e22008-10-16 08:43:32 +00003468void CodeGenerator::VisitSlot(Slot* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003469#ifdef DEBUG
3470 int original_height = frame_->height();
3471#endif
ager@chromium.org7c537e22008-10-16 08:43:32 +00003472 Comment cmnt(masm_, "[ Slot");
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003473 LoadFromSlotCheckForArguments(node, NOT_INSIDE_TYPEOF);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003474 ASSERT_EQ(original_height + 1, frame_->height());
ager@chromium.org7c537e22008-10-16 08:43:32 +00003475}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003476
ager@chromium.org7c537e22008-10-16 08:43:32 +00003477
3478void CodeGenerator::VisitVariableProxy(VariableProxy* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003479#ifdef DEBUG
3480 int original_height = frame_->height();
3481#endif
ager@chromium.org7c537e22008-10-16 08:43:32 +00003482 Comment cmnt(masm_, "[ VariableProxy");
3483
3484 Variable* var = node->var();
3485 Expression* expr = var->rewrite();
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003486 if (expr != NULL) {
3487 Visit(expr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003488 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +00003489 ASSERT(var->is_global());
3490 Reference ref(this, node);
ager@chromium.org357bf652010-04-12 11:30:10 +00003491 ref.GetValue();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003492 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003493 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003494}
3495
3496
ager@chromium.org7c537e22008-10-16 08:43:32 +00003497void CodeGenerator::VisitLiteral(Literal* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003498#ifdef DEBUG
3499 int original_height = frame_->height();
3500#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003501 Comment cmnt(masm_, "[ Literal");
ager@chromium.org357bf652010-04-12 11:30:10 +00003502 Register reg = frame_->GetTOSRegister();
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003503 bool is_smi = node->handle()->IsSmi();
ager@chromium.org357bf652010-04-12 11:30:10 +00003504 __ mov(reg, Operand(node->handle()));
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003505 frame_->EmitPush(reg, is_smi ? TypeInfo::Smi() : TypeInfo::Unknown());
ager@chromium.orgac091b72010-05-05 07:34:42 +00003506 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003507}
3508
3509
ager@chromium.org7c537e22008-10-16 08:43:32 +00003510void CodeGenerator::VisitRegExpLiteral(RegExpLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003511#ifdef DEBUG
3512 int original_height = frame_->height();
3513#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003514 Comment cmnt(masm_, "[ RexExp Literal");
3515
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003516 Register tmp = VirtualFrame::scratch0();
3517 // Free up a TOS register that can be used to push the literal.
3518 Register literal = frame_->GetTOSRegister();
3519
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003520 // Retrieve the literal array and check the allocated entry.
3521
3522 // Load the function of this activation.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003523 __ ldr(tmp, frame_->Function());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003524
3525 // Load the literals array of the function.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003526 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kLiteralsOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003527
3528 // Load the literal at the ast saved index.
3529 int literal_offset =
3530 FixedArray::kHeaderSize + node->literal_index() * kPointerSize;
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003531 __ ldr(literal, FieldMemOperand(tmp, literal_offset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003532
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003533 JumpTarget materialized;
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003534 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003535 __ cmp(literal, ip);
3536 // This branch locks the virtual frame at the done label to match the
3537 // one we have here, where the literal register is not on the stack and
3538 // nothing is spilled.
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003539 materialized.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003540
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003541 // If the entry is undefined we call the runtime system to compute
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003542 // the literal.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003543 // literal array (0)
3544 frame_->EmitPush(tmp);
3545 // literal index (1)
3546 frame_->EmitPush(Operand(Smi::FromInt(node->literal_index())));
3547 // RegExp pattern (2)
3548 frame_->EmitPush(Operand(node->pattern()));
3549 // RegExp flags (3)
3550 frame_->EmitPush(Operand(node->flags()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003551 frame_->CallRuntime(Runtime::kMaterializeRegExpLiteral, 4);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003552 __ Move(literal, r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003553
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003554 materialized.Bind();
3555
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003556 frame_->EmitPush(literal);
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003557 int size = JSRegExp::kSize + JSRegExp::kInObjectFieldCount * kPointerSize;
3558 frame_->EmitPush(Operand(Smi::FromInt(size)));
3559 frame_->CallRuntime(Runtime::kAllocateInNewSpace, 1);
3560 // TODO(lrn): Use AllocateInNewSpace macro with fallback to runtime.
3561 // r0 is newly allocated space.
3562
3563 // Reuse literal variable with (possibly) a new register, still holding
3564 // the materialized boilerplate.
3565 literal = frame_->PopToRegister(r0);
3566
3567 __ CopyFields(r0, literal, tmp.bit(), size / kPointerSize);
3568
3569 // Push the clone.
3570 frame_->EmitPush(r0);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003571 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003572}
3573
3574
ager@chromium.org7c537e22008-10-16 08:43:32 +00003575void CodeGenerator::VisitObjectLiteral(ObjectLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003576#ifdef DEBUG
3577 int original_height = frame_->height();
3578#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003579 Comment cmnt(masm_, "[ ObjectLiteral");
3580
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003581 Register literal = frame_->GetTOSRegister();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003582 // Load the function of this activation.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003583 __ ldr(literal, frame_->Function());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003584 // Literal array.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003585 __ ldr(literal, FieldMemOperand(literal, JSFunction::kLiteralsOffset));
3586 frame_->EmitPush(literal);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003587 // Literal index.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003588 frame_->EmitPush(Operand(Smi::FromInt(node->literal_index())));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003589 // Constant properties.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003590 frame_->EmitPush(Operand(node->constant_properties()));
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00003591 // Should the object literal have fast elements?
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003592 frame_->EmitPush(Operand(Smi::FromInt(node->fast_elements() ? 1 : 0)));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003593 if (node->depth() > 1) {
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00003594 frame_->CallRuntime(Runtime::kCreateObjectLiteral, 4);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003595 } else {
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00003596 frame_->CallRuntime(Runtime::kCreateObjectLiteralShallow, 4);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003597 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003598 frame_->EmitPush(r0); // save the result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003599 for (int i = 0; i < node->properties()->length(); i++) {
ager@chromium.org5c838252010-02-19 08:53:10 +00003600 // At the start of each iteration, the top of stack contains
3601 // the newly created object literal.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003602 ObjectLiteral::Property* property = node->properties()->at(i);
3603 Literal* key = property->key();
3604 Expression* value = property->value();
3605 switch (property->kind()) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003606 case ObjectLiteral::Property::CONSTANT:
3607 break;
3608 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
3609 if (CompileTimeValue::IsCompileTimeValue(property->value())) break;
3610 // else fall through
ager@chromium.org5c838252010-02-19 08:53:10 +00003611 case ObjectLiteral::Property::COMPUTED:
3612 if (key->handle()->IsSymbol()) {
3613 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003614 Load(value);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003615 frame_->PopToR0();
3616 // Fetch the object literal.
3617 frame_->SpillAllButCopyTOSToR1();
ager@chromium.org5c838252010-02-19 08:53:10 +00003618 __ mov(r2, Operand(key->handle()));
ager@chromium.org5c838252010-02-19 08:53:10 +00003619 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
3620 break;
3621 }
3622 // else fall through
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003623 case ObjectLiteral::Property::PROTOTYPE: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003624 frame_->Dup();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003625 Load(key);
3626 Load(value);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003627 frame_->CallRuntime(Runtime::kSetProperty, 3);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003628 break;
3629 }
3630 case ObjectLiteral::Property::SETTER: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003631 frame_->Dup();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003632 Load(key);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003633 frame_->EmitPush(Operand(Smi::FromInt(1)));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003634 Load(value);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003635 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003636 break;
3637 }
3638 case ObjectLiteral::Property::GETTER: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003639 frame_->Dup();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003640 Load(key);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003641 frame_->EmitPush(Operand(Smi::FromInt(0)));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003642 Load(value);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003643 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003644 break;
3645 }
3646 }
3647 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003648 ASSERT_EQ(original_height + 1, frame_->height());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003649}
3650
3651
ager@chromium.org7c537e22008-10-16 08:43:32 +00003652void CodeGenerator::VisitArrayLiteral(ArrayLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003653#ifdef DEBUG
3654 int original_height = frame_->height();
3655#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003656 Comment cmnt(masm_, "[ ArrayLiteral");
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003657
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003658 Register tos = frame_->GetTOSRegister();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003659 // Load the function of this activation.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003660 __ ldr(tos, frame_->Function());
ager@chromium.org5c838252010-02-19 08:53:10 +00003661 // Load the literals array of the function.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003662 __ ldr(tos, FieldMemOperand(tos, JSFunction::kLiteralsOffset));
3663 frame_->EmitPush(tos);
3664 frame_->EmitPush(Operand(Smi::FromInt(node->literal_index())));
3665 frame_->EmitPush(Operand(node->constant_elements()));
ager@chromium.org5c838252010-02-19 08:53:10 +00003666 int length = node->values()->length();
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003667 if (node->constant_elements()->map() == Heap::fixed_cow_array_map()) {
3668 FastCloneShallowArrayStub stub(
3669 FastCloneShallowArrayStub::COPY_ON_WRITE_ELEMENTS, length);
3670 frame_->CallStub(&stub, 3);
3671 __ IncrementCounter(&Counters::cow_arrays_created_stub, 1, r1, r2);
3672 } else if (node->depth() > 1) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003673 frame_->CallRuntime(Runtime::kCreateArrayLiteral, 3);
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003674 } else if (length > FastCloneShallowArrayStub::kMaximumClonedLength) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003675 frame_->CallRuntime(Runtime::kCreateArrayLiteralShallow, 3);
ager@chromium.org5c838252010-02-19 08:53:10 +00003676 } else {
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003677 FastCloneShallowArrayStub stub(
3678 FastCloneShallowArrayStub::CLONE_ELEMENTS, length);
ager@chromium.org5c838252010-02-19 08:53:10 +00003679 frame_->CallStub(&stub, 3);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003680 }
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003681 frame_->EmitPush(r0); // save the result
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003682 // r0: created object literal
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003683
3684 // Generate code to set the elements in the array that are not
3685 // literals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003686 for (int i = 0; i < node->values()->length(); i++) {
3687 Expression* value = node->values()->at(i);
3688
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003689 // If value is a literal the property value is already set in the
3690 // boilerplate object.
3691 if (value->AsLiteral() != NULL) continue;
3692 // If value is a materialized literal the property value is already set
3693 // in the boilerplate object if it is simple.
3694 if (CompileTimeValue::IsCompileTimeValue(value)) continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003695
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003696 // The property must be set by generated code.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003697 Load(value);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003698 frame_->PopToR0();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003699 // Fetch the object literal.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003700 frame_->SpillAllButCopyTOSToR1();
3701
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003702 // Get the elements array.
3703 __ ldr(r1, FieldMemOperand(r1, JSObject::kElementsOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003704
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003705 // Write to the indexed properties array.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003706 int offset = i * kPointerSize + FixedArray::kHeaderSize;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003707 __ str(r0, FieldMemOperand(r1, offset));
3708
3709 // Update the write barrier for the array address.
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00003710 __ RecordWrite(r1, Operand(offset), r3, r2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003711 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003712 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003713}
3714
3715
ager@chromium.org32912102009-01-16 10:38:43 +00003716void CodeGenerator::VisitCatchExtensionObject(CatchExtensionObject* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003717#ifdef DEBUG
3718 int original_height = frame_->height();
3719#endif
ager@chromium.org32912102009-01-16 10:38:43 +00003720 // Call runtime routine to allocate the catch extension object and
3721 // assign the exception value to the catch variable.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003722 Comment cmnt(masm_, "[ CatchExtensionObject");
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003723 Load(node->key());
3724 Load(node->value());
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003725 frame_->CallRuntime(Runtime::kCreateCatchExtensionObject, 2);
3726 frame_->EmitPush(r0);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003727 ASSERT_EQ(original_height + 1, frame_->height());
3728}
3729
3730
3731void CodeGenerator::EmitSlotAssignment(Assignment* node) {
3732#ifdef DEBUG
3733 int original_height = frame_->height();
3734#endif
3735 Comment cmnt(masm(), "[ Variable Assignment");
3736 Variable* var = node->target()->AsVariableProxy()->AsVariable();
3737 ASSERT(var != NULL);
3738 Slot* slot = var->slot();
3739 ASSERT(slot != NULL);
3740
3741 // Evaluate the right-hand side.
3742 if (node->is_compound()) {
3743 // For a compound assignment the right-hand side is a binary operation
3744 // between the current property value and the actual right-hand side.
3745 LoadFromSlotCheckForArguments(slot, NOT_INSIDE_TYPEOF);
3746
3747 // Perform the binary operation.
3748 Literal* literal = node->value()->AsLiteral();
ricow@chromium.org65fae842010-08-25 15:26:24 +00003749 bool overwrite_value = node->value()->ResultOverwriteAllowed();
ager@chromium.orgac091b72010-05-05 07:34:42 +00003750 if (literal != NULL && literal->handle()->IsSmi()) {
3751 SmiOperation(node->binary_op(),
3752 literal->handle(),
3753 false,
3754 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE);
3755 } else {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003756 GenerateInlineSmi inline_smi =
3757 loop_nesting() > 0 ? GENERATE_INLINE_SMI : DONT_GENERATE_INLINE_SMI;
3758 if (literal != NULL) {
3759 ASSERT(!literal->handle()->IsSmi());
3760 inline_smi = DONT_GENERATE_INLINE_SMI;
3761 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003762 Load(node->value());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003763 GenericBinaryOperation(node->binary_op(),
3764 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE,
3765 inline_smi);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003766 }
3767 } else {
3768 Load(node->value());
3769 }
3770
3771 // Perform the assignment.
3772 if (var->mode() != Variable::CONST || node->op() == Token::INIT_CONST) {
3773 CodeForSourcePosition(node->position());
3774 StoreToSlot(slot,
3775 node->op() == Token::INIT_CONST ? CONST_INIT : NOT_CONST_INIT);
3776 }
3777 ASSERT_EQ(original_height + 1, frame_->height());
3778}
3779
3780
3781void CodeGenerator::EmitNamedPropertyAssignment(Assignment* node) {
3782#ifdef DEBUG
3783 int original_height = frame_->height();
3784#endif
3785 Comment cmnt(masm(), "[ Named Property Assignment");
3786 Variable* var = node->target()->AsVariableProxy()->AsVariable();
3787 Property* prop = node->target()->AsProperty();
3788 ASSERT(var == NULL || (prop == NULL && var->is_global()));
3789
3790 // Initialize name and evaluate the receiver sub-expression if necessary. If
3791 // the receiver is trivial it is not placed on the stack at this point, but
3792 // loaded whenever actually needed.
3793 Handle<String> name;
3794 bool is_trivial_receiver = false;
3795 if (var != NULL) {
3796 name = var->name();
3797 } else {
3798 Literal* lit = prop->key()->AsLiteral();
3799 ASSERT_NOT_NULL(lit);
3800 name = Handle<String>::cast(lit->handle());
3801 // Do not materialize the receiver on the frame if it is trivial.
3802 is_trivial_receiver = prop->obj()->IsTrivial();
3803 if (!is_trivial_receiver) Load(prop->obj());
3804 }
3805
3806 // Change to slow case in the beginning of an initialization block to
3807 // avoid the quadratic behavior of repeatedly adding fast properties.
3808 if (node->starts_initialization_block()) {
3809 // Initialization block consists of assignments of the form expr.x = ..., so
3810 // this will never be an assignment to a variable, so there must be a
3811 // receiver object.
3812 ASSERT_EQ(NULL, var);
3813 if (is_trivial_receiver) {
3814 Load(prop->obj());
3815 } else {
3816 frame_->Dup();
3817 }
3818 frame_->CallRuntime(Runtime::kToSlowProperties, 1);
3819 }
3820
3821 // Change to fast case at the end of an initialization block. To prepare for
3822 // that add an extra copy of the receiver to the frame, so that it can be
3823 // converted back to fast case after the assignment.
3824 if (node->ends_initialization_block() && !is_trivial_receiver) {
3825 frame_->Dup();
3826 }
3827
3828 // Stack layout:
3829 // [tos] : receiver (only materialized if non-trivial)
3830 // [tos+1] : receiver if at the end of an initialization block
3831
3832 // Evaluate the right-hand side.
3833 if (node->is_compound()) {
3834 // For a compound assignment the right-hand side is a binary operation
3835 // between the current property value and the actual right-hand side.
3836 if (is_trivial_receiver) {
3837 Load(prop->obj());
3838 } else if (var != NULL) {
3839 LoadGlobal();
3840 } else {
3841 frame_->Dup();
3842 }
3843 EmitNamedLoad(name, var != NULL);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003844
3845 // Perform the binary operation.
3846 Literal* literal = node->value()->AsLiteral();
ricow@chromium.org65fae842010-08-25 15:26:24 +00003847 bool overwrite_value = node->value()->ResultOverwriteAllowed();
ager@chromium.orgac091b72010-05-05 07:34:42 +00003848 if (literal != NULL && literal->handle()->IsSmi()) {
3849 SmiOperation(node->binary_op(),
3850 literal->handle(),
3851 false,
3852 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE);
3853 } else {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003854 GenerateInlineSmi inline_smi =
3855 loop_nesting() > 0 ? GENERATE_INLINE_SMI : DONT_GENERATE_INLINE_SMI;
3856 if (literal != NULL) {
3857 ASSERT(!literal->handle()->IsSmi());
3858 inline_smi = DONT_GENERATE_INLINE_SMI;
3859 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003860 Load(node->value());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003861 GenericBinaryOperation(node->binary_op(),
3862 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE,
3863 inline_smi);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003864 }
3865 } else {
3866 // For non-compound assignment just load the right-hand side.
3867 Load(node->value());
3868 }
3869
3870 // Stack layout:
3871 // [tos] : value
3872 // [tos+1] : receiver (only materialized if non-trivial)
3873 // [tos+2] : receiver if at the end of an initialization block
3874
3875 // Perform the assignment. It is safe to ignore constants here.
3876 ASSERT(var == NULL || var->mode() != Variable::CONST);
3877 ASSERT_NE(Token::INIT_CONST, node->op());
3878 if (is_trivial_receiver) {
3879 // Load the receiver and swap with the value.
3880 Load(prop->obj());
3881 Register t0 = frame_->PopToRegister();
3882 Register t1 = frame_->PopToRegister(t0);
3883 frame_->EmitPush(t0);
3884 frame_->EmitPush(t1);
3885 }
3886 CodeForSourcePosition(node->position());
3887 bool is_contextual = (var != NULL);
3888 EmitNamedStore(name, is_contextual);
3889 frame_->EmitPush(r0);
3890
3891 // Change to fast case at the end of an initialization block.
3892 if (node->ends_initialization_block()) {
3893 ASSERT_EQ(NULL, var);
3894 // The argument to the runtime call is the receiver.
3895 if (is_trivial_receiver) {
3896 Load(prop->obj());
3897 } else {
3898 // A copy of the receiver is below the value of the assignment. Swap
3899 // the receiver and the value of the assignment expression.
3900 Register t0 = frame_->PopToRegister();
3901 Register t1 = frame_->PopToRegister(t0);
3902 frame_->EmitPush(t0);
3903 frame_->EmitPush(t1);
3904 }
3905 frame_->CallRuntime(Runtime::kToFastProperties, 1);
3906 }
3907
3908 // Stack layout:
3909 // [tos] : result
3910
3911 ASSERT_EQ(original_height + 1, frame_->height());
3912}
3913
3914
3915void CodeGenerator::EmitKeyedPropertyAssignment(Assignment* node) {
3916#ifdef DEBUG
3917 int original_height = frame_->height();
3918#endif
3919 Comment cmnt(masm_, "[ Keyed Property Assignment");
3920 Property* prop = node->target()->AsProperty();
3921 ASSERT_NOT_NULL(prop);
3922
3923 // Evaluate the receiver subexpression.
3924 Load(prop->obj());
3925
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003926 WriteBarrierCharacter wb_info;
3927
ager@chromium.orgac091b72010-05-05 07:34:42 +00003928 // Change to slow case in the beginning of an initialization block to
3929 // avoid the quadratic behavior of repeatedly adding fast properties.
3930 if (node->starts_initialization_block()) {
3931 frame_->Dup();
3932 frame_->CallRuntime(Runtime::kToSlowProperties, 1);
3933 }
3934
3935 // Change to fast case at the end of an initialization block. To prepare for
3936 // that add an extra copy of the receiver to the frame, so that it can be
3937 // converted back to fast case after the assignment.
3938 if (node->ends_initialization_block()) {
3939 frame_->Dup();
3940 }
3941
3942 // Evaluate the key subexpression.
3943 Load(prop->key());
3944
3945 // Stack layout:
3946 // [tos] : key
3947 // [tos+1] : receiver
3948 // [tos+2] : receiver if at the end of an initialization block
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003949 //
ager@chromium.orgac091b72010-05-05 07:34:42 +00003950 // Evaluate the right-hand side.
3951 if (node->is_compound()) {
3952 // For a compound assignment the right-hand side is a binary operation
3953 // between the current property value and the actual right-hand side.
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00003954 // Duplicate receiver and key for loading the current property value.
3955 frame_->Dup2();
ager@chromium.orgac091b72010-05-05 07:34:42 +00003956 EmitKeyedLoad();
3957 frame_->EmitPush(r0);
3958
3959 // Perform the binary operation.
3960 Literal* literal = node->value()->AsLiteral();
ricow@chromium.org65fae842010-08-25 15:26:24 +00003961 bool overwrite_value = node->value()->ResultOverwriteAllowed();
ager@chromium.orgac091b72010-05-05 07:34:42 +00003962 if (literal != NULL && literal->handle()->IsSmi()) {
3963 SmiOperation(node->binary_op(),
3964 literal->handle(),
3965 false,
3966 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE);
3967 } else {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003968 GenerateInlineSmi inline_smi =
3969 loop_nesting() > 0 ? GENERATE_INLINE_SMI : DONT_GENERATE_INLINE_SMI;
3970 if (literal != NULL) {
3971 ASSERT(!literal->handle()->IsSmi());
3972 inline_smi = DONT_GENERATE_INLINE_SMI;
3973 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003974 Load(node->value());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003975 GenericBinaryOperation(node->binary_op(),
3976 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE,
3977 inline_smi);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003978 }
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003979 wb_info = node->type()->IsLikelySmi() ? LIKELY_SMI : UNLIKELY_SMI;
ager@chromium.orgac091b72010-05-05 07:34:42 +00003980 } else {
3981 // For non-compound assignment just load the right-hand side.
3982 Load(node->value());
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003983 wb_info = node->value()->AsLiteral() != NULL ?
3984 NEVER_NEWSPACE :
3985 (node->value()->type()->IsLikelySmi() ? LIKELY_SMI : UNLIKELY_SMI);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003986 }
3987
3988 // Stack layout:
3989 // [tos] : value
3990 // [tos+1] : key
3991 // [tos+2] : receiver
3992 // [tos+3] : receiver if at the end of an initialization block
3993
3994 // Perform the assignment. It is safe to ignore constants here.
3995 ASSERT(node->op() != Token::INIT_CONST);
3996 CodeForSourcePosition(node->position());
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003997 EmitKeyedStore(prop->key()->type(), wb_info);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003998 frame_->EmitPush(r0);
3999
4000 // Stack layout:
4001 // [tos] : result
4002 // [tos+1] : receiver if at the end of an initialization block
4003
4004 // Change to fast case at the end of an initialization block.
4005 if (node->ends_initialization_block()) {
4006 // The argument to the runtime call is the extra copy of the receiver,
4007 // which is below the value of the assignment. Swap the receiver and
4008 // the value of the assignment expression.
4009 Register t0 = frame_->PopToRegister();
4010 Register t1 = frame_->PopToRegister(t0);
4011 frame_->EmitPush(t1);
4012 frame_->EmitPush(t0);
4013 frame_->CallRuntime(Runtime::kToFastProperties, 1);
4014 }
4015
4016 // Stack layout:
4017 // [tos] : result
4018
4019 ASSERT_EQ(original_height + 1, frame_->height());
ager@chromium.org32912102009-01-16 10:38:43 +00004020}
4021
4022
ager@chromium.org7c537e22008-10-16 08:43:32 +00004023void CodeGenerator::VisitAssignment(Assignment* node) {
ager@chromium.org357bf652010-04-12 11:30:10 +00004024 VirtualFrame::RegisterAllocationScope scope(this);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004025#ifdef DEBUG
4026 int original_height = frame_->height();
4027#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004028 Comment cmnt(masm_, "[ Assignment");
mads.s.ager31e71382008-08-13 09:32:07 +00004029
ager@chromium.orgac091b72010-05-05 07:34:42 +00004030 Variable* var = node->target()->AsVariableProxy()->AsVariable();
4031 Property* prop = node->target()->AsProperty();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004032
ager@chromium.orgac091b72010-05-05 07:34:42 +00004033 if (var != NULL && !var->is_global()) {
4034 EmitSlotAssignment(node);
mads.s.ager31e71382008-08-13 09:32:07 +00004035
ager@chromium.orgac091b72010-05-05 07:34:42 +00004036 } else if ((prop != NULL && prop->key()->IsPropertyName()) ||
4037 (var != NULL && var->is_global())) {
4038 // Properties whose keys are property names and global variables are
4039 // treated as named property references. We do not need to consider
4040 // global 'this' because it is not a valid left-hand side.
4041 EmitNamedPropertyAssignment(node);
4042
4043 } else if (prop != NULL) {
4044 // Other properties (including rewritten parameters for a function that
4045 // uses arguments) are keyed property assignments.
4046 EmitKeyedPropertyAssignment(node);
4047
4048 } else {
4049 // Invalid left-hand side.
4050 Load(node->target());
4051 frame_->CallRuntime(Runtime::kThrowReferenceError, 1);
4052 // The runtime call doesn't actually return but the code generator will
4053 // still generate code and expects a certain frame height.
4054 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004055 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00004056 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004057}
4058
4059
ager@chromium.org7c537e22008-10-16 08:43:32 +00004060void CodeGenerator::VisitThrow(Throw* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004061#ifdef DEBUG
4062 int original_height = frame_->height();
4063#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004064 Comment cmnt(masm_, "[ Throw");
4065
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004066 Load(node->exception());
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004067 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004068 frame_->CallRuntime(Runtime::kThrow, 1);
4069 frame_->EmitPush(r0);
ager@chromium.orgac091b72010-05-05 07:34:42 +00004070 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004071}
4072
4073
ager@chromium.org7c537e22008-10-16 08:43:32 +00004074void CodeGenerator::VisitProperty(Property* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004075#ifdef DEBUG
4076 int original_height = frame_->height();
4077#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004078 Comment cmnt(masm_, "[ Property");
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00004079
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004080 { Reference property(this, node);
ager@chromium.org357bf652010-04-12 11:30:10 +00004081 property.GetValue();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004082 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00004083 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004084}
4085
4086
ager@chromium.org7c537e22008-10-16 08:43:32 +00004087void CodeGenerator::VisitCall(Call* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004088#ifdef DEBUG
4089 int original_height = frame_->height();
4090#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004091 Comment cmnt(masm_, "[ Call");
4092
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004093 Expression* function = node->expression();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004094 ZoneList<Expression*>* args = node->arguments();
4095
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004096 // Standard function call.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004097 // Check if the function is a variable or a property.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004098 Variable* var = function->AsVariableProxy()->AsVariable();
4099 Property* property = function->AsProperty();
4100
4101 // ------------------------------------------------------------------------
4102 // Fast-case: Use inline caching.
4103 // ---
4104 // According to ECMA-262, section 11.2.3, page 44, the function to call
4105 // must be resolved after the arguments have been evaluated. The IC code
4106 // automatically handles this by loading the arguments before the function
4107 // is resolved in cache misses (this also holds for megamorphic calls).
4108 // ------------------------------------------------------------------------
4109
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004110 if (var != NULL && var->is_possibly_eval()) {
4111 // ----------------------------------
4112 // JavaScript example: 'eval(arg)' // eval is not known to be shadowed
4113 // ----------------------------------
4114
4115 // In a call to eval, we first call %ResolvePossiblyDirectEval to
4116 // resolve the function we need to call and the receiver of the
4117 // call. Then we call the resolved function using the given
4118 // arguments.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004119
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004120 // Prepare stack for call to resolved function.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004121 Load(function);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004122
4123 // Allocate a frame slot for the receiver.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00004124 frame_->EmitPushRoot(Heap::kUndefinedValueRootIndex);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004125
4126 // Load the arguments.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004127 int arg_count = args->length();
4128 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004129 Load(args->at(i));
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004130 }
4131
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00004132 VirtualFrame::SpilledScope spilled_scope(frame_);
4133
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004134 // If we know that eval can only be shadowed by eval-introduced
4135 // variables we attempt to load the global eval function directly
4136 // in generated code. If we succeed, there is no need to perform a
4137 // context lookup in the runtime system.
4138 JumpTarget done;
4139 if (var->slot() != NULL && var->mode() == Variable::DYNAMIC_GLOBAL) {
4140 ASSERT(var->slot()->type() == Slot::LOOKUP);
4141 JumpTarget slow;
4142 // Prepare the stack for the call to
4143 // ResolvePossiblyDirectEvalNoLookup by pushing the loaded
4144 // function, the first argument to the eval call and the
4145 // receiver.
4146 LoadFromGlobalSlotCheckExtensions(var->slot(),
4147 NOT_INSIDE_TYPEOF,
4148 &slow);
4149 frame_->EmitPush(r0);
4150 if (arg_count > 0) {
4151 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize));
4152 frame_->EmitPush(r1);
4153 } else {
4154 frame_->EmitPush(r2);
4155 }
4156 __ ldr(r1, frame_->Receiver());
4157 frame_->EmitPush(r1);
4158
4159 frame_->CallRuntime(Runtime::kResolvePossiblyDirectEvalNoLookup, 3);
4160
4161 done.Jump();
4162 slow.Bind();
4163 }
4164
4165 // Prepare the stack for the call to ResolvePossiblyDirectEval by
4166 // pushing the loaded function, the first argument to the eval
4167 // call and the receiver.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004168 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize + kPointerSize));
4169 frame_->EmitPush(r1);
4170 if (arg_count > 0) {
4171 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize));
4172 frame_->EmitPush(r1);
4173 } else {
4174 frame_->EmitPush(r2);
4175 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004176 __ ldr(r1, frame_->Receiver());
4177 frame_->EmitPush(r1);
4178
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004179 // Resolve the call.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004180 frame_->CallRuntime(Runtime::kResolvePossiblyDirectEval, 3);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004181
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004182 // If we generated fast-case code bind the jump-target where fast
4183 // and slow case merge.
4184 if (done.is_linked()) done.Bind();
4185
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004186 // Touch up stack with the right values for the function and the receiver.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004187 __ str(r0, MemOperand(sp, (arg_count + 1) * kPointerSize));
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004188 __ str(r1, MemOperand(sp, arg_count * kPointerSize));
4189
4190 // Call the function.
4191 CodeForSourcePosition(node->position());
4192
4193 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004194 CallFunctionStub call_function(arg_count, in_loop, RECEIVER_MIGHT_BE_VALUE);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004195 frame_->CallStub(&call_function, arg_count + 1);
4196
4197 __ ldr(cp, frame_->Context());
4198 // Remove the function from the stack.
4199 frame_->Drop();
4200 frame_->EmitPush(r0);
4201
4202 } else if (var != NULL && !var->is_this() && var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004203 // ----------------------------------
4204 // JavaScript example: 'foo(1, 2, 3)' // foo is global
4205 // ----------------------------------
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00004206 // Pass the global object as the receiver and let the IC stub
4207 // patch the stack to use the global proxy as 'this' in the
4208 // invoked function.
4209 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004210
4211 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004212 int arg_count = args->length();
4213 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004214 Load(args->at(i));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004215 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004216
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004217 VirtualFrame::SpilledScope spilled_scope(frame_);
ager@chromium.org5c838252010-02-19 08:53:10 +00004218 // Setup the name register and call the IC initialization code.
4219 __ mov(r2, Operand(var->name()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004220 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
4221 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004222 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004223 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET_CONTEXT,
4224 arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004225 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004226 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004227
4228 } else if (var != NULL && var->slot() != NULL &&
4229 var->slot()->type() == Slot::LOOKUP) {
4230 // ----------------------------------
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004231 // JavaScript examples:
4232 //
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004233 // with (obj) foo(1, 2, 3) // foo may be in obj.
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004234 //
4235 // function f() {};
4236 // function g() {
4237 // eval(...);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004238 // f(); // f could be in extension object.
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004239 // }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004240 // ----------------------------------
4241
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004242 JumpTarget slow, done;
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004243
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004244 // Generate fast case for loading functions from slots that
4245 // correspond to local/global variables or arguments unless they
4246 // are shadowed by eval-introduced bindings.
4247 EmitDynamicLoadFromSlotFastCase(var->slot(),
4248 NOT_INSIDE_TYPEOF,
4249 &slow,
4250 &done);
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004251
4252 slow.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004253 // Load the function
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004254 frame_->EmitPush(cp);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004255 frame_->EmitPush(Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004256 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004257 // r0: slot value; r1: receiver
4258
4259 // Load the receiver.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004260 frame_->EmitPush(r0); // function
4261 frame_->EmitPush(r1); // receiver
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004262
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004263 // If fast case code has been generated, emit code to push the
4264 // function and receiver and have the slow path jump around this
4265 // code.
4266 if (done.is_linked()) {
4267 JumpTarget call;
4268 call.Jump();
4269 done.Bind();
4270 frame_->EmitPush(r0); // function
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004271 LoadGlobalReceiver(VirtualFrame::scratch0()); // receiver
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004272 call.Bind();
4273 }
4274
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004275 // Call the function. At this point, everything is spilled but the
4276 // function and receiver are in r0 and r1.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004277 CallWithArguments(args, NO_CALL_FUNCTION_FLAGS, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004278 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004279
4280 } else if (property != NULL) {
4281 // Check if the key is a literal string.
4282 Literal* literal = property->key()->AsLiteral();
4283
4284 if (literal != NULL && literal->handle()->IsSymbol()) {
4285 // ------------------------------------------------------------------
4286 // JavaScript example: 'object.foo(1, 2, 3)' or 'map["key"](1, 2, 3)'
4287 // ------------------------------------------------------------------
4288
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00004289 Handle<String> name = Handle<String>::cast(literal->handle());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004290
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00004291 if (ArgumentsMode() == LAZY_ARGUMENTS_ALLOCATION &&
4292 name->IsEqualTo(CStrVector("apply")) &&
4293 args->length() == 2 &&
4294 args->at(1)->AsVariableProxy() != NULL &&
4295 args->at(1)->AsVariableProxy()->IsArguments()) {
4296 // Use the optimized Function.prototype.apply that avoids
4297 // allocating lazily allocated arguments objects.
4298 CallApplyLazy(property->obj(),
4299 args->at(0),
4300 args->at(1)->AsVariableProxy(),
4301 node->position());
4302
4303 } else {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004304 Load(property->obj()); // Receiver.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00004305 // Load the arguments.
4306 int arg_count = args->length();
4307 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004308 Load(args->at(i));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00004309 }
4310
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004311 VirtualFrame::SpilledScope spilled_scope(frame_);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00004312 // Set the name register and call the IC initialization code.
4313 __ mov(r2, Operand(name));
4314 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
4315 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
4316 CodeForSourcePosition(node->position());
4317 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
4318 __ ldr(cp, frame_->Context());
4319 frame_->EmitPush(r0);
4320 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004321
4322 } else {
4323 // -------------------------------------------
4324 // JavaScript example: 'array[index](1, 2, 3)'
4325 // -------------------------------------------
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004326 Load(property->obj());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004327 if (property->is_synthetic()) {
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00004328 Load(property->key());
4329 EmitKeyedLoad();
4330 // Put the function below the receiver.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004331 // Use the global receiver.
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004332 frame_->EmitPush(r0); // Function.
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004333 LoadGlobalReceiver(VirtualFrame::scratch0());
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00004334 // Call the function.
4335 CallWithArguments(args, RECEIVER_MIGHT_BE_VALUE, node->position());
4336 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004337 } else {
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00004338 // Load the arguments.
4339 int arg_count = args->length();
4340 for (int i = 0; i < arg_count; i++) {
4341 Load(args->at(i));
4342 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004343
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00004344 // Set the name register and call the IC initialization code.
4345 Load(property->key());
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004346 frame_->SpillAll();
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00004347 frame_->EmitPop(r2); // Function name.
4348
4349 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
4350 Handle<Code> stub = ComputeKeyedCallInitialize(arg_count, in_loop);
4351 CodeForSourcePosition(node->position());
4352 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
4353 __ ldr(cp, frame_->Context());
4354 frame_->EmitPush(r0);
4355 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004356 }
4357
4358 } else {
4359 // ----------------------------------
4360 // JavaScript example: 'foo(1, 2, 3)' // foo is not global
4361 // ----------------------------------
4362
4363 // Load the function.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004364 Load(function);
4365
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00004366 // Pass the global proxy as the receiver.
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004367 LoadGlobalReceiver(VirtualFrame::scratch0());
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00004368
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004369 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004370 CallWithArguments(args, NO_CALL_FUNCTION_FLAGS, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004371 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004372 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00004373 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004374}
4375
4376
ager@chromium.org7c537e22008-10-16 08:43:32 +00004377void CodeGenerator::VisitCallNew(CallNew* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004378#ifdef DEBUG
4379 int original_height = frame_->height();
4380#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004381 Comment cmnt(masm_, "[ CallNew");
4382
4383 // According to ECMA-262, section 11.2.2, page 44, the function
4384 // expression in new calls must be evaluated before the
4385 // arguments. This is different from ordinary calls, where the
4386 // actual function to call is resolved after the arguments have been
4387 // evaluated.
4388
ricow@chromium.org65fae842010-08-25 15:26:24 +00004389 // Push constructor on the stack. If it's not a function it's used as
4390 // receiver for CALL_NON_FUNCTION, otherwise the value on the stack is
4391 // ignored.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004392 Load(node->expression());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004393
4394 // Push the arguments ("left-to-right") on the stack.
4395 ZoneList<Expression*>* args = node->arguments();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004396 int arg_count = args->length();
4397 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004398 Load(args->at(i));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004399 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004400
ricow@chromium.org65fae842010-08-25 15:26:24 +00004401 // Spill everything from here to simplify the implementation.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004402 VirtualFrame::SpilledScope spilled_scope(frame_);
4403
ricow@chromium.org65fae842010-08-25 15:26:24 +00004404 // Load the argument count into r0 and the function into r1 as per
4405 // calling convention.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004406 __ mov(r0, Operand(arg_count));
ricow@chromium.org65fae842010-08-25 15:26:24 +00004407 __ ldr(r1, frame_->ElementAt(arg_count));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00004408
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004409 // Call the construct call builtin that handles allocation and
4410 // constructor invocation.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004411 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004412 Handle<Code> ic(Builtins::builtin(Builtins::JSConstructCall));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004413 frame_->CallCodeObject(ic, RelocInfo::CONSTRUCT_CALL, arg_count + 1);
ricow@chromium.org65fae842010-08-25 15:26:24 +00004414 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00004415
ager@chromium.orgac091b72010-05-05 07:34:42 +00004416 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004417}
4418
4419
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004420void CodeGenerator::GenerateClassOf(ZoneList<Expression*>* args) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004421 Register scratch = VirtualFrame::scratch0();
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004422 JumpTarget null, function, leave, non_function_constructor;
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004423
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004424 // Load the object into register.
4425 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004426 Load(args->at(0));
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004427 Register tos = frame_->PopToRegister();
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004428
4429 // If the object is a smi, we return null.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004430 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004431 null.Branch(eq);
4432
4433 // Check that the object is a JS object but take special care of JS
4434 // functions to make sure they have 'Function' as their class.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004435 __ CompareObjectType(tos, tos, scratch, FIRST_JS_OBJECT_TYPE);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004436 null.Branch(lt);
4437
4438 // As long as JS_FUNCTION_TYPE is the last instance type and it is
4439 // right after LAST_JS_OBJECT_TYPE, we can avoid checking for
4440 // LAST_JS_OBJECT_TYPE.
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00004441 STATIC_ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
4442 STATIC_ASSERT(JS_FUNCTION_TYPE == LAST_JS_OBJECT_TYPE + 1);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004443 __ cmp(scratch, Operand(JS_FUNCTION_TYPE));
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004444 function.Branch(eq);
4445
4446 // Check if the constructor in the map is a function.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004447 __ ldr(tos, FieldMemOperand(tos, Map::kConstructorOffset));
4448 __ CompareObjectType(tos, scratch, scratch, JS_FUNCTION_TYPE);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004449 non_function_constructor.Branch(ne);
4450
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004451 // The tos register now contains the constructor function. Grab the
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004452 // instance class name from there.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004453 __ ldr(tos, FieldMemOperand(tos, JSFunction::kSharedFunctionInfoOffset));
4454 __ ldr(tos,
4455 FieldMemOperand(tos, SharedFunctionInfo::kInstanceClassNameOffset));
4456 frame_->EmitPush(tos);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004457 leave.Jump();
4458
4459 // Functions have class 'Function'.
4460 function.Bind();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004461 __ mov(tos, Operand(Factory::function_class_symbol()));
4462 frame_->EmitPush(tos);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004463 leave.Jump();
4464
4465 // Objects with a non-function constructor have class 'Object'.
4466 non_function_constructor.Bind();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004467 __ mov(tos, Operand(Factory::Object_symbol()));
4468 frame_->EmitPush(tos);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004469 leave.Jump();
4470
4471 // Non-JS objects have class null.
4472 null.Bind();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004473 __ LoadRoot(tos, Heap::kNullValueRootIndex);
4474 frame_->EmitPush(tos);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004475
4476 // All done.
4477 leave.Bind();
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004478}
4479
4480
ager@chromium.org7c537e22008-10-16 08:43:32 +00004481void CodeGenerator::GenerateValueOf(ZoneList<Expression*>* args) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004482 Register scratch = VirtualFrame::scratch0();
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004483 JumpTarget leave;
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004484
4485 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004486 Load(args->at(0));
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004487 Register tos = frame_->PopToRegister(); // tos contains object.
mads.s.ager31e71382008-08-13 09:32:07 +00004488 // if (object->IsSmi()) return the object.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004489 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004490 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004491 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004492 __ CompareObjectType(tos, scratch, scratch, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004493 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004494 // Load the value.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004495 __ ldr(tos, FieldMemOperand(tos, JSValue::kValueOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004496 leave.Bind();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004497 frame_->EmitPush(tos);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004498}
4499
4500
ager@chromium.org7c537e22008-10-16 08:43:32 +00004501void CodeGenerator::GenerateSetValueOf(ZoneList<Expression*>* args) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004502 Register scratch1 = VirtualFrame::scratch0();
4503 Register scratch2 = VirtualFrame::scratch1();
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004504 JumpTarget leave;
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004505
4506 ASSERT(args->length() == 2);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004507 Load(args->at(0)); // Load the object.
4508 Load(args->at(1)); // Load the value.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004509 Register value = frame_->PopToRegister();
4510 Register object = frame_->PopToRegister(value);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004511 // if (object->IsSmi()) return object.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004512 __ tst(object, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004513 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004514 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004515 __ CompareObjectType(object, scratch1, scratch1, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004516 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004517 // Store the value.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004518 __ str(value, FieldMemOperand(object, JSValue::kValueOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004519 // Update the write barrier.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004520 __ RecordWrite(object,
4521 Operand(JSValue::kValueOffset - kHeapObjectTag),
4522 scratch1,
4523 scratch2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004524 // Leave.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004525 leave.Bind();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004526 frame_->EmitPush(value);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004527}
4528
4529
ager@chromium.org7c537e22008-10-16 08:43:32 +00004530void CodeGenerator::GenerateIsSmi(ZoneList<Expression*>* args) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004531 ASSERT(args->length() == 1);
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004532 Load(args->at(0));
4533 Register reg = frame_->PopToRegister();
4534 __ tst(reg, Operand(kSmiTagMask));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004535 cc_reg_ = eq;
4536}
4537
4538
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004539void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) {
4540 // See comment in CodeGenerator::GenerateLog in codegen-ia32.cc.
4541 ASSERT_EQ(args->length(), 3);
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00004542#ifdef ENABLE_LOGGING_AND_PROFILING
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004543 if (ShouldGenerateLog(args->at(0))) {
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004544 Load(args->at(1));
4545 Load(args->at(2));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004546 frame_->CallRuntime(Runtime::kLog, 2);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004547 }
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00004548#endif
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004549 frame_->EmitPushRoot(Heap::kUndefinedValueRootIndex);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004550}
4551
4552
ager@chromium.org7c537e22008-10-16 08:43:32 +00004553void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) {
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00004554 ASSERT(args->length() == 1);
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004555 Load(args->at(0));
4556 Register reg = frame_->PopToRegister();
4557 __ tst(reg, Operand(kSmiTagMask | 0x80000000u));
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00004558 cc_reg_ = eq;
4559}
4560
4561
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004562// Generates the Math.pow method.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004563void CodeGenerator::GenerateMathPow(ZoneList<Expression*>* args) {
4564 ASSERT(args->length() == 2);
4565 Load(args->at(0));
4566 Load(args->at(1));
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004567
4568 if (!CpuFeatures::IsSupported(VFP3)) {
4569 frame_->CallRuntime(Runtime::kMath_pow, 2);
4570 frame_->EmitPush(r0);
4571 } else {
4572 CpuFeatures::Scope scope(VFP3);
4573 JumpTarget runtime, done;
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004574 Label exponent_nonsmi, base_nonsmi, powi, not_minus_half, allocate_return;
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004575
4576 Register scratch1 = VirtualFrame::scratch0();
4577 Register scratch2 = VirtualFrame::scratch1();
4578
4579 // Get base and exponent to registers.
4580 Register exponent = frame_->PopToRegister();
4581 Register base = frame_->PopToRegister(exponent);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004582 Register heap_number_map = no_reg;
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004583
4584 // Set the frame for the runtime jump target. The code below jumps to the
4585 // jump target label so the frame needs to be established before that.
4586 ASSERT(runtime.entry_frame() == NULL);
4587 runtime.set_entry_frame(frame_);
4588
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004589 __ BranchOnNotSmi(exponent, &exponent_nonsmi);
4590 __ BranchOnNotSmi(base, &base_nonsmi);
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004591
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004592 heap_number_map = r6;
4593 __ LoadRoot(heap_number_map, Heap::kHeapNumberMapRootIndex);
4594
4595 // Exponent is a smi and base is a smi. Get the smi value into vfp register
4596 // d1.
4597 __ SmiToDoubleVFPRegister(base, d1, scratch1, s0);
4598 __ b(&powi);
4599
4600 __ bind(&base_nonsmi);
4601 // Exponent is smi and base is non smi. Get the double value from the base
4602 // into vfp register d1.
4603 __ ObjectToDoubleVFPRegister(base, d1,
4604 scratch1, scratch2, heap_number_map, s0,
4605 runtime.entry_label());
4606
4607 __ bind(&powi);
4608
4609 // Load 1.0 into d0.
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00004610 __ vmov(d0, 1.0);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004611
4612 // Get the absolute untagged value of the exponent and use that for the
4613 // calculation.
4614 __ mov(scratch1, Operand(exponent, ASR, kSmiTagSize), SetCC);
4615 __ rsb(scratch1, scratch1, Operand(0), LeaveCC, mi); // Negate if negative.
4616 __ vmov(d2, d0, mi); // 1.0 needed in d2 later if exponent is negative.
4617
4618 // Run through all the bits in the exponent. The result is calculated in d0
4619 // and d1 holds base^(bit^2).
4620 Label more_bits;
4621 __ bind(&more_bits);
4622 __ mov(scratch1, Operand(scratch1, LSR, 1), SetCC);
4623 __ vmul(d0, d0, d1, cs); // Multiply with base^(bit^2) if bit is set.
4624 __ vmul(d1, d1, d1, ne); // Don't bother calculating next d1 if done.
4625 __ b(ne, &more_bits);
4626
4627 // If exponent is positive we are done.
4628 __ cmp(exponent, Operand(0));
4629 __ b(ge, &allocate_return);
4630
4631 // If exponent is negative result is 1/result (d2 already holds 1.0 in that
4632 // case). However if d0 has reached infinity this will not provide the
4633 // correct result, so call runtime if that is the case.
4634 __ mov(scratch2, Operand(0x7FF00000));
4635 __ mov(scratch1, Operand(0));
4636 __ vmov(d1, scratch1, scratch2); // Load infinity into d1.
4637 __ vcmp(d0, d1);
4638 __ vmrs(pc);
4639 runtime.Branch(eq); // d0 reached infinity.
4640 __ vdiv(d0, d2, d0);
4641 __ b(&allocate_return);
4642
4643 __ bind(&exponent_nonsmi);
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004644 // Special handling of raising to the power of -0.5 and 0.5. First check
4645 // that the value is a heap number and that the lower bits (which for both
4646 // values are zero).
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004647 heap_number_map = r6;
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004648 __ LoadRoot(heap_number_map, Heap::kHeapNumberMapRootIndex);
4649 __ ldr(scratch1, FieldMemOperand(exponent, HeapObject::kMapOffset));
4650 __ ldr(scratch2, FieldMemOperand(exponent, HeapNumber::kMantissaOffset));
4651 __ cmp(scratch1, heap_number_map);
4652 runtime.Branch(ne);
4653 __ tst(scratch2, scratch2);
4654 runtime.Branch(ne);
4655
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004656 // Load the higher bits (which contains the floating point exponent).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004657 __ ldr(scratch1, FieldMemOperand(exponent, HeapNumber::kExponentOffset));
4658
4659 // Compare exponent with -0.5.
4660 __ cmp(scratch1, Operand(0xbfe00000));
4661 __ b(ne, &not_minus_half);
4662
4663 // Get the double value from the base into vfp register d0.
4664 __ ObjectToDoubleVFPRegister(base, d0,
4665 scratch1, scratch2, heap_number_map, s0,
4666 runtime.entry_label(),
4667 AVOID_NANS_AND_INFINITIES);
4668
4669 // Load 1.0 into d2.
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00004670 __ vmov(d2, 1.0);
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004671
4672 // Calculate the reciprocal of the square root. 1/sqrt(x) = sqrt(1/x).
4673 __ vdiv(d0, d2, d0);
4674 __ vsqrt(d0, d0);
4675
4676 __ b(&allocate_return);
4677
4678 __ bind(&not_minus_half);
4679 // Compare exponent with 0.5.
4680 __ cmp(scratch1, Operand(0x3fe00000));
4681 runtime.Branch(ne);
4682
4683 // Get the double value from the base into vfp register d0.
4684 __ ObjectToDoubleVFPRegister(base, d0,
4685 scratch1, scratch2, heap_number_map, s0,
4686 runtime.entry_label(),
4687 AVOID_NANS_AND_INFINITIES);
4688 __ vsqrt(d0, d0);
4689
4690 __ bind(&allocate_return);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004691 Register scratch3 = r5;
4692 __ AllocateHeapNumberWithValue(scratch3, d0, scratch1, scratch2,
4693 heap_number_map, runtime.entry_label());
4694 __ mov(base, scratch3);
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004695 done.Jump();
4696
4697 runtime.Bind();
4698
4699 // Push back the arguments again for the runtime call.
4700 frame_->EmitPush(base);
4701 frame_->EmitPush(exponent);
4702 frame_->CallRuntime(Runtime::kMath_pow, 2);
4703 __ Move(base, r0);
4704
4705 done.Bind();
4706 frame_->EmitPush(base);
4707 }
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004708}
4709
4710
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004711// Generates the Math.sqrt method.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004712void CodeGenerator::GenerateMathSqrt(ZoneList<Expression*>* args) {
4713 ASSERT(args->length() == 1);
4714 Load(args->at(0));
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004715
4716 if (!CpuFeatures::IsSupported(VFP3)) {
4717 frame_->CallRuntime(Runtime::kMath_sqrt, 1);
4718 frame_->EmitPush(r0);
4719 } else {
4720 CpuFeatures::Scope scope(VFP3);
4721 JumpTarget runtime, done;
4722
4723 Register scratch1 = VirtualFrame::scratch0();
4724 Register scratch2 = VirtualFrame::scratch1();
4725
4726 // Get the value from the frame.
4727 Register tos = frame_->PopToRegister();
4728
4729 // Set the frame for the runtime jump target. The code below jumps to the
4730 // jump target label so the frame needs to be established before that.
4731 ASSERT(runtime.entry_frame() == NULL);
4732 runtime.set_entry_frame(frame_);
4733
4734 Register heap_number_map = r6;
4735 __ LoadRoot(heap_number_map, Heap::kHeapNumberMapRootIndex);
4736
4737 // Get the double value from the heap number into vfp register d0.
4738 __ ObjectToDoubleVFPRegister(tos, d0,
4739 scratch1, scratch2, heap_number_map, s0,
4740 runtime.entry_label());
4741
4742 // Calculate the square root of d0 and place result in a heap number object.
4743 __ vsqrt(d0, d0);
4744 __ AllocateHeapNumberWithValue(
4745 tos, d0, scratch1, scratch2, heap_number_map, runtime.entry_label());
4746 done.Jump();
4747
4748 runtime.Bind();
4749 // Push back the argument again for the runtime call.
4750 frame_->EmitPush(tos);
4751 frame_->CallRuntime(Runtime::kMath_sqrt, 1);
4752 __ Move(tos, r0);
4753
4754 done.Bind();
4755 frame_->EmitPush(tos);
4756 }
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004757}
4758
4759
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004760class DeferredStringCharCodeAt : public DeferredCode {
4761 public:
4762 DeferredStringCharCodeAt(Register object,
4763 Register index,
4764 Register scratch,
4765 Register result)
4766 : result_(result),
4767 char_code_at_generator_(object,
4768 index,
4769 scratch,
4770 result,
4771 &need_conversion_,
4772 &need_conversion_,
4773 &index_out_of_range_,
4774 STRING_INDEX_IS_NUMBER) {}
4775
4776 StringCharCodeAtGenerator* fast_case_generator() {
4777 return &char_code_at_generator_;
4778 }
4779
4780 virtual void Generate() {
4781 VirtualFrameRuntimeCallHelper call_helper(frame_state());
4782 char_code_at_generator_.GenerateSlow(masm(), call_helper);
4783
4784 __ bind(&need_conversion_);
4785 // Move the undefined value into the result register, which will
4786 // trigger conversion.
4787 __ LoadRoot(result_, Heap::kUndefinedValueRootIndex);
4788 __ jmp(exit_label());
4789
4790 __ bind(&index_out_of_range_);
4791 // When the index is out of range, the spec requires us to return
4792 // NaN.
4793 __ LoadRoot(result_, Heap::kNanValueRootIndex);
4794 __ jmp(exit_label());
4795 }
4796
4797 private:
4798 Register result_;
4799
4800 Label need_conversion_;
4801 Label index_out_of_range_;
4802
4803 StringCharCodeAtGenerator char_code_at_generator_;
4804};
4805
4806
4807// This generates code that performs a String.prototype.charCodeAt() call
4808// or returns a smi in order to trigger conversion.
4809void CodeGenerator::GenerateStringCharCodeAt(ZoneList<Expression*>* args) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004810 Comment(masm_, "[ GenerateStringCharCodeAt");
kasper.lund7276f142008-07-30 08:49:36 +00004811 ASSERT(args->length() == 2);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004812
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004813 Load(args->at(0));
4814 Load(args->at(1));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004815
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004816 Register index = frame_->PopToRegister();
4817 Register object = frame_->PopToRegister(index);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004818
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004819 // We need two extra registers.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004820 Register scratch = VirtualFrame::scratch0();
4821 Register result = VirtualFrame::scratch1();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004822
4823 DeferredStringCharCodeAt* deferred =
4824 new DeferredStringCharCodeAt(object,
4825 index,
4826 scratch,
4827 result);
4828 deferred->fast_case_generator()->GenerateFast(masm_);
4829 deferred->BindExit();
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004830 frame_->EmitPush(result);
kasper.lund7276f142008-07-30 08:49:36 +00004831}
4832
4833
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004834class DeferredStringCharFromCode : public DeferredCode {
4835 public:
4836 DeferredStringCharFromCode(Register code,
4837 Register result)
4838 : char_from_code_generator_(code, result) {}
4839
4840 StringCharFromCodeGenerator* fast_case_generator() {
4841 return &char_from_code_generator_;
4842 }
4843
4844 virtual void Generate() {
4845 VirtualFrameRuntimeCallHelper call_helper(frame_state());
4846 char_from_code_generator_.GenerateSlow(masm(), call_helper);
4847 }
4848
4849 private:
4850 StringCharFromCodeGenerator char_from_code_generator_;
4851};
4852
4853
4854// Generates code for creating a one-char string from a char code.
4855void CodeGenerator::GenerateStringCharFromCode(ZoneList<Expression*>* args) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004856 Comment(masm_, "[ GenerateStringCharFromCode");
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004857 ASSERT(args->length() == 1);
4858
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004859 Load(args->at(0));
4860
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004861 Register result = frame_->GetTOSRegister();
4862 Register code = frame_->PopToRegister(result);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004863
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004864 DeferredStringCharFromCode* deferred = new DeferredStringCharFromCode(
4865 code, result);
4866 deferred->fast_case_generator()->GenerateFast(masm_);
4867 deferred->BindExit();
4868 frame_->EmitPush(result);
4869}
4870
4871
4872class DeferredStringCharAt : public DeferredCode {
4873 public:
4874 DeferredStringCharAt(Register object,
4875 Register index,
4876 Register scratch1,
4877 Register scratch2,
4878 Register result)
4879 : result_(result),
4880 char_at_generator_(object,
4881 index,
4882 scratch1,
4883 scratch2,
4884 result,
4885 &need_conversion_,
4886 &need_conversion_,
4887 &index_out_of_range_,
4888 STRING_INDEX_IS_NUMBER) {}
4889
4890 StringCharAtGenerator* fast_case_generator() {
4891 return &char_at_generator_;
4892 }
4893
4894 virtual void Generate() {
4895 VirtualFrameRuntimeCallHelper call_helper(frame_state());
4896 char_at_generator_.GenerateSlow(masm(), call_helper);
4897
4898 __ bind(&need_conversion_);
4899 // Move smi zero into the result register, which will trigger
4900 // conversion.
4901 __ mov(result_, Operand(Smi::FromInt(0)));
4902 __ jmp(exit_label());
4903
4904 __ bind(&index_out_of_range_);
4905 // When the index is out of range, the spec requires us to return
4906 // the empty string.
4907 __ LoadRoot(result_, Heap::kEmptyStringRootIndex);
4908 __ jmp(exit_label());
4909 }
4910
4911 private:
4912 Register result_;
4913
4914 Label need_conversion_;
4915 Label index_out_of_range_;
4916
4917 StringCharAtGenerator char_at_generator_;
4918};
4919
4920
4921// This generates code that performs a String.prototype.charAt() call
4922// or returns a smi in order to trigger conversion.
4923void CodeGenerator::GenerateStringCharAt(ZoneList<Expression*>* args) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004924 Comment(masm_, "[ GenerateStringCharAt");
4925 ASSERT(args->length() == 2);
4926
4927 Load(args->at(0));
4928 Load(args->at(1));
4929
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004930 Register index = frame_->PopToRegister();
4931 Register object = frame_->PopToRegister(index);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004932
4933 // We need three extra registers.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004934 Register scratch1 = VirtualFrame::scratch0();
4935 Register scratch2 = VirtualFrame::scratch1();
4936 // Use r6 without notifying the virtual frame.
4937 Register result = r6;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004938
4939 DeferredStringCharAt* deferred =
4940 new DeferredStringCharAt(object,
4941 index,
4942 scratch1,
4943 scratch2,
4944 result);
4945 deferred->fast_case_generator()->GenerateFast(masm_);
4946 deferred->BindExit();
ager@chromium.orgac091b72010-05-05 07:34:42 +00004947 frame_->EmitPush(result);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004948}
4949
4950
ager@chromium.org7c537e22008-10-16 08:43:32 +00004951void CodeGenerator::GenerateIsArray(ZoneList<Expression*>* args) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00004952 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004953 Load(args->at(0));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004954 JumpTarget answer;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00004955 // We need the CC bits to come out as not_equal in the case where the
4956 // object is a smi. This can't be done with the usual test opcode so
4957 // we use XOR to get the right CC bits.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004958 Register possible_array = frame_->PopToRegister();
4959 Register scratch = VirtualFrame::scratch0();
4960 __ and_(scratch, possible_array, Operand(kSmiTagMask));
4961 __ eor(scratch, scratch, Operand(kSmiTagMask), SetCC);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004962 answer.Branch(ne);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004963 // It is a heap object - get the map. Check if the object is a JS array.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004964 __ CompareObjectType(possible_array, scratch, scratch, JS_ARRAY_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004965 answer.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004966 cc_reg_ = eq;
4967}
4968
4969
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00004970void CodeGenerator::GenerateIsRegExp(ZoneList<Expression*>* args) {
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00004971 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004972 Load(args->at(0));
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00004973 JumpTarget answer;
4974 // We need the CC bits to come out as not_equal in the case where the
4975 // object is a smi. This can't be done with the usual test opcode so
4976 // we use XOR to get the right CC bits.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004977 Register possible_regexp = frame_->PopToRegister();
4978 Register scratch = VirtualFrame::scratch0();
4979 __ and_(scratch, possible_regexp, Operand(kSmiTagMask));
4980 __ eor(scratch, scratch, Operand(kSmiTagMask), SetCC);
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00004981 answer.Branch(ne);
4982 // It is a heap object - get the map. Check if the object is a regexp.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004983 __ CompareObjectType(possible_regexp, scratch, scratch, JS_REGEXP_TYPE);
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00004984 answer.Bind();
4985 cc_reg_ = eq;
4986}
4987
4988
ager@chromium.org6141cbe2009-11-20 12:14:52 +00004989void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) {
4990 // This generates a fast version of:
4991 // (typeof(arg) === 'object' || %_ClassOf(arg) == 'RegExp')
ager@chromium.org6141cbe2009-11-20 12:14:52 +00004992 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004993 Load(args->at(0));
4994 Register possible_object = frame_->PopToRegister();
4995 __ tst(possible_object, Operand(kSmiTagMask));
ager@chromium.org6141cbe2009-11-20 12:14:52 +00004996 false_target()->Branch(eq);
4997
4998 __ LoadRoot(ip, Heap::kNullValueRootIndex);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004999 __ cmp(possible_object, ip);
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005000 true_target()->Branch(eq);
5001
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005002 Register map_reg = VirtualFrame::scratch0();
5003 __ ldr(map_reg, FieldMemOperand(possible_object, HeapObject::kMapOffset));
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005004 // Undetectable objects behave like undefined when tested with typeof.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005005 __ ldrb(possible_object, FieldMemOperand(map_reg, Map::kBitFieldOffset));
5006 __ tst(possible_object, Operand(1 << Map::kIsUndetectable));
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005007 false_target()->Branch(ne);
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005008
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005009 __ ldrb(possible_object, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
5010 __ cmp(possible_object, Operand(FIRST_JS_OBJECT_TYPE));
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005011 false_target()->Branch(lt);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005012 __ cmp(possible_object, Operand(LAST_JS_OBJECT_TYPE));
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005013 cc_reg_ = le;
5014}
5015
5016
ricow@chromium.org4980dff2010-07-19 08:33:45 +00005017void CodeGenerator::GenerateIsSpecObject(ZoneList<Expression*>* args) {
5018 // This generates a fast version of:
5019 // (typeof(arg) === 'object' || %_ClassOf(arg) == 'RegExp' ||
5020 // typeof(arg) == function).
5021 // It includes undetectable objects (as opposed to IsObject).
5022 ASSERT(args->length() == 1);
5023 Load(args->at(0));
5024 Register value = frame_->PopToRegister();
5025 __ tst(value, Operand(kSmiTagMask));
5026 false_target()->Branch(eq);
5027 // Check that this is an object.
5028 __ ldr(value, FieldMemOperand(value, HeapObject::kMapOffset));
5029 __ ldrb(value, FieldMemOperand(value, Map::kInstanceTypeOffset));
5030 __ cmp(value, Operand(FIRST_JS_OBJECT_TYPE));
5031 cc_reg_ = ge;
5032}
5033
5034
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00005035// Deferred code to check whether the String JavaScript object is safe for using
5036// default value of. This code is called after the bit caching this information
5037// in the map has been checked with the map for the object in the map_result_
5038// register. On return the register map_result_ contains 1 for true and 0 for
5039// false.
5040class DeferredIsStringWrapperSafeForDefaultValueOf : public DeferredCode {
5041 public:
5042 DeferredIsStringWrapperSafeForDefaultValueOf(Register object,
5043 Register map_result,
5044 Register scratch1,
5045 Register scratch2)
5046 : object_(object),
5047 map_result_(map_result),
5048 scratch1_(scratch1),
5049 scratch2_(scratch2) { }
5050
5051 virtual void Generate() {
5052 Label false_result;
5053
5054 // Check that map is loaded as expected.
5055 if (FLAG_debug_code) {
5056 __ ldr(ip, FieldMemOperand(object_, HeapObject::kMapOffset));
5057 __ cmp(map_result_, ip);
5058 __ Assert(eq, "Map not in expected register");
5059 }
5060
5061 // Check for fast case object. Generate false result for slow case object.
5062 __ ldr(scratch1_, FieldMemOperand(object_, JSObject::kPropertiesOffset));
5063 __ ldr(scratch1_, FieldMemOperand(scratch1_, HeapObject::kMapOffset));
5064 __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
5065 __ cmp(scratch1_, ip);
5066 __ b(eq, &false_result);
5067
5068 // Look for valueOf symbol in the descriptor array, and indicate false if
5069 // found. The type is not checked, so if it is a transition it is a false
5070 // negative.
5071 __ ldr(map_result_,
5072 FieldMemOperand(map_result_, Map::kInstanceDescriptorsOffset));
5073 __ ldr(scratch2_, FieldMemOperand(map_result_, FixedArray::kLengthOffset));
5074 // map_result_: descriptor array
5075 // scratch2_: length of descriptor array
5076 // Calculate the end of the descriptor array.
5077 STATIC_ASSERT(kSmiTag == 0);
5078 STATIC_ASSERT(kSmiTagSize == 1);
5079 STATIC_ASSERT(kPointerSize == 4);
5080 __ add(scratch1_,
5081 map_result_,
5082 Operand(FixedArray::kHeaderSize - kHeapObjectTag));
5083 __ add(scratch1_,
5084 scratch1_,
5085 Operand(scratch2_, LSL, kPointerSizeLog2 - kSmiTagSize));
5086
5087 // Calculate location of the first key name.
5088 __ add(map_result_,
5089 map_result_,
5090 Operand(FixedArray::kHeaderSize - kHeapObjectTag +
5091 DescriptorArray::kFirstIndex * kPointerSize));
5092 // Loop through all the keys in the descriptor array. If one of these is the
5093 // symbol valueOf the result is false.
5094 Label entry, loop;
5095 // The use of ip to store the valueOf symbol asumes that it is not otherwise
5096 // used in the loop below.
5097 __ mov(ip, Operand(Factory::value_of_symbol()));
5098 __ jmp(&entry);
5099 __ bind(&loop);
5100 __ ldr(scratch2_, MemOperand(map_result_, 0));
5101 __ cmp(scratch2_, ip);
5102 __ b(eq, &false_result);
5103 __ add(map_result_, map_result_, Operand(kPointerSize));
5104 __ bind(&entry);
5105 __ cmp(map_result_, Operand(scratch1_));
5106 __ b(ne, &loop);
5107
5108 // Reload map as register map_result_ was used as temporary above.
5109 __ ldr(map_result_, FieldMemOperand(object_, HeapObject::kMapOffset));
5110
5111 // If a valueOf property is not found on the object check that it's
5112 // prototype is the un-modified String prototype. If not result is false.
5113 __ ldr(scratch1_, FieldMemOperand(map_result_, Map::kPrototypeOffset));
5114 __ tst(scratch1_, Operand(kSmiTagMask));
5115 __ b(eq, &false_result);
5116 __ ldr(scratch1_, FieldMemOperand(scratch1_, HeapObject::kMapOffset));
5117 __ ldr(scratch2_,
5118 CodeGenerator::ContextOperand(cp, Context::GLOBAL_INDEX));
5119 __ ldr(scratch2_,
5120 FieldMemOperand(scratch2_, GlobalObject::kGlobalContextOffset));
5121 __ ldr(scratch2_,
5122 CodeGenerator::ContextOperand(
5123 scratch2_, Context::STRING_FUNCTION_PROTOTYPE_MAP_INDEX));
5124 __ cmp(scratch1_, scratch2_);
5125 __ b(ne, &false_result);
5126
5127 // Set the bit in the map to indicate that it has been checked safe for
5128 // default valueOf and set true result.
5129 __ ldr(scratch1_, FieldMemOperand(map_result_, Map::kBitField2Offset));
5130 __ orr(scratch1_,
5131 scratch1_,
5132 Operand(1 << Map::kStringWrapperSafeForDefaultValueOf));
5133 __ str(scratch1_, FieldMemOperand(map_result_, Map::kBitField2Offset));
5134 __ mov(map_result_, Operand(1));
5135 __ jmp(exit_label());
5136 __ bind(&false_result);
5137 // Set false result.
5138 __ mov(map_result_, Operand(0));
5139 }
5140
5141 private:
5142 Register object_;
5143 Register map_result_;
5144 Register scratch1_;
5145 Register scratch2_;
5146};
5147
5148
5149void CodeGenerator::GenerateIsStringWrapperSafeForDefaultValueOf(
5150 ZoneList<Expression*>* args) {
5151 ASSERT(args->length() == 1);
5152 Load(args->at(0));
5153 Register obj = frame_->PopToRegister(); // Pop the string wrapper.
5154 if (FLAG_debug_code) {
5155 __ AbortIfSmi(obj);
5156 }
5157
5158 // Check whether this map has already been checked to be safe for default
5159 // valueOf.
5160 Register map_result = VirtualFrame::scratch0();
5161 __ ldr(map_result, FieldMemOperand(obj, HeapObject::kMapOffset));
5162 __ ldrb(ip, FieldMemOperand(map_result, Map::kBitField2Offset));
5163 __ tst(ip, Operand(1 << Map::kStringWrapperSafeForDefaultValueOf));
5164 true_target()->Branch(ne);
5165
5166 // We need an additional two scratch registers for the deferred code.
5167 Register scratch1 = VirtualFrame::scratch1();
5168 // Use r6 without notifying the virtual frame.
5169 Register scratch2 = r6;
5170
5171 DeferredIsStringWrapperSafeForDefaultValueOf* deferred =
5172 new DeferredIsStringWrapperSafeForDefaultValueOf(
5173 obj, map_result, scratch1, scratch2);
5174 deferred->Branch(eq);
5175 deferred->BindExit();
5176 __ tst(map_result, Operand(map_result));
5177 cc_reg_ = ne;
5178}
5179
5180
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005181void CodeGenerator::GenerateIsFunction(ZoneList<Expression*>* args) {
5182 // This generates a fast version of:
5183 // (%_ClassOf(arg) === 'Function')
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005184 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005185 Load(args->at(0));
5186 Register possible_function = frame_->PopToRegister();
5187 __ tst(possible_function, Operand(kSmiTagMask));
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005188 false_target()->Branch(eq);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005189 Register map_reg = VirtualFrame::scratch0();
5190 Register scratch = VirtualFrame::scratch1();
5191 __ CompareObjectType(possible_function, map_reg, scratch, JS_FUNCTION_TYPE);
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005192 cc_reg_ = eq;
5193}
5194
5195
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005196void CodeGenerator::GenerateIsUndetectableObject(ZoneList<Expression*>* args) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005197 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005198 Load(args->at(0));
5199 Register possible_undetectable = frame_->PopToRegister();
5200 __ tst(possible_undetectable, Operand(kSmiTagMask));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005201 false_target()->Branch(eq);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005202 Register scratch = VirtualFrame::scratch0();
5203 __ ldr(scratch,
5204 FieldMemOperand(possible_undetectable, HeapObject::kMapOffset));
5205 __ ldrb(scratch, FieldMemOperand(scratch, Map::kBitFieldOffset));
5206 __ tst(scratch, Operand(1 << Map::kIsUndetectable));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005207 cc_reg_ = ne;
5208}
5209
5210
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005211void CodeGenerator::GenerateIsConstructCall(ZoneList<Expression*>* args) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005212 ASSERT(args->length() == 0);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005213
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005214 Register scratch0 = VirtualFrame::scratch0();
5215 Register scratch1 = VirtualFrame::scratch1();
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005216 // Get the frame pointer for the calling frame.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005217 __ ldr(scratch0, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005218
5219 // Skip the arguments adaptor frame if it exists.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005220 __ ldr(scratch1,
5221 MemOperand(scratch0, StandardFrameConstants::kContextOffset));
5222 __ cmp(scratch1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
5223 __ ldr(scratch0,
5224 MemOperand(scratch0, StandardFrameConstants::kCallerFPOffset), eq);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005225
5226 // Check the marker in the calling frame.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005227 __ ldr(scratch1,
5228 MemOperand(scratch0, StandardFrameConstants::kMarkerOffset));
5229 __ cmp(scratch1, Operand(Smi::FromInt(StackFrame::CONSTRUCT)));
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005230 cc_reg_ = eq;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005231}
5232
5233
ager@chromium.org7c537e22008-10-16 08:43:32 +00005234void CodeGenerator::GenerateArgumentsLength(ZoneList<Expression*>* args) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005235 ASSERT(args->length() == 0);
5236
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005237 Register tos = frame_->GetTOSRegister();
5238 Register scratch0 = VirtualFrame::scratch0();
5239 Register scratch1 = VirtualFrame::scratch1();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005240
lrn@chromium.org25156de2010-04-06 13:10:27 +00005241 // Check if the calling frame is an arguments adaptor frame.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005242 __ ldr(scratch0,
5243 MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
5244 __ ldr(scratch1,
5245 MemOperand(scratch0, StandardFrameConstants::kContextOffset));
5246 __ cmp(scratch1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
5247
5248 // Get the number of formal parameters.
5249 __ mov(tos, Operand(Smi::FromInt(scope()->num_parameters())), LeaveCC, ne);
lrn@chromium.org25156de2010-04-06 13:10:27 +00005250
5251 // Arguments adaptor case: Read the arguments length from the
5252 // adaptor frame.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005253 __ ldr(tos,
5254 MemOperand(scratch0, ArgumentsAdaptorFrameConstants::kLengthOffset),
5255 eq);
lrn@chromium.org25156de2010-04-06 13:10:27 +00005256
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005257 frame_->EmitPush(tos);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005258}
5259
5260
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00005261void CodeGenerator::GenerateArguments(ZoneList<Expression*>* args) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005262 ASSERT(args->length() == 1);
5263
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00005264 // Satisfy contract with ArgumentsAccessStub:
5265 // Load the key into r1 and the formal parameters count into r0.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005266 Load(args->at(0));
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005267 frame_->PopToR1();
5268 frame_->SpillAll();
ager@chromium.org5c838252010-02-19 08:53:10 +00005269 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005270
5271 // Call the shared stub to get to arguments[key].
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005272 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_ELEMENT);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005273 frame_->CallStub(&stub, 0);
5274 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005275}
5276
5277
ager@chromium.org357bf652010-04-12 11:30:10 +00005278void CodeGenerator::GenerateRandomHeapNumber(
5279 ZoneList<Expression*>* args) {
5280 VirtualFrame::SpilledScope spilled_scope(frame_);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005281 ASSERT(args->length() == 0);
ager@chromium.org357bf652010-04-12 11:30:10 +00005282
5283 Label slow_allocate_heapnumber;
5284 Label heapnumber_allocated;
5285
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00005286 __ LoadRoot(r6, Heap::kHeapNumberMapRootIndex);
5287 __ AllocateHeapNumber(r4, r1, r2, r6, &slow_allocate_heapnumber);
ager@chromium.org357bf652010-04-12 11:30:10 +00005288 __ jmp(&heapnumber_allocated);
5289
5290 __ bind(&slow_allocate_heapnumber);
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00005291 // Allocate a heap number.
5292 __ CallRuntime(Runtime::kNumberAlloc, 0);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00005293 __ mov(r4, Operand(r0));
ager@chromium.org357bf652010-04-12 11:30:10 +00005294
5295 __ bind(&heapnumber_allocated);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00005296
5297 // Convert 32 random bits in r0 to 0.(32 random bits) in a double
5298 // by computing:
5299 // ( 1.(20 0s)(32 random bits) x 2^20 ) - (1.0 x 2^20)).
5300 if (CpuFeatures::IsSupported(VFP3)) {
5301 __ PrepareCallCFunction(0, r1);
5302 __ CallCFunction(ExternalReference::random_uint32_function(), 0);
5303
5304 CpuFeatures::Scope scope(VFP3);
5305 // 0x41300000 is the top half of 1.0 x 2^20 as a double.
5306 // Create this constant using mov/orr to avoid PC relative load.
5307 __ mov(r1, Operand(0x41000000));
5308 __ orr(r1, r1, Operand(0x300000));
5309 // Move 0x41300000xxxxxxxx (x = random bits) to VFP.
5310 __ vmov(d7, r0, r1);
5311 // Move 0x4130000000000000 to VFP.
5312 __ mov(r0, Operand(0));
5313 __ vmov(d8, r0, r1);
5314 // Subtract and store the result in the heap number.
5315 __ vsub(d7, d7, d8);
5316 __ sub(r0, r4, Operand(kHeapObjectTag));
5317 __ vstr(d7, r0, HeapNumber::kValueOffset);
5318 frame_->EmitPush(r4);
5319 } else {
5320 __ mov(r0, Operand(r4));
5321 __ PrepareCallCFunction(1, r1);
5322 __ CallCFunction(
5323 ExternalReference::fill_heap_number_with_random_function(), 1);
5324 frame_->EmitPush(r0);
5325 }
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005326}
5327
5328
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005329void CodeGenerator::GenerateStringAdd(ZoneList<Expression*>* args) {
5330 ASSERT_EQ(2, args->length());
5331
5332 Load(args->at(0));
5333 Load(args->at(1));
5334
ager@chromium.org5c838252010-02-19 08:53:10 +00005335 StringAddStub stub(NO_STRING_ADD_FLAGS);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005336 frame_->SpillAll();
ager@chromium.org5c838252010-02-19 08:53:10 +00005337 frame_->CallStub(&stub, 2);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005338 frame_->EmitPush(r0);
5339}
5340
5341
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005342void CodeGenerator::GenerateSubString(ZoneList<Expression*>* args) {
5343 ASSERT_EQ(3, args->length());
5344
5345 Load(args->at(0));
5346 Load(args->at(1));
5347 Load(args->at(2));
5348
ager@chromium.org5c838252010-02-19 08:53:10 +00005349 SubStringStub stub;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005350 frame_->SpillAll();
ager@chromium.org5c838252010-02-19 08:53:10 +00005351 frame_->CallStub(&stub, 3);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005352 frame_->EmitPush(r0);
5353}
5354
5355
5356void CodeGenerator::GenerateStringCompare(ZoneList<Expression*>* args) {
5357 ASSERT_EQ(2, args->length());
5358
5359 Load(args->at(0));
5360 Load(args->at(1));
5361
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005362 StringCompareStub stub;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005363 frame_->SpillAll();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005364 frame_->CallStub(&stub, 2);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005365 frame_->EmitPush(r0);
5366}
5367
5368
5369void CodeGenerator::GenerateRegExpExec(ZoneList<Expression*>* args) {
5370 ASSERT_EQ(4, args->length());
5371
5372 Load(args->at(0));
5373 Load(args->at(1));
5374 Load(args->at(2));
5375 Load(args->at(3));
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005376 RegExpExecStub stub;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005377 frame_->SpillAll();
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005378 frame_->CallStub(&stub, 4);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005379 frame_->EmitPush(r0);
5380}
5381
5382
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +00005383void CodeGenerator::GenerateRegExpConstructResult(ZoneList<Expression*>* args) {
5384 // No stub. This code only occurs a few times in regexp.js.
5385 const int kMaxInlineLength = 100;
5386 ASSERT_EQ(3, args->length());
5387 Load(args->at(0)); // Size of array, smi.
5388 Load(args->at(1)); // "index" property value.
5389 Load(args->at(2)); // "input" property value.
5390 {
5391 VirtualFrame::SpilledScope spilled_scope(frame_);
5392 Label slowcase;
5393 Label done;
5394 __ ldr(r1, MemOperand(sp, kPointerSize * 2));
5395 STATIC_ASSERT(kSmiTag == 0);
5396 STATIC_ASSERT(kSmiTagSize == 1);
5397 __ tst(r1, Operand(kSmiTagMask));
5398 __ b(ne, &slowcase);
5399 __ cmp(r1, Operand(Smi::FromInt(kMaxInlineLength)));
5400 __ b(hi, &slowcase);
5401 // Smi-tagging is equivalent to multiplying by 2.
5402 // Allocate RegExpResult followed by FixedArray with size in ebx.
5403 // JSArray: [Map][empty properties][Elements][Length-smi][index][input]
5404 // Elements: [Map][Length][..elements..]
5405 // Size of JSArray with two in-object properties and the header of a
5406 // FixedArray.
5407 int objects_size =
5408 (JSRegExpResult::kSize + FixedArray::kHeaderSize) / kPointerSize;
5409 __ mov(r5, Operand(r1, LSR, kSmiTagSize + kSmiShiftSize));
5410 __ add(r2, r5, Operand(objects_size));
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00005411 __ AllocateInNewSpace(
5412 r2, // In: Size, in words.
5413 r0, // Out: Start of allocation (tagged).
5414 r3, // Scratch register.
5415 r4, // Scratch register.
5416 &slowcase,
5417 static_cast<AllocationFlags>(TAG_OBJECT | SIZE_IN_WORDS));
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +00005418 // r0: Start of allocated area, object-tagged.
5419 // r1: Number of elements in array, as smi.
5420 // r5: Number of elements, untagged.
5421
5422 // Set JSArray map to global.regexp_result_map().
5423 // Set empty properties FixedArray.
5424 // Set elements to point to FixedArray allocated right after the JSArray.
5425 // Interleave operations for better latency.
5426 __ ldr(r2, ContextOperand(cp, Context::GLOBAL_INDEX));
5427 __ add(r3, r0, Operand(JSRegExpResult::kSize));
5428 __ mov(r4, Operand(Factory::empty_fixed_array()));
5429 __ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalContextOffset));
5430 __ str(r3, FieldMemOperand(r0, JSObject::kElementsOffset));
5431 __ ldr(r2, ContextOperand(r2, Context::REGEXP_RESULT_MAP_INDEX));
5432 __ str(r4, FieldMemOperand(r0, JSObject::kPropertiesOffset));
5433 __ str(r2, FieldMemOperand(r0, HeapObject::kMapOffset));
5434
5435 // Set input, index and length fields from arguments.
5436 __ ldm(ia_w, sp, static_cast<RegList>(r2.bit() | r4.bit()));
5437 __ str(r1, FieldMemOperand(r0, JSArray::kLengthOffset));
5438 __ add(sp, sp, Operand(kPointerSize));
5439 __ str(r4, FieldMemOperand(r0, JSRegExpResult::kIndexOffset));
5440 __ str(r2, FieldMemOperand(r0, JSRegExpResult::kInputOffset));
5441
5442 // Fill out the elements FixedArray.
5443 // r0: JSArray, tagged.
5444 // r3: FixedArray, tagged.
5445 // r5: Number of elements in array, untagged.
5446
5447 // Set map.
5448 __ mov(r2, Operand(Factory::fixed_array_map()));
5449 __ str(r2, FieldMemOperand(r3, HeapObject::kMapOffset));
5450 // Set FixedArray length.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005451 __ mov(r6, Operand(r5, LSL, kSmiTagSize));
5452 __ str(r6, FieldMemOperand(r3, FixedArray::kLengthOffset));
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +00005453 // Fill contents of fixed-array with the-hole.
5454 __ mov(r2, Operand(Factory::the_hole_value()));
5455 __ add(r3, r3, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
5456 // Fill fixed array elements with hole.
5457 // r0: JSArray, tagged.
5458 // r2: the hole.
5459 // r3: Start of elements in FixedArray.
5460 // r5: Number of elements to fill.
5461 Label loop;
5462 __ tst(r5, Operand(r5));
5463 __ bind(&loop);
5464 __ b(le, &done); // Jump if r1 is negative or zero.
5465 __ sub(r5, r5, Operand(1), SetCC);
5466 __ str(r2, MemOperand(r3, r5, LSL, kPointerSizeLog2));
5467 __ jmp(&loop);
5468
5469 __ bind(&slowcase);
5470 __ CallRuntime(Runtime::kRegExpConstructResult, 3);
5471
5472 __ bind(&done);
5473 }
5474 frame_->Forget(3);
5475 frame_->EmitPush(r0);
5476}
5477
5478
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00005479void CodeGenerator::GenerateRegExpCloneResult(ZoneList<Expression*>* args) {
5480 ASSERT_EQ(1, args->length());
5481
5482 Load(args->at(0));
5483 frame_->PopToR0();
5484 {
5485 VirtualFrame::SpilledScope spilled_scope(frame_);
5486
5487 Label done;
5488 Label call_runtime;
5489 __ BranchOnSmi(r0, &done);
5490
5491 // Load JSRegExp map into r1. Check that argument object has this map.
5492 // Arguments to this function should be results of calling RegExp exec,
5493 // which is either an unmodified JSRegExpResult or null. Anything not having
5494 // the unmodified JSRegExpResult map is returned unmodified.
5495 // This also ensures that elements are fast.
5496
5497 __ ldr(r1, ContextOperand(cp, Context::GLOBAL_INDEX));
5498 __ ldr(r1, FieldMemOperand(r1, GlobalObject::kGlobalContextOffset));
5499 __ ldr(r1, ContextOperand(r1, Context::REGEXP_RESULT_MAP_INDEX));
5500 __ ldr(ip, FieldMemOperand(r0, HeapObject::kMapOffset));
5501 __ cmp(r1, Operand(ip));
5502 __ b(ne, &done);
5503
ricow@chromium.org65fae842010-08-25 15:26:24 +00005504 if (FLAG_debug_code) {
5505 __ LoadRoot(r2, Heap::kEmptyFixedArrayRootIndex);
5506 __ ldr(ip, FieldMemOperand(r0, JSObject::kPropertiesOffset));
5507 __ cmp(ip, r2);
5508 __ Check(eq, "JSRegExpResult: default map but non-empty properties.");
5509 }
5510
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00005511 // All set, copy the contents to a new object.
5512 __ AllocateInNewSpace(JSRegExpResult::kSize,
5513 r2,
5514 r3,
5515 r4,
5516 &call_runtime,
5517 NO_ALLOCATION_FLAGS);
5518 // Store RegExpResult map as map of allocated object.
5519 ASSERT(JSRegExpResult::kSize == 6 * kPointerSize);
5520 // Copy all fields (map is already in r1) from (untagged) r0 to r2.
5521 // Change map of elements array (ends up in r4) to be a FixedCOWArray.
5522 __ bic(r0, r0, Operand(kHeapObjectTagMask));
5523 __ ldm(ib, r0, r3.bit() | r4.bit() | r5.bit() | r6.bit() | r7.bit());
5524 __ stm(ia, r2,
5525 r1.bit() | r3.bit() | r4.bit() | r5.bit() | r6.bit() | r7.bit());
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00005526 ASSERT(JSRegExp::kElementsOffset == 2 * kPointerSize);
5527 // Check whether elements array is empty fixed array, and otherwise make
5528 // it copy-on-write (it never should be empty unless someone is messing
5529 // with the arguments to the runtime function).
5530 __ LoadRoot(ip, Heap::kEmptyFixedArrayRootIndex);
5531 __ add(r0, r2, Operand(kHeapObjectTag)); // Tag result and move it to r0.
5532 __ cmp(r4, ip);
5533 __ b(eq, &done);
5534 __ LoadRoot(ip, Heap::kFixedCOWArrayMapRootIndex);
5535 __ str(ip, FieldMemOperand(r4, HeapObject::kMapOffset));
5536 __ b(&done);
5537 __ bind(&call_runtime);
5538 __ push(r0);
5539 __ CallRuntime(Runtime::kRegExpCloneResult, 1);
5540 __ bind(&done);
5541 }
5542 frame_->EmitPush(r0);
5543}
5544
5545
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005546class DeferredSearchCache: public DeferredCode {
5547 public:
5548 DeferredSearchCache(Register dst, Register cache, Register key)
5549 : dst_(dst), cache_(cache), key_(key) {
5550 set_comment("[ DeferredSearchCache");
5551 }
5552
5553 virtual void Generate();
5554
5555 private:
5556 Register dst_, cache_, key_;
5557};
5558
5559
5560void DeferredSearchCache::Generate() {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00005561 __ Push(cache_, key_);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005562 __ CallRuntime(Runtime::kGetFromCache, 2);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005563 __ Move(dst_, r0);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005564}
5565
5566
5567void CodeGenerator::GenerateGetFromCache(ZoneList<Expression*>* args) {
5568 ASSERT_EQ(2, args->length());
5569
5570 ASSERT_NE(NULL, args->at(0)->AsLiteral());
5571 int cache_id = Smi::cast(*(args->at(0)->AsLiteral()->handle()))->value();
5572
5573 Handle<FixedArray> jsfunction_result_caches(
5574 Top::global_context()->jsfunction_result_caches());
5575 if (jsfunction_result_caches->length() <= cache_id) {
5576 __ Abort("Attempt to use undefined cache.");
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005577 frame_->EmitPushRoot(Heap::kUndefinedValueRootIndex);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005578 return;
5579 }
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005580
5581 Load(args->at(1));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005582
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005583 frame_->PopToR1();
5584 frame_->SpillAll();
5585 Register key = r1; // Just poped to r1
5586 Register result = r0; // Free, as frame has just been spilled.
5587 Register scratch1 = VirtualFrame::scratch0();
5588 Register scratch2 = VirtualFrame::scratch1();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005589
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005590 __ ldr(scratch1, ContextOperand(cp, Context::GLOBAL_INDEX));
5591 __ ldr(scratch1,
5592 FieldMemOperand(scratch1, GlobalObject::kGlobalContextOffset));
5593 __ ldr(scratch1,
5594 ContextOperand(scratch1, Context::JSFUNCTION_RESULT_CACHES_INDEX));
5595 __ ldr(scratch1,
5596 FieldMemOperand(scratch1, FixedArray::OffsetOfElementAt(cache_id)));
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005597
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005598 DeferredSearchCache* deferred =
5599 new DeferredSearchCache(result, scratch1, key);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005600
5601 const int kFingerOffset =
5602 FixedArray::OffsetOfElementAt(JSFunctionResultCache::kFingerIndex);
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00005603 STATIC_ASSERT(kSmiTag == 0 && kSmiTagSize == 1);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005604 __ ldr(result, FieldMemOperand(scratch1, kFingerOffset));
5605 // result now holds finger offset as a smi.
5606 __ add(scratch2, scratch1, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
5607 // scratch2 now points to the start of fixed array elements.
5608 __ ldr(result,
5609 MemOperand(
5610 scratch2, result, LSL, kPointerSizeLog2 - kSmiTagSize, PreIndex));
5611 // Note side effect of PreIndex: scratch2 now points to the key of the pair.
5612 __ cmp(key, result);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005613 deferred->Branch(ne);
5614
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005615 __ ldr(result, MemOperand(scratch2, kPointerSize));
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005616
5617 deferred->BindExit();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005618 frame_->EmitPush(result);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005619}
5620
5621
ager@chromium.org5c838252010-02-19 08:53:10 +00005622void CodeGenerator::GenerateNumberToString(ZoneList<Expression*>* args) {
5623 ASSERT_EQ(args->length(), 1);
5624
5625 // Load the argument on the stack and jump to the runtime.
5626 Load(args->at(0));
5627
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005628 NumberToStringStub stub;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005629 frame_->SpillAll();
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005630 frame_->CallStub(&stub, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00005631 frame_->EmitPush(r0);
5632}
5633
5634
ager@chromium.orgac091b72010-05-05 07:34:42 +00005635class DeferredSwapElements: public DeferredCode {
5636 public:
5637 DeferredSwapElements(Register object, Register index1, Register index2)
5638 : object_(object), index1_(index1), index2_(index2) {
5639 set_comment("[ DeferredSwapElements");
5640 }
5641
5642 virtual void Generate();
5643
5644 private:
5645 Register object_, index1_, index2_;
5646};
5647
5648
5649void DeferredSwapElements::Generate() {
5650 __ push(object_);
5651 __ push(index1_);
5652 __ push(index2_);
5653 __ CallRuntime(Runtime::kSwapElements, 3);
5654}
5655
5656
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00005657void CodeGenerator::GenerateSwapElements(ZoneList<Expression*>* args) {
5658 Comment cmnt(masm_, "[ GenerateSwapElements");
5659
5660 ASSERT_EQ(3, args->length());
5661
5662 Load(args->at(0));
5663 Load(args->at(1));
5664 Load(args->at(2));
5665
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005666 VirtualFrame::SpilledScope spilled_scope(frame_);
5667
ager@chromium.orgac091b72010-05-05 07:34:42 +00005668 Register index2 = r2;
5669 Register index1 = r1;
5670 Register object = r0;
5671 Register tmp1 = r3;
5672 Register tmp2 = r4;
5673
5674 frame_->EmitPop(index2);
5675 frame_->EmitPop(index1);
5676 frame_->EmitPop(object);
5677
5678 DeferredSwapElements* deferred =
5679 new DeferredSwapElements(object, index1, index2);
5680
5681 // Fetch the map and check if array is in fast case.
5682 // Check that object doesn't require security checks and
5683 // has no indexed interceptor.
5684 __ CompareObjectType(object, tmp1, tmp2, FIRST_JS_OBJECT_TYPE);
5685 deferred->Branch(lt);
5686 __ ldrb(tmp2, FieldMemOperand(tmp1, Map::kBitFieldOffset));
5687 __ tst(tmp2, Operand(KeyedLoadIC::kSlowCaseBitFieldMask));
5688 deferred->Branch(nz);
5689
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00005690 // Check the object's elements are in fast case and writable.
ager@chromium.orgac091b72010-05-05 07:34:42 +00005691 __ ldr(tmp1, FieldMemOperand(object, JSObject::kElementsOffset));
5692 __ ldr(tmp2, FieldMemOperand(tmp1, HeapObject::kMapOffset));
5693 __ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
5694 __ cmp(tmp2, ip);
5695 deferred->Branch(ne);
5696
5697 // Smi-tagging is equivalent to multiplying by 2.
5698 STATIC_ASSERT(kSmiTag == 0);
5699 STATIC_ASSERT(kSmiTagSize == 1);
5700
5701 // Check that both indices are smis.
5702 __ mov(tmp2, index1);
5703 __ orr(tmp2, tmp2, index2);
5704 __ tst(tmp2, Operand(kSmiTagMask));
5705 deferred->Branch(nz);
5706
5707 // Bring the offsets into the fixed array in tmp1 into index1 and
5708 // index2.
5709 __ mov(tmp2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
5710 __ add(index1, tmp2, Operand(index1, LSL, kPointerSizeLog2 - kSmiTagSize));
5711 __ add(index2, tmp2, Operand(index2, LSL, kPointerSizeLog2 - kSmiTagSize));
5712
5713 // Swap elements.
5714 Register tmp3 = object;
5715 object = no_reg;
5716 __ ldr(tmp3, MemOperand(tmp1, index1));
5717 __ ldr(tmp2, MemOperand(tmp1, index2));
5718 __ str(tmp3, MemOperand(tmp1, index2));
5719 __ str(tmp2, MemOperand(tmp1, index1));
5720
5721 Label done;
5722 __ InNewSpace(tmp1, tmp2, eq, &done);
5723 // Possible optimization: do a check that both values are Smis
5724 // (or them and test against Smi mask.)
5725
5726 __ mov(tmp2, tmp1);
5727 RecordWriteStub recordWrite1(tmp1, index1, tmp3);
5728 __ CallStub(&recordWrite1);
5729
5730 RecordWriteStub recordWrite2(tmp2, index2, tmp3);
5731 __ CallStub(&recordWrite2);
5732
5733 __ bind(&done);
5734
5735 deferred->BindExit();
5736 __ LoadRoot(tmp1, Heap::kUndefinedValueRootIndex);
5737 frame_->EmitPush(tmp1);
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00005738}
5739
5740
ager@chromium.org357bf652010-04-12 11:30:10 +00005741void CodeGenerator::GenerateCallFunction(ZoneList<Expression*>* args) {
5742 Comment cmnt(masm_, "[ GenerateCallFunction");
5743
5744 ASSERT(args->length() >= 2);
5745
5746 int n_args = args->length() - 2; // for receiver and function.
5747 Load(args->at(0)); // receiver
5748 for (int i = 0; i < n_args; i++) {
5749 Load(args->at(i + 1));
5750 }
5751 Load(args->at(n_args + 1)); // function
5752 frame_->CallJSFunction(n_args);
5753 frame_->EmitPush(r0);
5754}
5755
5756
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00005757void CodeGenerator::GenerateMathSin(ZoneList<Expression*>* args) {
5758 ASSERT_EQ(args->length(), 1);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00005759 Load(args->at(0));
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00005760 if (CpuFeatures::IsSupported(VFP3)) {
5761 TranscendentalCacheStub stub(TranscendentalCache::SIN);
5762 frame_->SpillAllButCopyTOSToR0();
5763 frame_->CallStub(&stub, 1);
5764 } else {
5765 frame_->CallRuntime(Runtime::kMath_sin, 1);
5766 }
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00005767 frame_->EmitPush(r0);
5768}
5769
5770
5771void CodeGenerator::GenerateMathCos(ZoneList<Expression*>* args) {
5772 ASSERT_EQ(args->length(), 1);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00005773 Load(args->at(0));
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00005774 if (CpuFeatures::IsSupported(VFP3)) {
5775 TranscendentalCacheStub stub(TranscendentalCache::COS);
5776 frame_->SpillAllButCopyTOSToR0();
5777 frame_->CallStub(&stub, 1);
5778 } else {
5779 frame_->CallRuntime(Runtime::kMath_cos, 1);
5780 }
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00005781 frame_->EmitPush(r0);
5782}
5783
5784
ager@chromium.org7c537e22008-10-16 08:43:32 +00005785void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) {
ager@chromium.org9258b6b2008-09-11 09:11:10 +00005786 ASSERT(args->length() == 2);
5787
5788 // Load the two objects into registers and perform the comparison.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005789 Load(args->at(0));
5790 Load(args->at(1));
5791 Register lhs = frame_->PopToRegister();
5792 Register rhs = frame_->PopToRegister(lhs);
5793 __ cmp(lhs, rhs);
ager@chromium.org9258b6b2008-09-11 09:11:10 +00005794 cc_reg_ = eq;
5795}
5796
5797
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00005798void CodeGenerator::GenerateIsRegExpEquivalent(ZoneList<Expression*>* args) {
5799 ASSERT(args->length() == 2);
5800
5801 // Load the two objects into registers and perform the comparison.
5802 Load(args->at(0));
5803 Load(args->at(1));
5804 Register right = frame_->PopToRegister();
5805 Register left = frame_->PopToRegister(right);
5806 Register tmp = frame_->scratch0();
5807 Register tmp2 = frame_->scratch1();
5808
5809 // Jumps to done must have the eq flag set if the test is successful
5810 // and clear if the test has failed.
5811 Label done;
5812
5813 // Fail if either is a non-HeapObject.
5814 __ cmp(left, Operand(right));
5815 __ b(eq, &done);
5816 __ and_(tmp, left, Operand(right));
5817 __ eor(tmp, tmp, Operand(kSmiTagMask));
5818 __ tst(tmp, Operand(kSmiTagMask));
5819 __ b(ne, &done);
5820 __ ldr(tmp, FieldMemOperand(left, HeapObject::kMapOffset));
5821 __ ldrb(tmp2, FieldMemOperand(tmp, Map::kInstanceTypeOffset));
5822 __ cmp(tmp2, Operand(JS_REGEXP_TYPE));
5823 __ b(ne, &done);
5824 __ ldr(tmp2, FieldMemOperand(right, HeapObject::kMapOffset));
5825 __ cmp(tmp, Operand(tmp2));
5826 __ b(ne, &done);
5827 __ ldr(tmp, FieldMemOperand(left, JSRegExp::kDataOffset));
5828 __ ldr(tmp2, FieldMemOperand(right, JSRegExp::kDataOffset));
5829 __ cmp(tmp, tmp2);
5830 __ bind(&done);
5831 cc_reg_ = eq;
5832}
5833
5834
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00005835void CodeGenerator::GenerateHasCachedArrayIndex(ZoneList<Expression*>* args) {
5836 ASSERT(args->length() == 1);
5837 Load(args->at(0));
5838 Register value = frame_->PopToRegister();
5839 Register tmp = frame_->scratch0();
5840 __ ldr(tmp, FieldMemOperand(value, String::kHashFieldOffset));
5841 __ tst(tmp, Operand(String::kContainsCachedArrayIndexMask));
5842 cc_reg_ = eq;
5843}
5844
5845
5846void CodeGenerator::GenerateGetCachedArrayIndex(ZoneList<Expression*>* args) {
5847 ASSERT(args->length() == 1);
5848 Load(args->at(0));
5849 Register value = frame_->PopToRegister();
5850
5851 __ ldr(value, FieldMemOperand(value, String::kHashFieldOffset));
5852 __ IndexFromHash(value, value);
5853 frame_->EmitPush(value);
5854}
5855
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00005856
ager@chromium.org7c537e22008-10-16 08:43:32 +00005857void CodeGenerator::VisitCallRuntime(CallRuntime* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005858#ifdef DEBUG
5859 int original_height = frame_->height();
5860#endif
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005861 if (CheckForInlineRuntimeCall(node)) {
5862 ASSERT((has_cc() && frame_->height() == original_height) ||
5863 (!has_cc() && frame_->height() == original_height + 1));
5864 return;
5865 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005866
5867 ZoneList<Expression*>* args = node->arguments();
5868 Comment cmnt(masm_, "[ CallRuntime");
5869 Runtime::Function* function = node->function();
5870
ager@chromium.org41826e72009-03-30 13:30:57 +00005871 if (function == NULL) {
mads.s.ager31e71382008-08-13 09:32:07 +00005872 // Prepare stack for calling JS runtime function.
mads.s.ager31e71382008-08-13 09:32:07 +00005873 // Push the builtins object found in the current global object.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005874 Register scratch = VirtualFrame::scratch0();
5875 __ ldr(scratch, GlobalObject());
5876 Register builtins = frame_->GetTOSRegister();
5877 __ ldr(builtins, FieldMemOperand(scratch, GlobalObject::kBuiltinsOffset));
5878 frame_->EmitPush(builtins);
ager@chromium.org41826e72009-03-30 13:30:57 +00005879 }
mads.s.ager31e71382008-08-13 09:32:07 +00005880
ager@chromium.org41826e72009-03-30 13:30:57 +00005881 // Push the arguments ("left-to-right").
5882 int arg_count = args->length();
5883 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005884 Load(args->at(i));
ager@chromium.org41826e72009-03-30 13:30:57 +00005885 }
mads.s.ager31e71382008-08-13 09:32:07 +00005886
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005887 VirtualFrame::SpilledScope spilled_scope(frame_);
5888
ager@chromium.org41826e72009-03-30 13:30:57 +00005889 if (function == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005890 // Call the JS runtime function.
ager@chromium.org5c838252010-02-19 08:53:10 +00005891 __ mov(r2, Operand(node->name()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00005892 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
5893 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005894 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00005895 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005896 frame_->EmitPush(r0);
ager@chromium.org41826e72009-03-30 13:30:57 +00005897 } else {
5898 // Call the C runtime function.
5899 frame_->CallRuntime(function, arg_count);
5900 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005901 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00005902 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005903}
5904
5905
ager@chromium.org7c537e22008-10-16 08:43:32 +00005906void CodeGenerator::VisitUnaryOperation(UnaryOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005907#ifdef DEBUG
5908 int original_height = frame_->height();
5909#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005910 Comment cmnt(masm_, "[ UnaryOperation");
5911
5912 Token::Value op = node->op();
5913
5914 if (op == Token::NOT) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005915 LoadCondition(node->expression(), false_target(), true_target(), true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005916 // LoadCondition may (and usually does) leave a test and branch to
5917 // be emitted by the caller. In that case, negate the condition.
5918 if (has_cc()) cc_reg_ = NegateCondition(cc_reg_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005919
5920 } else if (op == Token::DELETE) {
5921 Property* property = node->expression()->AsProperty();
mads.s.ager31e71382008-08-13 09:32:07 +00005922 Variable* variable = node->expression()->AsVariableProxy()->AsVariable();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005923 if (property != NULL) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005924 Load(property->obj());
5925 Load(property->key());
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005926 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005927 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005928
mads.s.ager31e71382008-08-13 09:32:07 +00005929 } else if (variable != NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005930 Slot* slot = variable->slot();
5931 if (variable->is_global()) {
5932 LoadGlobal();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005933 frame_->EmitPush(Operand(variable->name()));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005934 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005935 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005936
5937 } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
5938 // lookup the context holding the named variable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005939 frame_->EmitPush(cp);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005940 frame_->EmitPush(Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005941 frame_->CallRuntime(Runtime::kLookupContext, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005942 // r0: context
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005943 frame_->EmitPush(r0);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005944 frame_->EmitPush(Operand(variable->name()));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005945 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005946 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005947
mads.s.ager31e71382008-08-13 09:32:07 +00005948 } else {
5949 // Default: Result of deleting non-global, not dynamically
5950 // introduced variables is false.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005951 frame_->EmitPushRoot(Heap::kFalseValueRootIndex);
mads.s.ager31e71382008-08-13 09:32:07 +00005952 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005953
5954 } else {
5955 // Default: Result of deleting expressions is true.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005956 Load(node->expression()); // may have side-effects
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005957 frame_->Drop();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005958 frame_->EmitPushRoot(Heap::kTrueValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005959 }
5960
5961 } else if (op == Token::TYPEOF) {
5962 // Special case for loading the typeof expression; see comment on
5963 // LoadTypeofExpression().
5964 LoadTypeofExpression(node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005965 frame_->CallRuntime(Runtime::kTypeof, 1);
5966 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005967
5968 } else {
ricow@chromium.org65fae842010-08-25 15:26:24 +00005969 bool can_overwrite = node->expression()->ResultOverwriteAllowed();
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +00005970 UnaryOverwriteMode overwrite =
5971 can_overwrite ? UNARY_OVERWRITE : UNARY_NO_OVERWRITE;
5972
5973 bool no_negative_zero = node->expression()->no_negative_zero();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005974 Load(node->expression());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005975 switch (op) {
5976 case Token::NOT:
5977 case Token::DELETE:
5978 case Token::TYPEOF:
5979 UNREACHABLE(); // handled above
5980 break;
5981
5982 case Token::SUB: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00005983 frame_->PopToR0();
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +00005984 GenericUnaryOpStub stub(
5985 Token::SUB,
5986 overwrite,
5987 no_negative_zero ? kIgnoreNegativeZero : kStrictNegativeZero);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005988 frame_->CallStub(&stub, 0);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005989 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005990 break;
5991 }
5992
5993 case Token::BIT_NOT: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00005994 Register tos = frame_->PopToRegister();
5995 JumpTarget not_smi_label;
kasperl@chromium.org71affb52009-05-26 05:44:31 +00005996 JumpTarget continue_label;
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00005997 // Smi check.
5998 __ tst(tos, Operand(kSmiTagMask));
5999 not_smi_label.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006000
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006001 __ mvn(tos, Operand(tos));
6002 __ bic(tos, tos, Operand(kSmiTagMask)); // Bit-clear inverted smi-tag.
6003 frame_->EmitPush(tos);
6004 // The fast case is the first to jump to the continue label, so it gets
6005 // to decide the virtual frame layout.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006006 continue_label.Jump();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006007
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006008 not_smi_label.Bind();
6009 frame_->SpillAll();
6010 __ Move(r0, tos);
6011 GenericUnaryOpStub stub(Token::BIT_NOT, overwrite);
6012 frame_->CallStub(&stub, 0);
6013 frame_->EmitPush(r0);
6014
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006015 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006016 break;
6017 }
6018
6019 case Token::VOID:
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006020 frame_->Drop();
6021 frame_->EmitPushRoot(Heap::kUndefinedValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006022 break;
6023
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00006024 case Token::ADD: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006025 Register tos = frame_->Peek();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00006026 // Smi check.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006027 JumpTarget continue_label;
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006028 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006029 continue_label.Branch(eq);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006030
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00006031 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, 1);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006032 frame_->EmitPush(r0);
6033
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006034 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006035 break;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00006036 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006037 default:
6038 UNREACHABLE();
6039 }
6040 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006041 ASSERT(!has_valid_frame() ||
6042 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006043 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006044}
6045
6046
ager@chromium.org7c537e22008-10-16 08:43:32 +00006047void CodeGenerator::VisitCountOperation(CountOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006048#ifdef DEBUG
6049 int original_height = frame_->height();
6050#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006051 Comment cmnt(masm_, "[ CountOperation");
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006052 VirtualFrame::RegisterAllocationScope scope(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006053
6054 bool is_postfix = node->is_postfix();
6055 bool is_increment = node->op() == Token::INC;
6056
6057 Variable* var = node->expression()->AsVariableProxy()->AsVariable();
6058 bool is_const = (var != NULL && var->mode() == Variable::CONST);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006059 bool is_slot = (var != NULL && var->mode() == Variable::VAR);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006060
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006061 if (!is_const && is_slot && type_info(var->slot()).IsSmi()) {
6062 // The type info declares that this variable is always a Smi. That
6063 // means it is a Smi both before and after the increment/decrement.
6064 // Lets make use of that to make a very minimal count.
6065 Reference target(this, node->expression(), !is_const);
6066 ASSERT(!target.is_illegal());
6067 target.GetValue(); // Pushes the value.
6068 Register value = frame_->PopToRegister();
6069 if (is_postfix) frame_->EmitPush(value);
6070 if (is_increment) {
6071 __ add(value, value, Operand(Smi::FromInt(1)));
6072 } else {
6073 __ sub(value, value, Operand(Smi::FromInt(1)));
6074 }
6075 frame_->EmitPush(value);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00006076 target.SetValue(NOT_CONST_INIT, LIKELY_SMI);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006077 if (is_postfix) frame_->Pop();
6078 ASSERT_EQ(original_height + 1, frame_->height());
6079 return;
6080 }
6081
6082 // If it's a postfix expression and its result is not ignored and the
6083 // reference is non-trivial, then push a placeholder on the stack now
6084 // to hold the result of the expression.
6085 bool placeholder_pushed = false;
6086 if (!is_slot && is_postfix) {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006087 frame_->EmitPush(Operand(Smi::FromInt(0)));
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006088 placeholder_pushed = true;
mads.s.ager31e71382008-08-13 09:32:07 +00006089 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006090
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006091 // A constant reference is not saved to, so a constant reference is not a
6092 // compound assignment reference.
6093 { Reference target(this, node->expression(), !is_const);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006094 if (target.is_illegal()) {
6095 // Spoof the virtual frame to have the expected height (one higher
6096 // than on entry).
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006097 if (!placeholder_pushed) frame_->EmitPush(Operand(Smi::FromInt(0)));
ager@chromium.orgac091b72010-05-05 07:34:42 +00006098 ASSERT_EQ(original_height + 1, frame_->height());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006099 return;
6100 }
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006101
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006102 // This pushes 0, 1 or 2 words on the object to be used later when updating
6103 // the target. It also pushes the current value of the target.
ager@chromium.org357bf652010-04-12 11:30:10 +00006104 target.GetValue();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006105
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006106 JumpTarget slow;
6107 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006108
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006109 Register value = frame_->PopToRegister();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006110
6111 // Postfix: Store the old value as the result.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006112 if (placeholder_pushed) {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006113 frame_->SetElementAt(value, target.size());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006114 } else if (is_postfix) {
6115 frame_->EmitPush(value);
6116 __ mov(VirtualFrame::scratch0(), value);
6117 value = VirtualFrame::scratch0();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006118 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006119
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006120 // Check for smi operand.
6121 __ tst(value, Operand(kSmiTagMask));
6122 slow.Branch(ne);
6123
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006124 // Perform optimistic increment/decrement.
6125 if (is_increment) {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006126 __ add(value, value, Operand(Smi::FromInt(1)), SetCC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006127 } else {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006128 __ sub(value, value, Operand(Smi::FromInt(1)), SetCC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006129 }
6130
6131 // If the increment/decrement didn't overflow, we're done.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006132 exit.Branch(vc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006133
6134 // Revert optimistic increment/decrement.
6135 if (is_increment) {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006136 __ sub(value, value, Operand(Smi::FromInt(1)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006137 } else {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006138 __ add(value, value, Operand(Smi::FromInt(1)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006139 }
6140
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006141 // Slow case: Convert to number. At this point the
6142 // value to be incremented is in the value register..
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006143 slow.Bind();
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006144
6145 // Convert the operand to a number.
6146 frame_->EmitPush(value);
6147
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00006148 {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006149 VirtualFrame::SpilledScope spilled(frame_);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00006150 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, 1);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006151
6152 if (is_postfix) {
6153 // Postfix: store to result (on the stack).
6154 __ str(r0, frame_->ElementAt(target.size()));
6155 }
6156
6157 // Compute the new value.
6158 frame_->EmitPush(r0);
6159 frame_->EmitPush(Operand(Smi::FromInt(1)));
6160 if (is_increment) {
6161 frame_->CallRuntime(Runtime::kNumberAdd, 2);
6162 } else {
6163 frame_->CallRuntime(Runtime::kNumberSub, 2);
6164 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006165 }
6166
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006167 __ Move(value, r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006168 // Store the new value in the target if not const.
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006169 // At this point the answer is in the value register.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006170 exit.Bind();
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006171 frame_->EmitPush(value);
6172 // Set the target with the result, leaving the result on
6173 // top of the stack. Removes the target from the stack if
6174 // it has a non-zero size.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00006175 if (!is_const) target.SetValue(NOT_CONST_INIT, LIKELY_SMI);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006176 }
6177
6178 // Postfix: Discard the new value and use the old.
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006179 if (is_postfix) frame_->Pop();
ager@chromium.orgac091b72010-05-05 07:34:42 +00006180 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006181}
6182
6183
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006184void CodeGenerator::GenerateLogicalBooleanOperation(BinaryOperation* node) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006185 // According to ECMA-262 section 11.11, page 58, the binary logical
6186 // operators must yield the result of one of the two expressions
6187 // before any ToBoolean() conversions. This means that the value
6188 // produced by a && or || operator is not necessarily a boolean.
6189
6190 // NOTE: If the left hand side produces a materialized value (not in
6191 // the CC register), we force the right hand side to do the
6192 // same. This is necessary because we may have to branch to the exit
6193 // after evaluating the left hand side (due to the shortcut
6194 // semantics), but the compiler must (statically) know if the result
6195 // of compiling the binary operation is materialized or not.
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006196 if (node->op() == Token::AND) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006197 JumpTarget is_true;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006198 LoadCondition(node->left(), &is_true, false_target(), false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006199 if (has_valid_frame() && !has_cc()) {
6200 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006201 JumpTarget pop_and_continue;
6202 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006203
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00006204 frame_->Dup();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006205 // Avoid popping the result if it converts to 'false' using the
6206 // standard ToBoolean() conversion as described in ECMA-262,
6207 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00006208 ToBoolean(&pop_and_continue, &exit);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006209 Branch(false, &exit);
6210
6211 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006212 pop_and_continue.Bind();
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00006213 frame_->Pop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006214
6215 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006216 is_true.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006217 Load(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006218
6219 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006220 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006221 } else if (has_cc() || is_true.is_linked()) {
6222 // The left-hand side is either (a) partially compiled to
6223 // control flow with a final branch left to emit or (b) fully
6224 // compiled to control flow and possibly true.
6225 if (has_cc()) {
6226 Branch(false, false_target());
6227 }
6228 is_true.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006229 LoadCondition(node->right(), true_target(), false_target(), false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006230 } else {
6231 // Nothing to do.
6232 ASSERT(!has_valid_frame() && !has_cc() && !is_true.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006233 }
6234
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006235 } else {
6236 ASSERT(node->op() == Token::OR);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006237 JumpTarget is_false;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006238 LoadCondition(node->left(), true_target(), &is_false, false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006239 if (has_valid_frame() && !has_cc()) {
6240 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006241 JumpTarget pop_and_continue;
6242 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006243
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00006244 frame_->Dup();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006245 // Avoid popping the result if it converts to 'true' using the
6246 // standard ToBoolean() conversion as described in ECMA-262,
6247 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00006248 ToBoolean(&exit, &pop_and_continue);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006249 Branch(true, &exit);
6250
6251 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006252 pop_and_continue.Bind();
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00006253 frame_->Pop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006254
6255 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006256 is_false.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006257 Load(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006258
6259 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006260 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006261 } else if (has_cc() || is_false.is_linked()) {
6262 // The left-hand side is either (a) partially compiled to
6263 // control flow with a final branch left to emit or (b) fully
6264 // compiled to control flow and possibly false.
6265 if (has_cc()) {
6266 Branch(true, true_target());
6267 }
6268 is_false.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006269 LoadCondition(node->right(), true_target(), false_target(), false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006270 } else {
6271 // Nothing to do.
6272 ASSERT(!has_valid_frame() && !has_cc() && !is_false.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006273 }
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006274 }
6275}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006276
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006277
6278void CodeGenerator::VisitBinaryOperation(BinaryOperation* node) {
6279#ifdef DEBUG
6280 int original_height = frame_->height();
6281#endif
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006282 Comment cmnt(masm_, "[ BinaryOperation");
6283
6284 if (node->op() == Token::AND || node->op() == Token::OR) {
6285 GenerateLogicalBooleanOperation(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006286 } else {
6287 // Optimize for the case where (at least) one of the expressions
6288 // is a literal small integer.
6289 Literal* lliteral = node->left()->AsLiteral();
6290 Literal* rliteral = node->right()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006291 // NOTE: The code below assumes that the slow cases (calls to runtime)
6292 // never return a constant/immutable object.
ricow@chromium.org65fae842010-08-25 15:26:24 +00006293 bool overwrite_left = node->left()->ResultOverwriteAllowed();
6294 bool overwrite_right = node->right()->ResultOverwriteAllowed();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006295
6296 if (rliteral != NULL && rliteral->handle()->IsSmi()) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006297 VirtualFrame::RegisterAllocationScope scope(this);
6298 Load(node->left());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006299 if (frame_->KnownSmiAt(0)) overwrite_left = false;
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00006300 SmiOperation(node->op(),
6301 rliteral->handle(),
6302 false,
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006303 overwrite_left ? OVERWRITE_LEFT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006304 } else if (lliteral != NULL && lliteral->handle()->IsSmi()) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006305 VirtualFrame::RegisterAllocationScope scope(this);
6306 Load(node->right());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006307 if (frame_->KnownSmiAt(0)) overwrite_right = false;
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00006308 SmiOperation(node->op(),
6309 lliteral->handle(),
6310 true,
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006311 overwrite_right ? OVERWRITE_RIGHT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006312 } else {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006313 GenerateInlineSmi inline_smi =
6314 loop_nesting() > 0 ? GENERATE_INLINE_SMI : DONT_GENERATE_INLINE_SMI;
6315 if (lliteral != NULL) {
6316 ASSERT(!lliteral->handle()->IsSmi());
6317 inline_smi = DONT_GENERATE_INLINE_SMI;
6318 }
6319 if (rliteral != NULL) {
6320 ASSERT(!rliteral->handle()->IsSmi());
6321 inline_smi = DONT_GENERATE_INLINE_SMI;
6322 }
ager@chromium.org357bf652010-04-12 11:30:10 +00006323 VirtualFrame::RegisterAllocationScope scope(this);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006324 OverwriteMode overwrite_mode = NO_OVERWRITE;
6325 if (overwrite_left) {
6326 overwrite_mode = OVERWRITE_LEFT;
6327 } else if (overwrite_right) {
6328 overwrite_mode = OVERWRITE_RIGHT;
6329 }
ager@chromium.org357bf652010-04-12 11:30:10 +00006330 Load(node->left());
6331 Load(node->right());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006332 GenericBinaryOperation(node->op(), overwrite_mode, inline_smi);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006333 }
6334 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006335 ASSERT(!has_valid_frame() ||
6336 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006337 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006338}
6339
6340
ager@chromium.org7c537e22008-10-16 08:43:32 +00006341void CodeGenerator::VisitThisFunction(ThisFunction* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006342#ifdef DEBUG
6343 int original_height = frame_->height();
6344#endif
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00006345 frame_->EmitPush(MemOperand(frame_->Function()));
ager@chromium.orgac091b72010-05-05 07:34:42 +00006346 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006347}
6348
6349
ager@chromium.org7c537e22008-10-16 08:43:32 +00006350void CodeGenerator::VisitCompareOperation(CompareOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006351#ifdef DEBUG
6352 int original_height = frame_->height();
6353#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006354 Comment cmnt(masm_, "[ CompareOperation");
6355
ager@chromium.org357bf652010-04-12 11:30:10 +00006356 VirtualFrame::RegisterAllocationScope nonspilled_scope(this);
6357
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006358 // Get the expressions from the node.
6359 Expression* left = node->left();
6360 Expression* right = node->right();
6361 Token::Value op = node->op();
6362
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006363 // To make typeof testing for natives implemented in JavaScript really
6364 // efficient, we generate special code for expressions of the form:
6365 // 'typeof <expression> == <string>'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006366 UnaryOperation* operation = left->AsUnaryOperation();
6367 if ((op == Token::EQ || op == Token::EQ_STRICT) &&
6368 (operation != NULL && operation->op() == Token::TYPEOF) &&
6369 (right->AsLiteral() != NULL &&
6370 right->AsLiteral()->handle()->IsString())) {
6371 Handle<String> check(String::cast(*right->AsLiteral()->handle()));
6372
ager@chromium.org357bf652010-04-12 11:30:10 +00006373 // Load the operand, move it to a register.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006374 LoadTypeofExpression(operation->expression());
ager@chromium.org357bf652010-04-12 11:30:10 +00006375 Register tos = frame_->PopToRegister();
6376
ager@chromium.org357bf652010-04-12 11:30:10 +00006377 Register scratch = VirtualFrame::scratch0();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006378
6379 if (check->Equals(Heap::number_symbol())) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006380 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006381 true_target()->Branch(eq);
ager@chromium.org357bf652010-04-12 11:30:10 +00006382 __ ldr(tos, FieldMemOperand(tos, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006383 __ LoadRoot(ip, Heap::kHeapNumberMapRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00006384 __ cmp(tos, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006385 cc_reg_ = eq;
6386
6387 } else if (check->Equals(Heap::string_symbol())) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006388 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006389 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006390
ager@chromium.org357bf652010-04-12 11:30:10 +00006391 __ ldr(tos, FieldMemOperand(tos, HeapObject::kMapOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006392
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006393 // It can be an undetectable string object.
ager@chromium.org357bf652010-04-12 11:30:10 +00006394 __ ldrb(scratch, FieldMemOperand(tos, Map::kBitFieldOffset));
6395 __ and_(scratch, scratch, Operand(1 << Map::kIsUndetectable));
6396 __ cmp(scratch, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006397 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006398
ager@chromium.org357bf652010-04-12 11:30:10 +00006399 __ ldrb(scratch, FieldMemOperand(tos, Map::kInstanceTypeOffset));
6400 __ cmp(scratch, Operand(FIRST_NONSTRING_TYPE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006401 cc_reg_ = lt;
6402
6403 } else if (check->Equals(Heap::boolean_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006404 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00006405 __ cmp(tos, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006406 true_target()->Branch(eq);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006407 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00006408 __ cmp(tos, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006409 cc_reg_ = eq;
6410
6411 } else if (check->Equals(Heap::undefined_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006412 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00006413 __ cmp(tos, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006414 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006415
ager@chromium.org357bf652010-04-12 11:30:10 +00006416 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006417 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006418
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006419 // It can be an undetectable object.
ager@chromium.org357bf652010-04-12 11:30:10 +00006420 __ ldr(tos, FieldMemOperand(tos, HeapObject::kMapOffset));
6421 __ ldrb(scratch, FieldMemOperand(tos, Map::kBitFieldOffset));
6422 __ and_(scratch, scratch, Operand(1 << Map::kIsUndetectable));
6423 __ cmp(scratch, Operand(1 << Map::kIsUndetectable));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006424
6425 cc_reg_ = eq;
6426
6427 } else if (check->Equals(Heap::function_symbol())) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006428 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006429 false_target()->Branch(eq);
ager@chromium.org357bf652010-04-12 11:30:10 +00006430 Register map_reg = scratch;
6431 __ CompareObjectType(tos, map_reg, tos, JS_FUNCTION_TYPE);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006432 true_target()->Branch(eq);
6433 // Regular expressions are callable so typeof == 'function'.
ager@chromium.org357bf652010-04-12 11:30:10 +00006434 __ CompareInstanceType(map_reg, tos, JS_REGEXP_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006435 cc_reg_ = eq;
6436
6437 } else if (check->Equals(Heap::object_symbol())) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006438 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006439 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006440
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006441 __ LoadRoot(ip, Heap::kNullValueRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00006442 __ cmp(tos, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006443 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006444
ager@chromium.org357bf652010-04-12 11:30:10 +00006445 Register map_reg = scratch;
6446 __ CompareObjectType(tos, map_reg, tos, JS_REGEXP_TYPE);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006447 false_target()->Branch(eq);
6448
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006449 // It can be an undetectable object.
ager@chromium.org357bf652010-04-12 11:30:10 +00006450 __ ldrb(tos, FieldMemOperand(map_reg, Map::kBitFieldOffset));
6451 __ and_(tos, tos, Operand(1 << Map::kIsUndetectable));
6452 __ cmp(tos, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006453 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006454
ager@chromium.org357bf652010-04-12 11:30:10 +00006455 __ ldrb(tos, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
6456 __ cmp(tos, Operand(FIRST_JS_OBJECT_TYPE));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006457 false_target()->Branch(lt);
ager@chromium.org357bf652010-04-12 11:30:10 +00006458 __ cmp(tos, Operand(LAST_JS_OBJECT_TYPE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006459 cc_reg_ = le;
6460
6461 } else {
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006462 // Uncommon case: typeof testing against a string literal that is
6463 // never returned from the typeof operator.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006464 false_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006465 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006466 ASSERT(!has_valid_frame() ||
6467 (has_cc() && frame_->height() == original_height));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006468 return;
6469 }
6470
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006471 switch (op) {
6472 case Token::EQ:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006473 Comparison(eq, left, right, false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006474 break;
6475
6476 case Token::LT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006477 Comparison(lt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006478 break;
6479
6480 case Token::GT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006481 Comparison(gt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006482 break;
6483
6484 case Token::LTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006485 Comparison(le, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006486 break;
6487
6488 case Token::GTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006489 Comparison(ge, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006490 break;
6491
6492 case Token::EQ_STRICT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006493 Comparison(eq, left, right, true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006494 break;
6495
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006496 case Token::IN: {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006497 Load(left);
6498 Load(right);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00006499 frame_->InvokeBuiltin(Builtins::IN, CALL_JS, 2);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00006500 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006501 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006502 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006503
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006504 case Token::INSTANCEOF: {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006505 Load(left);
6506 Load(right);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006507 InstanceofStub stub;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00006508 frame_->CallStub(&stub, 2);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006509 // At this point if instanceof succeeded then r0 == 0.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00006510 __ tst(r0, Operand(r0));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006511 cc_reg_ = eq;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006512 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006513 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006514
6515 default:
6516 UNREACHABLE();
6517 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006518 ASSERT((has_cc() && frame_->height() == original_height) ||
6519 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006520}
6521
6522
ricow@chromium.org65fae842010-08-25 15:26:24 +00006523void CodeGenerator::VisitCompareToNull(CompareToNull* node) {
6524#ifdef DEBUG
6525 int original_height = frame_->height();
6526#endif
6527 Comment cmnt(masm_, "[ CompareToNull");
6528
6529 Load(node->expression());
6530 Register tos = frame_->PopToRegister();
6531 __ LoadRoot(ip, Heap::kNullValueRootIndex);
6532 __ cmp(tos, ip);
6533
6534 // The 'null' value is only equal to 'undefined' if using non-strict
6535 // comparisons.
6536 if (!node->is_strict()) {
6537 true_target()->Branch(eq);
6538 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
6539 __ cmp(tos, Operand(ip));
6540 true_target()->Branch(eq);
6541
6542 __ tst(tos, Operand(kSmiTagMask));
6543 false_target()->Branch(eq);
6544
6545 // It can be an undetectable object.
6546 __ ldr(tos, FieldMemOperand(tos, HeapObject::kMapOffset));
6547 __ ldrb(tos, FieldMemOperand(tos, Map::kBitFieldOffset));
6548 __ and_(tos, tos, Operand(1 << Map::kIsUndetectable));
6549 __ cmp(tos, Operand(1 << Map::kIsUndetectable));
6550 }
6551
6552 cc_reg_ = eq;
6553 ASSERT(has_cc() && frame_->height() == original_height);
6554}
6555
6556
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006557class DeferredReferenceGetNamedValue: public DeferredCode {
6558 public:
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006559 explicit DeferredReferenceGetNamedValue(Register receiver,
6560 Handle<String> name)
6561 : receiver_(receiver), name_(name) {
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006562 set_comment("[ DeferredReferenceGetNamedValue");
6563 }
6564
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006565 virtual void Generate();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006566
6567 private:
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006568 Register receiver_;
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006569 Handle<String> name_;
6570};
6571
6572
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006573// Convention for this is that on entry the receiver is in a register that
6574// is not used by the stack. On exit the answer is found in that same
6575// register and the stack has the same height.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006576void DeferredReferenceGetNamedValue::Generate() {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006577#ifdef DEBUG
6578 int expected_height = frame_state()->frame()->height();
6579#endif
6580 VirtualFrame copied_frame(*frame_state()->frame());
6581 copied_frame.SpillAll();
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006582
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006583 Register scratch1 = VirtualFrame::scratch0();
6584 Register scratch2 = VirtualFrame::scratch1();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006585 ASSERT(!receiver_.is(scratch1) && !receiver_.is(scratch2));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006586 __ DecrementCounter(&Counters::named_load_inline, 1, scratch1, scratch2);
6587 __ IncrementCounter(&Counters::named_load_inline_miss, 1, scratch1, scratch2);
6588
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006589 // Ensure receiver in r0 and name in r2 to match load ic calling convention.
6590 __ Move(r0, receiver_);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006591 __ mov(r2, Operand(name_));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006592
6593 // The rest of the instructions in the deferred code must be together.
6594 { Assembler::BlockConstPoolScope block_const_pool(masm_);
6595 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
6596 __ Call(ic, RelocInfo::CODE_TARGET);
6597 // The call must be followed by a nop(1) instruction to indicate that the
6598 // in-object has been inlined.
6599 __ nop(PROPERTY_ACCESS_INLINED);
6600
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006601 // At this point the answer is in r0. We move it to the expected register
6602 // if necessary.
6603 __ Move(receiver_, r0);
6604
6605 // Now go back to the frame that we entered with. This will not overwrite
6606 // the receiver register since that register was not in use when we came
6607 // in. The instructions emitted by this merge are skipped over by the
6608 // inline load patching mechanism when looking for the branch instruction
6609 // that tells it where the code to patch is.
6610 copied_frame.MergeTo(frame_state()->frame());
6611
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006612 // Block the constant pool for one more instruction after leaving this
6613 // constant pool block scope to include the branch instruction ending the
6614 // deferred code.
6615 __ BlockConstPoolFor(1);
6616 }
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006617 ASSERT_EQ(expected_height, frame_state()->frame()->height());
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006618}
6619
6620
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006621class DeferredReferenceGetKeyedValue: public DeferredCode {
6622 public:
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006623 DeferredReferenceGetKeyedValue(Register key, Register receiver)
6624 : key_(key), receiver_(receiver) {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006625 set_comment("[ DeferredReferenceGetKeyedValue");
6626 }
6627
6628 virtual void Generate();
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006629
6630 private:
6631 Register key_;
6632 Register receiver_;
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006633};
6634
6635
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006636// Takes key and register in r0 and r1 or vice versa. Returns result
6637// in r0.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006638void DeferredReferenceGetKeyedValue::Generate() {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006639 ASSERT((key_.is(r0) && receiver_.is(r1)) ||
6640 (key_.is(r1) && receiver_.is(r0)));
6641
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006642 VirtualFrame copied_frame(*frame_state()->frame());
6643 copied_frame.SpillAll();
6644
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006645 Register scratch1 = VirtualFrame::scratch0();
6646 Register scratch2 = VirtualFrame::scratch1();
6647 __ DecrementCounter(&Counters::keyed_load_inline, 1, scratch1, scratch2);
6648 __ IncrementCounter(&Counters::keyed_load_inline_miss, 1, scratch1, scratch2);
6649
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006650 // Ensure key in r0 and receiver in r1 to match keyed load ic calling
6651 // convention.
6652 if (key_.is(r1)) {
6653 __ Swap(r0, r1, ip);
6654 }
6655
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006656 // The rest of the instructions in the deferred code must be together.
6657 { Assembler::BlockConstPoolScope block_const_pool(masm_);
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00006658 // Call keyed load IC. It has the arguments key and receiver in r0 and r1.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006659 Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Initialize));
6660 __ Call(ic, RelocInfo::CODE_TARGET);
6661 // The call must be followed by a nop instruction to indicate that the
6662 // keyed load has been inlined.
6663 __ nop(PROPERTY_ACCESS_INLINED);
6664
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006665 // Now go back to the frame that we entered with. This will not overwrite
6666 // the receiver or key registers since they were not in use when we came
6667 // in. The instructions emitted by this merge are skipped over by the
6668 // inline load patching mechanism when looking for the branch instruction
6669 // that tells it where the code to patch is.
6670 copied_frame.MergeTo(frame_state()->frame());
6671
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006672 // Block the constant pool for one more instruction after leaving this
6673 // constant pool block scope to include the branch instruction ending the
6674 // deferred code.
6675 __ BlockConstPoolFor(1);
6676 }
6677}
6678
6679
6680class DeferredReferenceSetKeyedValue: public DeferredCode {
6681 public:
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006682 DeferredReferenceSetKeyedValue(Register value,
6683 Register key,
6684 Register receiver)
6685 : value_(value), key_(key), receiver_(receiver) {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006686 set_comment("[ DeferredReferenceSetKeyedValue");
6687 }
6688
6689 virtual void Generate();
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006690
6691 private:
6692 Register value_;
6693 Register key_;
6694 Register receiver_;
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006695};
6696
6697
6698void DeferredReferenceSetKeyedValue::Generate() {
6699 Register scratch1 = VirtualFrame::scratch0();
6700 Register scratch2 = VirtualFrame::scratch1();
6701 __ DecrementCounter(&Counters::keyed_store_inline, 1, scratch1, scratch2);
6702 __ IncrementCounter(
6703 &Counters::keyed_store_inline_miss, 1, scratch1, scratch2);
6704
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006705 // Ensure value in r0, key in r1 and receiver in r2 to match keyed store ic
6706 // calling convention.
6707 if (value_.is(r1)) {
6708 __ Swap(r0, r1, ip);
6709 }
6710 ASSERT(receiver_.is(r2));
6711
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006712 // The rest of the instructions in the deferred code must be together.
6713 { Assembler::BlockConstPoolScope block_const_pool(masm_);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006714 // Call keyed store IC. It has the arguments value, key and receiver in r0,
6715 // r1 and r2.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006716 Handle<Code> ic(Builtins::builtin(Builtins::KeyedStoreIC_Initialize));
6717 __ Call(ic, RelocInfo::CODE_TARGET);
6718 // The call must be followed by a nop instruction to indicate that the
6719 // keyed store has been inlined.
6720 __ nop(PROPERTY_ACCESS_INLINED);
6721
6722 // Block the constant pool for one more instruction after leaving this
6723 // constant pool block scope to include the branch instruction ending the
6724 // deferred code.
6725 __ BlockConstPoolFor(1);
6726 }
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006727}
6728
6729
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00006730class DeferredReferenceSetNamedValue: public DeferredCode {
6731 public:
6732 DeferredReferenceSetNamedValue(Register value,
6733 Register receiver,
6734 Handle<String> name)
6735 : value_(value), receiver_(receiver), name_(name) {
6736 set_comment("[ DeferredReferenceSetNamedValue");
6737 }
6738
6739 virtual void Generate();
6740
6741 private:
6742 Register value_;
6743 Register receiver_;
6744 Handle<String> name_;
6745};
6746
6747
6748// Takes value in r0, receiver in r1 and returns the result (the
6749// value) in r0.
6750void DeferredReferenceSetNamedValue::Generate() {
6751 // Record the entry frame and spill.
6752 VirtualFrame copied_frame(*frame_state()->frame());
6753 copied_frame.SpillAll();
6754
6755 // Ensure value in r0, receiver in r1 to match store ic calling
6756 // convention.
6757 ASSERT(value_.is(r0) && receiver_.is(r1));
6758 __ mov(r2, Operand(name_));
6759
6760 // The rest of the instructions in the deferred code must be together.
6761 { Assembler::BlockConstPoolScope block_const_pool(masm_);
6762 // Call keyed store IC. It has the arguments value, key and receiver in r0,
6763 // r1 and r2.
6764 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
6765 __ Call(ic, RelocInfo::CODE_TARGET);
6766 // The call must be followed by a nop instruction to indicate that the
6767 // named store has been inlined.
6768 __ nop(PROPERTY_ACCESS_INLINED);
6769
6770 // Go back to the frame we entered with. The instructions
6771 // generated by this merge are skipped over by the inline store
6772 // patching mechanism when looking for the branch instruction that
6773 // tells it where the code to patch is.
6774 copied_frame.MergeTo(frame_state()->frame());
6775
6776 // Block the constant pool for one more instruction after leaving this
6777 // constant pool block scope to include the branch instruction ending the
6778 // deferred code.
6779 __ BlockConstPoolFor(1);
6780 }
6781}
6782
6783
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006784// Consumes the top of stack (the receiver) and pushes the result instead.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006785void CodeGenerator::EmitNamedLoad(Handle<String> name, bool is_contextual) {
6786 if (is_contextual || scope()->is_global_scope() || loop_nesting() == 0) {
6787 Comment cmnt(masm(), "[ Load from named Property");
6788 // Setup the name register and call load IC.
ager@chromium.orgac091b72010-05-05 07:34:42 +00006789 frame_->CallLoadIC(name,
6790 is_contextual
6791 ? RelocInfo::CODE_TARGET_CONTEXT
6792 : RelocInfo::CODE_TARGET);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006793 frame_->EmitPush(r0); // Push answer.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006794 } else {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006795 // Inline the in-object property case.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006796 Comment cmnt(masm(), "[ Inlined named property load");
6797
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006798 // Counter will be decremented in the deferred code. Placed here to avoid
6799 // having it in the instruction stream below where patching will occur.
6800 __ IncrementCounter(&Counters::named_load_inline, 1,
6801 frame_->scratch0(), frame_->scratch1());
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006802
6803 // The following instructions are the inlined load of an in-object property.
6804 // Parts of this code is patched, so the exact instructions generated needs
6805 // to be fixed. Therefore the instruction pool is blocked when generating
6806 // this code
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006807
6808 // Load the receiver from the stack.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006809 Register receiver = frame_->PopToRegister();
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006810
6811 DeferredReferenceGetNamedValue* deferred =
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006812 new DeferredReferenceGetNamedValue(receiver, name);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006813
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006814#ifdef DEBUG
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006815 int kInlinedNamedLoadInstructions = 7;
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006816 Label check_inlined_codesize;
6817 masm_->bind(&check_inlined_codesize);
6818#endif
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006819
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006820 { Assembler::BlockConstPoolScope block_const_pool(masm_);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006821 // Check that the receiver is a heap object.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006822 __ tst(receiver, Operand(kSmiTagMask));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006823 deferred->Branch(eq);
6824
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006825 Register scratch = VirtualFrame::scratch0();
6826 Register scratch2 = VirtualFrame::scratch1();
6827
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006828 // Check the map. The null map used below is patched by the inline cache
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006829 // code. Therefore we can't use a LoadRoot call.
6830 __ ldr(scratch, FieldMemOperand(receiver, HeapObject::kMapOffset));
6831 __ mov(scratch2, Operand(Factory::null_value()));
6832 __ cmp(scratch, scratch2);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006833 deferred->Branch(ne);
6834
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006835 // Initially use an invalid index. The index will be patched by the
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006836 // inline cache code.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006837 __ ldr(receiver, MemOperand(receiver, 0));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006838
6839 // Make sure that the expected number of instructions are generated.
6840 ASSERT_EQ(kInlinedNamedLoadInstructions,
6841 masm_->InstructionsGeneratedSince(&check_inlined_codesize));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006842 }
6843
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006844 deferred->BindExit();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006845 // At this point the receiver register has the result, either from the
6846 // deferred code or from the inlined code.
6847 frame_->EmitPush(receiver);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006848 }
6849}
6850
6851
ager@chromium.orgac091b72010-05-05 07:34:42 +00006852void CodeGenerator::EmitNamedStore(Handle<String> name, bool is_contextual) {
6853#ifdef DEBUG
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00006854 int expected_height = frame()->height() - (is_contextual ? 1 : 2);
ager@chromium.orgac091b72010-05-05 07:34:42 +00006855#endif
ager@chromium.orgac091b72010-05-05 07:34:42 +00006856
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00006857 Result result;
6858 if (is_contextual || scope()->is_global_scope() || loop_nesting() == 0) {
6859 frame()->CallStoreIC(name, is_contextual);
6860 } else {
6861 // Inline the in-object property case.
6862 JumpTarget slow, done;
6863
6864 // Get the value and receiver from the stack.
6865 frame()->PopToR0();
6866 Register value = r0;
6867 frame()->PopToR1();
6868 Register receiver = r1;
6869
6870 DeferredReferenceSetNamedValue* deferred =
6871 new DeferredReferenceSetNamedValue(value, receiver, name);
6872
6873 // Check that the receiver is a heap object.
6874 __ tst(receiver, Operand(kSmiTagMask));
6875 deferred->Branch(eq);
6876
6877 // The following instructions are the part of the inlined
6878 // in-object property store code which can be patched. Therefore
6879 // the exact number of instructions generated must be fixed, so
6880 // the constant pool is blocked while generating this code.
6881 { Assembler::BlockConstPoolScope block_const_pool(masm_);
6882 Register scratch0 = VirtualFrame::scratch0();
6883 Register scratch1 = VirtualFrame::scratch1();
6884
6885 // Check the map. Initially use an invalid map to force a
6886 // failure. The map check will be patched in the runtime system.
6887 __ ldr(scratch1, FieldMemOperand(receiver, HeapObject::kMapOffset));
6888
6889#ifdef DEBUG
6890 Label check_inlined_codesize;
6891 masm_->bind(&check_inlined_codesize);
6892#endif
6893 __ mov(scratch0, Operand(Factory::null_value()));
6894 __ cmp(scratch0, scratch1);
6895 deferred->Branch(ne);
6896
6897 int offset = 0;
6898 __ str(value, MemOperand(receiver, offset));
6899
6900 // Update the write barrier and record its size. We do not use
6901 // the RecordWrite macro here because we want the offset
6902 // addition instruction first to make it easy to patch.
6903 Label record_write_start, record_write_done;
6904 __ bind(&record_write_start);
6905 // Add offset into the object.
6906 __ add(scratch0, receiver, Operand(offset));
6907 // Test that the object is not in the new space. We cannot set
6908 // region marks for new space pages.
6909 __ InNewSpace(receiver, scratch1, eq, &record_write_done);
6910 // Record the actual write.
6911 __ RecordWriteHelper(receiver, scratch0, scratch1);
6912 __ bind(&record_write_done);
6913 // Clobber all input registers when running with the debug-code flag
6914 // turned on to provoke errors.
6915 if (FLAG_debug_code) {
6916 __ mov(receiver, Operand(BitCast<int32_t>(kZapValue)));
6917 __ mov(scratch0, Operand(BitCast<int32_t>(kZapValue)));
6918 __ mov(scratch1, Operand(BitCast<int32_t>(kZapValue)));
6919 }
6920 // Check that this is the first inlined write barrier or that
6921 // this inlined write barrier has the same size as all the other
6922 // inlined write barriers.
6923 ASSERT((inlined_write_barrier_size_ == -1) ||
6924 (inlined_write_barrier_size_ ==
6925 masm()->InstructionsGeneratedSince(&record_write_start)));
6926 inlined_write_barrier_size_ =
6927 masm()->InstructionsGeneratedSince(&record_write_start);
6928
6929 // Make sure that the expected number of instructions are generated.
6930 ASSERT_EQ(GetInlinedNamedStoreInstructionsAfterPatch(),
6931 masm()->InstructionsGeneratedSince(&check_inlined_codesize));
6932 }
6933 deferred->BindExit();
6934 }
6935 ASSERT_EQ(expected_height, frame()->height());
ager@chromium.orgac091b72010-05-05 07:34:42 +00006936}
6937
6938
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006939void CodeGenerator::EmitKeyedLoad() {
6940 if (loop_nesting() == 0) {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006941 Comment cmnt(masm_, "[ Load from keyed property");
6942 frame_->CallKeyedLoadIC();
6943 } else {
6944 // Inline the keyed load.
6945 Comment cmnt(masm_, "[ Inlined load from keyed property");
6946
6947 // Counter will be decremented in the deferred code. Placed here to avoid
6948 // having it in the instruction stream below where patching will occur.
6949 __ IncrementCounter(&Counters::keyed_load_inline, 1,
6950 frame_->scratch0(), frame_->scratch1());
6951
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006952 // Load the key and receiver from the stack.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006953 bool key_is_known_smi = frame_->KnownSmiAt(0);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006954 Register key = frame_->PopToRegister();
6955 Register receiver = frame_->PopToRegister(key);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006956
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006957 // The deferred code expects key and receiver in registers.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006958 DeferredReferenceGetKeyedValue* deferred =
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006959 new DeferredReferenceGetKeyedValue(key, receiver);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006960
6961 // Check that the receiver is a heap object.
6962 __ tst(receiver, Operand(kSmiTagMask));
6963 deferred->Branch(eq);
6964
6965 // The following instructions are the part of the inlined load keyed
6966 // property code which can be patched. Therefore the exact number of
6967 // instructions generated need to be fixed, so the constant pool is blocked
6968 // while generating this code.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006969 { Assembler::BlockConstPoolScope block_const_pool(masm_);
6970 Register scratch1 = VirtualFrame::scratch0();
6971 Register scratch2 = VirtualFrame::scratch1();
6972 // Check the map. The null map used below is patched by the inline cache
6973 // code.
6974 __ ldr(scratch1, FieldMemOperand(receiver, HeapObject::kMapOffset));
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006975
6976 // Check that the key is a smi.
6977 if (!key_is_known_smi) {
6978 __ tst(key, Operand(kSmiTagMask));
6979 deferred->Branch(ne);
6980 }
6981
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006982#ifdef DEBUG
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006983 Label check_inlined_codesize;
6984 masm_->bind(&check_inlined_codesize);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006985#endif
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006986 __ mov(scratch2, Operand(Factory::null_value()));
6987 __ cmp(scratch1, scratch2);
6988 deferred->Branch(ne);
6989
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00006990 // Get the elements array from the receiver.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006991 __ ldr(scratch1, FieldMemOperand(receiver, JSObject::kElementsOffset));
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00006992 __ AssertFastElements(scratch1);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006993
6994 // Check that key is within bounds. Use unsigned comparison to handle
6995 // negative keys.
6996 __ ldr(scratch2, FieldMemOperand(scratch1, FixedArray::kLengthOffset));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006997 __ cmp(scratch2, key);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006998 deferred->Branch(ls); // Unsigned less equal.
6999
7000 // Load and check that the result is not the hole (key is a smi).
7001 __ LoadRoot(scratch2, Heap::kTheHoleValueRootIndex);
7002 __ add(scratch1,
7003 scratch1,
7004 Operand(FixedArray::kHeaderSize - kHeapObjectTag));
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00007005 __ ldr(scratch1,
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007006 MemOperand(scratch1, key, LSL,
7007 kPointerSizeLog2 - (kSmiTagSize + kSmiShiftSize)));
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00007008 __ cmp(scratch1, scratch2);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007009 deferred->Branch(eq);
7010
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00007011 __ mov(r0, scratch1);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007012 // Make sure that the expected number of instructions are generated.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00007013 ASSERT_EQ(GetInlinedKeyedLoadInstructionsAfterPatch(),
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007014 masm_->InstructionsGeneratedSince(&check_inlined_codesize));
7015 }
7016
7017 deferred->BindExit();
7018 }
7019}
7020
7021
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007022void CodeGenerator::EmitKeyedStore(StaticType* key_type,
7023 WriteBarrierCharacter wb_info) {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007024 // Generate inlined version of the keyed store if the code is in a loop
7025 // and the key is likely to be a smi.
7026 if (loop_nesting() > 0 && key_type->IsLikelySmi()) {
7027 // Inline the keyed store.
7028 Comment cmnt(masm_, "[ Inlined store to keyed property");
7029
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007030 Register scratch1 = VirtualFrame::scratch0();
7031 Register scratch2 = VirtualFrame::scratch1();
7032 Register scratch3 = r3;
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007033
7034 // Counter will be decremented in the deferred code. Placed here to avoid
7035 // having it in the instruction stream below where patching will occur.
7036 __ IncrementCounter(&Counters::keyed_store_inline, 1,
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007037 scratch1, scratch2);
7038
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007039
7040
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007041 // Load the value, key and receiver from the stack.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007042 bool value_is_harmless = frame_->KnownSmiAt(0);
7043 if (wb_info == NEVER_NEWSPACE) value_is_harmless = true;
7044 bool key_is_smi = frame_->KnownSmiAt(1);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007045 Register value = frame_->PopToRegister();
7046 Register key = frame_->PopToRegister(value);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00007047 VirtualFrame::SpilledScope spilled(frame_);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007048 Register receiver = r2;
7049 frame_->EmitPop(receiver);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007050
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007051#ifdef DEBUG
7052 bool we_remembered_the_write_barrier = value_is_harmless;
7053#endif
7054
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007055 // The deferred code expects value, key and receiver in registers.
7056 DeferredReferenceSetKeyedValue* deferred =
7057 new DeferredReferenceSetKeyedValue(value, key, receiver);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007058
7059 // Check that the value is a smi. As this inlined code does not set the
7060 // write barrier it is only possible to store smi values.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007061 if (!value_is_harmless) {
7062 // If the value is not likely to be a Smi then let's test the fixed array
7063 // for new space instead. See below.
7064 if (wb_info == LIKELY_SMI) {
7065 __ tst(value, Operand(kSmiTagMask));
7066 deferred->Branch(ne);
7067#ifdef DEBUG
7068 we_remembered_the_write_barrier = true;
7069#endif
7070 }
7071 }
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007072
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007073 if (!key_is_smi) {
7074 // Check that the key is a smi.
7075 __ tst(key, Operand(kSmiTagMask));
7076 deferred->Branch(ne);
7077 }
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007078
7079 // Check that the receiver is a heap object.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007080 __ tst(receiver, Operand(kSmiTagMask));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007081 deferred->Branch(eq);
7082
7083 // Check that the receiver is a JSArray.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007084 __ CompareObjectType(receiver, scratch1, scratch1, JS_ARRAY_TYPE);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007085 deferred->Branch(ne);
7086
7087 // Check that the key is within bounds. Both the key and the length of
7088 // the JSArray are smis. Use unsigned comparison to handle negative keys.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007089 __ ldr(scratch1, FieldMemOperand(receiver, JSArray::kLengthOffset));
7090 __ cmp(scratch1, key);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007091 deferred->Branch(ls); // Unsigned less equal.
7092
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007093 // Get the elements array from the receiver.
7094 __ ldr(scratch1, FieldMemOperand(receiver, JSObject::kElementsOffset));
7095 if (!value_is_harmless && wb_info != LIKELY_SMI) {
7096 Label ok;
7097 __ and_(scratch2, scratch1, Operand(ExternalReference::new_space_mask()));
7098 __ cmp(scratch2, Operand(ExternalReference::new_space_start()));
7099 __ tst(value, Operand(kSmiTagMask), ne);
7100 deferred->Branch(ne);
7101#ifdef DEBUG
7102 we_remembered_the_write_barrier = true;
7103#endif
7104 }
7105 // Check that the elements array is not a dictionary.
7106 __ ldr(scratch2, FieldMemOperand(scratch1, JSObject::kMapOffset));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007107 // The following instructions are the part of the inlined store keyed
7108 // property code which can be patched. Therefore the exact number of
7109 // instructions generated need to be fixed, so the constant pool is blocked
7110 // while generating this code.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007111 { Assembler::BlockConstPoolScope block_const_pool(masm_);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007112#ifdef DEBUG
7113 Label check_inlined_codesize;
7114 masm_->bind(&check_inlined_codesize);
7115#endif
7116
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007117 // Read the fixed array map from the constant pool (not from the root
7118 // array) so that the value can be patched. When debugging, we patch this
7119 // comparison to always fail so that we will hit the IC call in the
7120 // deferred code which will allow the debugger to break for fast case
7121 // stores.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007122 __ mov(scratch3, Operand(Factory::fixed_array_map()));
7123 __ cmp(scratch2, scratch3);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007124 deferred->Branch(ne);
7125
7126 // Store the value.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007127 __ add(scratch1, scratch1,
7128 Operand(FixedArray::kHeaderSize - kHeapObjectTag));
7129 __ str(value,
7130 MemOperand(scratch1, key, LSL,
7131 kPointerSizeLog2 - (kSmiTagSize + kSmiShiftSize)));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007132
7133 // Make sure that the expected number of instructions are generated.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007134 ASSERT_EQ(kInlinedKeyedStoreInstructionsAfterPatch,
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007135 masm_->InstructionsGeneratedSince(&check_inlined_codesize));
7136 }
7137
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007138 ASSERT(we_remembered_the_write_barrier);
7139
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007140 deferred->BindExit();
7141 } else {
7142 frame()->CallKeyedStoreIC();
7143 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007144}
7145
7146
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00007147#ifdef DEBUG
7148bool CodeGenerator::HasValidEntryRegisters() { return true; }
7149#endif
7150
7151
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007152#undef __
ager@chromium.org65dad4b2009-04-23 08:48:43 +00007153#define __ ACCESS_MASM(masm)
7154
ager@chromium.org7c537e22008-10-16 08:43:32 +00007155Handle<String> Reference::GetName() {
7156 ASSERT(type_ == NAMED);
7157 Property* property = expression_->AsProperty();
7158 if (property == NULL) {
7159 // Global variable reference treated as a named property reference.
7160 VariableProxy* proxy = expression_->AsVariableProxy();
7161 ASSERT(proxy->AsVariable() != NULL);
7162 ASSERT(proxy->AsVariable()->is_global());
7163 return proxy->name();
7164 } else {
7165 Literal* raw_name = property->key()->AsLiteral();
7166 ASSERT(raw_name != NULL);
7167 return Handle<String>(String::cast(*raw_name->handle()));
7168 }
7169}
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007170
ager@chromium.org7c537e22008-10-16 08:43:32 +00007171
ricow@chromium.org30ce4112010-05-31 10:38:25 +00007172void Reference::DupIfPersist() {
7173 if (persist_after_get_) {
7174 switch (type_) {
7175 case KEYED:
7176 cgen_->frame()->Dup2();
7177 break;
7178 case NAMED:
7179 cgen_->frame()->Dup();
7180 // Fall through.
7181 case UNLOADED:
7182 case ILLEGAL:
7183 case SLOT:
7184 // Do nothing.
7185 ;
7186 }
7187 } else {
7188 set_unloaded();
7189 }
7190}
7191
7192
ager@chromium.orgc4c92722009-11-18 14:12:51 +00007193void Reference::GetValue() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00007194 ASSERT(cgen_->HasValidEntryRegisters());
ager@chromium.org7c537e22008-10-16 08:43:32 +00007195 ASSERT(!is_illegal());
7196 ASSERT(!cgen_->has_cc());
7197 MacroAssembler* masm = cgen_->masm();
7198 Property* property = expression_->AsProperty();
7199 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00007200 cgen_->CodeForSourcePosition(property->position());
ager@chromium.org7c537e22008-10-16 08:43:32 +00007201 }
7202
7203 switch (type_) {
7204 case SLOT: {
7205 Comment cmnt(masm, "[ Load from Slot");
7206 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot();
7207 ASSERT(slot != NULL);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00007208 DupIfPersist();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00007209 cgen_->LoadFromSlotCheckForArguments(slot, NOT_INSIDE_TYPEOF);
ager@chromium.org7c537e22008-10-16 08:43:32 +00007210 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007211 }
7212
ager@chromium.org7c537e22008-10-16 08:43:32 +00007213 case NAMED: {
ager@chromium.org7c537e22008-10-16 08:43:32 +00007214 Variable* var = expression_->AsVariableProxy()->AsVariable();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00007215 bool is_global = var != NULL;
7216 ASSERT(!is_global || var->is_global());
ricow@chromium.org30ce4112010-05-31 10:38:25 +00007217 Handle<String> name = GetName();
7218 DupIfPersist();
7219 cgen_->EmitNamedLoad(name, is_global);
ager@chromium.org7c537e22008-10-16 08:43:32 +00007220 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007221 }
7222
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007223 case KEYED: {
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007224 ASSERT(property != NULL);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00007225 DupIfPersist();
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007226 cgen_->EmitKeyedLoad();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007227 cgen_->frame()->EmitPush(r0);
7228 break;
7229 }
7230
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007231 default:
7232 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007233 }
7234}
7235
7236
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007237void Reference::SetValue(InitState init_state, WriteBarrierCharacter wb_info) {
ager@chromium.org7c537e22008-10-16 08:43:32 +00007238 ASSERT(!is_illegal());
7239 ASSERT(!cgen_->has_cc());
7240 MacroAssembler* masm = cgen_->masm();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00007241 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00007242 Property* property = expression_->AsProperty();
7243 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00007244 cgen_->CodeForSourcePosition(property->position());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007245 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007246
ager@chromium.org7c537e22008-10-16 08:43:32 +00007247 switch (type_) {
7248 case SLOT: {
7249 Comment cmnt(masm, "[ Store to Slot");
7250 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot();
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007251 cgen_->StoreToSlot(slot, init_state);
ager@chromium.orgac091b72010-05-05 07:34:42 +00007252 set_unloaded();
ager@chromium.org7c537e22008-10-16 08:43:32 +00007253 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007254 }
7255
ager@chromium.org7c537e22008-10-16 08:43:32 +00007256 case NAMED: {
7257 Comment cmnt(masm, "[ Store to named Property");
ager@chromium.orgac091b72010-05-05 07:34:42 +00007258 cgen_->EmitNamedStore(GetName(), false);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00007259 frame->EmitPush(r0);
ager@chromium.org5c838252010-02-19 08:53:10 +00007260 set_unloaded();
ager@chromium.org7c537e22008-10-16 08:43:32 +00007261 break;
7262 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007263
ager@chromium.org7c537e22008-10-16 08:43:32 +00007264 case KEYED: {
7265 Comment cmnt(masm, "[ Store to keyed Property");
7266 Property* property = expression_->AsProperty();
7267 ASSERT(property != NULL);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00007268 cgen_->CodeForSourcePosition(property->position());
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007269 cgen_->EmitKeyedStore(property->key()->type(), wb_info);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00007270 frame->EmitPush(r0);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007271 set_unloaded();
ager@chromium.org7c537e22008-10-16 08:43:32 +00007272 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007273 }
ager@chromium.org7c537e22008-10-16 08:43:32 +00007274
7275 default:
7276 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007277 }
7278}
7279
7280
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00007281const char* GenericBinaryOpStub::GetName() {
7282 if (name_ != NULL) return name_;
7283 const int len = 100;
7284 name_ = Bootstrapper::AllocateAutoDeletedArray(len);
7285 if (name_ == NULL) return "OOM";
7286 const char* op_name = Token::Name(op_);
7287 const char* overwrite_name;
7288 switch (mode_) {
7289 case NO_OVERWRITE: overwrite_name = "Alloc"; break;
7290 case OVERWRITE_RIGHT: overwrite_name = "OverwriteRight"; break;
7291 case OVERWRITE_LEFT: overwrite_name = "OverwriteLeft"; break;
7292 default: overwrite_name = "UnknownOverwrite"; break;
7293 }
7294
7295 OS::SNPrintF(Vector<char>(name_, len),
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00007296 "GenericBinaryOpStub_%s_%s%s_%s",
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00007297 op_name,
7298 overwrite_name,
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00007299 specialized_on_rhs_ ? "_ConstantRhs" : "",
7300 BinaryOpIC::GetName(runtime_operands_type_));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00007301 return name_;
7302}
7303
7304
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007305#undef __
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007306
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007307} } // namespace v8::internal
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007308
7309#endif // V8_TARGET_ARCH_ARM