blob: 70ff244649cc313f8110e6cb21341a99099b5628 [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_);
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000178 loop_nesting_ = info->is_in_loop() ? 1 : 0;
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000179
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);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000249 Slot* slot = par->AsSlot();
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000250 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);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000273 StoreToSlot(scope()->function()->AsSlot(), 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.
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000342 ASSERT(loop_nesting_ == info->is_in_loop()? 1 : 0);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000343 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
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000611 Variable* arguments = scope()->arguments();
612 Variable* shadow = scope()->arguments_shadow();
613 ASSERT(arguments != NULL && arguments->AsSlot() != NULL);
614 ASSERT(shadow != NULL && shadow->AsSlot() != NULL);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000615 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'.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000620 LoadFromSlot(scope()->arguments()->AsSlot(), 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 }
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000626 StoreToSlot(arguments->AsSlot(), NOT_CONST_INIT);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000627 if (mode == LAZY_ARGUMENTS_ALLOCATION) done.Bind();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000628 StoreToSlot(shadow->AsSlot(), NOT_CONST_INIT);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000629}
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();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000644 } else if (variable != NULL && variable->AsSlot() != NULL) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000645 // For a variable that rewrites to a slot, we signal it is the immediate
646 // subexpression of a typeof.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000647 LoadFromSlotCheckForArguments(variable->AsSlot(), 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 {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000698 ASSERT(var->AsSlot() != NULL);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000699 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.
ager@chromium.org5b2fbee2010-09-08 06:38:15 +0000773 __ cmp(tos, Operand(0, RelocInfo::NONE));
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000774 } 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.
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001132 __ cmp(int32, Operand(0, RelocInfo::NONE));
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001133 }
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
lrn@chromium.org303ada72010-10-27 09:33:13 +00001183 // into a Smi, so we store it into a heap number. VirtualFrame::scratch0()
1184 // holds the untagged result to be converted. tos_register_ contains the
1185 // input. See the calls to JumpToAnswerOutOfRange to see how we got here.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001186 ASSERT(Token::IsBitOp(op_));
1187 ASSERT(!reversed_);
1188
lrn@chromium.org303ada72010-10-27 09:33:13 +00001189 Register untagged_result = VirtualFrame::scratch0();
1190
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001191 if (FLAG_debug_code) {
1192 __ Abort("Should not fall through!");
1193 }
1194
1195 __ bind(&answer_out_of_range_);
1196 if (((value_ & 0x1f) == 0) && (op_ == Token::SHR)) {
lrn@chromium.org303ada72010-10-27 09:33:13 +00001197 // >>> 0 is a special case where the untagged_result register is not set up
1198 // yet. We untag the input to get it.
1199 __ mov(untagged_result, Operand(tos_register_, ASR, kSmiTagSize));
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001200 }
1201
1202 // This routine uses the registers from r2 to r6. At the moment they are
1203 // not used by the register allocator, but when they are it should use
1204 // SpillAll and MergeTo like DeferredInlineSmiOperation::Generate() above.
1205
1206 // Allocate the result heap number.
lrn@chromium.org303ada72010-10-27 09:33:13 +00001207 Register heap_number_map = VirtualFrame::scratch1();
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001208 Register heap_number = r4;
1209 __ LoadRoot(heap_number_map, Heap::kHeapNumberMapRootIndex);
1210 // If the allocation fails, fall back to the GenericBinaryOpStub.
1211 __ AllocateHeapNumber(heap_number, r5, r6, heap_number_map, entry_label());
lrn@chromium.org303ada72010-10-27 09:33:13 +00001212 WriteNonSmiAnswer(untagged_result, heap_number, r3);
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001213 __ mov(tos_register_, Operand(heap_number));
1214
1215 Exit();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001216}
1217
1218
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001219static bool PopCountLessThanEqual2(unsigned int x) {
1220 x &= x - 1;
1221 return (x & (x - 1)) == 0;
1222}
1223
1224
1225// Returns the index of the lowest bit set.
1226static int BitPosition(unsigned x) {
1227 int bit_posn = 0;
1228 while ((x & 0xf) == 0) {
1229 bit_posn += 4;
1230 x >>= 4;
1231 }
1232 while ((x & 1) == 0) {
1233 bit_posn++;
1234 x >>= 1;
1235 }
1236 return bit_posn;
1237}
1238
1239
ricow@chromium.org65fae842010-08-25 15:26:24 +00001240// Can we multiply by x with max two shifts and an add.
1241// This answers yes to all integers from 2 to 10.
1242static bool IsEasyToMultiplyBy(int x) {
1243 if (x < 2) return false; // Avoid special cases.
1244 if (x > (Smi::kMaxValue + 1) >> 2) return false; // Almost always overflows.
1245 if (IsPowerOf2(x)) return true; // Simple shift.
1246 if (PopCountLessThanEqual2(x)) return true; // Shift and add and shift.
1247 if (IsPowerOf2(x + 1)) return true; // Patterns like 11111.
1248 return false;
1249}
1250
1251
1252// Can multiply by anything that IsEasyToMultiplyBy returns true for.
1253// Source and destination may be the same register. This routine does
1254// not set carry and overflow the way a mul instruction would.
1255static void InlineMultiplyByKnownInt(MacroAssembler* masm,
1256 Register source,
1257 Register destination,
1258 int known_int) {
1259 if (IsPowerOf2(known_int)) {
1260 masm->mov(destination, Operand(source, LSL, BitPosition(known_int)));
1261 } else if (PopCountLessThanEqual2(known_int)) {
1262 int first_bit = BitPosition(known_int);
1263 int second_bit = BitPosition(known_int ^ (1 << first_bit));
1264 masm->add(destination, source,
1265 Operand(source, LSL, second_bit - first_bit));
1266 if (first_bit != 0) {
1267 masm->mov(destination, Operand(destination, LSL, first_bit));
1268 }
1269 } else {
1270 ASSERT(IsPowerOf2(known_int + 1)); // Patterns like 1111.
1271 int the_bit = BitPosition(known_int + 1);
1272 masm->rsb(destination, source, Operand(source, LSL, the_bit));
1273 }
1274}
1275
1276
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001277void CodeGenerator::SmiOperation(Token::Value op,
1278 Handle<Object> value,
1279 bool reversed,
1280 OverwriteMode mode) {
ager@chromium.org357bf652010-04-12 11:30:10 +00001281 int int_value = Smi::cast(*value)->value();
1282
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001283 bool both_sides_are_smi = frame_->KnownSmiAt(0);
1284
ager@chromium.org357bf652010-04-12 11:30:10 +00001285 bool something_to_inline;
1286 switch (op) {
1287 case Token::ADD:
1288 case Token::SUB:
1289 case Token::BIT_AND:
1290 case Token::BIT_OR:
1291 case Token::BIT_XOR: {
1292 something_to_inline = true;
1293 break;
1294 }
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001295 case Token::SHL: {
1296 something_to_inline = (both_sides_are_smi || !reversed);
1297 break;
1298 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001299 case Token::SHR:
1300 case Token::SAR: {
1301 if (reversed) {
1302 something_to_inline = false;
1303 } else {
1304 something_to_inline = true;
1305 }
1306 break;
1307 }
1308 case Token::MOD: {
1309 if (reversed || int_value < 2 || !IsPowerOf2(int_value)) {
1310 something_to_inline = false;
1311 } else {
1312 something_to_inline = true;
1313 }
1314 break;
1315 }
1316 case Token::MUL: {
1317 if (!IsEasyToMultiplyBy(int_value)) {
1318 something_to_inline = false;
1319 } else {
1320 something_to_inline = true;
1321 }
1322 break;
1323 }
1324 default: {
1325 something_to_inline = false;
1326 break;
1327 }
1328 }
1329
1330 if (!something_to_inline) {
1331 if (!reversed) {
1332 // Push the rhs onto the virtual frame by putting it in a TOS register.
1333 Register rhs = frame_->GetTOSRegister();
1334 __ mov(rhs, Operand(value));
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001335 frame_->EmitPush(rhs, TypeInfo::Smi());
1336 GenericBinaryOperation(op, mode, GENERATE_INLINE_SMI, int_value);
ager@chromium.org357bf652010-04-12 11:30:10 +00001337 } else {
1338 // Pop the rhs, then push lhs and rhs in the right order. Only performs
1339 // at most one pop, the rest takes place in TOS registers.
1340 Register lhs = frame_->GetTOSRegister(); // Get reg for pushing.
1341 Register rhs = frame_->PopToRegister(lhs); // Don't use lhs for this.
1342 __ mov(lhs, Operand(value));
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001343 frame_->EmitPush(lhs, TypeInfo::Smi());
1344 TypeInfo t = both_sides_are_smi ? TypeInfo::Smi() : TypeInfo::Unknown();
1345 frame_->EmitPush(rhs, t);
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001346 GenericBinaryOperation(op, mode, GENERATE_INLINE_SMI,
1347 GenericBinaryOpStub::kUnknownIntValue);
ager@chromium.org357bf652010-04-12 11:30:10 +00001348 }
1349 return;
1350 }
1351
1352 // We move the top of stack to a register (normally no move is invoved).
1353 Register tos = frame_->PopToRegister();
ager@chromium.org357bf652010-04-12 11:30:10 +00001354 switch (op) {
1355 case Token::ADD: {
1356 DeferredCode* deferred =
1357 new DeferredInlineSmiOperation(op, int_value, reversed, mode, tos);
1358
1359 __ add(tos, tos, Operand(value), SetCC);
1360 deferred->Branch(vs);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001361 if (!both_sides_are_smi) {
1362 __ tst(tos, Operand(kSmiTagMask));
1363 deferred->Branch(ne);
1364 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001365 deferred->BindExit();
1366 frame_->EmitPush(tos);
1367 break;
1368 }
1369
1370 case Token::SUB: {
1371 DeferredCode* deferred =
1372 new DeferredInlineSmiOperation(op, int_value, reversed, mode, tos);
1373
1374 if (reversed) {
1375 __ rsb(tos, tos, Operand(value), SetCC);
1376 } else {
1377 __ sub(tos, tos, Operand(value), SetCC);
1378 }
1379 deferred->Branch(vs);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001380 if (!both_sides_are_smi) {
1381 __ tst(tos, Operand(kSmiTagMask));
1382 deferred->Branch(ne);
1383 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001384 deferred->BindExit();
1385 frame_->EmitPush(tos);
1386 break;
1387 }
1388
1389
1390 case Token::BIT_OR:
1391 case Token::BIT_XOR:
1392 case Token::BIT_AND: {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001393 if (both_sides_are_smi) {
1394 switch (op) {
1395 case Token::BIT_OR: __ orr(tos, tos, Operand(value)); break;
1396 case Token::BIT_XOR: __ eor(tos, tos, Operand(value)); break;
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00001397 case Token::BIT_AND: __ And(tos, tos, Operand(value)); break;
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001398 default: UNREACHABLE();
1399 }
1400 frame_->EmitPush(tos, TypeInfo::Smi());
1401 } else {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001402 DeferredInlineSmiOperation* deferred =
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001403 new DeferredInlineSmiOperation(op, int_value, reversed, mode, tos);
1404 __ tst(tos, Operand(kSmiTagMask));
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001405 deferred->JumpToNonSmiInput(ne);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001406 switch (op) {
1407 case Token::BIT_OR: __ orr(tos, tos, Operand(value)); break;
1408 case Token::BIT_XOR: __ eor(tos, tos, Operand(value)); break;
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00001409 case Token::BIT_AND: __ And(tos, tos, Operand(value)); break;
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001410 default: UNREACHABLE();
1411 }
1412 deferred->BindExit();
1413 TypeInfo result_type =
1414 (op == Token::BIT_AND) ? TypeInfo::Smi() : TypeInfo::Integer32();
1415 frame_->EmitPush(tos, result_type);
ager@chromium.org357bf652010-04-12 11:30:10 +00001416 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001417 break;
1418 }
1419
1420 case Token::SHL:
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001421 if (reversed) {
1422 ASSERT(both_sides_are_smi);
1423 int max_shift = 0;
1424 int max_result = int_value == 0 ? 1 : int_value;
1425 while (Smi::IsValid(max_result << 1)) {
1426 max_shift++;
1427 max_result <<= 1;
1428 }
1429 DeferredCode* deferred =
1430 new DeferredInlineSmiOperation(op, int_value, true, mode, tos);
1431 // Mask off the last 5 bits of the shift operand (rhs). This is part
1432 // of the definition of shift in JS and we know we have a Smi so we
1433 // can safely do this. The masked version gets passed to the
1434 // deferred code, but that makes no difference.
1435 __ and_(tos, tos, Operand(Smi::FromInt(0x1f)));
1436 __ cmp(tos, Operand(Smi::FromInt(max_shift)));
1437 deferred->Branch(ge);
1438 Register scratch = VirtualFrame::scratch0();
1439 __ mov(scratch, Operand(tos, ASR, kSmiTagSize)); // Untag.
1440 __ mov(tos, Operand(Smi::FromInt(int_value))); // Load constant.
1441 __ mov(tos, Operand(tos, LSL, scratch)); // Shift constant.
1442 deferred->BindExit();
1443 TypeInfo result = TypeInfo::Integer32();
1444 frame_->EmitPush(tos, result);
1445 break;
1446 }
1447 // Fall through!
ager@chromium.org357bf652010-04-12 11:30:10 +00001448 case Token::SHR:
1449 case Token::SAR: {
1450 ASSERT(!reversed);
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001451 int shift_value = int_value & 0x1f;
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001452 TypeInfo result = TypeInfo::Number();
1453
1454 if (op == Token::SHR) {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001455 if (shift_value > 1) {
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001456 result = TypeInfo::Smi();
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001457 } else if (shift_value > 0) {
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001458 result = TypeInfo::Integer32();
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00001459 }
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001460 } else if (op == Token::SAR) {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001461 if (shift_value > 0) {
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001462 result = TypeInfo::Smi();
1463 } else {
1464 result = TypeInfo::Integer32();
1465 }
1466 } else {
1467 ASSERT(op == Token::SHL);
1468 result = TypeInfo::Integer32();
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00001469 }
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001470
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001471 DeferredInlineSmiOperation* deferred =
ager@chromium.org357bf652010-04-12 11:30:10 +00001472 new DeferredInlineSmiOperation(op, shift_value, false, mode, tos);
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001473 if (!both_sides_are_smi) {
1474 __ tst(tos, Operand(kSmiTagMask));
1475 deferred->JumpToNonSmiInput(ne);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001476 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001477 switch (op) {
1478 case Token::SHL: {
1479 if (shift_value != 0) {
lrn@chromium.org303ada72010-10-27 09:33:13 +00001480 Register untagged_result = VirtualFrame::scratch0();
1481 Register scratch = VirtualFrame::scratch1();
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001482 int adjusted_shift = shift_value - kSmiTagSize;
1483 ASSERT(adjusted_shift >= 0);
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001484
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001485 if (adjusted_shift != 0) {
lrn@chromium.org303ada72010-10-27 09:33:13 +00001486 __ mov(untagged_result, Operand(tos, LSL, adjusted_shift));
1487 } else {
1488 __ mov(untagged_result, Operand(tos));
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001489 }
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001490 // Check that the *signed* result fits in a smi.
lrn@chromium.org303ada72010-10-27 09:33:13 +00001491 __ add(scratch, untagged_result, Operand(0x40000000), SetCC);
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001492 deferred->JumpToAnswerOutOfRange(mi);
lrn@chromium.org303ada72010-10-27 09:33:13 +00001493 __ mov(tos, Operand(untagged_result, LSL, kSmiTagSize));
ager@chromium.org357bf652010-04-12 11:30:10 +00001494 }
ager@chromium.org357bf652010-04-12 11:30:10 +00001495 break;
1496 }
1497 case Token::SHR: {
ager@chromium.org357bf652010-04-12 11:30:10 +00001498 if (shift_value != 0) {
lrn@chromium.org303ada72010-10-27 09:33:13 +00001499 Register untagged_result = VirtualFrame::scratch0();
1500 // Remove tag.
1501 __ mov(untagged_result, Operand(tos, ASR, kSmiTagSize));
1502 __ mov(untagged_result, Operand(untagged_result, LSR, shift_value));
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001503 if (shift_value == 1) {
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001504 // Check that the *unsigned* result fits in a smi.
1505 // Neither of the two high-order bits can be set:
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001506 // - 0x80000000: high bit would be lost when smi tagging
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001507 // - 0x40000000: this number would convert to negative when Smi
1508 // tagging.
1509 // These two cases can only happen with shifts by 0 or 1 when
1510 // handed a valid smi.
lrn@chromium.org303ada72010-10-27 09:33:13 +00001511 __ tst(untagged_result, Operand(0xc0000000));
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001512 deferred->JumpToAnswerOutOfRange(ne);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00001513 }
lrn@chromium.org303ada72010-10-27 09:33:13 +00001514 __ mov(tos, Operand(untagged_result, LSL, kSmiTagSize));
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001515 } else {
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001516 __ cmp(tos, Operand(0, RelocInfo::NONE));
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001517 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.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00001654 CompareStub stub(cc, strict, NO_SMI_COMPARE_IN_STUB, lhs, rhs);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001655 frame_->CallStub(&stub, 0);
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001656 __ cmp(r0, Operand(0, RelocInfo::NONE));
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001657 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);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001721 LoadFromSlot(scope()->arguments()->AsSlot(), NOT_INSIDE_TYPEOF);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001722
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.
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001820 __ cmp(r3, Operand(0, RelocInfo::NONE));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001821 __ 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
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001953 Slot* slot = var->AsSlot();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001954
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.org5b2fbee2010-09-08 06:38:15 +00001978 frame_->EmitPush(Operand(0, RelocInfo::NONE));
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() ?
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00002483 node->loop_variable()->AsSlot() :
2484 NULL,
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00002485 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();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00002797 ASSERT(catch_var != NULL && catch_var->AsSlot() != NULL);
2798 StoreToSlot(catch_var->AsSlot(), 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 =
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00003135 Compiler::BuildFunctionInfo(node, script());
3136 if (function_info.is_null()) {
3137 SetStackOverflow();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003138 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();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00003423 Slot* potential_slot = slot->var()->local_if_not_shadowed()->AsSlot();
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00003424 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,
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00003452 ContextSlotOperandCheckExtensions(obj_proxy->var()->AsSlot(),
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00003453 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
fschneider@chromium.orge03fb642010-11-01 12:34:09 +00003599
3600 // Mark all computed expressions that are bound to a key that
3601 // is shadowed by a later occurrence of the same key. For the
3602 // marked expressions, no store code is emitted.
3603 node->CalculateEmitStore();
3604
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003605 for (int i = 0; i < node->properties()->length(); i++) {
ager@chromium.org5c838252010-02-19 08:53:10 +00003606 // At the start of each iteration, the top of stack contains
3607 // the newly created object literal.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003608 ObjectLiteral::Property* property = node->properties()->at(i);
3609 Literal* key = property->key();
3610 Expression* value = property->value();
3611 switch (property->kind()) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003612 case ObjectLiteral::Property::CONSTANT:
3613 break;
3614 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
3615 if (CompileTimeValue::IsCompileTimeValue(property->value())) break;
3616 // else fall through
ager@chromium.org5c838252010-02-19 08:53:10 +00003617 case ObjectLiteral::Property::COMPUTED:
3618 if (key->handle()->IsSymbol()) {
3619 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003620 Load(value);
fschneider@chromium.orge03fb642010-11-01 12:34:09 +00003621 if (property->emit_store()) {
3622 frame_->PopToR0();
3623 // Fetch the object literal.
3624 frame_->SpillAllButCopyTOSToR1();
3625 __ mov(r2, Operand(key->handle()));
3626 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
3627 } else {
3628 frame_->Drop();
3629 }
ager@chromium.org5c838252010-02-19 08:53:10 +00003630 break;
3631 }
3632 // else fall through
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003633 case ObjectLiteral::Property::PROTOTYPE: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003634 frame_->Dup();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003635 Load(key);
3636 Load(value);
fschneider@chromium.orge03fb642010-11-01 12:34:09 +00003637 if (property->emit_store()) {
3638 frame_->CallRuntime(Runtime::kSetProperty, 3);
3639 } else {
3640 frame_->Drop(3);
3641 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003642 break;
3643 }
3644 case ObjectLiteral::Property::SETTER: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003645 frame_->Dup();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003646 Load(key);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003647 frame_->EmitPush(Operand(Smi::FromInt(1)));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003648 Load(value);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003649 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003650 break;
3651 }
3652 case ObjectLiteral::Property::GETTER: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003653 frame_->Dup();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003654 Load(key);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003655 frame_->EmitPush(Operand(Smi::FromInt(0)));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003656 Load(value);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003657 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003658 break;
3659 }
3660 }
3661 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003662 ASSERT_EQ(original_height + 1, frame_->height());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003663}
3664
3665
ager@chromium.org7c537e22008-10-16 08:43:32 +00003666void CodeGenerator::VisitArrayLiteral(ArrayLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003667#ifdef DEBUG
3668 int original_height = frame_->height();
3669#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003670 Comment cmnt(masm_, "[ ArrayLiteral");
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003671
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003672 Register tos = frame_->GetTOSRegister();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003673 // Load the function of this activation.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003674 __ ldr(tos, frame_->Function());
ager@chromium.org5c838252010-02-19 08:53:10 +00003675 // Load the literals array of the function.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003676 __ ldr(tos, FieldMemOperand(tos, JSFunction::kLiteralsOffset));
3677 frame_->EmitPush(tos);
3678 frame_->EmitPush(Operand(Smi::FromInt(node->literal_index())));
3679 frame_->EmitPush(Operand(node->constant_elements()));
ager@chromium.org5c838252010-02-19 08:53:10 +00003680 int length = node->values()->length();
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003681 if (node->constant_elements()->map() == Heap::fixed_cow_array_map()) {
3682 FastCloneShallowArrayStub stub(
3683 FastCloneShallowArrayStub::COPY_ON_WRITE_ELEMENTS, length);
3684 frame_->CallStub(&stub, 3);
3685 __ IncrementCounter(&Counters::cow_arrays_created_stub, 1, r1, r2);
3686 } else if (node->depth() > 1) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003687 frame_->CallRuntime(Runtime::kCreateArrayLiteral, 3);
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003688 } else if (length > FastCloneShallowArrayStub::kMaximumClonedLength) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003689 frame_->CallRuntime(Runtime::kCreateArrayLiteralShallow, 3);
ager@chromium.org5c838252010-02-19 08:53:10 +00003690 } else {
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003691 FastCloneShallowArrayStub stub(
3692 FastCloneShallowArrayStub::CLONE_ELEMENTS, length);
ager@chromium.org5c838252010-02-19 08:53:10 +00003693 frame_->CallStub(&stub, 3);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003694 }
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003695 frame_->EmitPush(r0); // save the result
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003696 // r0: created object literal
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003697
3698 // Generate code to set the elements in the array that are not
3699 // literals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003700 for (int i = 0; i < node->values()->length(); i++) {
3701 Expression* value = node->values()->at(i);
3702
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003703 // If value is a literal the property value is already set in the
3704 // boilerplate object.
3705 if (value->AsLiteral() != NULL) continue;
3706 // If value is a materialized literal the property value is already set
3707 // in the boilerplate object if it is simple.
3708 if (CompileTimeValue::IsCompileTimeValue(value)) continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003709
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003710 // The property must be set by generated code.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003711 Load(value);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003712 frame_->PopToR0();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003713 // Fetch the object literal.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003714 frame_->SpillAllButCopyTOSToR1();
3715
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003716 // Get the elements array.
3717 __ ldr(r1, FieldMemOperand(r1, JSObject::kElementsOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003718
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003719 // Write to the indexed properties array.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003720 int offset = i * kPointerSize + FixedArray::kHeaderSize;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003721 __ str(r0, FieldMemOperand(r1, offset));
3722
3723 // Update the write barrier for the array address.
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00003724 __ RecordWrite(r1, Operand(offset), r3, r2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003725 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003726 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003727}
3728
3729
ager@chromium.org32912102009-01-16 10:38:43 +00003730void CodeGenerator::VisitCatchExtensionObject(CatchExtensionObject* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003731#ifdef DEBUG
3732 int original_height = frame_->height();
3733#endif
ager@chromium.org32912102009-01-16 10:38:43 +00003734 // Call runtime routine to allocate the catch extension object and
3735 // assign the exception value to the catch variable.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003736 Comment cmnt(masm_, "[ CatchExtensionObject");
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003737 Load(node->key());
3738 Load(node->value());
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003739 frame_->CallRuntime(Runtime::kCreateCatchExtensionObject, 2);
3740 frame_->EmitPush(r0);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003741 ASSERT_EQ(original_height + 1, frame_->height());
3742}
3743
3744
3745void CodeGenerator::EmitSlotAssignment(Assignment* node) {
3746#ifdef DEBUG
3747 int original_height = frame_->height();
3748#endif
3749 Comment cmnt(masm(), "[ Variable Assignment");
3750 Variable* var = node->target()->AsVariableProxy()->AsVariable();
3751 ASSERT(var != NULL);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00003752 Slot* slot = var->AsSlot();
ager@chromium.orgac091b72010-05-05 07:34:42 +00003753 ASSERT(slot != NULL);
3754
3755 // Evaluate the right-hand side.
3756 if (node->is_compound()) {
3757 // For a compound assignment the right-hand side is a binary operation
3758 // between the current property value and the actual right-hand side.
3759 LoadFromSlotCheckForArguments(slot, NOT_INSIDE_TYPEOF);
3760
3761 // Perform the binary operation.
3762 Literal* literal = node->value()->AsLiteral();
ricow@chromium.org65fae842010-08-25 15:26:24 +00003763 bool overwrite_value = node->value()->ResultOverwriteAllowed();
ager@chromium.orgac091b72010-05-05 07:34:42 +00003764 if (literal != NULL && literal->handle()->IsSmi()) {
3765 SmiOperation(node->binary_op(),
3766 literal->handle(),
3767 false,
3768 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE);
3769 } else {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003770 GenerateInlineSmi inline_smi =
3771 loop_nesting() > 0 ? GENERATE_INLINE_SMI : DONT_GENERATE_INLINE_SMI;
3772 if (literal != NULL) {
3773 ASSERT(!literal->handle()->IsSmi());
3774 inline_smi = DONT_GENERATE_INLINE_SMI;
3775 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003776 Load(node->value());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003777 GenericBinaryOperation(node->binary_op(),
3778 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE,
3779 inline_smi);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003780 }
3781 } else {
3782 Load(node->value());
3783 }
3784
3785 // Perform the assignment.
3786 if (var->mode() != Variable::CONST || node->op() == Token::INIT_CONST) {
3787 CodeForSourcePosition(node->position());
3788 StoreToSlot(slot,
3789 node->op() == Token::INIT_CONST ? CONST_INIT : NOT_CONST_INIT);
3790 }
3791 ASSERT_EQ(original_height + 1, frame_->height());
3792}
3793
3794
3795void CodeGenerator::EmitNamedPropertyAssignment(Assignment* node) {
3796#ifdef DEBUG
3797 int original_height = frame_->height();
3798#endif
3799 Comment cmnt(masm(), "[ Named Property Assignment");
3800 Variable* var = node->target()->AsVariableProxy()->AsVariable();
3801 Property* prop = node->target()->AsProperty();
3802 ASSERT(var == NULL || (prop == NULL && var->is_global()));
3803
3804 // Initialize name and evaluate the receiver sub-expression if necessary. If
3805 // the receiver is trivial it is not placed on the stack at this point, but
3806 // loaded whenever actually needed.
3807 Handle<String> name;
3808 bool is_trivial_receiver = false;
3809 if (var != NULL) {
3810 name = var->name();
3811 } else {
3812 Literal* lit = prop->key()->AsLiteral();
3813 ASSERT_NOT_NULL(lit);
3814 name = Handle<String>::cast(lit->handle());
3815 // Do not materialize the receiver on the frame if it is trivial.
3816 is_trivial_receiver = prop->obj()->IsTrivial();
3817 if (!is_trivial_receiver) Load(prop->obj());
3818 }
3819
3820 // Change to slow case in the beginning of an initialization block to
3821 // avoid the quadratic behavior of repeatedly adding fast properties.
3822 if (node->starts_initialization_block()) {
3823 // Initialization block consists of assignments of the form expr.x = ..., so
3824 // this will never be an assignment to a variable, so there must be a
3825 // receiver object.
3826 ASSERT_EQ(NULL, var);
3827 if (is_trivial_receiver) {
3828 Load(prop->obj());
3829 } else {
3830 frame_->Dup();
3831 }
3832 frame_->CallRuntime(Runtime::kToSlowProperties, 1);
3833 }
3834
3835 // Change to fast case at the end of an initialization block. To prepare for
3836 // that add an extra copy of the receiver to the frame, so that it can be
3837 // converted back to fast case after the assignment.
3838 if (node->ends_initialization_block() && !is_trivial_receiver) {
3839 frame_->Dup();
3840 }
3841
3842 // Stack layout:
3843 // [tos] : receiver (only materialized if non-trivial)
3844 // [tos+1] : receiver if at the end of an initialization block
3845
3846 // Evaluate the right-hand side.
3847 if (node->is_compound()) {
3848 // For a compound assignment the right-hand side is a binary operation
3849 // between the current property value and the actual right-hand side.
3850 if (is_trivial_receiver) {
3851 Load(prop->obj());
3852 } else if (var != NULL) {
3853 LoadGlobal();
3854 } else {
3855 frame_->Dup();
3856 }
3857 EmitNamedLoad(name, var != NULL);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003858
3859 // Perform the binary operation.
3860 Literal* literal = node->value()->AsLiteral();
ricow@chromium.org65fae842010-08-25 15:26:24 +00003861 bool overwrite_value = node->value()->ResultOverwriteAllowed();
ager@chromium.orgac091b72010-05-05 07:34:42 +00003862 if (literal != NULL && literal->handle()->IsSmi()) {
3863 SmiOperation(node->binary_op(),
3864 literal->handle(),
3865 false,
3866 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE);
3867 } else {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003868 GenerateInlineSmi inline_smi =
3869 loop_nesting() > 0 ? GENERATE_INLINE_SMI : DONT_GENERATE_INLINE_SMI;
3870 if (literal != NULL) {
3871 ASSERT(!literal->handle()->IsSmi());
3872 inline_smi = DONT_GENERATE_INLINE_SMI;
3873 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003874 Load(node->value());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003875 GenericBinaryOperation(node->binary_op(),
3876 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE,
3877 inline_smi);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003878 }
3879 } else {
3880 // For non-compound assignment just load the right-hand side.
3881 Load(node->value());
3882 }
3883
3884 // Stack layout:
3885 // [tos] : value
3886 // [tos+1] : receiver (only materialized if non-trivial)
3887 // [tos+2] : receiver if at the end of an initialization block
3888
3889 // Perform the assignment. It is safe to ignore constants here.
3890 ASSERT(var == NULL || var->mode() != Variable::CONST);
3891 ASSERT_NE(Token::INIT_CONST, node->op());
3892 if (is_trivial_receiver) {
3893 // Load the receiver and swap with the value.
3894 Load(prop->obj());
3895 Register t0 = frame_->PopToRegister();
3896 Register t1 = frame_->PopToRegister(t0);
3897 frame_->EmitPush(t0);
3898 frame_->EmitPush(t1);
3899 }
3900 CodeForSourcePosition(node->position());
3901 bool is_contextual = (var != NULL);
3902 EmitNamedStore(name, is_contextual);
3903 frame_->EmitPush(r0);
3904
3905 // Change to fast case at the end of an initialization block.
3906 if (node->ends_initialization_block()) {
3907 ASSERT_EQ(NULL, var);
3908 // The argument to the runtime call is the receiver.
3909 if (is_trivial_receiver) {
3910 Load(prop->obj());
3911 } else {
3912 // A copy of the receiver is below the value of the assignment. Swap
3913 // the receiver and the value of the assignment expression.
3914 Register t0 = frame_->PopToRegister();
3915 Register t1 = frame_->PopToRegister(t0);
3916 frame_->EmitPush(t0);
3917 frame_->EmitPush(t1);
3918 }
3919 frame_->CallRuntime(Runtime::kToFastProperties, 1);
3920 }
3921
3922 // Stack layout:
3923 // [tos] : result
3924
3925 ASSERT_EQ(original_height + 1, frame_->height());
3926}
3927
3928
3929void CodeGenerator::EmitKeyedPropertyAssignment(Assignment* node) {
3930#ifdef DEBUG
3931 int original_height = frame_->height();
3932#endif
3933 Comment cmnt(masm_, "[ Keyed Property Assignment");
3934 Property* prop = node->target()->AsProperty();
3935 ASSERT_NOT_NULL(prop);
3936
3937 // Evaluate the receiver subexpression.
3938 Load(prop->obj());
3939
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003940 WriteBarrierCharacter wb_info;
3941
ager@chromium.orgac091b72010-05-05 07:34:42 +00003942 // Change to slow case in the beginning of an initialization block to
3943 // avoid the quadratic behavior of repeatedly adding fast properties.
3944 if (node->starts_initialization_block()) {
3945 frame_->Dup();
3946 frame_->CallRuntime(Runtime::kToSlowProperties, 1);
3947 }
3948
3949 // Change to fast case at the end of an initialization block. To prepare for
3950 // that add an extra copy of the receiver to the frame, so that it can be
3951 // converted back to fast case after the assignment.
3952 if (node->ends_initialization_block()) {
3953 frame_->Dup();
3954 }
3955
3956 // Evaluate the key subexpression.
3957 Load(prop->key());
3958
3959 // Stack layout:
3960 // [tos] : key
3961 // [tos+1] : receiver
3962 // [tos+2] : receiver if at the end of an initialization block
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003963 //
ager@chromium.orgac091b72010-05-05 07:34:42 +00003964 // Evaluate the right-hand side.
3965 if (node->is_compound()) {
3966 // For a compound assignment the right-hand side is a binary operation
3967 // between the current property value and the actual right-hand side.
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00003968 // Duplicate receiver and key for loading the current property value.
3969 frame_->Dup2();
ager@chromium.orgac091b72010-05-05 07:34:42 +00003970 EmitKeyedLoad();
3971 frame_->EmitPush(r0);
3972
3973 // Perform the binary operation.
3974 Literal* literal = node->value()->AsLiteral();
ricow@chromium.org65fae842010-08-25 15:26:24 +00003975 bool overwrite_value = node->value()->ResultOverwriteAllowed();
ager@chromium.orgac091b72010-05-05 07:34:42 +00003976 if (literal != NULL && literal->handle()->IsSmi()) {
3977 SmiOperation(node->binary_op(),
3978 literal->handle(),
3979 false,
3980 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE);
3981 } else {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003982 GenerateInlineSmi inline_smi =
3983 loop_nesting() > 0 ? GENERATE_INLINE_SMI : DONT_GENERATE_INLINE_SMI;
3984 if (literal != NULL) {
3985 ASSERT(!literal->handle()->IsSmi());
3986 inline_smi = DONT_GENERATE_INLINE_SMI;
3987 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00003988 Load(node->value());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003989 GenericBinaryOperation(node->binary_op(),
3990 overwrite_value ? OVERWRITE_RIGHT : NO_OVERWRITE,
3991 inline_smi);
ager@chromium.orgac091b72010-05-05 07:34:42 +00003992 }
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003993 wb_info = node->type()->IsLikelySmi() ? LIKELY_SMI : UNLIKELY_SMI;
ager@chromium.orgac091b72010-05-05 07:34:42 +00003994 } else {
3995 // For non-compound assignment just load the right-hand side.
3996 Load(node->value());
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003997 wb_info = node->value()->AsLiteral() != NULL ?
3998 NEVER_NEWSPACE :
3999 (node->value()->type()->IsLikelySmi() ? LIKELY_SMI : UNLIKELY_SMI);
ager@chromium.orgac091b72010-05-05 07:34:42 +00004000 }
4001
4002 // Stack layout:
4003 // [tos] : value
4004 // [tos+1] : key
4005 // [tos+2] : receiver
4006 // [tos+3] : receiver if at the end of an initialization block
4007
4008 // Perform the assignment. It is safe to ignore constants here.
4009 ASSERT(node->op() != Token::INIT_CONST);
4010 CodeForSourcePosition(node->position());
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004011 EmitKeyedStore(prop->key()->type(), wb_info);
ager@chromium.orgac091b72010-05-05 07:34:42 +00004012 frame_->EmitPush(r0);
4013
4014 // Stack layout:
4015 // [tos] : result
4016 // [tos+1] : receiver if at the end of an initialization block
4017
4018 // Change to fast case at the end of an initialization block.
4019 if (node->ends_initialization_block()) {
4020 // The argument to the runtime call is the extra copy of the receiver,
4021 // which is below the value of the assignment. Swap the receiver and
4022 // the value of the assignment expression.
4023 Register t0 = frame_->PopToRegister();
4024 Register t1 = frame_->PopToRegister(t0);
4025 frame_->EmitPush(t1);
4026 frame_->EmitPush(t0);
4027 frame_->CallRuntime(Runtime::kToFastProperties, 1);
4028 }
4029
4030 // Stack layout:
4031 // [tos] : result
4032
4033 ASSERT_EQ(original_height + 1, frame_->height());
ager@chromium.org32912102009-01-16 10:38:43 +00004034}
4035
4036
ager@chromium.org7c537e22008-10-16 08:43:32 +00004037void CodeGenerator::VisitAssignment(Assignment* node) {
ager@chromium.org357bf652010-04-12 11:30:10 +00004038 VirtualFrame::RegisterAllocationScope scope(this);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004039#ifdef DEBUG
4040 int original_height = frame_->height();
4041#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004042 Comment cmnt(masm_, "[ Assignment");
mads.s.ager31e71382008-08-13 09:32:07 +00004043
ager@chromium.orgac091b72010-05-05 07:34:42 +00004044 Variable* var = node->target()->AsVariableProxy()->AsVariable();
4045 Property* prop = node->target()->AsProperty();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004046
ager@chromium.orgac091b72010-05-05 07:34:42 +00004047 if (var != NULL && !var->is_global()) {
4048 EmitSlotAssignment(node);
mads.s.ager31e71382008-08-13 09:32:07 +00004049
ager@chromium.orgac091b72010-05-05 07:34:42 +00004050 } else if ((prop != NULL && prop->key()->IsPropertyName()) ||
4051 (var != NULL && var->is_global())) {
4052 // Properties whose keys are property names and global variables are
4053 // treated as named property references. We do not need to consider
4054 // global 'this' because it is not a valid left-hand side.
4055 EmitNamedPropertyAssignment(node);
4056
4057 } else if (prop != NULL) {
4058 // Other properties (including rewritten parameters for a function that
4059 // uses arguments) are keyed property assignments.
4060 EmitKeyedPropertyAssignment(node);
4061
4062 } else {
4063 // Invalid left-hand side.
4064 Load(node->target());
4065 frame_->CallRuntime(Runtime::kThrowReferenceError, 1);
4066 // The runtime call doesn't actually return but the code generator will
4067 // still generate code and expects a certain frame height.
4068 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004069 }
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::VisitThrow(Throw* 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_, "[ Throw");
4079
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004080 Load(node->exception());
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004081 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004082 frame_->CallRuntime(Runtime::kThrow, 1);
4083 frame_->EmitPush(r0);
ager@chromium.orgac091b72010-05-05 07:34:42 +00004084 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004085}
4086
4087
ager@chromium.org7c537e22008-10-16 08:43:32 +00004088void CodeGenerator::VisitProperty(Property* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004089#ifdef DEBUG
4090 int original_height = frame_->height();
4091#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004092 Comment cmnt(masm_, "[ Property");
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00004093
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004094 { Reference property(this, node);
ager@chromium.org357bf652010-04-12 11:30:10 +00004095 property.GetValue();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004096 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00004097 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004098}
4099
4100
ager@chromium.org7c537e22008-10-16 08:43:32 +00004101void CodeGenerator::VisitCall(Call* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004102#ifdef DEBUG
4103 int original_height = frame_->height();
4104#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004105 Comment cmnt(masm_, "[ Call");
4106
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004107 Expression* function = node->expression();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004108 ZoneList<Expression*>* args = node->arguments();
4109
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004110 // Standard function call.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004111 // Check if the function is a variable or a property.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004112 Variable* var = function->AsVariableProxy()->AsVariable();
4113 Property* property = function->AsProperty();
4114
4115 // ------------------------------------------------------------------------
4116 // Fast-case: Use inline caching.
4117 // ---
4118 // According to ECMA-262, section 11.2.3, page 44, the function to call
4119 // must be resolved after the arguments have been evaluated. The IC code
4120 // automatically handles this by loading the arguments before the function
4121 // is resolved in cache misses (this also holds for megamorphic calls).
4122 // ------------------------------------------------------------------------
4123
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004124 if (var != NULL && var->is_possibly_eval()) {
4125 // ----------------------------------
4126 // JavaScript example: 'eval(arg)' // eval is not known to be shadowed
4127 // ----------------------------------
4128
4129 // In a call to eval, we first call %ResolvePossiblyDirectEval to
4130 // resolve the function we need to call and the receiver of the
4131 // call. Then we call the resolved function using the given
4132 // arguments.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004133
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004134 // Prepare stack for call to resolved function.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004135 Load(function);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004136
4137 // Allocate a frame slot for the receiver.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00004138 frame_->EmitPushRoot(Heap::kUndefinedValueRootIndex);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004139
4140 // Load the arguments.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004141 int arg_count = args->length();
4142 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004143 Load(args->at(i));
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004144 }
4145
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00004146 VirtualFrame::SpilledScope spilled_scope(frame_);
4147
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004148 // If we know that eval can only be shadowed by eval-introduced
4149 // variables we attempt to load the global eval function directly
4150 // in generated code. If we succeed, there is no need to perform a
4151 // context lookup in the runtime system.
4152 JumpTarget done;
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00004153 if (var->AsSlot() != NULL && var->mode() == Variable::DYNAMIC_GLOBAL) {
4154 ASSERT(var->AsSlot()->type() == Slot::LOOKUP);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004155 JumpTarget slow;
4156 // Prepare the stack for the call to
4157 // ResolvePossiblyDirectEvalNoLookup by pushing the loaded
4158 // function, the first argument to the eval call and the
4159 // receiver.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00004160 LoadFromGlobalSlotCheckExtensions(var->AsSlot(),
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004161 NOT_INSIDE_TYPEOF,
4162 &slow);
4163 frame_->EmitPush(r0);
4164 if (arg_count > 0) {
4165 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize));
4166 frame_->EmitPush(r1);
4167 } else {
4168 frame_->EmitPush(r2);
4169 }
4170 __ ldr(r1, frame_->Receiver());
4171 frame_->EmitPush(r1);
4172
4173 frame_->CallRuntime(Runtime::kResolvePossiblyDirectEvalNoLookup, 3);
4174
4175 done.Jump();
4176 slow.Bind();
4177 }
4178
4179 // Prepare the stack for the call to ResolvePossiblyDirectEval by
4180 // pushing the loaded function, the first argument to the eval
4181 // call and the receiver.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004182 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize + kPointerSize));
4183 frame_->EmitPush(r1);
4184 if (arg_count > 0) {
4185 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize));
4186 frame_->EmitPush(r1);
4187 } else {
4188 frame_->EmitPush(r2);
4189 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004190 __ ldr(r1, frame_->Receiver());
4191 frame_->EmitPush(r1);
4192
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004193 // Resolve the call.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004194 frame_->CallRuntime(Runtime::kResolvePossiblyDirectEval, 3);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004195
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00004196 // If we generated fast-case code bind the jump-target where fast
4197 // and slow case merge.
4198 if (done.is_linked()) done.Bind();
4199
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004200 // Touch up stack with the right values for the function and the receiver.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004201 __ str(r0, MemOperand(sp, (arg_count + 1) * kPointerSize));
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004202 __ str(r1, MemOperand(sp, arg_count * kPointerSize));
4203
4204 // Call the function.
4205 CodeForSourcePosition(node->position());
4206
4207 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004208 CallFunctionStub call_function(arg_count, in_loop, RECEIVER_MIGHT_BE_VALUE);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004209 frame_->CallStub(&call_function, arg_count + 1);
4210
4211 __ ldr(cp, frame_->Context());
4212 // Remove the function from the stack.
4213 frame_->Drop();
4214 frame_->EmitPush(r0);
4215
4216 } else if (var != NULL && !var->is_this() && var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004217 // ----------------------------------
4218 // JavaScript example: 'foo(1, 2, 3)' // foo is global
4219 // ----------------------------------
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00004220 // Pass the global object as the receiver and let the IC stub
4221 // patch the stack to use the global proxy as 'this' in the
4222 // invoked function.
4223 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004224
4225 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004226 int arg_count = args->length();
4227 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004228 Load(args->at(i));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004229 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004230
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004231 VirtualFrame::SpilledScope spilled_scope(frame_);
ager@chromium.org5c838252010-02-19 08:53:10 +00004232 // Setup the name register and call the IC initialization code.
4233 __ mov(r2, Operand(var->name()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004234 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
4235 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004236 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004237 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET_CONTEXT,
4238 arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004239 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004240 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004241
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00004242 } else if (var != NULL && var->AsSlot() != NULL &&
4243 var->AsSlot()->type() == Slot::LOOKUP) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004244 // ----------------------------------
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004245 // JavaScript examples:
4246 //
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004247 // with (obj) foo(1, 2, 3) // foo may be in obj.
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004248 //
4249 // function f() {};
4250 // function g() {
4251 // eval(...);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004252 // f(); // f could be in extension object.
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004253 // }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004254 // ----------------------------------
4255
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004256 JumpTarget slow, done;
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004257
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004258 // Generate fast case for loading functions from slots that
4259 // correspond to local/global variables or arguments unless they
4260 // are shadowed by eval-introduced bindings.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00004261 EmitDynamicLoadFromSlotFastCase(var->AsSlot(),
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004262 NOT_INSIDE_TYPEOF,
4263 &slow,
4264 &done);
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004265
4266 slow.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004267 // Load the function
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004268 frame_->EmitPush(cp);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004269 frame_->EmitPush(Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004270 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004271 // r0: slot value; r1: receiver
4272
4273 // Load the receiver.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004274 frame_->EmitPush(r0); // function
4275 frame_->EmitPush(r1); // receiver
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004276
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004277 // If fast case code has been generated, emit code to push the
4278 // function and receiver and have the slow path jump around this
4279 // code.
4280 if (done.is_linked()) {
4281 JumpTarget call;
4282 call.Jump();
4283 done.Bind();
4284 frame_->EmitPush(r0); // function
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004285 LoadGlobalReceiver(VirtualFrame::scratch0()); // receiver
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00004286 call.Bind();
4287 }
4288
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004289 // Call the function. At this point, everything is spilled but the
4290 // function and receiver are in r0 and r1.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004291 CallWithArguments(args, NO_CALL_FUNCTION_FLAGS, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004292 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004293
4294 } else if (property != NULL) {
4295 // Check if the key is a literal string.
4296 Literal* literal = property->key()->AsLiteral();
4297
4298 if (literal != NULL && literal->handle()->IsSymbol()) {
4299 // ------------------------------------------------------------------
4300 // JavaScript example: 'object.foo(1, 2, 3)' or 'map["key"](1, 2, 3)'
4301 // ------------------------------------------------------------------
4302
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00004303 Handle<String> name = Handle<String>::cast(literal->handle());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004304
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00004305 if (ArgumentsMode() == LAZY_ARGUMENTS_ALLOCATION &&
4306 name->IsEqualTo(CStrVector("apply")) &&
4307 args->length() == 2 &&
4308 args->at(1)->AsVariableProxy() != NULL &&
4309 args->at(1)->AsVariableProxy()->IsArguments()) {
4310 // Use the optimized Function.prototype.apply that avoids
4311 // allocating lazily allocated arguments objects.
4312 CallApplyLazy(property->obj(),
4313 args->at(0),
4314 args->at(1)->AsVariableProxy(),
4315 node->position());
4316
4317 } else {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004318 Load(property->obj()); // Receiver.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00004319 // Load the arguments.
4320 int arg_count = args->length();
4321 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004322 Load(args->at(i));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00004323 }
4324
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004325 VirtualFrame::SpilledScope spilled_scope(frame_);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00004326 // Set the name register and call the IC initialization code.
4327 __ mov(r2, Operand(name));
4328 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
4329 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
4330 CodeForSourcePosition(node->position());
4331 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
4332 __ ldr(cp, frame_->Context());
4333 frame_->EmitPush(r0);
4334 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004335
4336 } else {
4337 // -------------------------------------------
4338 // JavaScript example: 'array[index](1, 2, 3)'
4339 // -------------------------------------------
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004340 Load(property->obj());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004341 if (property->is_synthetic()) {
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00004342 Load(property->key());
4343 EmitKeyedLoad();
4344 // Put the function below the receiver.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004345 // Use the global receiver.
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00004346 frame_->EmitPush(r0); // Function.
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004347 LoadGlobalReceiver(VirtualFrame::scratch0());
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00004348 // Call the function.
4349 CallWithArguments(args, RECEIVER_MIGHT_BE_VALUE, node->position());
4350 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004351 } else {
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00004352 // Load the arguments.
4353 int arg_count = args->length();
4354 for (int i = 0; i < arg_count; i++) {
4355 Load(args->at(i));
4356 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004357
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00004358 // Set the name register and call the IC initialization code.
4359 Load(property->key());
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004360 frame_->SpillAll();
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00004361 frame_->EmitPop(r2); // Function name.
4362
4363 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
4364 Handle<Code> stub = ComputeKeyedCallInitialize(arg_count, in_loop);
4365 CodeForSourcePosition(node->position());
4366 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
4367 __ ldr(cp, frame_->Context());
4368 frame_->EmitPush(r0);
4369 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004370 }
4371
4372 } else {
4373 // ----------------------------------
4374 // JavaScript example: 'foo(1, 2, 3)' // foo is not global
4375 // ----------------------------------
4376
4377 // Load the function.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004378 Load(function);
4379
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00004380 // Pass the global proxy as the receiver.
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004381 LoadGlobalReceiver(VirtualFrame::scratch0());
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00004382
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004383 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004384 CallWithArguments(args, NO_CALL_FUNCTION_FLAGS, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004385 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004386 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00004387 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004388}
4389
4390
ager@chromium.org7c537e22008-10-16 08:43:32 +00004391void CodeGenerator::VisitCallNew(CallNew* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004392#ifdef DEBUG
4393 int original_height = frame_->height();
4394#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004395 Comment cmnt(masm_, "[ CallNew");
4396
4397 // According to ECMA-262, section 11.2.2, page 44, the function
4398 // expression in new calls must be evaluated before the
4399 // arguments. This is different from ordinary calls, where the
4400 // actual function to call is resolved after the arguments have been
4401 // evaluated.
4402
ricow@chromium.org65fae842010-08-25 15:26:24 +00004403 // Push constructor on the stack. If it's not a function it's used as
4404 // receiver for CALL_NON_FUNCTION, otherwise the value on the stack is
4405 // ignored.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004406 Load(node->expression());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004407
4408 // Push the arguments ("left-to-right") on the stack.
4409 ZoneList<Expression*>* args = node->arguments();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004410 int arg_count = args->length();
4411 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004412 Load(args->at(i));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004413 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004414
ricow@chromium.org65fae842010-08-25 15:26:24 +00004415 // Spill everything from here to simplify the implementation.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004416 VirtualFrame::SpilledScope spilled_scope(frame_);
4417
ricow@chromium.org65fae842010-08-25 15:26:24 +00004418 // Load the argument count into r0 and the function into r1 as per
4419 // calling convention.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004420 __ mov(r0, Operand(arg_count));
ricow@chromium.org65fae842010-08-25 15:26:24 +00004421 __ ldr(r1, frame_->ElementAt(arg_count));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00004422
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004423 // Call the construct call builtin that handles allocation and
4424 // constructor invocation.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004425 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004426 Handle<Code> ic(Builtins::builtin(Builtins::JSConstructCall));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004427 frame_->CallCodeObject(ic, RelocInfo::CONSTRUCT_CALL, arg_count + 1);
ricow@chromium.org65fae842010-08-25 15:26:24 +00004428 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00004429
ager@chromium.orgac091b72010-05-05 07:34:42 +00004430 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004431}
4432
4433
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004434void CodeGenerator::GenerateClassOf(ZoneList<Expression*>* args) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004435 Register scratch = VirtualFrame::scratch0();
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00004436 JumpTarget null, function, leave, non_function_constructor;
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004437
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004438 // Load the object into register.
4439 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004440 Load(args->at(0));
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004441 Register tos = frame_->PopToRegister();
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004442
4443 // If the object is a smi, we return null.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004444 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004445 null.Branch(eq);
4446
4447 // Check that the object is a JS object but take special care of JS
4448 // functions to make sure they have 'Function' as their class.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004449 __ CompareObjectType(tos, tos, scratch, FIRST_JS_OBJECT_TYPE);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004450 null.Branch(lt);
4451
4452 // As long as JS_FUNCTION_TYPE is the last instance type and it is
4453 // right after LAST_JS_OBJECT_TYPE, we can avoid checking for
4454 // LAST_JS_OBJECT_TYPE.
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00004455 STATIC_ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
4456 STATIC_ASSERT(JS_FUNCTION_TYPE == LAST_JS_OBJECT_TYPE + 1);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004457 __ cmp(scratch, Operand(JS_FUNCTION_TYPE));
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004458 function.Branch(eq);
4459
4460 // Check if the constructor in the map is a function.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004461 __ ldr(tos, FieldMemOperand(tos, Map::kConstructorOffset));
4462 __ CompareObjectType(tos, scratch, scratch, JS_FUNCTION_TYPE);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004463 non_function_constructor.Branch(ne);
4464
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004465 // The tos register now contains the constructor function. Grab the
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004466 // instance class name from there.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004467 __ ldr(tos, FieldMemOperand(tos, JSFunction::kSharedFunctionInfoOffset));
4468 __ ldr(tos,
4469 FieldMemOperand(tos, SharedFunctionInfo::kInstanceClassNameOffset));
4470 frame_->EmitPush(tos);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004471 leave.Jump();
4472
4473 // Functions have class 'Function'.
4474 function.Bind();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004475 __ mov(tos, Operand(Factory::function_class_symbol()));
4476 frame_->EmitPush(tos);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004477 leave.Jump();
4478
4479 // Objects with a non-function constructor have class 'Object'.
4480 non_function_constructor.Bind();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004481 __ mov(tos, Operand(Factory::Object_symbol()));
4482 frame_->EmitPush(tos);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004483 leave.Jump();
4484
4485 // Non-JS objects have class null.
4486 null.Bind();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004487 __ LoadRoot(tos, Heap::kNullValueRootIndex);
4488 frame_->EmitPush(tos);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004489
4490 // All done.
4491 leave.Bind();
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004492}
4493
4494
ager@chromium.org7c537e22008-10-16 08:43:32 +00004495void CodeGenerator::GenerateValueOf(ZoneList<Expression*>* args) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004496 Register scratch = VirtualFrame::scratch0();
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004497 JumpTarget leave;
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004498
4499 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004500 Load(args->at(0));
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004501 Register tos = frame_->PopToRegister(); // tos contains object.
mads.s.ager31e71382008-08-13 09:32:07 +00004502 // if (object->IsSmi()) return the object.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004503 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004504 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004505 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004506 __ CompareObjectType(tos, scratch, scratch, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004507 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004508 // Load the value.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004509 __ ldr(tos, FieldMemOperand(tos, JSValue::kValueOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004510 leave.Bind();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004511 frame_->EmitPush(tos);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004512}
4513
4514
ager@chromium.org7c537e22008-10-16 08:43:32 +00004515void CodeGenerator::GenerateSetValueOf(ZoneList<Expression*>* args) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004516 Register scratch1 = VirtualFrame::scratch0();
4517 Register scratch2 = VirtualFrame::scratch1();
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004518 JumpTarget leave;
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004519
4520 ASSERT(args->length() == 2);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004521 Load(args->at(0)); // Load the object.
4522 Load(args->at(1)); // Load the value.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004523 Register value = frame_->PopToRegister();
4524 Register object = frame_->PopToRegister(value);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004525 // if (object->IsSmi()) return object.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004526 __ tst(object, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004527 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004528 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004529 __ CompareObjectType(object, scratch1, scratch1, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004530 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004531 // Store the value.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004532 __ str(value, FieldMemOperand(object, JSValue::kValueOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004533 // Update the write barrier.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004534 __ RecordWrite(object,
4535 Operand(JSValue::kValueOffset - kHeapObjectTag),
4536 scratch1,
4537 scratch2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004538 // Leave.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004539 leave.Bind();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004540 frame_->EmitPush(value);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004541}
4542
4543
ager@chromium.org7c537e22008-10-16 08:43:32 +00004544void CodeGenerator::GenerateIsSmi(ZoneList<Expression*>* args) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004545 ASSERT(args->length() == 1);
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004546 Load(args->at(0));
4547 Register reg = frame_->PopToRegister();
4548 __ tst(reg, Operand(kSmiTagMask));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004549 cc_reg_ = eq;
4550}
4551
4552
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004553void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) {
4554 // See comment in CodeGenerator::GenerateLog in codegen-ia32.cc.
4555 ASSERT_EQ(args->length(), 3);
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00004556#ifdef ENABLE_LOGGING_AND_PROFILING
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004557 if (ShouldGenerateLog(args->at(0))) {
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004558 Load(args->at(1));
4559 Load(args->at(2));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004560 frame_->CallRuntime(Runtime::kLog, 2);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004561 }
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00004562#endif
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004563 frame_->EmitPushRoot(Heap::kUndefinedValueRootIndex);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004564}
4565
4566
ager@chromium.org7c537e22008-10-16 08:43:32 +00004567void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) {
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00004568 ASSERT(args->length() == 1);
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004569 Load(args->at(0));
4570 Register reg = frame_->PopToRegister();
4571 __ tst(reg, Operand(kSmiTagMask | 0x80000000u));
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00004572 cc_reg_ = eq;
4573}
4574
4575
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004576// Generates the Math.pow method.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004577void CodeGenerator::GenerateMathPow(ZoneList<Expression*>* args) {
4578 ASSERT(args->length() == 2);
4579 Load(args->at(0));
4580 Load(args->at(1));
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004581
4582 if (!CpuFeatures::IsSupported(VFP3)) {
4583 frame_->CallRuntime(Runtime::kMath_pow, 2);
4584 frame_->EmitPush(r0);
4585 } else {
4586 CpuFeatures::Scope scope(VFP3);
4587 JumpTarget runtime, done;
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004588 Label exponent_nonsmi, base_nonsmi, powi, not_minus_half, allocate_return;
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004589
4590 Register scratch1 = VirtualFrame::scratch0();
4591 Register scratch2 = VirtualFrame::scratch1();
4592
4593 // Get base and exponent to registers.
4594 Register exponent = frame_->PopToRegister();
4595 Register base = frame_->PopToRegister(exponent);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004596 Register heap_number_map = no_reg;
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004597
4598 // Set the frame for the runtime jump target. The code below jumps to the
4599 // jump target label so the frame needs to be established before that.
4600 ASSERT(runtime.entry_frame() == NULL);
4601 runtime.set_entry_frame(frame_);
4602
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004603 __ BranchOnNotSmi(exponent, &exponent_nonsmi);
4604 __ BranchOnNotSmi(base, &base_nonsmi);
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004605
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004606 heap_number_map = r6;
4607 __ LoadRoot(heap_number_map, Heap::kHeapNumberMapRootIndex);
4608
4609 // Exponent is a smi and base is a smi. Get the smi value into vfp register
4610 // d1.
4611 __ SmiToDoubleVFPRegister(base, d1, scratch1, s0);
4612 __ b(&powi);
4613
4614 __ bind(&base_nonsmi);
4615 // Exponent is smi and base is non smi. Get the double value from the base
4616 // into vfp register d1.
4617 __ ObjectToDoubleVFPRegister(base, d1,
4618 scratch1, scratch2, heap_number_map, s0,
4619 runtime.entry_label());
4620
4621 __ bind(&powi);
4622
4623 // Load 1.0 into d0.
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00004624 __ vmov(d0, 1.0);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004625
4626 // Get the absolute untagged value of the exponent and use that for the
4627 // calculation.
4628 __ mov(scratch1, Operand(exponent, ASR, kSmiTagSize), SetCC);
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00004629 // Negate if negative.
4630 __ rsb(scratch1, scratch1, Operand(0, RelocInfo::NONE), LeaveCC, mi);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004631 __ vmov(d2, d0, mi); // 1.0 needed in d2 later if exponent is negative.
4632
4633 // Run through all the bits in the exponent. The result is calculated in d0
4634 // and d1 holds base^(bit^2).
4635 Label more_bits;
4636 __ bind(&more_bits);
4637 __ mov(scratch1, Operand(scratch1, LSR, 1), SetCC);
4638 __ vmul(d0, d0, d1, cs); // Multiply with base^(bit^2) if bit is set.
4639 __ vmul(d1, d1, d1, ne); // Don't bother calculating next d1 if done.
4640 __ b(ne, &more_bits);
4641
4642 // If exponent is positive we are done.
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00004643 __ cmp(exponent, Operand(0, RelocInfo::NONE));
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004644 __ b(ge, &allocate_return);
4645
4646 // If exponent is negative result is 1/result (d2 already holds 1.0 in that
4647 // case). However if d0 has reached infinity this will not provide the
4648 // correct result, so call runtime if that is the case.
4649 __ mov(scratch2, Operand(0x7FF00000));
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00004650 __ mov(scratch1, Operand(0, RelocInfo::NONE));
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004651 __ vmov(d1, scratch1, scratch2); // Load infinity into d1.
4652 __ vcmp(d0, d1);
4653 __ vmrs(pc);
4654 runtime.Branch(eq); // d0 reached infinity.
4655 __ vdiv(d0, d2, d0);
4656 __ b(&allocate_return);
4657
4658 __ bind(&exponent_nonsmi);
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004659 // Special handling of raising to the power of -0.5 and 0.5. First check
4660 // that the value is a heap number and that the lower bits (which for both
4661 // values are zero).
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004662 heap_number_map = r6;
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004663 __ LoadRoot(heap_number_map, Heap::kHeapNumberMapRootIndex);
4664 __ ldr(scratch1, FieldMemOperand(exponent, HeapObject::kMapOffset));
4665 __ ldr(scratch2, FieldMemOperand(exponent, HeapNumber::kMantissaOffset));
4666 __ cmp(scratch1, heap_number_map);
4667 runtime.Branch(ne);
4668 __ tst(scratch2, scratch2);
4669 runtime.Branch(ne);
4670
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004671 // Load the higher bits (which contains the floating point exponent).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004672 __ ldr(scratch1, FieldMemOperand(exponent, HeapNumber::kExponentOffset));
4673
4674 // Compare exponent with -0.5.
4675 __ cmp(scratch1, Operand(0xbfe00000));
4676 __ b(ne, &not_minus_half);
4677
4678 // Get the double value from the base into vfp register d0.
4679 __ ObjectToDoubleVFPRegister(base, d0,
4680 scratch1, scratch2, heap_number_map, s0,
4681 runtime.entry_label(),
4682 AVOID_NANS_AND_INFINITIES);
4683
4684 // Load 1.0 into d2.
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00004685 __ vmov(d2, 1.0);
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004686
4687 // Calculate the reciprocal of the square root. 1/sqrt(x) = sqrt(1/x).
4688 __ vdiv(d0, d2, d0);
4689 __ vsqrt(d0, d0);
4690
4691 __ b(&allocate_return);
4692
4693 __ bind(&not_minus_half);
4694 // Compare exponent with 0.5.
4695 __ cmp(scratch1, Operand(0x3fe00000));
4696 runtime.Branch(ne);
4697
4698 // Get the double value from the base into vfp register d0.
4699 __ ObjectToDoubleVFPRegister(base, d0,
4700 scratch1, scratch2, heap_number_map, s0,
4701 runtime.entry_label(),
4702 AVOID_NANS_AND_INFINITIES);
4703 __ vsqrt(d0, d0);
4704
4705 __ bind(&allocate_return);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00004706 Register scratch3 = r5;
4707 __ AllocateHeapNumberWithValue(scratch3, d0, scratch1, scratch2,
4708 heap_number_map, runtime.entry_label());
4709 __ mov(base, scratch3);
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004710 done.Jump();
4711
4712 runtime.Bind();
4713
4714 // Push back the arguments again for the runtime call.
4715 frame_->EmitPush(base);
4716 frame_->EmitPush(exponent);
4717 frame_->CallRuntime(Runtime::kMath_pow, 2);
4718 __ Move(base, r0);
4719
4720 done.Bind();
4721 frame_->EmitPush(base);
4722 }
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004723}
4724
4725
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004726// Generates the Math.sqrt method.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004727void CodeGenerator::GenerateMathSqrt(ZoneList<Expression*>* args) {
4728 ASSERT(args->length() == 1);
4729 Load(args->at(0));
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004730
4731 if (!CpuFeatures::IsSupported(VFP3)) {
4732 frame_->CallRuntime(Runtime::kMath_sqrt, 1);
4733 frame_->EmitPush(r0);
4734 } else {
4735 CpuFeatures::Scope scope(VFP3);
4736 JumpTarget runtime, done;
4737
4738 Register scratch1 = VirtualFrame::scratch0();
4739 Register scratch2 = VirtualFrame::scratch1();
4740
4741 // Get the value from the frame.
4742 Register tos = frame_->PopToRegister();
4743
4744 // Set the frame for the runtime jump target. The code below jumps to the
4745 // jump target label so the frame needs to be established before that.
4746 ASSERT(runtime.entry_frame() == NULL);
4747 runtime.set_entry_frame(frame_);
4748
4749 Register heap_number_map = r6;
lrn@chromium.org303ada72010-10-27 09:33:13 +00004750 Register new_heap_number = r5;
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004751 __ LoadRoot(heap_number_map, Heap::kHeapNumberMapRootIndex);
4752
4753 // Get the double value from the heap number into vfp register d0.
4754 __ ObjectToDoubleVFPRegister(tos, d0,
4755 scratch1, scratch2, heap_number_map, s0,
4756 runtime.entry_label());
4757
4758 // Calculate the square root of d0 and place result in a heap number object.
4759 __ vsqrt(d0, d0);
lrn@chromium.org303ada72010-10-27 09:33:13 +00004760 __ AllocateHeapNumberWithValue(new_heap_number,
4761 d0,
4762 scratch1, scratch2,
4763 heap_number_map,
4764 runtime.entry_label());
4765 __ mov(tos, Operand(new_heap_number));
lrn@chromium.org32d961d2010-06-30 09:09:34 +00004766 done.Jump();
4767
4768 runtime.Bind();
4769 // Push back the argument again for the runtime call.
4770 frame_->EmitPush(tos);
4771 frame_->CallRuntime(Runtime::kMath_sqrt, 1);
4772 __ Move(tos, r0);
4773
4774 done.Bind();
4775 frame_->EmitPush(tos);
4776 }
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004777}
4778
4779
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004780class DeferredStringCharCodeAt : public DeferredCode {
4781 public:
4782 DeferredStringCharCodeAt(Register object,
4783 Register index,
4784 Register scratch,
4785 Register result)
4786 : result_(result),
4787 char_code_at_generator_(object,
4788 index,
4789 scratch,
4790 result,
4791 &need_conversion_,
4792 &need_conversion_,
4793 &index_out_of_range_,
4794 STRING_INDEX_IS_NUMBER) {}
4795
4796 StringCharCodeAtGenerator* fast_case_generator() {
4797 return &char_code_at_generator_;
4798 }
4799
4800 virtual void Generate() {
4801 VirtualFrameRuntimeCallHelper call_helper(frame_state());
4802 char_code_at_generator_.GenerateSlow(masm(), call_helper);
4803
4804 __ bind(&need_conversion_);
4805 // Move the undefined value into the result register, which will
4806 // trigger conversion.
4807 __ LoadRoot(result_, Heap::kUndefinedValueRootIndex);
4808 __ jmp(exit_label());
4809
4810 __ bind(&index_out_of_range_);
4811 // When the index is out of range, the spec requires us to return
4812 // NaN.
4813 __ LoadRoot(result_, Heap::kNanValueRootIndex);
4814 __ jmp(exit_label());
4815 }
4816
4817 private:
4818 Register result_;
4819
4820 Label need_conversion_;
4821 Label index_out_of_range_;
4822
4823 StringCharCodeAtGenerator char_code_at_generator_;
4824};
4825
4826
4827// This generates code that performs a String.prototype.charCodeAt() call
4828// or returns a smi in order to trigger conversion.
4829void CodeGenerator::GenerateStringCharCodeAt(ZoneList<Expression*>* args) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004830 Comment(masm_, "[ GenerateStringCharCodeAt");
kasper.lund7276f142008-07-30 08:49:36 +00004831 ASSERT(args->length() == 2);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004832
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004833 Load(args->at(0));
4834 Load(args->at(1));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004835
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004836 Register index = frame_->PopToRegister();
4837 Register object = frame_->PopToRegister(index);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004838
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004839 // We need two extra registers.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004840 Register scratch = VirtualFrame::scratch0();
4841 Register result = VirtualFrame::scratch1();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004842
4843 DeferredStringCharCodeAt* deferred =
4844 new DeferredStringCharCodeAt(object,
4845 index,
4846 scratch,
4847 result);
4848 deferred->fast_case_generator()->GenerateFast(masm_);
4849 deferred->BindExit();
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00004850 frame_->EmitPush(result);
kasper.lund7276f142008-07-30 08:49:36 +00004851}
4852
4853
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004854class DeferredStringCharFromCode : public DeferredCode {
4855 public:
4856 DeferredStringCharFromCode(Register code,
4857 Register result)
4858 : char_from_code_generator_(code, result) {}
4859
4860 StringCharFromCodeGenerator* fast_case_generator() {
4861 return &char_from_code_generator_;
4862 }
4863
4864 virtual void Generate() {
4865 VirtualFrameRuntimeCallHelper call_helper(frame_state());
4866 char_from_code_generator_.GenerateSlow(masm(), call_helper);
4867 }
4868
4869 private:
4870 StringCharFromCodeGenerator char_from_code_generator_;
4871};
4872
4873
4874// Generates code for creating a one-char string from a char code.
4875void CodeGenerator::GenerateStringCharFromCode(ZoneList<Expression*>* args) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004876 Comment(masm_, "[ GenerateStringCharFromCode");
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004877 ASSERT(args->length() == 1);
4878
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004879 Load(args->at(0));
4880
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004881 Register result = frame_->GetTOSRegister();
4882 Register code = frame_->PopToRegister(result);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004883
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004884 DeferredStringCharFromCode* deferred = new DeferredStringCharFromCode(
4885 code, result);
4886 deferred->fast_case_generator()->GenerateFast(masm_);
4887 deferred->BindExit();
4888 frame_->EmitPush(result);
4889}
4890
4891
4892class DeferredStringCharAt : public DeferredCode {
4893 public:
4894 DeferredStringCharAt(Register object,
4895 Register index,
4896 Register scratch1,
4897 Register scratch2,
4898 Register result)
4899 : result_(result),
4900 char_at_generator_(object,
4901 index,
4902 scratch1,
4903 scratch2,
4904 result,
4905 &need_conversion_,
4906 &need_conversion_,
4907 &index_out_of_range_,
4908 STRING_INDEX_IS_NUMBER) {}
4909
4910 StringCharAtGenerator* fast_case_generator() {
4911 return &char_at_generator_;
4912 }
4913
4914 virtual void Generate() {
4915 VirtualFrameRuntimeCallHelper call_helper(frame_state());
4916 char_at_generator_.GenerateSlow(masm(), call_helper);
4917
4918 __ bind(&need_conversion_);
4919 // Move smi zero into the result register, which will trigger
4920 // conversion.
4921 __ mov(result_, Operand(Smi::FromInt(0)));
4922 __ jmp(exit_label());
4923
4924 __ bind(&index_out_of_range_);
4925 // When the index is out of range, the spec requires us to return
4926 // the empty string.
4927 __ LoadRoot(result_, Heap::kEmptyStringRootIndex);
4928 __ jmp(exit_label());
4929 }
4930
4931 private:
4932 Register result_;
4933
4934 Label need_conversion_;
4935 Label index_out_of_range_;
4936
4937 StringCharAtGenerator char_at_generator_;
4938};
4939
4940
4941// This generates code that performs a String.prototype.charAt() call
4942// or returns a smi in order to trigger conversion.
4943void CodeGenerator::GenerateStringCharAt(ZoneList<Expression*>* args) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004944 Comment(masm_, "[ GenerateStringCharAt");
4945 ASSERT(args->length() == 2);
4946
4947 Load(args->at(0));
4948 Load(args->at(1));
4949
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004950 Register index = frame_->PopToRegister();
4951 Register object = frame_->PopToRegister(index);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004952
4953 // We need three extra registers.
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00004954 Register scratch1 = VirtualFrame::scratch0();
4955 Register scratch2 = VirtualFrame::scratch1();
4956 // Use r6 without notifying the virtual frame.
4957 Register result = r6;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004958
4959 DeferredStringCharAt* deferred =
4960 new DeferredStringCharAt(object,
4961 index,
4962 scratch1,
4963 scratch2,
4964 result);
4965 deferred->fast_case_generator()->GenerateFast(masm_);
4966 deferred->BindExit();
ager@chromium.orgac091b72010-05-05 07:34:42 +00004967 frame_->EmitPush(result);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004968}
4969
4970
ager@chromium.org7c537e22008-10-16 08:43:32 +00004971void CodeGenerator::GenerateIsArray(ZoneList<Expression*>* args) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00004972 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004973 Load(args->at(0));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004974 JumpTarget answer;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00004975 // We need the CC bits to come out as not_equal in the case where the
4976 // object is a smi. This can't be done with the usual test opcode so
4977 // we use XOR to get the right CC bits.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004978 Register possible_array = frame_->PopToRegister();
4979 Register scratch = VirtualFrame::scratch0();
4980 __ and_(scratch, possible_array, Operand(kSmiTagMask));
4981 __ eor(scratch, scratch, Operand(kSmiTagMask), SetCC);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004982 answer.Branch(ne);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004983 // It is a heap object - get the map. Check if the object is a JS array.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004984 __ CompareObjectType(possible_array, scratch, scratch, JS_ARRAY_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004985 answer.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004986 cc_reg_ = eq;
4987}
4988
4989
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00004990void CodeGenerator::GenerateIsRegExp(ZoneList<Expression*>* args) {
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00004991 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004992 Load(args->at(0));
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00004993 JumpTarget answer;
4994 // We need the CC bits to come out as not_equal in the case where the
4995 // object is a smi. This can't be done with the usual test opcode so
4996 // we use XOR to get the right CC bits.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00004997 Register possible_regexp = frame_->PopToRegister();
4998 Register scratch = VirtualFrame::scratch0();
4999 __ and_(scratch, possible_regexp, Operand(kSmiTagMask));
5000 __ eor(scratch, scratch, Operand(kSmiTagMask), SetCC);
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00005001 answer.Branch(ne);
5002 // It is a heap object - get the map. Check if the object is a regexp.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005003 __ CompareObjectType(possible_regexp, scratch, scratch, JS_REGEXP_TYPE);
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00005004 answer.Bind();
5005 cc_reg_ = eq;
5006}
5007
5008
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005009void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) {
5010 // This generates a fast version of:
5011 // (typeof(arg) === 'object' || %_ClassOf(arg) == 'RegExp')
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005012 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005013 Load(args->at(0));
5014 Register possible_object = frame_->PopToRegister();
5015 __ tst(possible_object, Operand(kSmiTagMask));
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005016 false_target()->Branch(eq);
5017
5018 __ LoadRoot(ip, Heap::kNullValueRootIndex);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005019 __ cmp(possible_object, ip);
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005020 true_target()->Branch(eq);
5021
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005022 Register map_reg = VirtualFrame::scratch0();
5023 __ ldr(map_reg, FieldMemOperand(possible_object, HeapObject::kMapOffset));
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005024 // Undetectable objects behave like undefined when tested with typeof.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005025 __ ldrb(possible_object, FieldMemOperand(map_reg, Map::kBitFieldOffset));
5026 __ tst(possible_object, Operand(1 << Map::kIsUndetectable));
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005027 false_target()->Branch(ne);
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005028
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005029 __ ldrb(possible_object, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
5030 __ cmp(possible_object, Operand(FIRST_JS_OBJECT_TYPE));
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005031 false_target()->Branch(lt);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005032 __ cmp(possible_object, Operand(LAST_JS_OBJECT_TYPE));
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005033 cc_reg_ = le;
5034}
5035
5036
ricow@chromium.org4980dff2010-07-19 08:33:45 +00005037void CodeGenerator::GenerateIsSpecObject(ZoneList<Expression*>* args) {
5038 // This generates a fast version of:
5039 // (typeof(arg) === 'object' || %_ClassOf(arg) == 'RegExp' ||
5040 // typeof(arg) == function).
5041 // It includes undetectable objects (as opposed to IsObject).
5042 ASSERT(args->length() == 1);
5043 Load(args->at(0));
5044 Register value = frame_->PopToRegister();
5045 __ tst(value, Operand(kSmiTagMask));
5046 false_target()->Branch(eq);
5047 // Check that this is an object.
5048 __ ldr(value, FieldMemOperand(value, HeapObject::kMapOffset));
5049 __ ldrb(value, FieldMemOperand(value, Map::kInstanceTypeOffset));
5050 __ cmp(value, Operand(FIRST_JS_OBJECT_TYPE));
5051 cc_reg_ = ge;
5052}
5053
5054
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00005055// Deferred code to check whether the String JavaScript object is safe for using
5056// default value of. This code is called after the bit caching this information
5057// in the map has been checked with the map for the object in the map_result_
5058// register. On return the register map_result_ contains 1 for true and 0 for
5059// false.
5060class DeferredIsStringWrapperSafeForDefaultValueOf : public DeferredCode {
5061 public:
5062 DeferredIsStringWrapperSafeForDefaultValueOf(Register object,
5063 Register map_result,
5064 Register scratch1,
5065 Register scratch2)
5066 : object_(object),
5067 map_result_(map_result),
5068 scratch1_(scratch1),
5069 scratch2_(scratch2) { }
5070
5071 virtual void Generate() {
5072 Label false_result;
5073
5074 // Check that map is loaded as expected.
5075 if (FLAG_debug_code) {
5076 __ ldr(ip, FieldMemOperand(object_, HeapObject::kMapOffset));
5077 __ cmp(map_result_, ip);
5078 __ Assert(eq, "Map not in expected register");
5079 }
5080
5081 // Check for fast case object. Generate false result for slow case object.
5082 __ ldr(scratch1_, FieldMemOperand(object_, JSObject::kPropertiesOffset));
5083 __ ldr(scratch1_, FieldMemOperand(scratch1_, HeapObject::kMapOffset));
5084 __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
5085 __ cmp(scratch1_, ip);
5086 __ b(eq, &false_result);
5087
5088 // Look for valueOf symbol in the descriptor array, and indicate false if
5089 // found. The type is not checked, so if it is a transition it is a false
5090 // negative.
5091 __ ldr(map_result_,
5092 FieldMemOperand(map_result_, Map::kInstanceDescriptorsOffset));
5093 __ ldr(scratch2_, FieldMemOperand(map_result_, FixedArray::kLengthOffset));
5094 // map_result_: descriptor array
5095 // scratch2_: length of descriptor array
5096 // Calculate the end of the descriptor array.
5097 STATIC_ASSERT(kSmiTag == 0);
5098 STATIC_ASSERT(kSmiTagSize == 1);
5099 STATIC_ASSERT(kPointerSize == 4);
5100 __ add(scratch1_,
5101 map_result_,
5102 Operand(FixedArray::kHeaderSize - kHeapObjectTag));
5103 __ add(scratch1_,
5104 scratch1_,
5105 Operand(scratch2_, LSL, kPointerSizeLog2 - kSmiTagSize));
5106
5107 // Calculate location of the first key name.
5108 __ add(map_result_,
5109 map_result_,
5110 Operand(FixedArray::kHeaderSize - kHeapObjectTag +
5111 DescriptorArray::kFirstIndex * kPointerSize));
5112 // Loop through all the keys in the descriptor array. If one of these is the
5113 // symbol valueOf the result is false.
5114 Label entry, loop;
5115 // The use of ip to store the valueOf symbol asumes that it is not otherwise
5116 // used in the loop below.
5117 __ mov(ip, Operand(Factory::value_of_symbol()));
5118 __ jmp(&entry);
5119 __ bind(&loop);
5120 __ ldr(scratch2_, MemOperand(map_result_, 0));
5121 __ cmp(scratch2_, ip);
5122 __ b(eq, &false_result);
5123 __ add(map_result_, map_result_, Operand(kPointerSize));
5124 __ bind(&entry);
5125 __ cmp(map_result_, Operand(scratch1_));
5126 __ b(ne, &loop);
5127
5128 // Reload map as register map_result_ was used as temporary above.
5129 __ ldr(map_result_, FieldMemOperand(object_, HeapObject::kMapOffset));
5130
5131 // If a valueOf property is not found on the object check that it's
5132 // prototype is the un-modified String prototype. If not result is false.
5133 __ ldr(scratch1_, FieldMemOperand(map_result_, Map::kPrototypeOffset));
5134 __ tst(scratch1_, Operand(kSmiTagMask));
5135 __ b(eq, &false_result);
5136 __ ldr(scratch1_, FieldMemOperand(scratch1_, HeapObject::kMapOffset));
5137 __ ldr(scratch2_,
5138 CodeGenerator::ContextOperand(cp, Context::GLOBAL_INDEX));
5139 __ ldr(scratch2_,
5140 FieldMemOperand(scratch2_, GlobalObject::kGlobalContextOffset));
5141 __ ldr(scratch2_,
5142 CodeGenerator::ContextOperand(
5143 scratch2_, Context::STRING_FUNCTION_PROTOTYPE_MAP_INDEX));
5144 __ cmp(scratch1_, scratch2_);
5145 __ b(ne, &false_result);
5146
5147 // Set the bit in the map to indicate that it has been checked safe for
5148 // default valueOf and set true result.
5149 __ ldr(scratch1_, FieldMemOperand(map_result_, Map::kBitField2Offset));
5150 __ orr(scratch1_,
5151 scratch1_,
5152 Operand(1 << Map::kStringWrapperSafeForDefaultValueOf));
5153 __ str(scratch1_, FieldMemOperand(map_result_, Map::kBitField2Offset));
5154 __ mov(map_result_, Operand(1));
5155 __ jmp(exit_label());
5156 __ bind(&false_result);
5157 // Set false result.
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00005158 __ mov(map_result_, Operand(0, RelocInfo::NONE));
ager@chromium.orgea4f62e2010-08-16 16:28:43 +00005159 }
5160
5161 private:
5162 Register object_;
5163 Register map_result_;
5164 Register scratch1_;
5165 Register scratch2_;
5166};
5167
5168
5169void CodeGenerator::GenerateIsStringWrapperSafeForDefaultValueOf(
5170 ZoneList<Expression*>* args) {
5171 ASSERT(args->length() == 1);
5172 Load(args->at(0));
5173 Register obj = frame_->PopToRegister(); // Pop the string wrapper.
5174 if (FLAG_debug_code) {
5175 __ AbortIfSmi(obj);
5176 }
5177
5178 // Check whether this map has already been checked to be safe for default
5179 // valueOf.
5180 Register map_result = VirtualFrame::scratch0();
5181 __ ldr(map_result, FieldMemOperand(obj, HeapObject::kMapOffset));
5182 __ ldrb(ip, FieldMemOperand(map_result, Map::kBitField2Offset));
5183 __ tst(ip, Operand(1 << Map::kStringWrapperSafeForDefaultValueOf));
5184 true_target()->Branch(ne);
5185
5186 // We need an additional two scratch registers for the deferred code.
5187 Register scratch1 = VirtualFrame::scratch1();
5188 // Use r6 without notifying the virtual frame.
5189 Register scratch2 = r6;
5190
5191 DeferredIsStringWrapperSafeForDefaultValueOf* deferred =
5192 new DeferredIsStringWrapperSafeForDefaultValueOf(
5193 obj, map_result, scratch1, scratch2);
5194 deferred->Branch(eq);
5195 deferred->BindExit();
5196 __ tst(map_result, Operand(map_result));
5197 cc_reg_ = ne;
5198}
5199
5200
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005201void CodeGenerator::GenerateIsFunction(ZoneList<Expression*>* args) {
5202 // This generates a fast version of:
5203 // (%_ClassOf(arg) === 'Function')
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005204 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005205 Load(args->at(0));
5206 Register possible_function = frame_->PopToRegister();
5207 __ tst(possible_function, Operand(kSmiTagMask));
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005208 false_target()->Branch(eq);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005209 Register map_reg = VirtualFrame::scratch0();
5210 Register scratch = VirtualFrame::scratch1();
5211 __ CompareObjectType(possible_function, map_reg, scratch, JS_FUNCTION_TYPE);
ager@chromium.org6141cbe2009-11-20 12:14:52 +00005212 cc_reg_ = eq;
5213}
5214
5215
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005216void CodeGenerator::GenerateIsUndetectableObject(ZoneList<Expression*>* args) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005217 ASSERT(args->length() == 1);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005218 Load(args->at(0));
5219 Register possible_undetectable = frame_->PopToRegister();
5220 __ tst(possible_undetectable, Operand(kSmiTagMask));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005221 false_target()->Branch(eq);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005222 Register scratch = VirtualFrame::scratch0();
5223 __ ldr(scratch,
5224 FieldMemOperand(possible_undetectable, HeapObject::kMapOffset));
5225 __ ldrb(scratch, FieldMemOperand(scratch, Map::kBitFieldOffset));
5226 __ tst(scratch, Operand(1 << Map::kIsUndetectable));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005227 cc_reg_ = ne;
5228}
5229
5230
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005231void CodeGenerator::GenerateIsConstructCall(ZoneList<Expression*>* args) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005232 ASSERT(args->length() == 0);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005233
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005234 Register scratch0 = VirtualFrame::scratch0();
5235 Register scratch1 = VirtualFrame::scratch1();
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005236 // Get the frame pointer for the calling frame.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005237 __ ldr(scratch0, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005238
5239 // Skip the arguments adaptor frame if it exists.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005240 __ ldr(scratch1,
5241 MemOperand(scratch0, StandardFrameConstants::kContextOffset));
5242 __ cmp(scratch1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
5243 __ ldr(scratch0,
5244 MemOperand(scratch0, StandardFrameConstants::kCallerFPOffset), eq);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005245
5246 // Check the marker in the calling frame.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005247 __ ldr(scratch1,
5248 MemOperand(scratch0, StandardFrameConstants::kMarkerOffset));
5249 __ cmp(scratch1, Operand(Smi::FromInt(StackFrame::CONSTRUCT)));
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005250 cc_reg_ = eq;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005251}
5252
5253
ager@chromium.org7c537e22008-10-16 08:43:32 +00005254void CodeGenerator::GenerateArgumentsLength(ZoneList<Expression*>* args) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005255 ASSERT(args->length() == 0);
5256
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005257 Register tos = frame_->GetTOSRegister();
5258 Register scratch0 = VirtualFrame::scratch0();
5259 Register scratch1 = VirtualFrame::scratch1();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005260
lrn@chromium.org25156de2010-04-06 13:10:27 +00005261 // Check if the calling frame is an arguments adaptor frame.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005262 __ ldr(scratch0,
5263 MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
5264 __ ldr(scratch1,
5265 MemOperand(scratch0, StandardFrameConstants::kContextOffset));
5266 __ cmp(scratch1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
5267
5268 // Get the number of formal parameters.
5269 __ mov(tos, Operand(Smi::FromInt(scope()->num_parameters())), LeaveCC, ne);
lrn@chromium.org25156de2010-04-06 13:10:27 +00005270
5271 // Arguments adaptor case: Read the arguments length from the
5272 // adaptor frame.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005273 __ ldr(tos,
5274 MemOperand(scratch0, ArgumentsAdaptorFrameConstants::kLengthOffset),
5275 eq);
lrn@chromium.org25156de2010-04-06 13:10:27 +00005276
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005277 frame_->EmitPush(tos);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005278}
5279
5280
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00005281void CodeGenerator::GenerateArguments(ZoneList<Expression*>* args) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005282 ASSERT(args->length() == 1);
5283
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00005284 // Satisfy contract with ArgumentsAccessStub:
5285 // Load the key into r1 and the formal parameters count into r0.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005286 Load(args->at(0));
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005287 frame_->PopToR1();
5288 frame_->SpillAll();
ager@chromium.org5c838252010-02-19 08:53:10 +00005289 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005290
5291 // Call the shared stub to get to arguments[key].
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005292 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_ELEMENT);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005293 frame_->CallStub(&stub, 0);
5294 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005295}
5296
5297
ager@chromium.org357bf652010-04-12 11:30:10 +00005298void CodeGenerator::GenerateRandomHeapNumber(
5299 ZoneList<Expression*>* args) {
5300 VirtualFrame::SpilledScope spilled_scope(frame_);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005301 ASSERT(args->length() == 0);
ager@chromium.org357bf652010-04-12 11:30:10 +00005302
5303 Label slow_allocate_heapnumber;
5304 Label heapnumber_allocated;
5305
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00005306 __ LoadRoot(r6, Heap::kHeapNumberMapRootIndex);
5307 __ AllocateHeapNumber(r4, r1, r2, r6, &slow_allocate_heapnumber);
ager@chromium.org357bf652010-04-12 11:30:10 +00005308 __ jmp(&heapnumber_allocated);
5309
5310 __ bind(&slow_allocate_heapnumber);
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00005311 // Allocate a heap number.
5312 __ CallRuntime(Runtime::kNumberAlloc, 0);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00005313 __ mov(r4, Operand(r0));
ager@chromium.org357bf652010-04-12 11:30:10 +00005314
5315 __ bind(&heapnumber_allocated);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00005316
5317 // Convert 32 random bits in r0 to 0.(32 random bits) in a double
5318 // by computing:
5319 // ( 1.(20 0s)(32 random bits) x 2^20 ) - (1.0 x 2^20)).
5320 if (CpuFeatures::IsSupported(VFP3)) {
5321 __ PrepareCallCFunction(0, r1);
5322 __ CallCFunction(ExternalReference::random_uint32_function(), 0);
5323
5324 CpuFeatures::Scope scope(VFP3);
5325 // 0x41300000 is the top half of 1.0 x 2^20 as a double.
5326 // Create this constant using mov/orr to avoid PC relative load.
5327 __ mov(r1, Operand(0x41000000));
5328 __ orr(r1, r1, Operand(0x300000));
5329 // Move 0x41300000xxxxxxxx (x = random bits) to VFP.
5330 __ vmov(d7, r0, r1);
5331 // Move 0x4130000000000000 to VFP.
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00005332 __ mov(r0, Operand(0, RelocInfo::NONE));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00005333 __ vmov(d8, r0, r1);
5334 // Subtract and store the result in the heap number.
5335 __ vsub(d7, d7, d8);
5336 __ sub(r0, r4, Operand(kHeapObjectTag));
5337 __ vstr(d7, r0, HeapNumber::kValueOffset);
5338 frame_->EmitPush(r4);
5339 } else {
5340 __ mov(r0, Operand(r4));
5341 __ PrepareCallCFunction(1, r1);
5342 __ CallCFunction(
5343 ExternalReference::fill_heap_number_with_random_function(), 1);
5344 frame_->EmitPush(r0);
5345 }
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005346}
5347
5348
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005349void CodeGenerator::GenerateStringAdd(ZoneList<Expression*>* args) {
5350 ASSERT_EQ(2, args->length());
5351
5352 Load(args->at(0));
5353 Load(args->at(1));
5354
ager@chromium.org5c838252010-02-19 08:53:10 +00005355 StringAddStub stub(NO_STRING_ADD_FLAGS);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005356 frame_->SpillAll();
ager@chromium.org5c838252010-02-19 08:53:10 +00005357 frame_->CallStub(&stub, 2);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005358 frame_->EmitPush(r0);
5359}
5360
5361
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005362void CodeGenerator::GenerateSubString(ZoneList<Expression*>* args) {
5363 ASSERT_EQ(3, args->length());
5364
5365 Load(args->at(0));
5366 Load(args->at(1));
5367 Load(args->at(2));
5368
ager@chromium.org5c838252010-02-19 08:53:10 +00005369 SubStringStub stub;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005370 frame_->SpillAll();
ager@chromium.org5c838252010-02-19 08:53:10 +00005371 frame_->CallStub(&stub, 3);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005372 frame_->EmitPush(r0);
5373}
5374
5375
5376void CodeGenerator::GenerateStringCompare(ZoneList<Expression*>* args) {
5377 ASSERT_EQ(2, args->length());
5378
5379 Load(args->at(0));
5380 Load(args->at(1));
5381
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005382 StringCompareStub stub;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005383 frame_->SpillAll();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005384 frame_->CallStub(&stub, 2);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005385 frame_->EmitPush(r0);
5386}
5387
5388
5389void CodeGenerator::GenerateRegExpExec(ZoneList<Expression*>* args) {
5390 ASSERT_EQ(4, args->length());
5391
5392 Load(args->at(0));
5393 Load(args->at(1));
5394 Load(args->at(2));
5395 Load(args->at(3));
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005396 RegExpExecStub stub;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005397 frame_->SpillAll();
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005398 frame_->CallStub(&stub, 4);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005399 frame_->EmitPush(r0);
5400}
5401
5402
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +00005403void CodeGenerator::GenerateRegExpConstructResult(ZoneList<Expression*>* args) {
5404 // No stub. This code only occurs a few times in regexp.js.
5405 const int kMaxInlineLength = 100;
5406 ASSERT_EQ(3, args->length());
5407 Load(args->at(0)); // Size of array, smi.
5408 Load(args->at(1)); // "index" property value.
5409 Load(args->at(2)); // "input" property value.
5410 {
5411 VirtualFrame::SpilledScope spilled_scope(frame_);
5412 Label slowcase;
5413 Label done;
5414 __ ldr(r1, MemOperand(sp, kPointerSize * 2));
5415 STATIC_ASSERT(kSmiTag == 0);
5416 STATIC_ASSERT(kSmiTagSize == 1);
5417 __ tst(r1, Operand(kSmiTagMask));
5418 __ b(ne, &slowcase);
5419 __ cmp(r1, Operand(Smi::FromInt(kMaxInlineLength)));
5420 __ b(hi, &slowcase);
5421 // Smi-tagging is equivalent to multiplying by 2.
5422 // Allocate RegExpResult followed by FixedArray with size in ebx.
5423 // JSArray: [Map][empty properties][Elements][Length-smi][index][input]
5424 // Elements: [Map][Length][..elements..]
5425 // Size of JSArray with two in-object properties and the header of a
5426 // FixedArray.
5427 int objects_size =
5428 (JSRegExpResult::kSize + FixedArray::kHeaderSize) / kPointerSize;
5429 __ mov(r5, Operand(r1, LSR, kSmiTagSize + kSmiShiftSize));
5430 __ add(r2, r5, Operand(objects_size));
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00005431 __ AllocateInNewSpace(
5432 r2, // In: Size, in words.
5433 r0, // Out: Start of allocation (tagged).
5434 r3, // Scratch register.
5435 r4, // Scratch register.
5436 &slowcase,
5437 static_cast<AllocationFlags>(TAG_OBJECT | SIZE_IN_WORDS));
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +00005438 // r0: Start of allocated area, object-tagged.
5439 // r1: Number of elements in array, as smi.
5440 // r5: Number of elements, untagged.
5441
5442 // Set JSArray map to global.regexp_result_map().
5443 // Set empty properties FixedArray.
5444 // Set elements to point to FixedArray allocated right after the JSArray.
5445 // Interleave operations for better latency.
5446 __ ldr(r2, ContextOperand(cp, Context::GLOBAL_INDEX));
5447 __ add(r3, r0, Operand(JSRegExpResult::kSize));
5448 __ mov(r4, Operand(Factory::empty_fixed_array()));
5449 __ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalContextOffset));
5450 __ str(r3, FieldMemOperand(r0, JSObject::kElementsOffset));
5451 __ ldr(r2, ContextOperand(r2, Context::REGEXP_RESULT_MAP_INDEX));
5452 __ str(r4, FieldMemOperand(r0, JSObject::kPropertiesOffset));
5453 __ str(r2, FieldMemOperand(r0, HeapObject::kMapOffset));
5454
5455 // Set input, index and length fields from arguments.
5456 __ ldm(ia_w, sp, static_cast<RegList>(r2.bit() | r4.bit()));
5457 __ str(r1, FieldMemOperand(r0, JSArray::kLengthOffset));
5458 __ add(sp, sp, Operand(kPointerSize));
5459 __ str(r4, FieldMemOperand(r0, JSRegExpResult::kIndexOffset));
5460 __ str(r2, FieldMemOperand(r0, JSRegExpResult::kInputOffset));
5461
5462 // Fill out the elements FixedArray.
5463 // r0: JSArray, tagged.
5464 // r3: FixedArray, tagged.
5465 // r5: Number of elements in array, untagged.
5466
5467 // Set map.
5468 __ mov(r2, Operand(Factory::fixed_array_map()));
5469 __ str(r2, FieldMemOperand(r3, HeapObject::kMapOffset));
5470 // Set FixedArray length.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005471 __ mov(r6, Operand(r5, LSL, kSmiTagSize));
5472 __ str(r6, FieldMemOperand(r3, FixedArray::kLengthOffset));
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +00005473 // Fill contents of fixed-array with the-hole.
5474 __ mov(r2, Operand(Factory::the_hole_value()));
5475 __ add(r3, r3, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
5476 // Fill fixed array elements with hole.
5477 // r0: JSArray, tagged.
5478 // r2: the hole.
5479 // r3: Start of elements in FixedArray.
5480 // r5: Number of elements to fill.
5481 Label loop;
5482 __ tst(r5, Operand(r5));
5483 __ bind(&loop);
5484 __ b(le, &done); // Jump if r1 is negative or zero.
5485 __ sub(r5, r5, Operand(1), SetCC);
5486 __ str(r2, MemOperand(r3, r5, LSL, kPointerSizeLog2));
5487 __ jmp(&loop);
5488
5489 __ bind(&slowcase);
5490 __ CallRuntime(Runtime::kRegExpConstructResult, 3);
5491
5492 __ bind(&done);
5493 }
5494 frame_->Forget(3);
5495 frame_->EmitPush(r0);
5496}
5497
5498
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00005499void CodeGenerator::GenerateRegExpCloneResult(ZoneList<Expression*>* args) {
5500 ASSERT_EQ(1, args->length());
5501
5502 Load(args->at(0));
5503 frame_->PopToR0();
5504 {
5505 VirtualFrame::SpilledScope spilled_scope(frame_);
5506
5507 Label done;
5508 Label call_runtime;
5509 __ BranchOnSmi(r0, &done);
5510
5511 // Load JSRegExp map into r1. Check that argument object has this map.
5512 // Arguments to this function should be results of calling RegExp exec,
5513 // which is either an unmodified JSRegExpResult or null. Anything not having
5514 // the unmodified JSRegExpResult map is returned unmodified.
5515 // This also ensures that elements are fast.
5516
5517 __ ldr(r1, ContextOperand(cp, Context::GLOBAL_INDEX));
5518 __ ldr(r1, FieldMemOperand(r1, GlobalObject::kGlobalContextOffset));
5519 __ ldr(r1, ContextOperand(r1, Context::REGEXP_RESULT_MAP_INDEX));
5520 __ ldr(ip, FieldMemOperand(r0, HeapObject::kMapOffset));
5521 __ cmp(r1, Operand(ip));
5522 __ b(ne, &done);
5523
ricow@chromium.org65fae842010-08-25 15:26:24 +00005524 if (FLAG_debug_code) {
5525 __ LoadRoot(r2, Heap::kEmptyFixedArrayRootIndex);
5526 __ ldr(ip, FieldMemOperand(r0, JSObject::kPropertiesOffset));
5527 __ cmp(ip, r2);
5528 __ Check(eq, "JSRegExpResult: default map but non-empty properties.");
5529 }
5530
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00005531 // All set, copy the contents to a new object.
5532 __ AllocateInNewSpace(JSRegExpResult::kSize,
5533 r2,
5534 r3,
5535 r4,
5536 &call_runtime,
5537 NO_ALLOCATION_FLAGS);
5538 // Store RegExpResult map as map of allocated object.
5539 ASSERT(JSRegExpResult::kSize == 6 * kPointerSize);
5540 // Copy all fields (map is already in r1) from (untagged) r0 to r2.
5541 // Change map of elements array (ends up in r4) to be a FixedCOWArray.
5542 __ bic(r0, r0, Operand(kHeapObjectTagMask));
5543 __ ldm(ib, r0, r3.bit() | r4.bit() | r5.bit() | r6.bit() | r7.bit());
5544 __ stm(ia, r2,
5545 r1.bit() | r3.bit() | r4.bit() | r5.bit() | r6.bit() | r7.bit());
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00005546 ASSERT(JSRegExp::kElementsOffset == 2 * kPointerSize);
5547 // Check whether elements array is empty fixed array, and otherwise make
5548 // it copy-on-write (it never should be empty unless someone is messing
5549 // with the arguments to the runtime function).
5550 __ LoadRoot(ip, Heap::kEmptyFixedArrayRootIndex);
5551 __ add(r0, r2, Operand(kHeapObjectTag)); // Tag result and move it to r0.
5552 __ cmp(r4, ip);
5553 __ b(eq, &done);
5554 __ LoadRoot(ip, Heap::kFixedCOWArrayMapRootIndex);
5555 __ str(ip, FieldMemOperand(r4, HeapObject::kMapOffset));
5556 __ b(&done);
5557 __ bind(&call_runtime);
5558 __ push(r0);
5559 __ CallRuntime(Runtime::kRegExpCloneResult, 1);
5560 __ bind(&done);
5561 }
5562 frame_->EmitPush(r0);
5563}
5564
5565
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005566class DeferredSearchCache: public DeferredCode {
5567 public:
5568 DeferredSearchCache(Register dst, Register cache, Register key)
5569 : dst_(dst), cache_(cache), key_(key) {
5570 set_comment("[ DeferredSearchCache");
5571 }
5572
5573 virtual void Generate();
5574
5575 private:
5576 Register dst_, cache_, key_;
5577};
5578
5579
5580void DeferredSearchCache::Generate() {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00005581 __ Push(cache_, key_);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005582 __ CallRuntime(Runtime::kGetFromCache, 2);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005583 __ Move(dst_, r0);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005584}
5585
5586
5587void CodeGenerator::GenerateGetFromCache(ZoneList<Expression*>* args) {
5588 ASSERT_EQ(2, args->length());
5589
5590 ASSERT_NE(NULL, args->at(0)->AsLiteral());
5591 int cache_id = Smi::cast(*(args->at(0)->AsLiteral()->handle()))->value();
5592
5593 Handle<FixedArray> jsfunction_result_caches(
5594 Top::global_context()->jsfunction_result_caches());
5595 if (jsfunction_result_caches->length() <= cache_id) {
5596 __ Abort("Attempt to use undefined cache.");
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005597 frame_->EmitPushRoot(Heap::kUndefinedValueRootIndex);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005598 return;
5599 }
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005600
5601 Load(args->at(1));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005602
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005603 frame_->PopToR1();
5604 frame_->SpillAll();
5605 Register key = r1; // Just poped to r1
5606 Register result = r0; // Free, as frame has just been spilled.
5607 Register scratch1 = VirtualFrame::scratch0();
5608 Register scratch2 = VirtualFrame::scratch1();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005609
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005610 __ ldr(scratch1, ContextOperand(cp, Context::GLOBAL_INDEX));
5611 __ ldr(scratch1,
5612 FieldMemOperand(scratch1, GlobalObject::kGlobalContextOffset));
5613 __ ldr(scratch1,
5614 ContextOperand(scratch1, Context::JSFUNCTION_RESULT_CACHES_INDEX));
5615 __ ldr(scratch1,
5616 FieldMemOperand(scratch1, FixedArray::OffsetOfElementAt(cache_id)));
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005617
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005618 DeferredSearchCache* deferred =
5619 new DeferredSearchCache(result, scratch1, key);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005620
5621 const int kFingerOffset =
5622 FixedArray::OffsetOfElementAt(JSFunctionResultCache::kFingerIndex);
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00005623 STATIC_ASSERT(kSmiTag == 0 && kSmiTagSize == 1);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005624 __ ldr(result, FieldMemOperand(scratch1, kFingerOffset));
5625 // result now holds finger offset as a smi.
5626 __ add(scratch2, scratch1, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
5627 // scratch2 now points to the start of fixed array elements.
5628 __ ldr(result,
5629 MemOperand(
5630 scratch2, result, LSL, kPointerSizeLog2 - kSmiTagSize, PreIndex));
5631 // Note side effect of PreIndex: scratch2 now points to the key of the pair.
5632 __ cmp(key, result);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005633 deferred->Branch(ne);
5634
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005635 __ ldr(result, MemOperand(scratch2, kPointerSize));
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005636
5637 deferred->BindExit();
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00005638 frame_->EmitPush(result);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00005639}
5640
5641
ager@chromium.org5c838252010-02-19 08:53:10 +00005642void CodeGenerator::GenerateNumberToString(ZoneList<Expression*>* args) {
5643 ASSERT_EQ(args->length(), 1);
5644
5645 // Load the argument on the stack and jump to the runtime.
5646 Load(args->at(0));
5647
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005648 NumberToStringStub stub;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005649 frame_->SpillAll();
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005650 frame_->CallStub(&stub, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00005651 frame_->EmitPush(r0);
5652}
5653
5654
ager@chromium.orgac091b72010-05-05 07:34:42 +00005655class DeferredSwapElements: public DeferredCode {
5656 public:
5657 DeferredSwapElements(Register object, Register index1, Register index2)
5658 : object_(object), index1_(index1), index2_(index2) {
5659 set_comment("[ DeferredSwapElements");
5660 }
5661
5662 virtual void Generate();
5663
5664 private:
5665 Register object_, index1_, index2_;
5666};
5667
5668
5669void DeferredSwapElements::Generate() {
5670 __ push(object_);
5671 __ push(index1_);
5672 __ push(index2_);
5673 __ CallRuntime(Runtime::kSwapElements, 3);
5674}
5675
5676
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00005677void CodeGenerator::GenerateSwapElements(ZoneList<Expression*>* args) {
5678 Comment cmnt(masm_, "[ GenerateSwapElements");
5679
5680 ASSERT_EQ(3, args->length());
5681
5682 Load(args->at(0));
5683 Load(args->at(1));
5684 Load(args->at(2));
5685
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005686 VirtualFrame::SpilledScope spilled_scope(frame_);
5687
ager@chromium.orgac091b72010-05-05 07:34:42 +00005688 Register index2 = r2;
5689 Register index1 = r1;
5690 Register object = r0;
5691 Register tmp1 = r3;
5692 Register tmp2 = r4;
5693
5694 frame_->EmitPop(index2);
5695 frame_->EmitPop(index1);
5696 frame_->EmitPop(object);
5697
5698 DeferredSwapElements* deferred =
5699 new DeferredSwapElements(object, index1, index2);
5700
5701 // Fetch the map and check if array is in fast case.
5702 // Check that object doesn't require security checks and
5703 // has no indexed interceptor.
5704 __ CompareObjectType(object, tmp1, tmp2, FIRST_JS_OBJECT_TYPE);
5705 deferred->Branch(lt);
5706 __ ldrb(tmp2, FieldMemOperand(tmp1, Map::kBitFieldOffset));
5707 __ tst(tmp2, Operand(KeyedLoadIC::kSlowCaseBitFieldMask));
5708 deferred->Branch(nz);
5709
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00005710 // Check the object's elements are in fast case and writable.
ager@chromium.orgac091b72010-05-05 07:34:42 +00005711 __ ldr(tmp1, FieldMemOperand(object, JSObject::kElementsOffset));
5712 __ ldr(tmp2, FieldMemOperand(tmp1, HeapObject::kMapOffset));
5713 __ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
5714 __ cmp(tmp2, ip);
5715 deferred->Branch(ne);
5716
5717 // Smi-tagging is equivalent to multiplying by 2.
5718 STATIC_ASSERT(kSmiTag == 0);
5719 STATIC_ASSERT(kSmiTagSize == 1);
5720
5721 // Check that both indices are smis.
5722 __ mov(tmp2, index1);
5723 __ orr(tmp2, tmp2, index2);
5724 __ tst(tmp2, Operand(kSmiTagMask));
5725 deferred->Branch(nz);
5726
5727 // Bring the offsets into the fixed array in tmp1 into index1 and
5728 // index2.
5729 __ mov(tmp2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
5730 __ add(index1, tmp2, Operand(index1, LSL, kPointerSizeLog2 - kSmiTagSize));
5731 __ add(index2, tmp2, Operand(index2, LSL, kPointerSizeLog2 - kSmiTagSize));
5732
5733 // Swap elements.
5734 Register tmp3 = object;
5735 object = no_reg;
5736 __ ldr(tmp3, MemOperand(tmp1, index1));
5737 __ ldr(tmp2, MemOperand(tmp1, index2));
5738 __ str(tmp3, MemOperand(tmp1, index2));
5739 __ str(tmp2, MemOperand(tmp1, index1));
5740
5741 Label done;
5742 __ InNewSpace(tmp1, tmp2, eq, &done);
5743 // Possible optimization: do a check that both values are Smis
5744 // (or them and test against Smi mask.)
5745
5746 __ mov(tmp2, tmp1);
5747 RecordWriteStub recordWrite1(tmp1, index1, tmp3);
5748 __ CallStub(&recordWrite1);
5749
5750 RecordWriteStub recordWrite2(tmp2, index2, tmp3);
5751 __ CallStub(&recordWrite2);
5752
5753 __ bind(&done);
5754
5755 deferred->BindExit();
5756 __ LoadRoot(tmp1, Heap::kUndefinedValueRootIndex);
5757 frame_->EmitPush(tmp1);
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00005758}
5759
5760
ager@chromium.org357bf652010-04-12 11:30:10 +00005761void CodeGenerator::GenerateCallFunction(ZoneList<Expression*>* args) {
5762 Comment cmnt(masm_, "[ GenerateCallFunction");
5763
5764 ASSERT(args->length() >= 2);
5765
5766 int n_args = args->length() - 2; // for receiver and function.
5767 Load(args->at(0)); // receiver
5768 for (int i = 0; i < n_args; i++) {
5769 Load(args->at(i + 1));
5770 }
5771 Load(args->at(n_args + 1)); // function
5772 frame_->CallJSFunction(n_args);
5773 frame_->EmitPush(r0);
5774}
5775
5776
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00005777void CodeGenerator::GenerateMathSin(ZoneList<Expression*>* args) {
5778 ASSERT_EQ(args->length(), 1);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00005779 Load(args->at(0));
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00005780 if (CpuFeatures::IsSupported(VFP3)) {
5781 TranscendentalCacheStub stub(TranscendentalCache::SIN);
5782 frame_->SpillAllButCopyTOSToR0();
5783 frame_->CallStub(&stub, 1);
5784 } else {
5785 frame_->CallRuntime(Runtime::kMath_sin, 1);
5786 }
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00005787 frame_->EmitPush(r0);
5788}
5789
5790
5791void CodeGenerator::GenerateMathCos(ZoneList<Expression*>* args) {
5792 ASSERT_EQ(args->length(), 1);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00005793 Load(args->at(0));
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00005794 if (CpuFeatures::IsSupported(VFP3)) {
5795 TranscendentalCacheStub stub(TranscendentalCache::COS);
5796 frame_->SpillAllButCopyTOSToR0();
5797 frame_->CallStub(&stub, 1);
5798 } else {
5799 frame_->CallRuntime(Runtime::kMath_cos, 1);
5800 }
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00005801 frame_->EmitPush(r0);
5802}
5803
5804
ager@chromium.org7c537e22008-10-16 08:43:32 +00005805void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) {
ager@chromium.org9258b6b2008-09-11 09:11:10 +00005806 ASSERT(args->length() == 2);
5807
5808 // Load the two objects into registers and perform the comparison.
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00005809 Load(args->at(0));
5810 Load(args->at(1));
5811 Register lhs = frame_->PopToRegister();
5812 Register rhs = frame_->PopToRegister(lhs);
5813 __ cmp(lhs, rhs);
ager@chromium.org9258b6b2008-09-11 09:11:10 +00005814 cc_reg_ = eq;
5815}
5816
5817
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00005818void CodeGenerator::GenerateIsRegExpEquivalent(ZoneList<Expression*>* args) {
5819 ASSERT(args->length() == 2);
5820
5821 // Load the two objects into registers and perform the comparison.
5822 Load(args->at(0));
5823 Load(args->at(1));
5824 Register right = frame_->PopToRegister();
5825 Register left = frame_->PopToRegister(right);
5826 Register tmp = frame_->scratch0();
5827 Register tmp2 = frame_->scratch1();
5828
5829 // Jumps to done must have the eq flag set if the test is successful
5830 // and clear if the test has failed.
5831 Label done;
5832
5833 // Fail if either is a non-HeapObject.
5834 __ cmp(left, Operand(right));
5835 __ b(eq, &done);
5836 __ and_(tmp, left, Operand(right));
5837 __ eor(tmp, tmp, Operand(kSmiTagMask));
5838 __ tst(tmp, Operand(kSmiTagMask));
5839 __ b(ne, &done);
5840 __ ldr(tmp, FieldMemOperand(left, HeapObject::kMapOffset));
5841 __ ldrb(tmp2, FieldMemOperand(tmp, Map::kInstanceTypeOffset));
5842 __ cmp(tmp2, Operand(JS_REGEXP_TYPE));
5843 __ b(ne, &done);
5844 __ ldr(tmp2, FieldMemOperand(right, HeapObject::kMapOffset));
5845 __ cmp(tmp, Operand(tmp2));
5846 __ b(ne, &done);
5847 __ ldr(tmp, FieldMemOperand(left, JSRegExp::kDataOffset));
5848 __ ldr(tmp2, FieldMemOperand(right, JSRegExp::kDataOffset));
5849 __ cmp(tmp, tmp2);
5850 __ bind(&done);
5851 cc_reg_ = eq;
5852}
5853
5854
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00005855void CodeGenerator::GenerateHasCachedArrayIndex(ZoneList<Expression*>* args) {
5856 ASSERT(args->length() == 1);
5857 Load(args->at(0));
5858 Register value = frame_->PopToRegister();
5859 Register tmp = frame_->scratch0();
5860 __ ldr(tmp, FieldMemOperand(value, String::kHashFieldOffset));
5861 __ tst(tmp, Operand(String::kContainsCachedArrayIndexMask));
5862 cc_reg_ = eq;
5863}
5864
5865
5866void CodeGenerator::GenerateGetCachedArrayIndex(ZoneList<Expression*>* args) {
5867 ASSERT(args->length() == 1);
5868 Load(args->at(0));
5869 Register value = frame_->PopToRegister();
5870
5871 __ ldr(value, FieldMemOperand(value, String::kHashFieldOffset));
5872 __ IndexFromHash(value, value);
5873 frame_->EmitPush(value);
5874}
5875
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00005876
ager@chromium.org7c537e22008-10-16 08:43:32 +00005877void CodeGenerator::VisitCallRuntime(CallRuntime* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005878#ifdef DEBUG
5879 int original_height = frame_->height();
5880#endif
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005881 if (CheckForInlineRuntimeCall(node)) {
5882 ASSERT((has_cc() && frame_->height() == original_height) ||
5883 (!has_cc() && frame_->height() == original_height + 1));
5884 return;
5885 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005886
5887 ZoneList<Expression*>* args = node->arguments();
5888 Comment cmnt(masm_, "[ CallRuntime");
5889 Runtime::Function* function = node->function();
5890
ager@chromium.org41826e72009-03-30 13:30:57 +00005891 if (function == NULL) {
mads.s.ager31e71382008-08-13 09:32:07 +00005892 // Prepare stack for calling JS runtime function.
mads.s.ager31e71382008-08-13 09:32:07 +00005893 // Push the builtins object found in the current global object.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005894 Register scratch = VirtualFrame::scratch0();
5895 __ ldr(scratch, GlobalObject());
5896 Register builtins = frame_->GetTOSRegister();
5897 __ ldr(builtins, FieldMemOperand(scratch, GlobalObject::kBuiltinsOffset));
5898 frame_->EmitPush(builtins);
ager@chromium.org41826e72009-03-30 13:30:57 +00005899 }
mads.s.ager31e71382008-08-13 09:32:07 +00005900
ager@chromium.org41826e72009-03-30 13:30:57 +00005901 // Push the arguments ("left-to-right").
5902 int arg_count = args->length();
5903 for (int i = 0; i < arg_count; i++) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005904 Load(args->at(i));
ager@chromium.org41826e72009-03-30 13:30:57 +00005905 }
mads.s.ager31e71382008-08-13 09:32:07 +00005906
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005907 VirtualFrame::SpilledScope spilled_scope(frame_);
5908
ager@chromium.org41826e72009-03-30 13:30:57 +00005909 if (function == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005910 // Call the JS runtime function.
ager@chromium.org5c838252010-02-19 08:53:10 +00005911 __ mov(r2, Operand(node->name()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00005912 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
5913 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005914 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00005915 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005916 frame_->EmitPush(r0);
ager@chromium.org41826e72009-03-30 13:30:57 +00005917 } else {
5918 // Call the C runtime function.
5919 frame_->CallRuntime(function, arg_count);
5920 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005921 }
ager@chromium.orgac091b72010-05-05 07:34:42 +00005922 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005923}
5924
5925
ager@chromium.org7c537e22008-10-16 08:43:32 +00005926void CodeGenerator::VisitUnaryOperation(UnaryOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005927#ifdef DEBUG
5928 int original_height = frame_->height();
5929#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005930 Comment cmnt(masm_, "[ UnaryOperation");
5931
5932 Token::Value op = node->op();
5933
5934 if (op == Token::NOT) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005935 LoadCondition(node->expression(), false_target(), true_target(), true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00005936 // LoadCondition may (and usually does) leave a test and branch to
5937 // be emitted by the caller. In that case, negate the condition.
5938 if (has_cc()) cc_reg_ = NegateCondition(cc_reg_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005939
5940 } else if (op == Token::DELETE) {
5941 Property* property = node->expression()->AsProperty();
mads.s.ager31e71382008-08-13 09:32:07 +00005942 Variable* variable = node->expression()->AsVariableProxy()->AsVariable();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005943 if (property != NULL) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005944 Load(property->obj());
5945 Load(property->key());
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005946 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005947 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005948
mads.s.ager31e71382008-08-13 09:32:07 +00005949 } else if (variable != NULL) {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00005950 Slot* slot = variable->AsSlot();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005951 if (variable->is_global()) {
5952 LoadGlobal();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005953 frame_->EmitPush(Operand(variable->name()));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005954 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005955 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005956
5957 } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
5958 // lookup the context holding the named variable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005959 frame_->EmitPush(cp);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005960 frame_->EmitPush(Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005961 frame_->CallRuntime(Runtime::kLookupContext, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005962 // r0: context
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005963 frame_->EmitPush(r0);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005964 frame_->EmitPush(Operand(variable->name()));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005965 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005966 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005967
mads.s.ager31e71382008-08-13 09:32:07 +00005968 } else {
5969 // Default: Result of deleting non-global, not dynamically
5970 // introduced variables is false.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005971 frame_->EmitPushRoot(Heap::kFalseValueRootIndex);
mads.s.ager31e71382008-08-13 09:32:07 +00005972 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005973
5974 } else {
5975 // Default: Result of deleting expressions is true.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005976 Load(node->expression()); // may have side-effects
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005977 frame_->Drop();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005978 frame_->EmitPushRoot(Heap::kTrueValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005979 }
5980
5981 } else if (op == Token::TYPEOF) {
5982 // Special case for loading the typeof expression; see comment on
5983 // LoadTypeofExpression().
5984 LoadTypeofExpression(node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005985 frame_->CallRuntime(Runtime::kTypeof, 1);
5986 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005987
5988 } else {
ricow@chromium.org65fae842010-08-25 15:26:24 +00005989 bool can_overwrite = node->expression()->ResultOverwriteAllowed();
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +00005990 UnaryOverwriteMode overwrite =
5991 can_overwrite ? UNARY_OVERWRITE : UNARY_NO_OVERWRITE;
5992
5993 bool no_negative_zero = node->expression()->no_negative_zero();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00005994 Load(node->expression());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005995 switch (op) {
5996 case Token::NOT:
5997 case Token::DELETE:
5998 case Token::TYPEOF:
5999 UNREACHABLE(); // handled above
6000 break;
6001
6002 case Token::SUB: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006003 frame_->PopToR0();
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +00006004 GenericUnaryOpStub stub(
6005 Token::SUB,
6006 overwrite,
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00006007 NO_UNARY_FLAGS,
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +00006008 no_negative_zero ? kIgnoreNegativeZero : kStrictNegativeZero);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006009 frame_->CallStub(&stub, 0);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006010 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006011 break;
6012 }
6013
6014 case Token::BIT_NOT: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006015 Register tos = frame_->PopToRegister();
6016 JumpTarget not_smi_label;
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006017 JumpTarget continue_label;
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006018 // Smi check.
6019 __ tst(tos, Operand(kSmiTagMask));
6020 not_smi_label.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006021
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006022 __ mvn(tos, Operand(tos));
6023 __ bic(tos, tos, Operand(kSmiTagMask)); // Bit-clear inverted smi-tag.
6024 frame_->EmitPush(tos);
6025 // The fast case is the first to jump to the continue label, so it gets
6026 // to decide the virtual frame layout.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006027 continue_label.Jump();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006028
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006029 not_smi_label.Bind();
6030 frame_->SpillAll();
6031 __ Move(r0, tos);
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00006032 GenericUnaryOpStub stub(Token::BIT_NOT,
6033 overwrite,
6034 NO_UNARY_SMI_CODE_IN_STUB);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006035 frame_->CallStub(&stub, 0);
6036 frame_->EmitPush(r0);
6037
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006038 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006039 break;
6040 }
6041
6042 case Token::VOID:
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006043 frame_->Drop();
6044 frame_->EmitPushRoot(Heap::kUndefinedValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006045 break;
6046
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00006047 case Token::ADD: {
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006048 Register tos = frame_->Peek();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00006049 // Smi check.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006050 JumpTarget continue_label;
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006051 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006052 continue_label.Branch(eq);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006053
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00006054 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, 1);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006055 frame_->EmitPush(r0);
6056
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006057 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006058 break;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00006059 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006060 default:
6061 UNREACHABLE();
6062 }
6063 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006064 ASSERT(!has_valid_frame() ||
6065 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006066 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006067}
6068
6069
ager@chromium.org7c537e22008-10-16 08:43:32 +00006070void CodeGenerator::VisitCountOperation(CountOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006071#ifdef DEBUG
6072 int original_height = frame_->height();
6073#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006074 Comment cmnt(masm_, "[ CountOperation");
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006075 VirtualFrame::RegisterAllocationScope scope(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006076
6077 bool is_postfix = node->is_postfix();
6078 bool is_increment = node->op() == Token::INC;
6079
6080 Variable* var = node->expression()->AsVariableProxy()->AsVariable();
6081 bool is_const = (var != NULL && var->mode() == Variable::CONST);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006082 bool is_slot = (var != NULL && var->mode() == Variable::VAR);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006083
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00006084 if (!is_const && is_slot && type_info(var->AsSlot()).IsSmi()) {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006085 // The type info declares that this variable is always a Smi. That
6086 // means it is a Smi both before and after the increment/decrement.
6087 // Lets make use of that to make a very minimal count.
6088 Reference target(this, node->expression(), !is_const);
6089 ASSERT(!target.is_illegal());
6090 target.GetValue(); // Pushes the value.
6091 Register value = frame_->PopToRegister();
6092 if (is_postfix) frame_->EmitPush(value);
6093 if (is_increment) {
6094 __ add(value, value, Operand(Smi::FromInt(1)));
6095 } else {
6096 __ sub(value, value, Operand(Smi::FromInt(1)));
6097 }
6098 frame_->EmitPush(value);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00006099 target.SetValue(NOT_CONST_INIT, LIKELY_SMI);
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006100 if (is_postfix) frame_->Pop();
6101 ASSERT_EQ(original_height + 1, frame_->height());
6102 return;
6103 }
6104
6105 // If it's a postfix expression and its result is not ignored and the
6106 // reference is non-trivial, then push a placeholder on the stack now
6107 // to hold the result of the expression.
6108 bool placeholder_pushed = false;
6109 if (!is_slot && is_postfix) {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006110 frame_->EmitPush(Operand(Smi::FromInt(0)));
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006111 placeholder_pushed = true;
mads.s.ager31e71382008-08-13 09:32:07 +00006112 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006113
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006114 // A constant reference is not saved to, so a constant reference is not a
6115 // compound assignment reference.
6116 { Reference target(this, node->expression(), !is_const);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006117 if (target.is_illegal()) {
6118 // Spoof the virtual frame to have the expected height (one higher
6119 // than on entry).
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006120 if (!placeholder_pushed) frame_->EmitPush(Operand(Smi::FromInt(0)));
ager@chromium.orgac091b72010-05-05 07:34:42 +00006121 ASSERT_EQ(original_height + 1, frame_->height());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006122 return;
6123 }
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006124
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006125 // This pushes 0, 1 or 2 words on the object to be used later when updating
6126 // the target. It also pushes the current value of the target.
ager@chromium.org357bf652010-04-12 11:30:10 +00006127 target.GetValue();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006128
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006129 JumpTarget slow;
6130 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006131
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006132 Register value = frame_->PopToRegister();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006133
6134 // Postfix: Store the old value as the result.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006135 if (placeholder_pushed) {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006136 frame_->SetElementAt(value, target.size());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006137 } else if (is_postfix) {
6138 frame_->EmitPush(value);
6139 __ mov(VirtualFrame::scratch0(), value);
6140 value = VirtualFrame::scratch0();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006141 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006142
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006143 // Check for smi operand.
6144 __ tst(value, Operand(kSmiTagMask));
6145 slow.Branch(ne);
6146
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006147 // Perform optimistic increment/decrement.
6148 if (is_increment) {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006149 __ add(value, value, Operand(Smi::FromInt(1)), SetCC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006150 } else {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006151 __ sub(value, value, Operand(Smi::FromInt(1)), SetCC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006152 }
6153
6154 // If the increment/decrement didn't overflow, we're done.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006155 exit.Branch(vc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006156
6157 // Revert optimistic increment/decrement.
6158 if (is_increment) {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006159 __ sub(value, value, Operand(Smi::FromInt(1)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006160 } else {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006161 __ add(value, value, Operand(Smi::FromInt(1)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006162 }
6163
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006164 // Slow case: Convert to number. At this point the
6165 // value to be incremented is in the value register..
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006166 slow.Bind();
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006167
6168 // Convert the operand to a number.
6169 frame_->EmitPush(value);
6170
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00006171 {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006172 VirtualFrame::SpilledScope spilled(frame_);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00006173 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, 1);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006174
6175 if (is_postfix) {
6176 // Postfix: store to result (on the stack).
6177 __ str(r0, frame_->ElementAt(target.size()));
6178 }
6179
6180 // Compute the new value.
6181 frame_->EmitPush(r0);
6182 frame_->EmitPush(Operand(Smi::FromInt(1)));
6183 if (is_increment) {
6184 frame_->CallRuntime(Runtime::kNumberAdd, 2);
6185 } else {
6186 frame_->CallRuntime(Runtime::kNumberSub, 2);
6187 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006188 }
6189
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006190 __ Move(value, r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006191 // Store the new value in the target if not const.
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006192 // At this point the answer is in the value register.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006193 exit.Bind();
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006194 frame_->EmitPush(value);
6195 // Set the target with the result, leaving the result on
6196 // top of the stack. Removes the target from the stack if
6197 // it has a non-zero size.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00006198 if (!is_const) target.SetValue(NOT_CONST_INIT, LIKELY_SMI);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006199 }
6200
6201 // Postfix: Discard the new value and use the old.
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006202 if (is_postfix) frame_->Pop();
ager@chromium.orgac091b72010-05-05 07:34:42 +00006203 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006204}
6205
6206
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006207void CodeGenerator::GenerateLogicalBooleanOperation(BinaryOperation* node) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006208 // According to ECMA-262 section 11.11, page 58, the binary logical
6209 // operators must yield the result of one of the two expressions
6210 // before any ToBoolean() conversions. This means that the value
6211 // produced by a && or || operator is not necessarily a boolean.
6212
6213 // NOTE: If the left hand side produces a materialized value (not in
6214 // the CC register), we force the right hand side to do the
6215 // same. This is necessary because we may have to branch to the exit
6216 // after evaluating the left hand side (due to the shortcut
6217 // semantics), but the compiler must (statically) know if the result
6218 // of compiling the binary operation is materialized or not.
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006219 if (node->op() == Token::AND) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006220 JumpTarget is_true;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006221 LoadCondition(node->left(), &is_true, false_target(), false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006222 if (has_valid_frame() && !has_cc()) {
6223 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006224 JumpTarget pop_and_continue;
6225 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006226
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00006227 frame_->Dup();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006228 // Avoid popping the result if it converts to 'false' using the
6229 // standard ToBoolean() conversion as described in ECMA-262,
6230 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00006231 ToBoolean(&pop_and_continue, &exit);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006232 Branch(false, &exit);
6233
6234 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006235 pop_and_continue.Bind();
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00006236 frame_->Pop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006237
6238 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006239 is_true.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006240 Load(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006241
6242 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006243 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006244 } else if (has_cc() || is_true.is_linked()) {
6245 // The left-hand side is either (a) partially compiled to
6246 // control flow with a final branch left to emit or (b) fully
6247 // compiled to control flow and possibly true.
6248 if (has_cc()) {
6249 Branch(false, false_target());
6250 }
6251 is_true.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006252 LoadCondition(node->right(), true_target(), false_target(), false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006253 } else {
6254 // Nothing to do.
6255 ASSERT(!has_valid_frame() && !has_cc() && !is_true.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006256 }
6257
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006258 } else {
6259 ASSERT(node->op() == Token::OR);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006260 JumpTarget is_false;
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006261 LoadCondition(node->left(), true_target(), &is_false, false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006262 if (has_valid_frame() && !has_cc()) {
6263 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00006264 JumpTarget pop_and_continue;
6265 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006266
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00006267 frame_->Dup();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006268 // Avoid popping the result if it converts to 'true' using the
6269 // standard ToBoolean() conversion as described in ECMA-262,
6270 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00006271 ToBoolean(&exit, &pop_and_continue);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006272 Branch(true, &exit);
6273
6274 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006275 pop_and_continue.Bind();
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00006276 frame_->Pop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006277
6278 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006279 is_false.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006280 Load(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006281
6282 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006283 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006284 } else if (has_cc() || is_false.is_linked()) {
6285 // The left-hand side is either (a) partially compiled to
6286 // control flow with a final branch left to emit or (b) fully
6287 // compiled to control flow and possibly false.
6288 if (has_cc()) {
6289 Branch(true, true_target());
6290 }
6291 is_false.Bind();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006292 LoadCondition(node->right(), true_target(), false_target(), false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006293 } else {
6294 // Nothing to do.
6295 ASSERT(!has_valid_frame() && !has_cc() && !is_false.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006296 }
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006297 }
6298}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006299
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006300
6301void CodeGenerator::VisitBinaryOperation(BinaryOperation* node) {
6302#ifdef DEBUG
6303 int original_height = frame_->height();
6304#endif
ager@chromium.orgb26c50a2010-03-26 09:27:16 +00006305 Comment cmnt(masm_, "[ BinaryOperation");
6306
6307 if (node->op() == Token::AND || node->op() == Token::OR) {
6308 GenerateLogicalBooleanOperation(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006309 } else {
6310 // Optimize for the case where (at least) one of the expressions
6311 // is a literal small integer.
6312 Literal* lliteral = node->left()->AsLiteral();
6313 Literal* rliteral = node->right()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006314 // NOTE: The code below assumes that the slow cases (calls to runtime)
6315 // never return a constant/immutable object.
ricow@chromium.org65fae842010-08-25 15:26:24 +00006316 bool overwrite_left = node->left()->ResultOverwriteAllowed();
6317 bool overwrite_right = node->right()->ResultOverwriteAllowed();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006318
6319 if (rliteral != NULL && rliteral->handle()->IsSmi()) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006320 VirtualFrame::RegisterAllocationScope scope(this);
6321 Load(node->left());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006322 if (frame_->KnownSmiAt(0)) overwrite_left = false;
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00006323 SmiOperation(node->op(),
6324 rliteral->handle(),
6325 false,
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006326 overwrite_left ? OVERWRITE_LEFT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006327 } else if (lliteral != NULL && lliteral->handle()->IsSmi()) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006328 VirtualFrame::RegisterAllocationScope scope(this);
6329 Load(node->right());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006330 if (frame_->KnownSmiAt(0)) overwrite_right = false;
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00006331 SmiOperation(node->op(),
6332 lliteral->handle(),
6333 true,
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006334 overwrite_right ? OVERWRITE_RIGHT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006335 } else {
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006336 GenerateInlineSmi inline_smi =
6337 loop_nesting() > 0 ? GENERATE_INLINE_SMI : DONT_GENERATE_INLINE_SMI;
6338 if (lliteral != NULL) {
6339 ASSERT(!lliteral->handle()->IsSmi());
6340 inline_smi = DONT_GENERATE_INLINE_SMI;
6341 }
6342 if (rliteral != NULL) {
6343 ASSERT(!rliteral->handle()->IsSmi());
6344 inline_smi = DONT_GENERATE_INLINE_SMI;
6345 }
ager@chromium.org357bf652010-04-12 11:30:10 +00006346 VirtualFrame::RegisterAllocationScope scope(this);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006347 OverwriteMode overwrite_mode = NO_OVERWRITE;
6348 if (overwrite_left) {
6349 overwrite_mode = OVERWRITE_LEFT;
6350 } else if (overwrite_right) {
6351 overwrite_mode = OVERWRITE_RIGHT;
6352 }
ager@chromium.org357bf652010-04-12 11:30:10 +00006353 Load(node->left());
6354 Load(node->right());
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006355 GenericBinaryOperation(node->op(), overwrite_mode, inline_smi);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006356 }
6357 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00006358 ASSERT(!has_valid_frame() ||
6359 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006360 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006361}
6362
6363
ager@chromium.org7c537e22008-10-16 08:43:32 +00006364void CodeGenerator::VisitThisFunction(ThisFunction* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006365#ifdef DEBUG
6366 int original_height = frame_->height();
6367#endif
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00006368 frame_->EmitPush(MemOperand(frame_->Function()));
ager@chromium.orgac091b72010-05-05 07:34:42 +00006369 ASSERT_EQ(original_height + 1, frame_->height());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006370}
6371
6372
ager@chromium.org7c537e22008-10-16 08:43:32 +00006373void CodeGenerator::VisitCompareOperation(CompareOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006374#ifdef DEBUG
6375 int original_height = frame_->height();
6376#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006377 Comment cmnt(masm_, "[ CompareOperation");
6378
ager@chromium.org357bf652010-04-12 11:30:10 +00006379 VirtualFrame::RegisterAllocationScope nonspilled_scope(this);
6380
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006381 // Get the expressions from the node.
6382 Expression* left = node->left();
6383 Expression* right = node->right();
6384 Token::Value op = node->op();
6385
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006386 // To make typeof testing for natives implemented in JavaScript really
6387 // efficient, we generate special code for expressions of the form:
6388 // 'typeof <expression> == <string>'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006389 UnaryOperation* operation = left->AsUnaryOperation();
6390 if ((op == Token::EQ || op == Token::EQ_STRICT) &&
6391 (operation != NULL && operation->op() == Token::TYPEOF) &&
6392 (right->AsLiteral() != NULL &&
6393 right->AsLiteral()->handle()->IsString())) {
6394 Handle<String> check(String::cast(*right->AsLiteral()->handle()));
6395
ager@chromium.org357bf652010-04-12 11:30:10 +00006396 // Load the operand, move it to a register.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006397 LoadTypeofExpression(operation->expression());
ager@chromium.org357bf652010-04-12 11:30:10 +00006398 Register tos = frame_->PopToRegister();
6399
ager@chromium.org357bf652010-04-12 11:30:10 +00006400 Register scratch = VirtualFrame::scratch0();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006401
6402 if (check->Equals(Heap::number_symbol())) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006403 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006404 true_target()->Branch(eq);
ager@chromium.org357bf652010-04-12 11:30:10 +00006405 __ ldr(tos, FieldMemOperand(tos, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006406 __ LoadRoot(ip, Heap::kHeapNumberMapRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00006407 __ cmp(tos, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006408 cc_reg_ = eq;
6409
6410 } else if (check->Equals(Heap::string_symbol())) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006411 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006412 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006413
ager@chromium.org357bf652010-04-12 11:30:10 +00006414 __ ldr(tos, FieldMemOperand(tos, HeapObject::kMapOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006415
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006416 // It can be an undetectable string object.
ager@chromium.org357bf652010-04-12 11:30:10 +00006417 __ ldrb(scratch, FieldMemOperand(tos, Map::kBitFieldOffset));
6418 __ and_(scratch, scratch, Operand(1 << Map::kIsUndetectable));
6419 __ cmp(scratch, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006420 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006421
ager@chromium.org357bf652010-04-12 11:30:10 +00006422 __ ldrb(scratch, FieldMemOperand(tos, Map::kInstanceTypeOffset));
6423 __ cmp(scratch, Operand(FIRST_NONSTRING_TYPE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006424 cc_reg_ = lt;
6425
6426 } else if (check->Equals(Heap::boolean_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006427 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00006428 __ cmp(tos, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006429 true_target()->Branch(eq);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006430 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00006431 __ cmp(tos, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006432 cc_reg_ = eq;
6433
6434 } else if (check->Equals(Heap::undefined_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006435 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00006436 __ cmp(tos, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006437 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006438
ager@chromium.org357bf652010-04-12 11:30:10 +00006439 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006440 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006441
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006442 // It can be an undetectable object.
ager@chromium.org357bf652010-04-12 11:30:10 +00006443 __ ldr(tos, FieldMemOperand(tos, HeapObject::kMapOffset));
6444 __ ldrb(scratch, FieldMemOperand(tos, Map::kBitFieldOffset));
6445 __ and_(scratch, scratch, Operand(1 << Map::kIsUndetectable));
6446 __ cmp(scratch, Operand(1 << Map::kIsUndetectable));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006447
6448 cc_reg_ = eq;
6449
6450 } else if (check->Equals(Heap::function_symbol())) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006451 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006452 false_target()->Branch(eq);
ager@chromium.org357bf652010-04-12 11:30:10 +00006453 Register map_reg = scratch;
6454 __ CompareObjectType(tos, map_reg, tos, JS_FUNCTION_TYPE);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006455 true_target()->Branch(eq);
6456 // Regular expressions are callable so typeof == 'function'.
ager@chromium.org357bf652010-04-12 11:30:10 +00006457 __ CompareInstanceType(map_reg, tos, JS_REGEXP_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006458 cc_reg_ = eq;
6459
6460 } else if (check->Equals(Heap::object_symbol())) {
ager@chromium.org357bf652010-04-12 11:30:10 +00006461 __ tst(tos, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006462 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006463
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006464 __ LoadRoot(ip, Heap::kNullValueRootIndex);
ager@chromium.org357bf652010-04-12 11:30:10 +00006465 __ cmp(tos, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006466 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006467
ager@chromium.org357bf652010-04-12 11:30:10 +00006468 Register map_reg = scratch;
6469 __ CompareObjectType(tos, map_reg, tos, JS_REGEXP_TYPE);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00006470 false_target()->Branch(eq);
6471
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006472 // It can be an undetectable object.
ager@chromium.org357bf652010-04-12 11:30:10 +00006473 __ ldrb(tos, FieldMemOperand(map_reg, Map::kBitFieldOffset));
6474 __ and_(tos, tos, Operand(1 << Map::kIsUndetectable));
6475 __ cmp(tos, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006476 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006477
ager@chromium.org357bf652010-04-12 11:30:10 +00006478 __ ldrb(tos, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
6479 __ cmp(tos, Operand(FIRST_JS_OBJECT_TYPE));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006480 false_target()->Branch(lt);
ager@chromium.org357bf652010-04-12 11:30:10 +00006481 __ cmp(tos, Operand(LAST_JS_OBJECT_TYPE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006482 cc_reg_ = le;
6483
6484 } else {
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006485 // Uncommon case: typeof testing against a string literal that is
6486 // never returned from the typeof operator.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006487 false_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006488 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006489 ASSERT(!has_valid_frame() ||
6490 (has_cc() && frame_->height() == original_height));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006491 return;
6492 }
6493
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006494 switch (op) {
6495 case Token::EQ:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006496 Comparison(eq, left, right, false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006497 break;
6498
6499 case Token::LT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006500 Comparison(lt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006501 break;
6502
6503 case Token::GT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006504 Comparison(gt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006505 break;
6506
6507 case Token::LTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006508 Comparison(le, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006509 break;
6510
6511 case Token::GTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006512 Comparison(ge, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006513 break;
6514
6515 case Token::EQ_STRICT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006516 Comparison(eq, left, right, true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006517 break;
6518
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006519 case Token::IN: {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006520 Load(left);
6521 Load(right);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00006522 frame_->InvokeBuiltin(Builtins::IN, CALL_JS, 2);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00006523 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006524 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006525 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006526
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006527 case Token::INSTANCEOF: {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006528 Load(left);
6529 Load(right);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006530 InstanceofStub stub;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00006531 frame_->CallStub(&stub, 2);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006532 // At this point if instanceof succeeded then r0 == 0.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00006533 __ tst(r0, Operand(r0));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006534 cc_reg_ = eq;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006535 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006536 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006537
6538 default:
6539 UNREACHABLE();
6540 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00006541 ASSERT((has_cc() && frame_->height() == original_height) ||
6542 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00006543}
6544
6545
ricow@chromium.org65fae842010-08-25 15:26:24 +00006546void CodeGenerator::VisitCompareToNull(CompareToNull* node) {
6547#ifdef DEBUG
6548 int original_height = frame_->height();
6549#endif
6550 Comment cmnt(masm_, "[ CompareToNull");
6551
6552 Load(node->expression());
6553 Register tos = frame_->PopToRegister();
6554 __ LoadRoot(ip, Heap::kNullValueRootIndex);
6555 __ cmp(tos, ip);
6556
6557 // The 'null' value is only equal to 'undefined' if using non-strict
6558 // comparisons.
6559 if (!node->is_strict()) {
6560 true_target()->Branch(eq);
6561 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
6562 __ cmp(tos, Operand(ip));
6563 true_target()->Branch(eq);
6564
6565 __ tst(tos, Operand(kSmiTagMask));
6566 false_target()->Branch(eq);
6567
6568 // It can be an undetectable object.
6569 __ ldr(tos, FieldMemOperand(tos, HeapObject::kMapOffset));
6570 __ ldrb(tos, FieldMemOperand(tos, Map::kBitFieldOffset));
6571 __ and_(tos, tos, Operand(1 << Map::kIsUndetectable));
6572 __ cmp(tos, Operand(1 << Map::kIsUndetectable));
6573 }
6574
6575 cc_reg_ = eq;
6576 ASSERT(has_cc() && frame_->height() == original_height);
6577}
6578
6579
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006580class DeferredReferenceGetNamedValue: public DeferredCode {
6581 public:
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006582 explicit DeferredReferenceGetNamedValue(Register receiver,
6583 Handle<String> name)
6584 : receiver_(receiver), name_(name) {
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006585 set_comment("[ DeferredReferenceGetNamedValue");
6586 }
6587
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006588 virtual void Generate();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006589
6590 private:
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006591 Register receiver_;
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006592 Handle<String> name_;
6593};
6594
6595
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006596// Convention for this is that on entry the receiver is in a register that
6597// is not used by the stack. On exit the answer is found in that same
6598// register and the stack has the same height.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006599void DeferredReferenceGetNamedValue::Generate() {
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006600#ifdef DEBUG
6601 int expected_height = frame_state()->frame()->height();
6602#endif
6603 VirtualFrame copied_frame(*frame_state()->frame());
6604 copied_frame.SpillAll();
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006605
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006606 Register scratch1 = VirtualFrame::scratch0();
6607 Register scratch2 = VirtualFrame::scratch1();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006608 ASSERT(!receiver_.is(scratch1) && !receiver_.is(scratch2));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006609 __ DecrementCounter(&Counters::named_load_inline, 1, scratch1, scratch2);
6610 __ IncrementCounter(&Counters::named_load_inline_miss, 1, scratch1, scratch2);
6611
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006612 // Ensure receiver in r0 and name in r2 to match load ic calling convention.
6613 __ Move(r0, receiver_);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006614 __ mov(r2, Operand(name_));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006615
6616 // The rest of the instructions in the deferred code must be together.
6617 { Assembler::BlockConstPoolScope block_const_pool(masm_);
6618 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
6619 __ Call(ic, RelocInfo::CODE_TARGET);
6620 // The call must be followed by a nop(1) instruction to indicate that the
6621 // in-object has been inlined.
6622 __ nop(PROPERTY_ACCESS_INLINED);
6623
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006624 // At this point the answer is in r0. We move it to the expected register
6625 // if necessary.
6626 __ Move(receiver_, r0);
6627
6628 // Now go back to the frame that we entered with. This will not overwrite
6629 // the receiver register since that register was not in use when we came
6630 // in. The instructions emitted by this merge are skipped over by the
6631 // inline load patching mechanism when looking for the branch instruction
6632 // that tells it where the code to patch is.
6633 copied_frame.MergeTo(frame_state()->frame());
6634
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006635 // Block the constant pool for one more instruction after leaving this
6636 // constant pool block scope to include the branch instruction ending the
6637 // deferred code.
6638 __ BlockConstPoolFor(1);
6639 }
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006640 ASSERT_EQ(expected_height, frame_state()->frame()->height());
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006641}
6642
6643
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006644class DeferredReferenceGetKeyedValue: public DeferredCode {
6645 public:
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006646 DeferredReferenceGetKeyedValue(Register key, Register receiver)
6647 : key_(key), receiver_(receiver) {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006648 set_comment("[ DeferredReferenceGetKeyedValue");
6649 }
6650
6651 virtual void Generate();
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006652
6653 private:
6654 Register key_;
6655 Register receiver_;
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006656};
6657
6658
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006659// Takes key and register in r0 and r1 or vice versa. Returns result
6660// in r0.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006661void DeferredReferenceGetKeyedValue::Generate() {
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006662 ASSERT((key_.is(r0) && receiver_.is(r1)) ||
6663 (key_.is(r1) && receiver_.is(r0)));
6664
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006665 VirtualFrame copied_frame(*frame_state()->frame());
6666 copied_frame.SpillAll();
6667
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006668 Register scratch1 = VirtualFrame::scratch0();
6669 Register scratch2 = VirtualFrame::scratch1();
6670 __ DecrementCounter(&Counters::keyed_load_inline, 1, scratch1, scratch2);
6671 __ IncrementCounter(&Counters::keyed_load_inline_miss, 1, scratch1, scratch2);
6672
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006673 // Ensure key in r0 and receiver in r1 to match keyed load ic calling
6674 // convention.
6675 if (key_.is(r1)) {
6676 __ Swap(r0, r1, ip);
6677 }
6678
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006679 // The rest of the instructions in the deferred code must be together.
6680 { Assembler::BlockConstPoolScope block_const_pool(masm_);
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00006681 // Call keyed load IC. It has the arguments key and receiver in r0 and r1.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006682 Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Initialize));
6683 __ Call(ic, RelocInfo::CODE_TARGET);
6684 // The call must be followed by a nop instruction to indicate that the
6685 // keyed load has been inlined.
6686 __ nop(PROPERTY_ACCESS_INLINED);
6687
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00006688 // Now go back to the frame that we entered with. This will not overwrite
6689 // the receiver or key registers since they were not in use when we came
6690 // in. The instructions emitted by this merge are skipped over by the
6691 // inline load patching mechanism when looking for the branch instruction
6692 // that tells it where the code to patch is.
6693 copied_frame.MergeTo(frame_state()->frame());
6694
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006695 // Block the constant pool for one more instruction after leaving this
6696 // constant pool block scope to include the branch instruction ending the
6697 // deferred code.
6698 __ BlockConstPoolFor(1);
6699 }
6700}
6701
6702
6703class DeferredReferenceSetKeyedValue: public DeferredCode {
6704 public:
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006705 DeferredReferenceSetKeyedValue(Register value,
6706 Register key,
6707 Register receiver)
6708 : value_(value), key_(key), receiver_(receiver) {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006709 set_comment("[ DeferredReferenceSetKeyedValue");
6710 }
6711
6712 virtual void Generate();
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006713
6714 private:
6715 Register value_;
6716 Register key_;
6717 Register receiver_;
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006718};
6719
6720
6721void DeferredReferenceSetKeyedValue::Generate() {
6722 Register scratch1 = VirtualFrame::scratch0();
6723 Register scratch2 = VirtualFrame::scratch1();
6724 __ DecrementCounter(&Counters::keyed_store_inline, 1, scratch1, scratch2);
6725 __ IncrementCounter(
6726 &Counters::keyed_store_inline_miss, 1, scratch1, scratch2);
6727
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006728 // Ensure value in r0, key in r1 and receiver in r2 to match keyed store ic
6729 // calling convention.
6730 if (value_.is(r1)) {
6731 __ Swap(r0, r1, ip);
6732 }
6733 ASSERT(receiver_.is(r2));
6734
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006735 // The rest of the instructions in the deferred code must be together.
6736 { Assembler::BlockConstPoolScope block_const_pool(masm_);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006737 // Call keyed store IC. It has the arguments value, key and receiver in r0,
6738 // r1 and r2.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006739 Handle<Code> ic(Builtins::builtin(Builtins::KeyedStoreIC_Initialize));
6740 __ Call(ic, RelocInfo::CODE_TARGET);
6741 // The call must be followed by a nop instruction to indicate that the
6742 // keyed store has been inlined.
6743 __ nop(PROPERTY_ACCESS_INLINED);
6744
6745 // Block the constant pool for one more instruction after leaving this
6746 // constant pool block scope to include the branch instruction ending the
6747 // deferred code.
6748 __ BlockConstPoolFor(1);
6749 }
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006750}
6751
6752
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00006753class DeferredReferenceSetNamedValue: public DeferredCode {
6754 public:
6755 DeferredReferenceSetNamedValue(Register value,
6756 Register receiver,
6757 Handle<String> name)
6758 : value_(value), receiver_(receiver), name_(name) {
6759 set_comment("[ DeferredReferenceSetNamedValue");
6760 }
6761
6762 virtual void Generate();
6763
6764 private:
6765 Register value_;
6766 Register receiver_;
6767 Handle<String> name_;
6768};
6769
6770
6771// Takes value in r0, receiver in r1 and returns the result (the
6772// value) in r0.
6773void DeferredReferenceSetNamedValue::Generate() {
6774 // Record the entry frame and spill.
6775 VirtualFrame copied_frame(*frame_state()->frame());
6776 copied_frame.SpillAll();
6777
6778 // Ensure value in r0, receiver in r1 to match store ic calling
6779 // convention.
6780 ASSERT(value_.is(r0) && receiver_.is(r1));
6781 __ mov(r2, Operand(name_));
6782
6783 // The rest of the instructions in the deferred code must be together.
6784 { Assembler::BlockConstPoolScope block_const_pool(masm_);
6785 // Call keyed store IC. It has the arguments value, key and receiver in r0,
6786 // r1 and r2.
6787 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
6788 __ Call(ic, RelocInfo::CODE_TARGET);
6789 // The call must be followed by a nop instruction to indicate that the
6790 // named store has been inlined.
6791 __ nop(PROPERTY_ACCESS_INLINED);
6792
6793 // Go back to the frame we entered with. The instructions
6794 // generated by this merge are skipped over by the inline store
6795 // patching mechanism when looking for the branch instruction that
6796 // tells it where the code to patch is.
6797 copied_frame.MergeTo(frame_state()->frame());
6798
6799 // Block the constant pool for one more instruction after leaving this
6800 // constant pool block scope to include the branch instruction ending the
6801 // deferred code.
6802 __ BlockConstPoolFor(1);
6803 }
6804}
6805
6806
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006807// Consumes the top of stack (the receiver) and pushes the result instead.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006808void CodeGenerator::EmitNamedLoad(Handle<String> name, bool is_contextual) {
6809 if (is_contextual || scope()->is_global_scope() || loop_nesting() == 0) {
6810 Comment cmnt(masm(), "[ Load from named Property");
6811 // Setup the name register and call load IC.
ager@chromium.orgac091b72010-05-05 07:34:42 +00006812 frame_->CallLoadIC(name,
6813 is_contextual
6814 ? RelocInfo::CODE_TARGET_CONTEXT
6815 : RelocInfo::CODE_TARGET);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006816 frame_->EmitPush(r0); // Push answer.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006817 } else {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006818 // Inline the in-object property case.
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006819 Comment cmnt(masm(), "[ Inlined named property load");
6820
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006821 // Counter will be decremented in the deferred code. Placed here to avoid
6822 // having it in the instruction stream below where patching will occur.
6823 __ IncrementCounter(&Counters::named_load_inline, 1,
6824 frame_->scratch0(), frame_->scratch1());
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006825
6826 // The following instructions are the inlined load of an in-object property.
6827 // Parts of this code is patched, so the exact instructions generated needs
6828 // to be fixed. Therefore the instruction pool is blocked when generating
6829 // this code
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006830
6831 // Load the receiver from the stack.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006832 Register receiver = frame_->PopToRegister();
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006833
6834 DeferredReferenceGetNamedValue* deferred =
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006835 new DeferredReferenceGetNamedValue(receiver, name);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006836
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006837#ifdef DEBUG
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006838 int kInlinedNamedLoadInstructions = 7;
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006839 Label check_inlined_codesize;
6840 masm_->bind(&check_inlined_codesize);
6841#endif
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006842
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006843 { Assembler::BlockConstPoolScope block_const_pool(masm_);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006844 // Check that the receiver is a heap object.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00006845 __ tst(receiver, Operand(kSmiTagMask));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006846 deferred->Branch(eq);
6847
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006848 Register scratch = VirtualFrame::scratch0();
6849 Register scratch2 = VirtualFrame::scratch1();
6850
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006851 // Check the map. The null map used below is patched by the inline cache
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006852 // code. Therefore we can't use a LoadRoot call.
6853 __ ldr(scratch, FieldMemOperand(receiver, HeapObject::kMapOffset));
6854 __ mov(scratch2, Operand(Factory::null_value()));
6855 __ cmp(scratch, scratch2);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006856 deferred->Branch(ne);
6857
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006858 // Initially use an invalid index. The index will be patched by the
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006859 // inline cache code.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006860 __ ldr(receiver, MemOperand(receiver, 0));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006861
6862 // Make sure that the expected number of instructions are generated.
6863 ASSERT_EQ(kInlinedNamedLoadInstructions,
6864 masm_->InstructionsGeneratedSince(&check_inlined_codesize));
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006865 }
6866
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006867 deferred->BindExit();
ricow@chromium.org30ce4112010-05-31 10:38:25 +00006868 // At this point the receiver register has the result, either from the
6869 // deferred code or from the inlined code.
6870 frame_->EmitPush(receiver);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00006871 }
6872}
6873
6874
ager@chromium.orgac091b72010-05-05 07:34:42 +00006875void CodeGenerator::EmitNamedStore(Handle<String> name, bool is_contextual) {
6876#ifdef DEBUG
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00006877 int expected_height = frame()->height() - (is_contextual ? 1 : 2);
ager@chromium.orgac091b72010-05-05 07:34:42 +00006878#endif
ager@chromium.orgac091b72010-05-05 07:34:42 +00006879
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00006880 Result result;
6881 if (is_contextual || scope()->is_global_scope() || loop_nesting() == 0) {
6882 frame()->CallStoreIC(name, is_contextual);
6883 } else {
6884 // Inline the in-object property case.
6885 JumpTarget slow, done;
6886
6887 // Get the value and receiver from the stack.
6888 frame()->PopToR0();
6889 Register value = r0;
6890 frame()->PopToR1();
6891 Register receiver = r1;
6892
6893 DeferredReferenceSetNamedValue* deferred =
6894 new DeferredReferenceSetNamedValue(value, receiver, name);
6895
6896 // Check that the receiver is a heap object.
6897 __ tst(receiver, Operand(kSmiTagMask));
6898 deferred->Branch(eq);
6899
6900 // The following instructions are the part of the inlined
6901 // in-object property store code which can be patched. Therefore
6902 // the exact number of instructions generated must be fixed, so
6903 // the constant pool is blocked while generating this code.
6904 { Assembler::BlockConstPoolScope block_const_pool(masm_);
6905 Register scratch0 = VirtualFrame::scratch0();
6906 Register scratch1 = VirtualFrame::scratch1();
6907
6908 // Check the map. Initially use an invalid map to force a
6909 // failure. The map check will be patched in the runtime system.
6910 __ ldr(scratch1, FieldMemOperand(receiver, HeapObject::kMapOffset));
6911
6912#ifdef DEBUG
6913 Label check_inlined_codesize;
6914 masm_->bind(&check_inlined_codesize);
6915#endif
6916 __ mov(scratch0, Operand(Factory::null_value()));
6917 __ cmp(scratch0, scratch1);
6918 deferred->Branch(ne);
6919
6920 int offset = 0;
6921 __ str(value, MemOperand(receiver, offset));
6922
6923 // Update the write barrier and record its size. We do not use
6924 // the RecordWrite macro here because we want the offset
6925 // addition instruction first to make it easy to patch.
6926 Label record_write_start, record_write_done;
6927 __ bind(&record_write_start);
6928 // Add offset into the object.
6929 __ add(scratch0, receiver, Operand(offset));
6930 // Test that the object is not in the new space. We cannot set
6931 // region marks for new space pages.
6932 __ InNewSpace(receiver, scratch1, eq, &record_write_done);
6933 // Record the actual write.
6934 __ RecordWriteHelper(receiver, scratch0, scratch1);
6935 __ bind(&record_write_done);
6936 // Clobber all input registers when running with the debug-code flag
6937 // turned on to provoke errors.
6938 if (FLAG_debug_code) {
6939 __ mov(receiver, Operand(BitCast<int32_t>(kZapValue)));
6940 __ mov(scratch0, Operand(BitCast<int32_t>(kZapValue)));
6941 __ mov(scratch1, Operand(BitCast<int32_t>(kZapValue)));
6942 }
6943 // Check that this is the first inlined write barrier or that
6944 // this inlined write barrier has the same size as all the other
6945 // inlined write barriers.
6946 ASSERT((inlined_write_barrier_size_ == -1) ||
6947 (inlined_write_barrier_size_ ==
6948 masm()->InstructionsGeneratedSince(&record_write_start)));
6949 inlined_write_barrier_size_ =
6950 masm()->InstructionsGeneratedSince(&record_write_start);
6951
6952 // Make sure that the expected number of instructions are generated.
6953 ASSERT_EQ(GetInlinedNamedStoreInstructionsAfterPatch(),
6954 masm()->InstructionsGeneratedSince(&check_inlined_codesize));
6955 }
6956 deferred->BindExit();
6957 }
6958 ASSERT_EQ(expected_height, frame()->height());
ager@chromium.orgac091b72010-05-05 07:34:42 +00006959}
6960
6961
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006962void CodeGenerator::EmitKeyedLoad() {
6963 if (loop_nesting() == 0) {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006964 Comment cmnt(masm_, "[ Load from keyed property");
6965 frame_->CallKeyedLoadIC();
6966 } else {
6967 // Inline the keyed load.
6968 Comment cmnt(masm_, "[ Inlined load from keyed property");
6969
6970 // Counter will be decremented in the deferred code. Placed here to avoid
6971 // having it in the instruction stream below where patching will occur.
6972 __ IncrementCounter(&Counters::keyed_load_inline, 1,
6973 frame_->scratch0(), frame_->scratch1());
6974
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006975 // Load the key and receiver from the stack.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006976 bool key_is_known_smi = frame_->KnownSmiAt(0);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006977 Register key = frame_->PopToRegister();
6978 Register receiver = frame_->PopToRegister(key);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006979
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006980 // The deferred code expects key and receiver in registers.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006981 DeferredReferenceGetKeyedValue* deferred =
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00006982 new DeferredReferenceGetKeyedValue(key, receiver);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006983
6984 // Check that the receiver is a heap object.
6985 __ tst(receiver, Operand(kSmiTagMask));
6986 deferred->Branch(eq);
6987
6988 // The following instructions are the part of the inlined load keyed
6989 // property code which can be patched. Therefore the exact number of
6990 // instructions generated need to be fixed, so the constant pool is blocked
6991 // while generating this code.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00006992 { Assembler::BlockConstPoolScope block_const_pool(masm_);
6993 Register scratch1 = VirtualFrame::scratch0();
6994 Register scratch2 = VirtualFrame::scratch1();
6995 // Check the map. The null map used below is patched by the inline cache
6996 // code.
6997 __ ldr(scratch1, FieldMemOperand(receiver, HeapObject::kMapOffset));
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00006998
6999 // Check that the key is a smi.
7000 if (!key_is_known_smi) {
7001 __ tst(key, Operand(kSmiTagMask));
7002 deferred->Branch(ne);
7003 }
7004
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00007005#ifdef DEBUG
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00007006 Label check_inlined_codesize;
7007 masm_->bind(&check_inlined_codesize);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00007008#endif
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007009 __ mov(scratch2, Operand(Factory::null_value()));
7010 __ cmp(scratch1, scratch2);
7011 deferred->Branch(ne);
7012
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00007013 // Get the elements array from the receiver.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007014 __ ldr(scratch1, FieldMemOperand(receiver, JSObject::kElementsOffset));
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00007015 __ AssertFastElements(scratch1);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007016
7017 // Check that key is within bounds. Use unsigned comparison to handle
7018 // negative keys.
7019 __ ldr(scratch2, FieldMemOperand(scratch1, FixedArray::kLengthOffset));
ricow@chromium.org30ce4112010-05-31 10:38:25 +00007020 __ cmp(scratch2, key);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007021 deferred->Branch(ls); // Unsigned less equal.
7022
7023 // Load and check that the result is not the hole (key is a smi).
7024 __ LoadRoot(scratch2, Heap::kTheHoleValueRootIndex);
7025 __ add(scratch1,
7026 scratch1,
7027 Operand(FixedArray::kHeaderSize - kHeapObjectTag));
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00007028 __ ldr(scratch1,
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007029 MemOperand(scratch1, key, LSL,
7030 kPointerSizeLog2 - (kSmiTagSize + kSmiShiftSize)));
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00007031 __ cmp(scratch1, scratch2);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007032 deferred->Branch(eq);
7033
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +00007034 __ mov(r0, scratch1);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007035 // Make sure that the expected number of instructions are generated.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00007036 ASSERT_EQ(GetInlinedKeyedLoadInstructionsAfterPatch(),
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007037 masm_->InstructionsGeneratedSince(&check_inlined_codesize));
7038 }
7039
7040 deferred->BindExit();
7041 }
7042}
7043
7044
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007045void CodeGenerator::EmitKeyedStore(StaticType* key_type,
7046 WriteBarrierCharacter wb_info) {
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007047 // Generate inlined version of the keyed store if the code is in a loop
7048 // and the key is likely to be a smi.
7049 if (loop_nesting() > 0 && key_type->IsLikelySmi()) {
7050 // Inline the keyed store.
7051 Comment cmnt(masm_, "[ Inlined store to keyed property");
7052
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007053 Register scratch1 = VirtualFrame::scratch0();
7054 Register scratch2 = VirtualFrame::scratch1();
7055 Register scratch3 = r3;
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007056
7057 // Counter will be decremented in the deferred code. Placed here to avoid
7058 // having it in the instruction stream below where patching will occur.
7059 __ IncrementCounter(&Counters::keyed_store_inline, 1,
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007060 scratch1, scratch2);
7061
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007062
7063
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007064 // Load the value, key and receiver from the stack.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007065 bool value_is_harmless = frame_->KnownSmiAt(0);
7066 if (wb_info == NEVER_NEWSPACE) value_is_harmless = true;
7067 bool key_is_smi = frame_->KnownSmiAt(1);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007068 Register value = frame_->PopToRegister();
7069 Register key = frame_->PopToRegister(value);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00007070 VirtualFrame::SpilledScope spilled(frame_);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007071 Register receiver = r2;
7072 frame_->EmitPop(receiver);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007073
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007074#ifdef DEBUG
7075 bool we_remembered_the_write_barrier = value_is_harmless;
7076#endif
7077
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007078 // The deferred code expects value, key and receiver in registers.
7079 DeferredReferenceSetKeyedValue* deferred =
7080 new DeferredReferenceSetKeyedValue(value, key, receiver);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007081
7082 // Check that the value is a smi. As this inlined code does not set the
7083 // write barrier it is only possible to store smi values.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007084 if (!value_is_harmless) {
7085 // If the value is not likely to be a Smi then let's test the fixed array
7086 // for new space instead. See below.
7087 if (wb_info == LIKELY_SMI) {
7088 __ tst(value, Operand(kSmiTagMask));
7089 deferred->Branch(ne);
7090#ifdef DEBUG
7091 we_remembered_the_write_barrier = true;
7092#endif
7093 }
7094 }
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007095
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007096 if (!key_is_smi) {
7097 // Check that the key is a smi.
7098 __ tst(key, Operand(kSmiTagMask));
7099 deferred->Branch(ne);
7100 }
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007101
7102 // Check that the receiver is a heap object.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007103 __ tst(receiver, Operand(kSmiTagMask));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007104 deferred->Branch(eq);
7105
7106 // Check that the receiver is a JSArray.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007107 __ CompareObjectType(receiver, scratch1, scratch1, JS_ARRAY_TYPE);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007108 deferred->Branch(ne);
7109
7110 // Check that the key is within bounds. Both the key and the length of
7111 // the JSArray are smis. Use unsigned comparison to handle negative keys.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007112 __ ldr(scratch1, FieldMemOperand(receiver, JSArray::kLengthOffset));
7113 __ cmp(scratch1, key);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007114 deferred->Branch(ls); // Unsigned less equal.
7115
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007116 // Get the elements array from the receiver.
7117 __ ldr(scratch1, FieldMemOperand(receiver, JSObject::kElementsOffset));
7118 if (!value_is_harmless && wb_info != LIKELY_SMI) {
7119 Label ok;
7120 __ and_(scratch2, scratch1, Operand(ExternalReference::new_space_mask()));
7121 __ cmp(scratch2, Operand(ExternalReference::new_space_start()));
7122 __ tst(value, Operand(kSmiTagMask), ne);
7123 deferred->Branch(ne);
7124#ifdef DEBUG
7125 we_remembered_the_write_barrier = true;
7126#endif
7127 }
7128 // Check that the elements array is not a dictionary.
7129 __ ldr(scratch2, FieldMemOperand(scratch1, JSObject::kMapOffset));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007130 // The following instructions are the part of the inlined store keyed
7131 // property code which can be patched. Therefore the exact number of
7132 // instructions generated need to be fixed, so the constant pool is blocked
7133 // while generating this code.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007134 { Assembler::BlockConstPoolScope block_const_pool(masm_);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007135#ifdef DEBUG
7136 Label check_inlined_codesize;
7137 masm_->bind(&check_inlined_codesize);
7138#endif
7139
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007140 // Read the fixed array map from the constant pool (not from the root
7141 // array) so that the value can be patched. When debugging, we patch this
7142 // comparison to always fail so that we will hit the IC call in the
7143 // deferred code which will allow the debugger to break for fast case
7144 // stores.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007145 __ mov(scratch3, Operand(Factory::fixed_array_map()));
7146 __ cmp(scratch2, scratch3);
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007147 deferred->Branch(ne);
7148
7149 // Store the value.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007150 __ add(scratch1, scratch1,
7151 Operand(FixedArray::kHeaderSize - kHeapObjectTag));
7152 __ str(value,
7153 MemOperand(scratch1, key, LSL,
7154 kPointerSizeLog2 - (kSmiTagSize + kSmiShiftSize)));
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007155
7156 // Make sure that the expected number of instructions are generated.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007157 ASSERT_EQ(kInlinedKeyedStoreInstructionsAfterPatch,
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007158 masm_->InstructionsGeneratedSince(&check_inlined_codesize));
7159 }
7160
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007161 ASSERT(we_remembered_the_write_barrier);
7162
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007163 deferred->BindExit();
7164 } else {
7165 frame()->CallKeyedStoreIC();
7166 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007167}
7168
7169
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00007170#ifdef DEBUG
7171bool CodeGenerator::HasValidEntryRegisters() { return true; }
7172#endif
7173
7174
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007175#undef __
ager@chromium.org65dad4b2009-04-23 08:48:43 +00007176#define __ ACCESS_MASM(masm)
7177
ager@chromium.org7c537e22008-10-16 08:43:32 +00007178Handle<String> Reference::GetName() {
7179 ASSERT(type_ == NAMED);
7180 Property* property = expression_->AsProperty();
7181 if (property == NULL) {
7182 // Global variable reference treated as a named property reference.
7183 VariableProxy* proxy = expression_->AsVariableProxy();
7184 ASSERT(proxy->AsVariable() != NULL);
7185 ASSERT(proxy->AsVariable()->is_global());
7186 return proxy->name();
7187 } else {
7188 Literal* raw_name = property->key()->AsLiteral();
7189 ASSERT(raw_name != NULL);
7190 return Handle<String>(String::cast(*raw_name->handle()));
7191 }
7192}
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007193
ager@chromium.org7c537e22008-10-16 08:43:32 +00007194
ricow@chromium.org30ce4112010-05-31 10:38:25 +00007195void Reference::DupIfPersist() {
7196 if (persist_after_get_) {
7197 switch (type_) {
7198 case KEYED:
7199 cgen_->frame()->Dup2();
7200 break;
7201 case NAMED:
7202 cgen_->frame()->Dup();
7203 // Fall through.
7204 case UNLOADED:
7205 case ILLEGAL:
7206 case SLOT:
7207 // Do nothing.
7208 ;
7209 }
7210 } else {
7211 set_unloaded();
7212 }
7213}
7214
7215
ager@chromium.orgc4c92722009-11-18 14:12:51 +00007216void Reference::GetValue() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00007217 ASSERT(cgen_->HasValidEntryRegisters());
ager@chromium.org7c537e22008-10-16 08:43:32 +00007218 ASSERT(!is_illegal());
7219 ASSERT(!cgen_->has_cc());
7220 MacroAssembler* masm = cgen_->masm();
7221 Property* property = expression_->AsProperty();
7222 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00007223 cgen_->CodeForSourcePosition(property->position());
ager@chromium.org7c537e22008-10-16 08:43:32 +00007224 }
7225
7226 switch (type_) {
7227 case SLOT: {
7228 Comment cmnt(masm, "[ Load from Slot");
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00007229 Slot* slot = expression_->AsVariableProxy()->AsVariable()->AsSlot();
ager@chromium.org7c537e22008-10-16 08:43:32 +00007230 ASSERT(slot != NULL);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00007231 DupIfPersist();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00007232 cgen_->LoadFromSlotCheckForArguments(slot, NOT_INSIDE_TYPEOF);
ager@chromium.org7c537e22008-10-16 08:43:32 +00007233 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007234 }
7235
ager@chromium.org7c537e22008-10-16 08:43:32 +00007236 case NAMED: {
ager@chromium.org7c537e22008-10-16 08:43:32 +00007237 Variable* var = expression_->AsVariableProxy()->AsVariable();
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00007238 bool is_global = var != NULL;
7239 ASSERT(!is_global || var->is_global());
ricow@chromium.org30ce4112010-05-31 10:38:25 +00007240 Handle<String> name = GetName();
7241 DupIfPersist();
7242 cgen_->EmitNamedLoad(name, is_global);
ager@chromium.org7c537e22008-10-16 08:43:32 +00007243 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007244 }
7245
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007246 case KEYED: {
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007247 ASSERT(property != NULL);
ricow@chromium.org30ce4112010-05-31 10:38:25 +00007248 DupIfPersist();
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00007249 cgen_->EmitKeyedLoad();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007250 cgen_->frame()->EmitPush(r0);
7251 break;
7252 }
7253
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007254 default:
7255 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007256 }
7257}
7258
7259
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007260void Reference::SetValue(InitState init_state, WriteBarrierCharacter wb_info) {
ager@chromium.org7c537e22008-10-16 08:43:32 +00007261 ASSERT(!is_illegal());
7262 ASSERT(!cgen_->has_cc());
7263 MacroAssembler* masm = cgen_->masm();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00007264 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00007265 Property* property = expression_->AsProperty();
7266 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00007267 cgen_->CodeForSourcePosition(property->position());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007268 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007269
ager@chromium.org7c537e22008-10-16 08:43:32 +00007270 switch (type_) {
7271 case SLOT: {
7272 Comment cmnt(masm, "[ Store to Slot");
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00007273 Slot* slot = expression_->AsVariableProxy()->AsVariable()->AsSlot();
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007274 cgen_->StoreToSlot(slot, init_state);
ager@chromium.orgac091b72010-05-05 07:34:42 +00007275 set_unloaded();
ager@chromium.org7c537e22008-10-16 08:43:32 +00007276 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007277 }
7278
ager@chromium.org7c537e22008-10-16 08:43:32 +00007279 case NAMED: {
7280 Comment cmnt(masm, "[ Store to named Property");
ager@chromium.orgac091b72010-05-05 07:34:42 +00007281 cgen_->EmitNamedStore(GetName(), false);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00007282 frame->EmitPush(r0);
ager@chromium.org5c838252010-02-19 08:53:10 +00007283 set_unloaded();
ager@chromium.org7c537e22008-10-16 08:43:32 +00007284 break;
7285 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007286
ager@chromium.org7c537e22008-10-16 08:43:32 +00007287 case KEYED: {
7288 Comment cmnt(masm, "[ Store to keyed Property");
7289 Property* property = expression_->AsProperty();
7290 ASSERT(property != NULL);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00007291 cgen_->CodeForSourcePosition(property->position());
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00007292 cgen_->EmitKeyedStore(property->key()->type(), wb_info);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00007293 frame->EmitPush(r0);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007294 set_unloaded();
ager@chromium.org7c537e22008-10-16 08:43:32 +00007295 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007296 }
ager@chromium.org7c537e22008-10-16 08:43:32 +00007297
7298 default:
7299 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007300 }
7301}
7302
7303
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00007304const char* GenericBinaryOpStub::GetName() {
7305 if (name_ != NULL) return name_;
7306 const int len = 100;
7307 name_ = Bootstrapper::AllocateAutoDeletedArray(len);
7308 if (name_ == NULL) return "OOM";
7309 const char* op_name = Token::Name(op_);
7310 const char* overwrite_name;
7311 switch (mode_) {
7312 case NO_OVERWRITE: overwrite_name = "Alloc"; break;
7313 case OVERWRITE_RIGHT: overwrite_name = "OverwriteRight"; break;
7314 case OVERWRITE_LEFT: overwrite_name = "OverwriteLeft"; break;
7315 default: overwrite_name = "UnknownOverwrite"; break;
7316 }
7317
7318 OS::SNPrintF(Vector<char>(name_, len),
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00007319 "GenericBinaryOpStub_%s_%s%s_%s",
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00007320 op_name,
7321 overwrite_name,
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00007322 specialized_on_rhs_ ? "_ConstantRhs" : "",
7323 BinaryOpIC::GetName(runtime_operands_type_));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00007324 return name_;
7325}
7326
7327
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007328#undef __
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007329
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007330} } // namespace v8::internal
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00007331
7332#endif // V8_TARGET_ARCH_ARM