blob: 3bf3fb8ccf91d9edf7fcad5313b970d08aa0c5f0 [file] [log] [blame]
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001// Copyright 2010 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#include "v8.h"
29
30#include "bootstrapper.h"
31#include "codegen-inl.h"
ager@chromium.orgc4c92722009-11-18 14:12:51 +000032#include "compiler.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000033#include "debug.h"
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000034#include "ic-inl.h"
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000035#include "parser.h"
36#include "register-allocator-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000037#include "runtime.h"
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000038#include "scopes.h"
sgjesse@chromium.org833cdd72010-02-26 10:06:16 +000039#include "virtual-frame-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000040
kasperl@chromium.org71affb52009-05-26 05:44:31 +000041namespace v8 {
42namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000043
ager@chromium.org65dad4b2009-04-23 08:48:43 +000044#define __ ACCESS_MASM(masm_)
45
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000046static void EmitIdenticalObjectComparison(MacroAssembler* masm,
47 Label* slow,
fschneider@chromium.org0c20e672010-01-14 15:28:53 +000048 Condition cc,
49 bool never_nan_nan);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000050static void EmitSmiNonsmiComparison(MacroAssembler* masm,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000051 Label* lhs_not_nan,
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000052 Label* slow,
53 bool strict);
54static void EmitTwoNonNanDoubleComparison(MacroAssembler* masm, Condition cc);
55static void EmitStrictTwoHeapObjectCompare(MacroAssembler* masm);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000056static void MultiplyByKnownInt(MacroAssembler* masm,
57 Register source,
58 Register destination,
59 int known_int);
60static bool IsEasyToMultiplyBy(int x);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000061
62
63
ager@chromium.orge2902be2009-06-08 12:21:35 +000064// -------------------------------------------------------------------------
65// Platform-specific DeferredCode functions.
66
67void DeferredCode::SaveRegisters() {
68 for (int i = 0; i < RegisterAllocator::kNumRegisters; i++) {
69 int action = registers_[i];
70 if (action == kPush) {
71 __ push(RegisterAllocator::ToRegister(i));
72 } else if (action != kIgnore && (action & kSyncedFlag) == 0) {
73 __ str(RegisterAllocator::ToRegister(i), MemOperand(fp, action));
74 }
75 }
76}
77
78
79void DeferredCode::RestoreRegisters() {
80 // Restore registers in reverse order due to the stack.
81 for (int i = RegisterAllocator::kNumRegisters - 1; i >= 0; i--) {
82 int action = registers_[i];
83 if (action == kPush) {
84 __ pop(RegisterAllocator::ToRegister(i));
85 } else if (action != kIgnore) {
86 action &= ~kSyncedFlag;
87 __ ldr(RegisterAllocator::ToRegister(i), MemOperand(fp, action));
88 }
89 }
90}
91
ager@chromium.org3bf7b912008-11-17 09:09:45 +000092
93// -------------------------------------------------------------------------
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000094// CodeGenState implementation.
95
ager@chromium.org7c537e22008-10-16 08:43:32 +000096CodeGenState::CodeGenState(CodeGenerator* owner)
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000097 : owner_(owner),
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000098 true_target_(NULL),
99 false_target_(NULL),
100 previous_(NULL) {
101 owner_->set_state(this);
102}
103
104
ager@chromium.org7c537e22008-10-16 08:43:32 +0000105CodeGenState::CodeGenState(CodeGenerator* owner,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000106 JumpTarget* true_target,
107 JumpTarget* false_target)
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000108 : owner_(owner),
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000109 true_target_(true_target),
110 false_target_(false_target),
111 previous_(owner->state()) {
112 owner_->set_state(this);
113}
114
115
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000116CodeGenState::~CodeGenState() {
117 ASSERT(owner_->state() == this);
118 owner_->set_state(previous_);
119}
120
121
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000122// -------------------------------------------------------------------------
ager@chromium.org7c537e22008-10-16 08:43:32 +0000123// CodeGenerator implementation
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000124
ager@chromium.org5c838252010-02-19 08:53:10 +0000125CodeGenerator::CodeGenerator(MacroAssembler* masm)
126 : deferred_(8),
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000127 masm_(masm),
ager@chromium.org5c838252010-02-19 08:53:10 +0000128 info_(NULL),
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000129 frame_(NULL),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000130 allocator_(NULL),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000131 cc_reg_(al),
132 state_(NULL),
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +0000133 function_return_is_shadowed_(false) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000134}
135
136
137// Calling conventions:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000138// fp: caller's frame pointer
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000139// sp: stack pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000140// r1: called JS function
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000141// cp: callee's context
142
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000143void CodeGenerator::Generate(CompilationInfo* info) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000144 // Record the position for debugging purposes.
ager@chromium.org5c838252010-02-19 08:53:10 +0000145 CodeForFunctionPosition(info->function());
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000146 Comment cmnt(masm_, "[ function compiled by virtual frame code generator");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000147
148 // Initialize state.
ager@chromium.org5c838252010-02-19 08:53:10 +0000149 info_ = info;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000150 ASSERT(allocator_ == NULL);
151 RegisterAllocator register_allocator(this);
152 allocator_ = &register_allocator;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000153 ASSERT(frame_ == NULL);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000154 frame_ = new VirtualFrame();
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000155 cc_reg_ = al;
156 {
157 CodeGenState state(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000158
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000159 // Entry:
160 // Stack: receiver, arguments
161 // lr: return address
162 // fp: caller's frame pointer
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000163 // sp: stack pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000164 // r1: called JS function
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000165 // cp: callee's context
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000166 allocator_->Initialize();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000167
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000168#ifdef DEBUG
169 if (strlen(FLAG_stop_at) > 0 &&
ager@chromium.org5c838252010-02-19 08:53:10 +0000170 info->function()->name()->IsEqualTo(CStrVector(FLAG_stop_at))) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000171 frame_->SpillAll();
kasper.lund7276f142008-07-30 08:49:36 +0000172 __ stop("stop-at");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000173 }
174#endif
175
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000176 if (info->mode() == CompilationInfo::PRIMARY) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000177 frame_->Enter();
178 // tos: code slot
179
180 // Allocate space for locals and initialize them. This also checks
181 // for stack overflow.
182 frame_->AllocateStackSlots();
183
184 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org5c838252010-02-19 08:53:10 +0000185 int heap_slots = scope()->num_heap_slots();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000186 if (heap_slots > 0) {
187 // Allocate local context.
188 // Get outer context and create a new context based on it.
189 __ ldr(r0, frame_->Function());
190 frame_->EmitPush(r0);
191 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
192 FastNewContextStub stub(heap_slots);
193 frame_->CallStub(&stub, 1);
194 } else {
195 frame_->CallRuntime(Runtime::kNewContext, 1);
196 }
197
198#ifdef DEBUG
199 JumpTarget verified_true;
200 __ cmp(r0, Operand(cp));
201 verified_true.Branch(eq);
202 __ stop("NewContext: r0 is expected to be the same as cp");
203 verified_true.Bind();
204#endif
205 // Update context local.
206 __ str(cp, frame_->Context());
207 }
208
209 // TODO(1241774): Improve this code:
210 // 1) only needed if we have a context
211 // 2) no need to recompute context ptr every single time
212 // 3) don't copy parameter operand code from SlotOperand!
213 {
214 Comment cmnt2(masm_, "[ copy context parameters into .context");
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000215 // Note that iteration order is relevant here! If we have the same
216 // parameter twice (e.g., function (x, y, x)), and that parameter
217 // needs to be copied into the context, it must be the last argument
218 // passed to the parameter that needs to be copied. This is a rare
219 // case so we don't check for it, instead we rely on the copying
220 // order: such a parameter is copied repeatedly into the same
221 // context location and thus the last value is what is seen inside
222 // the function.
ager@chromium.org5c838252010-02-19 08:53:10 +0000223 for (int i = 0; i < scope()->num_parameters(); i++) {
224 Variable* par = scope()->parameter(i);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000225 Slot* slot = par->slot();
226 if (slot != NULL && slot->type() == Slot::CONTEXT) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000227 ASSERT(!scope()->is_global_scope()); // No params in global scope.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000228 __ ldr(r1, frame_->ParameterAt(i));
229 // Loads r2 with context; used below in RecordWrite.
230 __ str(r1, SlotOperand(slot, r2));
231 // Load the offset into r3.
232 int slot_offset =
233 FixedArray::kHeaderSize + slot->index() * kPointerSize;
234 __ mov(r3, Operand(slot_offset));
235 __ RecordWrite(r2, r3, r1);
236 }
237 }
238 }
239
240 // Store the arguments object. This must happen after context
241 // initialization because the arguments object may be stored in the
242 // context.
ager@chromium.org5c838252010-02-19 08:53:10 +0000243 if (scope()->arguments() != NULL) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000244 Comment cmnt(masm_, "[ allocate arguments object");
ager@chromium.org5c838252010-02-19 08:53:10 +0000245 ASSERT(scope()->arguments_shadow() != NULL);
246 Variable* arguments = scope()->arguments()->var();
247 Variable* shadow = scope()->arguments_shadow()->var();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000248 ASSERT(arguments != NULL && arguments->slot() != NULL);
249 ASSERT(shadow != NULL && shadow->slot() != NULL);
250 ArgumentsAccessStub stub(ArgumentsAccessStub::NEW_OBJECT);
251 __ ldr(r2, frame_->Function());
252 // The receiver is below the arguments, the return address, and the
253 // frame pointer on the stack.
ager@chromium.org5c838252010-02-19 08:53:10 +0000254 const int kReceiverDisplacement = 2 + scope()->num_parameters();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000255 __ add(r1, fp, Operand(kReceiverDisplacement * kPointerSize));
ager@chromium.org5c838252010-02-19 08:53:10 +0000256 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000257 frame_->Adjust(3);
258 __ stm(db_w, sp, r0.bit() | r1.bit() | r2.bit());
259 frame_->CallStub(&stub, 3);
260 frame_->EmitPush(r0);
261 StoreToSlot(arguments->slot(), NOT_CONST_INIT);
262 StoreToSlot(shadow->slot(), NOT_CONST_INIT);
263 frame_->Drop(); // Value is no longer needed.
264 }
265
266 // Initialize ThisFunction reference if present.
ager@chromium.org5c838252010-02-19 08:53:10 +0000267 if (scope()->is_function_scope() && scope()->function() != NULL) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000268 __ mov(ip, Operand(Factory::the_hole_value()));
269 frame_->EmitPush(ip);
ager@chromium.org5c838252010-02-19 08:53:10 +0000270 StoreToSlot(scope()->function()->slot(), NOT_CONST_INIT);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000271 }
272 } else {
273 // When used as the secondary compiler for splitting, r1, cp,
274 // fp, and lr have been pushed on the stack. Adjust the virtual
275 // frame to match this state.
276 frame_->Adjust(4);
277 allocator_->Unuse(r1);
278 allocator_->Unuse(lr);
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000279
280 // Bind all the bailout labels to the beginning of the function.
281 List<CompilationInfo::Bailout*>* bailouts = info->bailouts();
282 for (int i = 0; i < bailouts->length(); i++) {
283 __ bind(bailouts->at(i)->label());
284 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000285 }
286
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000287 // Initialize the function return target after the locals are set
288 // up, because it needs the expected frame height from the frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000289 function_return_.set_direction(JumpTarget::BIDIRECTIONAL);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000290 function_return_is_shadowed_ = false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000291
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000292 // Generate code to 'execute' declarations and initialize functions
293 // (source elements). In case of an illegal redeclaration we need to
294 // handle that instead of processing the declarations.
ager@chromium.org5c838252010-02-19 08:53:10 +0000295 if (scope()->HasIllegalRedeclaration()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000296 Comment cmnt(masm_, "[ illegal redeclarations");
ager@chromium.org5c838252010-02-19 08:53:10 +0000297 scope()->VisitIllegalRedeclaration(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000298 } else {
299 Comment cmnt(masm_, "[ declarations");
ager@chromium.org5c838252010-02-19 08:53:10 +0000300 ProcessDeclarations(scope()->declarations());
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000301 // Bail out if a stack-overflow exception occurred when processing
302 // declarations.
kasper.lund212ac232008-07-16 07:07:30 +0000303 if (HasStackOverflow()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000304 }
305
mads.s.ager31e71382008-08-13 09:32:07 +0000306 if (FLAG_trace) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000307 frame_->CallRuntime(Runtime::kTraceEnter, 0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000308 // Ignore the return value.
mads.s.ager31e71382008-08-13 09:32:07 +0000309 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000310
311 // Compile the body of the function in a vanilla state. Don't
312 // bother compiling all the code if the scope has an illegal
313 // redeclaration.
ager@chromium.org5c838252010-02-19 08:53:10 +0000314 if (!scope()->HasIllegalRedeclaration()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000315 Comment cmnt(masm_, "[ function body");
316#ifdef DEBUG
317 bool is_builtin = Bootstrapper::IsActive();
318 bool should_trace =
319 is_builtin ? FLAG_trace_builtin_calls : FLAG_trace_calls;
mads.s.ager31e71382008-08-13 09:32:07 +0000320 if (should_trace) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000321 frame_->CallRuntime(Runtime::kDebugTrace, 0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000322 // Ignore the return value.
mads.s.ager31e71382008-08-13 09:32:07 +0000323 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000324#endif
ager@chromium.org5c838252010-02-19 08:53:10 +0000325 VisitStatementsAndSpill(info->function()->body());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000326 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000327 }
328
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000329 // Generate the return sequence if necessary.
ager@chromium.org4af710e2009-09-15 12:20:11 +0000330 if (has_valid_frame() || function_return_.is_linked()) {
331 if (!function_return_.is_linked()) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000332 CodeForReturnPosition(info->function());
ager@chromium.org4af710e2009-09-15 12:20:11 +0000333 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000334 // exit
335 // r0: result
336 // sp: stack pointer
337 // fp: frame pointer
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000338 // cp: callee's context
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000339 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
mads.s.ager31e71382008-08-13 09:32:07 +0000340
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000341 function_return_.Bind();
342 if (FLAG_trace) {
343 // Push the return value on the stack as the parameter.
344 // Runtime::TraceExit returns the parameter as it is.
345 frame_->EmitPush(r0);
346 frame_->CallRuntime(Runtime::kTraceExit, 1);
347 }
348
ager@chromium.org4af710e2009-09-15 12:20:11 +0000349 // Add a label for checking the size of the code used for returning.
350 Label check_exit_codesize;
351 masm_->bind(&check_exit_codesize);
352
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000353 // Calculate the exact length of the return sequence and make sure that
354 // the constant pool is not emitted inside of the return sequence.
ager@chromium.org5c838252010-02-19 08:53:10 +0000355 int32_t sp_delta = (scope()->num_parameters() + 1) * kPointerSize;
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000356 int return_sequence_length = Assembler::kJSReturnSequenceLength;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000357 if (!masm_->ImmediateFitsAddrMode1Instruction(sp_delta)) {
358 // Additional mov instruction generated.
359 return_sequence_length++;
360 }
361 masm_->BlockConstPoolFor(return_sequence_length);
362
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000363 // Tear down the frame which will restore the caller's frame pointer and
364 // the link register.
365 frame_->Exit();
366
ager@chromium.org4af710e2009-09-15 12:20:11 +0000367 // Here we use masm_-> instead of the __ macro to avoid the code coverage
368 // tool from instrumenting as we rely on the code size here.
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000369 masm_->add(sp, sp, Operand(sp_delta));
ager@chromium.org4af710e2009-09-15 12:20:11 +0000370 masm_->Jump(lr);
371
372 // Check that the size of the code used for returning matches what is
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000373 // expected by the debugger. The add instruction above is an addressing
374 // mode 1 instruction where there are restrictions on which immediate values
375 // can be encoded in the instruction and which immediate values requires
376 // use of an additional instruction for moving the immediate to a temporary
377 // register.
378 ASSERT_EQ(return_sequence_length,
ager@chromium.org4af710e2009-09-15 12:20:11 +0000379 masm_->InstructionsGeneratedSince(&check_exit_codesize));
mads.s.ager31e71382008-08-13 09:32:07 +0000380 }
381
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000382 // Code generation state must be reset.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000383 ASSERT(!has_cc());
384 ASSERT(state_ == NULL);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000385 ASSERT(!function_return_is_shadowed_);
386 function_return_.Unuse();
387 DeleteFrame();
388
389 // Process any deferred code using the register allocator.
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000390 if (!HasStackOverflow()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000391 ProcessDeferred();
392 }
393
394 allocator_ = NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000395}
396
397
ager@chromium.org7c537e22008-10-16 08:43:32 +0000398MemOperand CodeGenerator::SlotOperand(Slot* slot, Register tmp) {
399 // Currently, this assertion will fail if we try to assign to
400 // a constant variable that is constant because it is read-only
401 // (such as the variable referring to a named function expression).
402 // We need to implement assignments to read-only variables.
403 // Ideally, we should do this during AST generation (by converting
404 // such assignments into expression statements); however, in general
405 // we may not be able to make the decision until past AST generation,
406 // that is when the entire program is known.
407 ASSERT(slot != NULL);
408 int index = slot->index();
409 switch (slot->type()) {
410 case Slot::PARAMETER:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000411 return frame_->ParameterAt(index);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000412
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000413 case Slot::LOCAL:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000414 return frame_->LocalAt(index);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000415
416 case Slot::CONTEXT: {
417 // Follow the context chain if necessary.
418 ASSERT(!tmp.is(cp)); // do not overwrite context register
419 Register context = cp;
420 int chain_length = scope()->ContextChainLength(slot->var()->scope());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000421 for (int i = 0; i < chain_length; i++) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000422 // Load the closure.
423 // (All contexts, even 'with' contexts, have a closure,
424 // and it is the same for all contexts inside a function.
425 // There is no need to go to the function context first.)
426 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
427 // Load the function context (which is the incoming, outer context).
428 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
429 context = tmp;
430 }
431 // We may have a 'with' context now. Get the function context.
432 // (In fact this mov may never be the needed, since the scope analysis
433 // may not permit a direct context access in this case and thus we are
434 // always at a function context. However it is safe to dereference be-
435 // cause the function context of a function context is itself. Before
436 // deleting this mov we should try to create a counter-example first,
437 // though...)
438 __ ldr(tmp, ContextOperand(context, Context::FCONTEXT_INDEX));
439 return ContextOperand(tmp, index);
440 }
441
442 default:
443 UNREACHABLE();
444 return MemOperand(r0, 0);
445 }
446}
447
448
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000449MemOperand CodeGenerator::ContextSlotOperandCheckExtensions(
450 Slot* slot,
451 Register tmp,
452 Register tmp2,
453 JumpTarget* slow) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000454 ASSERT(slot->type() == Slot::CONTEXT);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000455 Register context = cp;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000456
ager@chromium.org381abbb2009-02-25 13:23:22 +0000457 for (Scope* s = scope(); s != slot->var()->scope(); s = s->outer_scope()) {
458 if (s->num_heap_slots() > 0) {
459 if (s->calls_eval()) {
460 // Check that extension is NULL.
461 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
462 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000463 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000464 }
465 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
466 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
467 context = tmp;
468 }
469 }
470 // Check that last extension is NULL.
471 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
472 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000473 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000474 __ ldr(tmp, ContextOperand(context, Context::FCONTEXT_INDEX));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000475 return ContextOperand(tmp, slot->index());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000476}
477
478
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000479// Loads a value on TOS. If it is a boolean value, the result may have been
480// (partially) translated into branches, or it may have set the condition
481// code register. If force_cc is set, the value is forced to set the
482// condition code register and no value is pushed. If the condition code
483// register was set, has_cc() is true and cc_reg_ contains the condition to
484// test for 'true'.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000485void CodeGenerator::LoadCondition(Expression* x,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000486 JumpTarget* true_target,
487 JumpTarget* false_target,
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000488 bool force_cc) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000489 ASSERT(!has_cc());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000490 int original_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000491
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000492 { CodeGenState new_state(this, true_target, false_target);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000493 Visit(x);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000494
495 // If we hit a stack overflow, we may not have actually visited
496 // the expression. In that case, we ensure that we have a
497 // valid-looking frame state because we will continue to generate
498 // code as we unwind the C++ stack.
499 //
500 // It's possible to have both a stack overflow and a valid frame
501 // state (eg, a subexpression overflowed, visiting it returned
502 // with a dummied frame state, and visiting this expression
503 // returned with a normal-looking state).
504 if (HasStackOverflow() &&
505 has_valid_frame() &&
506 !has_cc() &&
507 frame_->height() == original_height) {
508 true_target->Jump();
509 }
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000510 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000511 if (force_cc && frame_ != NULL && !has_cc()) {
mads.s.ager31e71382008-08-13 09:32:07 +0000512 // Convert the TOS value to a boolean in the condition code register.
513 ToBoolean(true_target, false_target);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000514 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000515 ASSERT(!force_cc || !has_valid_frame() || has_cc());
516 ASSERT(!has_valid_frame() ||
517 (has_cc() && frame_->height() == original_height) ||
518 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000519}
520
521
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000522void CodeGenerator::Load(Expression* expr) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000523#ifdef DEBUG
524 int original_height = frame_->height();
525#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000526 JumpTarget true_target;
527 JumpTarget false_target;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000528 LoadCondition(expr, &true_target, &false_target, false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000529
530 if (has_cc()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000531 // Convert cc_reg_ into a boolean value.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000532 JumpTarget loaded;
533 JumpTarget materialize_true;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000534 materialize_true.Branch(cc_reg_);
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000535 __ LoadRoot(r0, Heap::kFalseValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000536 frame_->EmitPush(r0);
537 loaded.Jump();
538 materialize_true.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000539 __ LoadRoot(r0, Heap::kTrueValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000540 frame_->EmitPush(r0);
541 loaded.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000542 cc_reg_ = al;
543 }
544
545 if (true_target.is_linked() || false_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000546 // We have at least one condition value that has been "translated"
547 // into a branch, thus it needs to be loaded explicitly.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000548 JumpTarget loaded;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000549 if (frame_ != NULL) {
550 loaded.Jump(); // Don't lose the current TOS.
551 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000552 bool both = true_target.is_linked() && false_target.is_linked();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000553 // Load "true" if necessary.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000554 if (true_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000555 true_target.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000556 __ LoadRoot(r0, Heap::kTrueValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000557 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000558 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000559 // If both "true" and "false" need to be loaded jump across the code for
560 // "false".
561 if (both) {
562 loaded.Jump();
563 }
564 // Load "false" if necessary.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000565 if (false_target.is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000566 false_target.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000567 __ LoadRoot(r0, Heap::kFalseValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000568 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000569 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000570 // A value is loaded on all paths reaching this point.
571 loaded.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000572 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000573 ASSERT(has_valid_frame());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000574 ASSERT(!has_cc());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000575 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000576}
577
578
ager@chromium.org7c537e22008-10-16 08:43:32 +0000579void CodeGenerator::LoadGlobal() {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000580 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +0000581 __ ldr(r0, GlobalObject());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000582 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000583}
584
585
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000586void CodeGenerator::LoadGlobalReceiver(Register scratch) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000587 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000588 __ ldr(scratch, ContextOperand(cp, Context::GLOBAL_INDEX));
589 __ ldr(scratch,
590 FieldMemOperand(scratch, GlobalObject::kGlobalReceiverOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000591 frame_->EmitPush(scratch);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000592}
593
594
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000595void CodeGenerator::LoadTypeofExpression(Expression* expr) {
596 // Special handling of identifiers as subexpressions of typeof.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000597 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000598 Variable* variable = expr->AsVariableProxy()->AsVariable();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000599 if (variable != NULL && !variable->is_this() && variable->is_global()) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000600 // For a global variable we build the property reference
601 // <global>.<variable> and perform a (regular non-contextual) property
602 // load to make sure we do not get reference errors.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000603 Slot global(variable, Slot::CONTEXT, Context::GLOBAL_INDEX);
604 Literal key(variable->name());
ager@chromium.org236ad962008-09-25 09:45:57 +0000605 Property property(&global, &key, RelocInfo::kNoPosition);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000606 Reference ref(this, &property);
607 ref.GetValueAndSpill();
608 } else if (variable != NULL && variable->slot() != NULL) {
609 // For a variable that rewrites to a slot, we signal it is the immediate
610 // subexpression of a typeof.
611 LoadFromSlot(variable->slot(), INSIDE_TYPEOF);
612 frame_->SpillAll();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000613 } else {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000614 // Anything else can be handled normally.
615 LoadAndSpill(expr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000616 }
617}
618
619
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000620Reference::Reference(CodeGenerator* cgen,
621 Expression* expression,
622 bool persist_after_get)
623 : cgen_(cgen),
624 expression_(expression),
625 type_(ILLEGAL),
626 persist_after_get_(persist_after_get) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000627 cgen->LoadReference(this);
628}
629
630
631Reference::~Reference() {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000632 ASSERT(is_unloaded() || is_illegal());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000633}
634
635
ager@chromium.org7c537e22008-10-16 08:43:32 +0000636void CodeGenerator::LoadReference(Reference* ref) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000637 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +0000638 Comment cmnt(masm_, "[ LoadReference");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000639 Expression* e = ref->expression();
640 Property* property = e->AsProperty();
641 Variable* var = e->AsVariableProxy()->AsVariable();
642
643 if (property != NULL) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000644 // The expression is either a property or a variable proxy that rewrites
645 // to a property.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000646 LoadAndSpill(property->obj());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000647 if (property->key()->IsPropertyName()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000648 ref->set_type(Reference::NAMED);
649 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000650 LoadAndSpill(property->key());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000651 ref->set_type(Reference::KEYED);
652 }
653 } else if (var != NULL) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000654 // The expression is a variable proxy that does not rewrite to a
655 // property. Global variables are treated as named property references.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000656 if (var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000657 LoadGlobal();
658 ref->set_type(Reference::NAMED);
659 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000660 ASSERT(var->slot() != NULL);
661 ref->set_type(Reference::SLOT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000662 }
663 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000664 // Anything else is a runtime error.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000665 LoadAndSpill(e);
666 frame_->CallRuntime(Runtime::kThrowReferenceError, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000667 }
668}
669
670
ager@chromium.org7c537e22008-10-16 08:43:32 +0000671void CodeGenerator::UnloadReference(Reference* ref) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000672 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000673 // Pop a reference from the stack while preserving TOS.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000674 Comment cmnt(masm_, "[ UnloadReference");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000675 int size = ref->size();
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000676 if (size > 0) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000677 frame_->EmitPop(r0);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000678 frame_->Drop(size);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000679 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000680 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000681 ref->set_unloaded();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000682}
683
684
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000685// ECMA-262, section 9.2, page 30: ToBoolean(). Convert the given
686// register to a boolean in the condition code register. The code
687// may jump to 'false_target' in case the register converts to 'false'.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000688void CodeGenerator::ToBoolean(JumpTarget* true_target,
689 JumpTarget* false_target) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000690 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +0000691 // Note: The generated code snippet does not change stack variables.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000692 // Only the condition code should be set.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000693 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000694
695 // Fast case checks
696
mads.s.ager31e71382008-08-13 09:32:07 +0000697 // Check if the value is 'false'.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000698 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
699 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000700 false_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000701
mads.s.ager31e71382008-08-13 09:32:07 +0000702 // Check if the value is 'true'.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000703 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
704 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000705 true_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000706
mads.s.ager31e71382008-08-13 09:32:07 +0000707 // Check if the value is 'undefined'.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000708 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
709 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000710 false_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000711
mads.s.ager31e71382008-08-13 09:32:07 +0000712 // Check if the value is a smi.
713 __ cmp(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000714 false_target->Branch(eq);
mads.s.ager31e71382008-08-13 09:32:07 +0000715 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000716 true_target->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000717
718 // Slow case: call the runtime.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000719 frame_->EmitPush(r0);
720 frame_->CallRuntime(Runtime::kToBool, 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000721 // Convert the result (r0) to a condition code.
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000722 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
723 __ cmp(r0, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000724
725 cc_reg_ = ne;
726}
727
728
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000729void CodeGenerator::GenericBinaryOperation(Token::Value op,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000730 OverwriteMode overwrite_mode,
731 int constant_rhs) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000732 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +0000733 // sp[0] : y
734 // sp[1] : x
735 // result : r0
736
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000737 // Stub is entered with a call: 'return address' is in lr.
738 switch (op) {
739 case Token::ADD: // fall through.
740 case Token::SUB: // fall through.
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000741 case Token::MUL:
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000742 case Token::DIV:
743 case Token::MOD:
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000744 case Token::BIT_OR:
745 case Token::BIT_AND:
746 case Token::BIT_XOR:
747 case Token::SHL:
748 case Token::SHR:
749 case Token::SAR: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000750 frame_->EmitPop(r0); // r0 : y
751 frame_->EmitPop(r1); // r1 : x
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000752 GenericBinaryOpStub stub(op, overwrite_mode, constant_rhs);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000753 frame_->CallStub(&stub, 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000754 break;
755 }
756
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000757 case Token::COMMA:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000758 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000759 // simply discard left value
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000760 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000761 break;
762
763 default:
764 // Other cases should have been handled before this point.
765 UNREACHABLE();
766 break;
767 }
768}
769
770
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000771class DeferredInlineSmiOperation: public DeferredCode {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000772 public:
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000773 DeferredInlineSmiOperation(Token::Value op,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000774 int value,
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000775 bool reversed,
776 OverwriteMode overwrite_mode)
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000777 : op_(op),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000778 value_(value),
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000779 reversed_(reversed),
780 overwrite_mode_(overwrite_mode) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000781 set_comment("[ DeferredInlinedSmiOperation");
782 }
783
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000784 virtual void Generate();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000785
786 private:
787 Token::Value op_;
788 int value_;
789 bool reversed_;
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000790 OverwriteMode overwrite_mode_;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000791};
792
793
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000794void DeferredInlineSmiOperation::Generate() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000795 switch (op_) {
796 case Token::ADD: {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000797 // Revert optimistic add.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000798 if (reversed_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000799 __ sub(r0, r0, Operand(Smi::FromInt(value_)));
800 __ mov(r1, Operand(Smi::FromInt(value_)));
801 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000802 __ sub(r1, r0, Operand(Smi::FromInt(value_)));
803 __ mov(r0, Operand(Smi::FromInt(value_)));
804 }
805 break;
806 }
807
808 case Token::SUB: {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000809 // Revert optimistic sub.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000810 if (reversed_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000811 __ rsb(r0, r0, Operand(Smi::FromInt(value_)));
812 __ mov(r1, Operand(Smi::FromInt(value_)));
813 } else {
814 __ add(r1, r0, Operand(Smi::FromInt(value_)));
815 __ mov(r0, Operand(Smi::FromInt(value_)));
816 }
817 break;
818 }
819
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000820 // For these operations there is no optimistic operation that needs to be
821 // reverted.
822 case Token::MUL:
823 case Token::MOD:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000824 case Token::BIT_OR:
825 case Token::BIT_XOR:
826 case Token::BIT_AND: {
827 if (reversed_) {
828 __ mov(r1, Operand(Smi::FromInt(value_)));
829 } else {
830 __ mov(r1, Operand(r0));
831 __ mov(r0, Operand(Smi::FromInt(value_)));
832 }
833 break;
834 }
835
836 case Token::SHL:
837 case Token::SHR:
838 case Token::SAR: {
839 if (!reversed_) {
840 __ mov(r1, Operand(r0));
841 __ mov(r0, Operand(Smi::FromInt(value_)));
842 } else {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000843 UNREACHABLE(); // Should have been handled in SmiOperation.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000844 }
845 break;
846 }
847
848 default:
ager@chromium.orge2902be2009-06-08 12:21:35 +0000849 // Other cases should have been handled before this point.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000850 UNREACHABLE();
851 break;
852 }
853
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000854 GenericBinaryOpStub stub(op_, overwrite_mode_, value_);
ager@chromium.orge2902be2009-06-08 12:21:35 +0000855 __ CallStub(&stub);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000856}
857
858
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000859static bool PopCountLessThanEqual2(unsigned int x) {
860 x &= x - 1;
861 return (x & (x - 1)) == 0;
862}
863
864
865// Returns the index of the lowest bit set.
866static int BitPosition(unsigned x) {
867 int bit_posn = 0;
868 while ((x & 0xf) == 0) {
869 bit_posn += 4;
870 x >>= 4;
871 }
872 while ((x & 1) == 0) {
873 bit_posn++;
874 x >>= 1;
875 }
876 return bit_posn;
877}
878
879
ager@chromium.org7c537e22008-10-16 08:43:32 +0000880void CodeGenerator::SmiOperation(Token::Value op,
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000881 Handle<Object> value,
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000882 bool reversed,
883 OverwriteMode mode) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000884 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000885 // NOTE: This is an attempt to inline (a bit) more of the code for
886 // some possible smi operations (like + and -) when (at least) one
887 // of the operands is a literal smi. With this optimization, the
888 // performance of the system is increased by ~15%, and the generated
889 // code size is increased by ~1% (measured on a combination of
890 // different benchmarks).
891
mads.s.ager31e71382008-08-13 09:32:07 +0000892 // sp[0] : operand
893
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000894 int int_value = Smi::cast(*value)->value();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000895
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000896 JumpTarget exit;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000897 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000898
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000899 bool something_to_inline = true;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000900 switch (op) {
901 case Token::ADD: {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000902 DeferredCode* deferred =
ager@chromium.orge2902be2009-06-08 12:21:35 +0000903 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000904
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000905 __ add(r0, r0, Operand(value), SetCC);
ager@chromium.orge2902be2009-06-08 12:21:35 +0000906 deferred->Branch(vs);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000907 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orge2902be2009-06-08 12:21:35 +0000908 deferred->Branch(ne);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000909 deferred->BindExit();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000910 break;
911 }
912
913 case Token::SUB: {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000914 DeferredCode* deferred =
ager@chromium.orge2902be2009-06-08 12:21:35 +0000915 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000916
ager@chromium.orge2902be2009-06-08 12:21:35 +0000917 if (reversed) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000918 __ rsb(r0, r0, Operand(value), SetCC);
ager@chromium.orge2902be2009-06-08 12:21:35 +0000919 } else {
920 __ sub(r0, r0, Operand(value), SetCC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000921 }
ager@chromium.orge2902be2009-06-08 12:21:35 +0000922 deferred->Branch(vs);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000923 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orge2902be2009-06-08 12:21:35 +0000924 deferred->Branch(ne);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000925 deferred->BindExit();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000926 break;
927 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000928
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000929
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000930 case Token::BIT_OR:
931 case Token::BIT_XOR:
932 case Token::BIT_AND: {
933 DeferredCode* deferred =
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000934 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000935 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orge2902be2009-06-08 12:21:35 +0000936 deferred->Branch(ne);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000937 switch (op) {
938 case Token::BIT_OR: __ orr(r0, r0, Operand(value)); break;
939 case Token::BIT_XOR: __ eor(r0, r0, Operand(value)); break;
940 case Token::BIT_AND: __ and_(r0, r0, Operand(value)); break;
941 default: UNREACHABLE();
942 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000943 deferred->BindExit();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000944 break;
945 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000946
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000947 case Token::SHL:
948 case Token::SHR:
949 case Token::SAR: {
950 if (reversed) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000951 something_to_inline = false;
952 break;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000953 }
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000954 int shift_value = int_value & 0x1f; // least significant 5 bits
955 DeferredCode* deferred =
956 new DeferredInlineSmiOperation(op, shift_value, false, mode);
957 __ tst(r0, Operand(kSmiTagMask));
958 deferred->Branch(ne);
959 __ mov(r2, Operand(r0, ASR, kSmiTagSize)); // remove tags
960 switch (op) {
961 case Token::SHL: {
962 if (shift_value != 0) {
963 __ mov(r2, Operand(r2, LSL, shift_value));
964 }
965 // check that the *unsigned* result fits in a smi
966 __ add(r3, r2, Operand(0x40000000), SetCC);
967 deferred->Branch(mi);
968 break;
969 }
970 case Token::SHR: {
971 // LSR by immediate 0 means shifting 32 bits.
972 if (shift_value != 0) {
973 __ mov(r2, Operand(r2, LSR, shift_value));
974 }
975 // check that the *unsigned* result fits in a smi
976 // neither of the two high-order bits can be set:
977 // - 0x80000000: high bit would be lost when smi tagging
978 // - 0x40000000: this number would convert to negative when
979 // smi tagging these two cases can only happen with shifts
980 // by 0 or 1 when handed a valid smi
981 __ and_(r3, r2, Operand(0xc0000000), SetCC);
982 deferred->Branch(ne);
983 break;
984 }
985 case Token::SAR: {
986 if (shift_value != 0) {
987 // ASR by immediate 0 means shifting 32 bits.
988 __ mov(r2, Operand(r2, ASR, shift_value));
989 }
990 break;
991 }
992 default: UNREACHABLE();
993 }
994 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
995 deferred->BindExit();
996 break;
997 }
998
999 case Token::MOD: {
1000 if (reversed || int_value < 2 || !IsPowerOf2(int_value)) {
1001 something_to_inline = false;
1002 break;
1003 }
1004 DeferredCode* deferred =
1005 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
1006 unsigned mask = (0x80000000u | kSmiTagMask);
1007 __ tst(r0, Operand(mask));
1008 deferred->Branch(ne); // Go to deferred code on non-Smis and negative.
1009 mask = (int_value << kSmiTagSize) - 1;
1010 __ and_(r0, r0, Operand(mask));
1011 deferred->BindExit();
1012 break;
1013 }
1014
1015 case Token::MUL: {
1016 if (!IsEasyToMultiplyBy(int_value)) {
1017 something_to_inline = false;
1018 break;
1019 }
1020 DeferredCode* deferred =
1021 new DeferredInlineSmiOperation(op, int_value, reversed, mode);
1022 unsigned max_smi_that_wont_overflow = Smi::kMaxValue / int_value;
1023 max_smi_that_wont_overflow <<= kSmiTagSize;
1024 unsigned mask = 0x80000000u;
1025 while ((mask & max_smi_that_wont_overflow) == 0) {
1026 mask |= mask >> 1;
1027 }
1028 mask |= kSmiTagMask;
1029 // This does a single mask that checks for a too high value in a
1030 // conservative way and for a non-Smi. It also filters out negative
1031 // numbers, unfortunately, but since this code is inline we prefer
1032 // brevity to comprehensiveness.
1033 __ tst(r0, Operand(mask));
1034 deferred->Branch(ne);
1035 MultiplyByKnownInt(masm_, r0, r0, int_value);
1036 deferred->BindExit();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001037 break;
1038 }
1039
1040 default:
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001041 something_to_inline = false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001042 break;
1043 }
1044
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001045 if (!something_to_inline) {
1046 if (!reversed) {
1047 frame_->EmitPush(r0);
1048 __ mov(r0, Operand(value));
1049 frame_->EmitPush(r0);
1050 GenericBinaryOperation(op, mode, int_value);
1051 } else {
1052 __ mov(ip, Operand(value));
1053 frame_->EmitPush(ip);
1054 frame_->EmitPush(r0);
1055 GenericBinaryOperation(op, mode, kUnknownIntValue);
1056 }
1057 }
1058
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001059 exit.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001060}
1061
1062
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001063void CodeGenerator::Comparison(Condition cc,
1064 Expression* left,
1065 Expression* right,
1066 bool strict) {
1067 if (left != NULL) LoadAndSpill(left);
1068 if (right != NULL) LoadAndSpill(right);
1069
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001070 VirtualFrame::SpilledScope spilled_scope;
mads.s.ager31e71382008-08-13 09:32:07 +00001071 // sp[0] : y
1072 // sp[1] : x
1073 // result : cc register
1074
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001075 // Strict only makes sense for equality comparisons.
1076 ASSERT(!strict || cc == eq);
1077
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001078 JumpTarget exit;
1079 JumpTarget smi;
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001080 // Implement '>' and '<=' by reversal to obtain ECMA-262 conversion order.
1081 if (cc == gt || cc == le) {
1082 cc = ReverseCondition(cc);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001083 frame_->EmitPop(r1);
1084 frame_->EmitPop(r0);
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001085 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001086 frame_->EmitPop(r0);
1087 frame_->EmitPop(r1);
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001088 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001089 __ orr(r2, r0, Operand(r1));
1090 __ tst(r2, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001091 smi.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001092
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001093 // Perform non-smi comparison by stub.
1094 // CompareStub takes arguments in r0 and r1, returns <0, >0 or 0 in r0.
1095 // We call with 0 args because there are 0 on the stack.
1096 CompareStub stub(cc, strict);
1097 frame_->CallStub(&stub, 0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001098 __ cmp(r0, Operand(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001099 exit.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001100
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001101 // Do smi comparisons by pointer comparison.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001102 smi.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001103 __ cmp(r1, Operand(r0));
1104
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001105 exit.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001106 cc_reg_ = cc;
1107}
1108
1109
mads.s.ager31e71382008-08-13 09:32:07 +00001110// Call the function on the stack with the given arguments.
ager@chromium.org7c537e22008-10-16 08:43:32 +00001111void CodeGenerator::CallWithArguments(ZoneList<Expression*>* args,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001112 CallFunctionFlags flags,
1113 int position) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001114 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001115 // Push the arguments ("left-to-right") on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001116 int arg_count = args->length();
1117 for (int i = 0; i < arg_count; i++) {
1118 LoadAndSpill(args->at(i));
mads.s.ager31e71382008-08-13 09:32:07 +00001119 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001120
kasper.lund7276f142008-07-30 08:49:36 +00001121 // Record the position for debugging purposes.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001122 CodeForSourcePosition(position);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001123
kasper.lund7276f142008-07-30 08:49:36 +00001124 // Use the shared code stub to call the function.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001125 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001126 CallFunctionStub call_function(arg_count, in_loop, flags);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001127 frame_->CallStub(&call_function, arg_count + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001128
1129 // Restore context and pop function from the stack.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001130 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001131 frame_->Drop(); // discard the TOS
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001132}
1133
1134
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001135void CodeGenerator::Branch(bool if_true, JumpTarget* target) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001136 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001137 ASSERT(has_cc());
1138 Condition cc = if_true ? cc_reg_ : NegateCondition(cc_reg_);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001139 target->Branch(cc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001140 cc_reg_ = al;
1141}
1142
1143
ager@chromium.org7c537e22008-10-16 08:43:32 +00001144void CodeGenerator::CheckStack() {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001145 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3811b432009-10-28 14:53:37 +00001146 Comment cmnt(masm_, "[ check stack");
1147 __ LoadRoot(ip, Heap::kStackLimitRootIndex);
1148 // Put the lr setup instruction in the delay slot. kInstrSize is added to
1149 // the implicit 8 byte offset that always applies to operations with pc and
1150 // gives a return address 12 bytes down.
1151 masm_->add(lr, pc, Operand(Assembler::kInstrSize));
1152 masm_->cmp(sp, Operand(ip));
1153 StackCheckStub stub;
1154 // Call the stub if lower.
1155 masm_->mov(pc,
1156 Operand(reinterpret_cast<intptr_t>(stub.GetCode().location()),
1157 RelocInfo::CODE_TARGET),
1158 LeaveCC,
1159 lo);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001160}
1161
1162
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001163void CodeGenerator::VisitStatements(ZoneList<Statement*>* statements) {
1164#ifdef DEBUG
1165 int original_height = frame_->height();
1166#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001167 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001168 for (int i = 0; frame_ != NULL && i < statements->length(); i++) {
1169 VisitAndSpill(statements->at(i));
1170 }
1171 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1172}
1173
1174
ager@chromium.org7c537e22008-10-16 08:43:32 +00001175void CodeGenerator::VisitBlock(Block* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001176#ifdef DEBUG
1177 int original_height = frame_->height();
1178#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001179 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001180 Comment cmnt(masm_, "[ Block");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001181 CodeForStatementPosition(node);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001182 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001183 VisitStatementsAndSpill(node->statements());
1184 if (node->break_target()->is_linked()) {
1185 node->break_target()->Bind();
1186 }
1187 node->break_target()->Unuse();
1188 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001189}
1190
1191
ager@chromium.org7c537e22008-10-16 08:43:32 +00001192void CodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001193 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3811b432009-10-28 14:53:37 +00001194 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00001195 __ mov(r0, Operand(pairs));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001196 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001197 __ mov(r0, Operand(Smi::FromInt(is_eval() ? 1 : 0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001198 frame_->EmitPush(r0);
1199 frame_->CallRuntime(Runtime::kDeclareGlobals, 3);
mads.s.ager31e71382008-08-13 09:32:07 +00001200 // The result is discarded.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001201}
1202
1203
ager@chromium.org7c537e22008-10-16 08:43:32 +00001204void CodeGenerator::VisitDeclaration(Declaration* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001205#ifdef DEBUG
1206 int original_height = frame_->height();
1207#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001208 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001209 Comment cmnt(masm_, "[ Declaration");
1210 Variable* var = node->proxy()->var();
1211 ASSERT(var != NULL); // must have been resolved
1212 Slot* slot = var->slot();
1213
1214 // If it was not possible to allocate the variable at compile time,
1215 // we need to "declare" it at runtime to make sure it actually
1216 // exists in the local context.
1217 if (slot != NULL && slot->type() == Slot::LOOKUP) {
1218 // Variables with a "LOOKUP" slot were introduced as non-locals
1219 // during variable resolution and must have mode DYNAMIC.
ager@chromium.org381abbb2009-02-25 13:23:22 +00001220 ASSERT(var->is_dynamic());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001221 // For now, just do a runtime call.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001222 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00001223 __ mov(r0, Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001224 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001225 // Declaration nodes are always declared in only two modes.
1226 ASSERT(node->mode() == Variable::VAR || node->mode() == Variable::CONST);
1227 PropertyAttributes attr = node->mode() == Variable::VAR ? NONE : READ_ONLY;
mads.s.ager31e71382008-08-13 09:32:07 +00001228 __ mov(r0, Operand(Smi::FromInt(attr)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001229 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001230 // Push initial value, if any.
1231 // Note: For variables we must not push an initial value (such as
1232 // 'undefined') because we may have a (legal) redeclaration and we
1233 // must not destroy the current value.
1234 if (node->mode() == Variable::CONST) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001235 __ LoadRoot(r0, Heap::kTheHoleValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001236 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001237 } else if (node->fun() != NULL) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001238 LoadAndSpill(node->fun());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001239 } else {
mads.s.ager31e71382008-08-13 09:32:07 +00001240 __ mov(r0, Operand(0)); // no initial value!
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001241 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001242 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001243 frame_->CallRuntime(Runtime::kDeclareContextSlot, 4);
ager@chromium.org7c537e22008-10-16 08:43:32 +00001244 // Ignore the return value (declarations are statements).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001245 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001246 return;
1247 }
1248
1249 ASSERT(!var->is_global());
1250
1251 // If we have a function or a constant, we need to initialize the variable.
1252 Expression* val = NULL;
1253 if (node->mode() == Variable::CONST) {
1254 val = new Literal(Factory::the_hole_value());
1255 } else {
1256 val = node->fun(); // NULL if we don't have a function
1257 }
1258
1259 if (val != NULL) {
iposva@chromium.org245aa852009-02-10 00:49:54 +00001260 {
1261 // Set initial value.
1262 Reference target(this, node->proxy());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001263 LoadAndSpill(val);
iposva@chromium.org245aa852009-02-10 00:49:54 +00001264 target.SetValue(NOT_CONST_INIT);
iposva@chromium.org245aa852009-02-10 00:49:54 +00001265 }
1266 // Get rid of the assigned value (declarations are statements).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001267 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001268 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001269 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001270}
1271
1272
ager@chromium.org7c537e22008-10-16 08:43:32 +00001273void CodeGenerator::VisitExpressionStatement(ExpressionStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001274#ifdef DEBUG
1275 int original_height = frame_->height();
1276#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001277 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001278 Comment cmnt(masm_, "[ ExpressionStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001279 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001280 Expression* expression = node->expression();
1281 expression->MarkAsStatement();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001282 LoadAndSpill(expression);
1283 frame_->Drop();
1284 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001285}
1286
1287
ager@chromium.org7c537e22008-10-16 08:43:32 +00001288void CodeGenerator::VisitEmptyStatement(EmptyStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001289#ifdef DEBUG
1290 int original_height = frame_->height();
1291#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001292 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001293 Comment cmnt(masm_, "// EmptyStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001294 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001295 // nothing to do
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001296 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001297}
1298
1299
ager@chromium.org7c537e22008-10-16 08:43:32 +00001300void CodeGenerator::VisitIfStatement(IfStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001301#ifdef DEBUG
1302 int original_height = frame_->height();
1303#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001304 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001305 Comment cmnt(masm_, "[ IfStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001306 // Generate different code depending on which parts of the if statement
1307 // are present or not.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001308 bool has_then_stm = node->HasThenStatement();
1309 bool has_else_stm = node->HasElseStatement();
1310
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001311 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001312
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001313 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001314 if (has_then_stm && has_else_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00001315 Comment cmnt(masm_, "[ IfThenElse");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001316 JumpTarget then;
1317 JumpTarget else_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001318 // if (cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001319 LoadConditionAndSpill(node->condition(), &then, &else_, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001320 if (frame_ != NULL) {
1321 Branch(false, &else_);
1322 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001323 // then
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001324 if (frame_ != NULL || then.is_linked()) {
1325 then.Bind();
1326 VisitAndSpill(node->then_statement());
1327 }
1328 if (frame_ != NULL) {
1329 exit.Jump();
1330 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001331 // else
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001332 if (else_.is_linked()) {
1333 else_.Bind();
1334 VisitAndSpill(node->else_statement());
1335 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001336
1337 } else if (has_then_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00001338 Comment cmnt(masm_, "[ IfThen");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001339 ASSERT(!has_else_stm);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001340 JumpTarget then;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001341 // if (cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001342 LoadConditionAndSpill(node->condition(), &then, &exit, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001343 if (frame_ != NULL) {
1344 Branch(false, &exit);
1345 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001346 // then
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001347 if (frame_ != NULL || then.is_linked()) {
1348 then.Bind();
1349 VisitAndSpill(node->then_statement());
1350 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001351
1352 } else if (has_else_stm) {
mads.s.ager31e71382008-08-13 09:32:07 +00001353 Comment cmnt(masm_, "[ IfElse");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001354 ASSERT(!has_then_stm);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001355 JumpTarget else_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001356 // if (!cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001357 LoadConditionAndSpill(node->condition(), &exit, &else_, true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001358 if (frame_ != NULL) {
1359 Branch(true, &exit);
1360 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001361 // else
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001362 if (frame_ != NULL || else_.is_linked()) {
1363 else_.Bind();
1364 VisitAndSpill(node->else_statement());
1365 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001366
1367 } else {
mads.s.ager31e71382008-08-13 09:32:07 +00001368 Comment cmnt(masm_, "[ If");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001369 ASSERT(!has_then_stm && !has_else_stm);
1370 // if (cond)
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001371 LoadConditionAndSpill(node->condition(), &exit, &exit, false);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001372 if (frame_ != NULL) {
1373 if (has_cc()) {
1374 cc_reg_ = al;
1375 } else {
1376 frame_->Drop();
1377 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001378 }
1379 }
1380
1381 // end
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001382 if (exit.is_linked()) {
1383 exit.Bind();
1384 }
1385 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001386}
1387
1388
ager@chromium.org7c537e22008-10-16 08:43:32 +00001389void CodeGenerator::VisitContinueStatement(ContinueStatement* node) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001390 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001391 Comment cmnt(masm_, "[ ContinueStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001392 CodeForStatementPosition(node);
1393 node->target()->continue_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001394}
1395
1396
ager@chromium.org7c537e22008-10-16 08:43:32 +00001397void CodeGenerator::VisitBreakStatement(BreakStatement* node) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001398 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001399 Comment cmnt(masm_, "[ BreakStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001400 CodeForStatementPosition(node);
1401 node->target()->break_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001402}
1403
1404
ager@chromium.org7c537e22008-10-16 08:43:32 +00001405void CodeGenerator::VisitReturnStatement(ReturnStatement* node) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001406 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001407 Comment cmnt(masm_, "[ ReturnStatement");
mads.s.ager31e71382008-08-13 09:32:07 +00001408
ager@chromium.org4af710e2009-09-15 12:20:11 +00001409 CodeForStatementPosition(node);
1410 LoadAndSpill(node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001411 if (function_return_is_shadowed_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001412 frame_->EmitPop(r0);
1413 function_return_.Jump();
1414 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001415 // Pop the result from the frame and prepare the frame for
1416 // returning thus making it easier to merge.
1417 frame_->EmitPop(r0);
1418 frame_->PrepareForReturn();
1419
1420 function_return_.Jump();
1421 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001422}
1423
1424
ager@chromium.org7c537e22008-10-16 08:43:32 +00001425void CodeGenerator::VisitWithEnterStatement(WithEnterStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001426#ifdef DEBUG
1427 int original_height = frame_->height();
1428#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001429 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001430 Comment cmnt(masm_, "[ WithEnterStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001431 CodeForStatementPosition(node);
1432 LoadAndSpill(node->expression());
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001433 if (node->is_catch_block()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001434 frame_->CallRuntime(Runtime::kPushCatchContext, 1);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001435 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001436 frame_->CallRuntime(Runtime::kPushContext, 1);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001437 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001438#ifdef DEBUG
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001439 JumpTarget verified_true;
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001440 __ cmp(r0, Operand(cp));
1441 verified_true.Branch(eq);
1442 __ stop("PushContext: r0 is expected to be the same as cp");
1443 verified_true.Bind();
1444#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001445 // Update context local.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001446 __ str(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001447 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001448}
1449
1450
ager@chromium.org7c537e22008-10-16 08:43:32 +00001451void CodeGenerator::VisitWithExitStatement(WithExitStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001452#ifdef DEBUG
1453 int original_height = frame_->height();
1454#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001455 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001456 Comment cmnt(masm_, "[ WithExitStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001457 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001458 // Pop context.
1459 __ ldr(cp, ContextOperand(cp, Context::PREVIOUS_INDEX));
1460 // Update context local.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001461 __ str(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001462 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001463}
1464
1465
ager@chromium.org7c537e22008-10-16 08:43:32 +00001466void CodeGenerator::VisitSwitchStatement(SwitchStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001467#ifdef DEBUG
1468 int original_height = frame_->height();
1469#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001470 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001471 Comment cmnt(masm_, "[ SwitchStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001472 CodeForStatementPosition(node);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001473 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001474
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001475 LoadAndSpill(node->tag());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00001476
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001477 JumpTarget next_test;
1478 JumpTarget fall_through;
1479 JumpTarget default_entry;
1480 JumpTarget default_exit(JumpTarget::BIDIRECTIONAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001481 ZoneList<CaseClause*>* cases = node->cases();
1482 int length = cases->length();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001483 CaseClause* default_clause = NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001484
1485 for (int i = 0; i < length; i++) {
1486 CaseClause* clause = cases->at(i);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001487 if (clause->is_default()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001488 // Remember the default clause and compile it at the end.
1489 default_clause = clause;
1490 continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001491 }
1492
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001493 Comment cmnt(masm_, "[ Case clause");
1494 // Compile the test.
1495 next_test.Bind();
1496 next_test.Unuse();
1497 // Duplicate TOS.
1498 __ ldr(r0, frame_->Top());
1499 frame_->EmitPush(r0);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001500 Comparison(eq, NULL, clause->label(), true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001501 Branch(false, &next_test);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001502
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001503 // Before entering the body from the test, remove the switch value from
1504 // the stack.
1505 frame_->Drop();
1506
1507 // Label the body so that fall through is enabled.
1508 if (i > 0 && cases->at(i - 1)->is_default()) {
1509 default_exit.Bind();
1510 } else {
1511 fall_through.Bind();
1512 fall_through.Unuse();
1513 }
1514 VisitStatementsAndSpill(clause->statements());
1515
1516 // If control flow can fall through from the body, jump to the next body
1517 // or the end of the statement.
1518 if (frame_ != NULL) {
1519 if (i < length - 1 && cases->at(i + 1)->is_default()) {
1520 default_entry.Jump();
1521 } else {
1522 fall_through.Jump();
1523 }
1524 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001525 }
1526
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001527 // The final "test" removes the switch value.
1528 next_test.Bind();
1529 frame_->Drop();
1530
1531 // If there is a default clause, compile it.
1532 if (default_clause != NULL) {
1533 Comment cmnt(masm_, "[ Default clause");
1534 default_entry.Bind();
1535 VisitStatementsAndSpill(default_clause->statements());
1536 // If control flow can fall out of the default and there is a case after
1537 // it, jup to that case's body.
1538 if (frame_ != NULL && default_exit.is_bound()) {
1539 default_exit.Jump();
1540 }
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001541 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001542
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001543 if (fall_through.is_linked()) {
1544 fall_through.Bind();
1545 }
1546
1547 if (node->break_target()->is_linked()) {
1548 node->break_target()->Bind();
1549 }
1550 node->break_target()->Unuse();
1551 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001552}
1553
1554
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001555void CodeGenerator::VisitDoWhileStatement(DoWhileStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001556#ifdef DEBUG
1557 int original_height = frame_->height();
1558#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001559 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001560 Comment cmnt(masm_, "[ DoWhileStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001561 CodeForStatementPosition(node);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001562 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001563 JumpTarget body(JumpTarget::BIDIRECTIONAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001564
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001565 // Label the top of the loop for the backward CFG edge. If the test
1566 // is always true we can use the continue target, and if the test is
1567 // always false there is no need.
1568 ConditionAnalysis info = AnalyzeCondition(node->cond());
1569 switch (info) {
1570 case ALWAYS_TRUE:
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001571 node->continue_target()->set_direction(JumpTarget::BIDIRECTIONAL);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001572 node->continue_target()->Bind();
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001573 break;
1574 case ALWAYS_FALSE:
1575 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
1576 break;
1577 case DONT_KNOW:
1578 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
1579 body.Bind();
1580 break;
1581 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001582
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001583 CheckStack(); // TODO(1222600): ignore if body contains calls.
1584 VisitAndSpill(node->body());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001585
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001586 // Compile the test.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001587 switch (info) {
1588 case ALWAYS_TRUE:
1589 // If control can fall off the end of the body, jump back to the
1590 // top.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001591 if (has_valid_frame()) {
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001592 node->continue_target()->Jump();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001593 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001594 break;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001595 case ALWAYS_FALSE:
1596 // If we have a continue in the body, we only have to bind its
1597 // jump target.
1598 if (node->continue_target()->is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001599 node->continue_target()->Bind();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001600 }
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001601 break;
1602 case DONT_KNOW:
1603 // We have to compile the test expression if it can be reached by
1604 // control flow falling out of the body or via continue.
1605 if (node->continue_target()->is_linked()) {
1606 node->continue_target()->Bind();
1607 }
1608 if (has_valid_frame()) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001609 Comment cmnt(masm_, "[ DoWhileCondition");
1610 CodeForDoWhileConditionPosition(node);
1611 LoadConditionAndSpill(node->cond(), &body, node->break_target(), true);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001612 if (has_valid_frame()) {
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001613 // A invalid frame here indicates that control did not
1614 // fall out of the test expression.
1615 Branch(true, &body);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001616 }
1617 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001618 break;
1619 }
1620
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001621 if (node->break_target()->is_linked()) {
1622 node->break_target()->Bind();
1623 }
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001624 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1625}
1626
1627
1628void CodeGenerator::VisitWhileStatement(WhileStatement* node) {
1629#ifdef DEBUG
1630 int original_height = frame_->height();
1631#endif
1632 VirtualFrame::SpilledScope spilled_scope;
1633 Comment cmnt(masm_, "[ WhileStatement");
1634 CodeForStatementPosition(node);
1635
1636 // If the test is never true and has no side effects there is no need
1637 // to compile the test or body.
1638 ConditionAnalysis info = AnalyzeCondition(node->cond());
1639 if (info == ALWAYS_FALSE) return;
1640
1641 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
1642
1643 // Label the top of the loop with the continue target for the backward
1644 // CFG edge.
1645 node->continue_target()->set_direction(JumpTarget::BIDIRECTIONAL);
1646 node->continue_target()->Bind();
1647
1648 if (info == DONT_KNOW) {
1649 JumpTarget body;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001650 LoadConditionAndSpill(node->cond(), &body, node->break_target(), true);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001651 if (has_valid_frame()) {
1652 // A NULL frame indicates that control did not fall out of the
1653 // test expression.
1654 Branch(false, node->break_target());
1655 }
1656 if (has_valid_frame() || body.is_linked()) {
1657 body.Bind();
1658 }
1659 }
1660
1661 if (has_valid_frame()) {
1662 CheckStack(); // TODO(1222600): ignore if body contains calls.
1663 VisitAndSpill(node->body());
1664
1665 // If control flow can fall out of the body, jump back to the top.
1666 if (has_valid_frame()) {
1667 node->continue_target()->Jump();
1668 }
1669 }
1670 if (node->break_target()->is_linked()) {
1671 node->break_target()->Bind();
1672 }
1673 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1674}
1675
1676
1677void CodeGenerator::VisitForStatement(ForStatement* node) {
1678#ifdef DEBUG
1679 int original_height = frame_->height();
1680#endif
1681 VirtualFrame::SpilledScope spilled_scope;
1682 Comment cmnt(masm_, "[ ForStatement");
1683 CodeForStatementPosition(node);
1684 if (node->init() != NULL) {
1685 VisitAndSpill(node->init());
1686 }
1687
1688 // If the test is never true there is no need to compile the test or
1689 // body.
1690 ConditionAnalysis info = AnalyzeCondition(node->cond());
1691 if (info == ALWAYS_FALSE) return;
1692
1693 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
1694
1695 // If there is no update statement, label the top of the loop with the
1696 // continue target, otherwise with the loop target.
1697 JumpTarget loop(JumpTarget::BIDIRECTIONAL);
1698 if (node->next() == NULL) {
1699 node->continue_target()->set_direction(JumpTarget::BIDIRECTIONAL);
1700 node->continue_target()->Bind();
1701 } else {
1702 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
1703 loop.Bind();
1704 }
1705
1706 // If the test is always true, there is no need to compile it.
1707 if (info == DONT_KNOW) {
1708 JumpTarget body;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001709 LoadConditionAndSpill(node->cond(), &body, node->break_target(), true);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001710 if (has_valid_frame()) {
1711 Branch(false, node->break_target());
1712 }
1713 if (has_valid_frame() || body.is_linked()) {
1714 body.Bind();
1715 }
1716 }
1717
1718 if (has_valid_frame()) {
1719 CheckStack(); // TODO(1222600): ignore if body contains calls.
1720 VisitAndSpill(node->body());
1721
1722 if (node->next() == NULL) {
1723 // If there is no update statement and control flow can fall out
1724 // of the loop, jump directly to the continue label.
1725 if (has_valid_frame()) {
1726 node->continue_target()->Jump();
1727 }
1728 } else {
1729 // If there is an update statement and control flow can reach it
1730 // via falling out of the body of the loop or continuing, we
1731 // compile the update statement.
1732 if (node->continue_target()->is_linked()) {
1733 node->continue_target()->Bind();
1734 }
1735 if (has_valid_frame()) {
1736 // Record source position of the statement as this code which is
1737 // after the code for the body actually belongs to the loop
1738 // statement and not the body.
1739 CodeForStatementPosition(node);
1740 VisitAndSpill(node->next());
1741 loop.Jump();
1742 }
1743 }
1744 }
1745 if (node->break_target()->is_linked()) {
1746 node->break_target()->Bind();
1747 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001748 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001749}
1750
1751
ager@chromium.org7c537e22008-10-16 08:43:32 +00001752void CodeGenerator::VisitForInStatement(ForInStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001753#ifdef DEBUG
1754 int original_height = frame_->height();
1755#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001756 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001757 Comment cmnt(masm_, "[ ForInStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001758 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001759
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001760 JumpTarget primitive;
1761 JumpTarget jsobject;
1762 JumpTarget fixed_array;
1763 JumpTarget entry(JumpTarget::BIDIRECTIONAL);
1764 JumpTarget end_del_check;
1765 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001766
1767 // Get the object to enumerate over (converted to JSObject).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001768 LoadAndSpill(node->enumerable());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001769
1770 // Both SpiderMonkey and kjs ignore null and undefined in contrast
1771 // to the specification. 12.6.4 mandates a call to ToObject.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001772 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001773 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
1774 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001775 exit.Branch(eq);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001776 __ LoadRoot(ip, Heap::kNullValueRootIndex);
1777 __ cmp(r0, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001778 exit.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001779
1780 // Stack layout in body:
1781 // [iteration counter (Smi)]
1782 // [length of array]
1783 // [FixedArray]
1784 // [Map or 0]
1785 // [Object]
1786
1787 // Check if enumerable is already a JSObject
1788 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001789 primitive.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00001790 __ CompareObjectType(r0, r1, r1, FIRST_JS_OBJECT_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001791 jsobject.Branch(hs);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001792
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001793 primitive.Bind();
1794 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001795 frame_->InvokeBuiltin(Builtins::TO_OBJECT, CALL_JS, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001796
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001797 jsobject.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001798 // Get the set of properties (as a FixedArray or Map).
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001799 // r0: value to be iterated over
1800 frame_->EmitPush(r0); // Push the object being iterated over.
1801
1802 // Check cache validity in generated code. This is a fast case for
1803 // the JSObject::IsSimpleEnum cache validity checks. If we cannot
1804 // guarantee cache validity, call the runtime system to check cache
1805 // validity or get the property names in a fixed array.
1806 JumpTarget call_runtime;
1807 JumpTarget loop(JumpTarget::BIDIRECTIONAL);
1808 JumpTarget check_prototype;
1809 JumpTarget use_cache;
1810 __ mov(r1, Operand(r0));
1811 loop.Bind();
1812 // Check that there are no elements.
1813 __ ldr(r2, FieldMemOperand(r1, JSObject::kElementsOffset));
1814 __ LoadRoot(r4, Heap::kEmptyFixedArrayRootIndex);
1815 __ cmp(r2, r4);
1816 call_runtime.Branch(ne);
1817 // Check that instance descriptors are not empty so that we can
1818 // check for an enum cache. Leave the map in r3 for the subsequent
1819 // prototype load.
1820 __ ldr(r3, FieldMemOperand(r1, HeapObject::kMapOffset));
1821 __ ldr(r2, FieldMemOperand(r3, Map::kInstanceDescriptorsOffset));
1822 __ LoadRoot(ip, Heap::kEmptyDescriptorArrayRootIndex);
1823 __ cmp(r2, ip);
1824 call_runtime.Branch(eq);
1825 // Check that there in an enum cache in the non-empty instance
1826 // descriptors. This is the case if the next enumeration index
1827 // field does not contain a smi.
1828 __ ldr(r2, FieldMemOperand(r2, DescriptorArray::kEnumerationIndexOffset));
1829 __ tst(r2, Operand(kSmiTagMask));
1830 call_runtime.Branch(eq);
1831 // For all objects but the receiver, check that the cache is empty.
1832 // r4: empty fixed array root.
1833 __ cmp(r1, r0);
1834 check_prototype.Branch(eq);
1835 __ ldr(r2, FieldMemOperand(r2, DescriptorArray::kEnumCacheBridgeCacheOffset));
1836 __ cmp(r2, r4);
1837 call_runtime.Branch(ne);
1838 check_prototype.Bind();
1839 // Load the prototype from the map and loop if non-null.
1840 __ ldr(r1, FieldMemOperand(r3, Map::kPrototypeOffset));
1841 __ LoadRoot(ip, Heap::kNullValueRootIndex);
1842 __ cmp(r1, ip);
1843 loop.Branch(ne);
1844 // The enum cache is valid. Load the map of the object being
1845 // iterated over and use the cache for the iteration.
1846 __ ldr(r0, FieldMemOperand(r0, HeapObject::kMapOffset));
1847 use_cache.Jump();
1848
1849 call_runtime.Bind();
1850 // Call the runtime to get the property names for the object.
1851 frame_->EmitPush(r0); // push the object (slot 4) for the runtime call
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001852 frame_->CallRuntime(Runtime::kGetPropertyNamesFast, 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001853
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001854 // If we got a map from the runtime call, we can do a fast
1855 // modification check. Otherwise, we got a fixed array, and we have
1856 // to do a slow check.
1857 // r0: map or fixed array (result from call to
1858 // Runtime::kGetPropertyNamesFast)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001859 __ mov(r2, Operand(r0));
1860 __ ldr(r1, FieldMemOperand(r2, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001861 __ LoadRoot(ip, Heap::kMetaMapRootIndex);
1862 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001863 fixed_array.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001864
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001865 use_cache.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001866 // Get enum cache
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001867 // r0: map (either the result from a call to
1868 // Runtime::kGetPropertyNamesFast or has been fetched directly from
1869 // the object)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001870 __ mov(r1, Operand(r0));
1871 __ ldr(r1, FieldMemOperand(r1, Map::kInstanceDescriptorsOffset));
1872 __ ldr(r1, FieldMemOperand(r1, DescriptorArray::kEnumerationIndexOffset));
1873 __ ldr(r2,
1874 FieldMemOperand(r1, DescriptorArray::kEnumCacheBridgeCacheOffset));
1875
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001876 frame_->EmitPush(r0); // map
1877 frame_->EmitPush(r2); // enum cache bridge cache
mads.s.ager31e71382008-08-13 09:32:07 +00001878 __ ldr(r0, FieldMemOperand(r2, FixedArray::kLengthOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001879 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001880 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001881 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001882 frame_->EmitPush(r0);
1883 entry.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001884
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001885 fixed_array.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001886 __ mov(r1, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001887 frame_->EmitPush(r1); // insert 0 in place of Map
1888 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001889
1890 // Push the length of the array and the initial index onto the stack.
mads.s.ager31e71382008-08-13 09:32:07 +00001891 __ ldr(r0, FieldMemOperand(r0, FixedArray::kLengthOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001892 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001893 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00001894 __ mov(r0, Operand(Smi::FromInt(0))); // init index
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001895 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001896
1897 // Condition.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001898 entry.Bind();
mads.s.ager31e71382008-08-13 09:32:07 +00001899 // sp[0] : index
1900 // sp[1] : array/enum cache length
1901 // sp[2] : array or enum cache
1902 // sp[3] : 0 or map
1903 // sp[4] : enumerable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001904 // Grab the current frame's height for the break and continue
1905 // targets only after all the state is pushed on the frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001906 node->break_target()->set_direction(JumpTarget::FORWARD_ONLY);
1907 node->continue_target()->set_direction(JumpTarget::FORWARD_ONLY);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001908
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001909 __ ldr(r0, frame_->ElementAt(0)); // load the current count
1910 __ ldr(r1, frame_->ElementAt(1)); // load the length
1911 __ cmp(r0, Operand(r1)); // compare to the array length
1912 node->break_target()->Branch(hs);
1913
1914 __ ldr(r0, frame_->ElementAt(0));
mads.s.ager31e71382008-08-13 09:32:07 +00001915
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001916 // Get the i'th entry of the array.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001917 __ ldr(r2, frame_->ElementAt(2));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001918 __ add(r2, r2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
1919 __ ldr(r3, MemOperand(r2, r0, LSL, kPointerSizeLog2 - kSmiTagSize));
1920
1921 // Get Map or 0.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001922 __ ldr(r2, frame_->ElementAt(3));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001923 // Check if this (still) matches the map of the enumerable.
1924 // If not, we have to filter the key.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001925 __ ldr(r1, frame_->ElementAt(4));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001926 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
1927 __ cmp(r1, Operand(r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001928 end_del_check.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001929
1930 // Convert the entry to a string (or null if it isn't a property anymore).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001931 __ ldr(r0, frame_->ElementAt(4)); // push enumerable
1932 frame_->EmitPush(r0);
1933 frame_->EmitPush(r3); // push entry
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001934 frame_->InvokeBuiltin(Builtins::FILTER_KEY, CALL_JS, 2);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001935 __ mov(r3, Operand(r0));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001936
1937 // If the property has been removed while iterating, we just skip it.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001938 __ LoadRoot(ip, Heap::kNullValueRootIndex);
1939 __ cmp(r3, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001940 node->continue_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001941
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001942 end_del_check.Bind();
1943 // Store the entry in the 'each' expression and take another spin in the
1944 // loop. r3: i'th entry of the enum cache (or string there of)
1945 frame_->EmitPush(r3); // push entry
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001946 { Reference each(this, node->each());
1947 if (!each.is_illegal()) {
mads.s.ager31e71382008-08-13 09:32:07 +00001948 if (each.size() > 0) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001949 __ ldr(r0, frame_->ElementAt(each.size()));
1950 frame_->EmitPush(r0);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001951 each.SetValue(NOT_CONST_INIT);
1952 frame_->Drop(2);
1953 } else {
1954 // If the reference was to a slot we rely on the convenient property
1955 // that it doesn't matter whether a value (eg, r3 pushed above) is
1956 // right on top of or right underneath a zero-sized reference.
1957 each.SetValue(NOT_CONST_INIT);
1958 frame_->Drop();
mads.s.ager31e71382008-08-13 09:32:07 +00001959 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001960 }
1961 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001962 // Body.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001963 CheckStack(); // TODO(1222600): ignore if body contains calls.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001964 VisitAndSpill(node->body());
1965
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001966 // Next. Reestablish a spilled frame in case we are coming here via
1967 // a continue in the body.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001968 node->continue_target()->Bind();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001969 frame_->SpillAll();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001970 frame_->EmitPop(r0);
1971 __ add(r0, r0, Operand(Smi::FromInt(1)));
1972 frame_->EmitPush(r0);
1973 entry.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001974
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001975 // Cleanup. No need to spill because VirtualFrame::Drop is safe for
1976 // any frame.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001977 node->break_target()->Bind();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00001978 frame_->Drop(5);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001979
1980 // Exit.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001981 exit.Bind();
1982 node->continue_target()->Unuse();
1983 node->break_target()->Unuse();
1984 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001985}
1986
1987
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001988void CodeGenerator::VisitTryCatchStatement(TryCatchStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001989#ifdef DEBUG
1990 int original_height = frame_->height();
1991#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001992 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001993 Comment cmnt(masm_, "[ TryCatchStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001994 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001995
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001996 JumpTarget try_block;
1997 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001998
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001999 try_block.Call();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002000 // --- Catch block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002001 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002002
2003 // Store the caught exception in the catch variable.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002004 Variable* catch_var = node->catch_var()->var();
2005 ASSERT(catch_var != NULL && catch_var->slot() != NULL);
2006 StoreToSlot(catch_var->slot(), NOT_CONST_INIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002007
2008 // Remove the exception from the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002009 frame_->Drop();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002010
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002011 VisitStatementsAndSpill(node->catch_block()->statements());
2012 if (frame_ != NULL) {
2013 exit.Jump();
2014 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002015
2016
2017 // --- Try block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002018 try_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002019
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002020 frame_->PushTryHandler(TRY_CATCH_HANDLER);
2021 int handler_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002022
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002023 // Shadow the labels for all escapes from the try block, including
2024 // returns. During shadowing, the original label is hidden as the
2025 // LabelShadow and operations on the original actually affect the
2026 // shadowing label.
2027 //
2028 // We should probably try to unify the escaping labels and the return
2029 // label.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002030 int nof_escapes = node->escaping_targets()->length();
2031 List<ShadowTarget*> shadows(1 + nof_escapes);
2032
2033 // Add the shadow target for the function return.
2034 static const int kReturnShadowIndex = 0;
2035 shadows.Add(new ShadowTarget(&function_return_));
2036 bool function_return_was_shadowed = function_return_is_shadowed_;
2037 function_return_is_shadowed_ = true;
2038 ASSERT(shadows[kReturnShadowIndex]->other_target() == &function_return_);
2039
2040 // Add the remaining shadow targets.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002041 for (int i = 0; i < nof_escapes; i++) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002042 shadows.Add(new ShadowTarget(node->escaping_targets()->at(i)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002043 }
2044
2045 // Generate code for the statements in the try block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002046 VisitStatementsAndSpill(node->try_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002047
2048 // Stop the introduced shadowing and count the number of required unlinks.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002049 // After shadowing stops, the original labels are unshadowed and the
2050 // LabelShadows represent the formerly shadowing labels.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002051 bool has_unlinks = false;
2052 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002053 shadows[i]->StopShadowing();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002054 has_unlinks = has_unlinks || shadows[i]->is_linked();
2055 }
2056 function_return_is_shadowed_ = function_return_was_shadowed;
2057
2058 // Get an external reference to the handler address.
2059 ExternalReference handler_address(Top::k_handler_address);
2060
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002061 // If we can fall off the end of the try block, unlink from try chain.
2062 if (has_valid_frame()) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002063 // The next handler address is on top of the frame. Unlink from
2064 // the handler list and drop the rest of this handler from the
2065 // frame.
2066 ASSERT(StackHandlerConstants::kNextOffset == 0);
2067 frame_->EmitPop(r1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002068 __ mov(r3, Operand(handler_address));
2069 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002070 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002071 if (has_unlinks) {
2072 exit.Jump();
2073 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002074 }
2075
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002076 // Generate unlink code for the (formerly) shadowing labels that have been
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002077 // jumped to. Deallocate each shadow target.
2078 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002079 if (shadows[i]->is_linked()) {
mads.s.ager31e71382008-08-13 09:32:07 +00002080 // Unlink from try chain;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002081 shadows[i]->Bind();
2082 // Because we can be jumping here (to spilled code) from unspilled
2083 // code, we need to reestablish a spilled frame at this block.
2084 frame_->SpillAll();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002085
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002086 // Reload sp from the top handler, because some statements that we
2087 // break from (eg, for...in) may have left stuff on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002088 __ mov(r3, Operand(handler_address));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002089 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002090 frame_->Forget(frame_->height() - handler_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002091
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002092 ASSERT(StackHandlerConstants::kNextOffset == 0);
2093 frame_->EmitPop(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002094 __ str(r1, MemOperand(r3));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002095 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002096
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002097 if (!function_return_is_shadowed_ && i == kReturnShadowIndex) {
2098 frame_->PrepareForReturn();
2099 }
2100 shadows[i]->other_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002101 }
2102 }
2103
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002104 exit.Bind();
2105 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002106}
2107
2108
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002109void CodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002110#ifdef DEBUG
2111 int original_height = frame_->height();
2112#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002113 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002114 Comment cmnt(masm_, "[ TryFinallyStatement");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002115 CodeForStatementPosition(node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002116
2117 // State: Used to keep track of reason for entering the finally
2118 // block. Should probably be extended to hold information for
2119 // break/continue from within the try block.
2120 enum { FALLING, THROWING, JUMPING };
2121
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002122 JumpTarget try_block;
2123 JumpTarget finally_block;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002124
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002125 try_block.Call();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002126
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002127 frame_->EmitPush(r0); // save exception object on the stack
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002128 // In case of thrown exceptions, this is where we continue.
2129 __ mov(r2, Operand(Smi::FromInt(THROWING)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002130 finally_block.Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002131
2132 // --- Try block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002133 try_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002134
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002135 frame_->PushTryHandler(TRY_FINALLY_HANDLER);
2136 int handler_height = frame_->height();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002137
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002138 // Shadow the labels for all escapes from the try block, including
2139 // returns. Shadowing hides the original label as the LabelShadow and
2140 // operations on the original actually affect the shadowing label.
2141 //
2142 // We should probably try to unify the escaping labels and the return
2143 // label.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002144 int nof_escapes = node->escaping_targets()->length();
2145 List<ShadowTarget*> shadows(1 + nof_escapes);
2146
2147 // Add the shadow target for the function return.
2148 static const int kReturnShadowIndex = 0;
2149 shadows.Add(new ShadowTarget(&function_return_));
2150 bool function_return_was_shadowed = function_return_is_shadowed_;
2151 function_return_is_shadowed_ = true;
2152 ASSERT(shadows[kReturnShadowIndex]->other_target() == &function_return_);
2153
2154 // Add the remaining shadow targets.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002155 for (int i = 0; i < nof_escapes; i++) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002156 shadows.Add(new ShadowTarget(node->escaping_targets()->at(i)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002157 }
2158
2159 // Generate code for the statements in the try block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002160 VisitStatementsAndSpill(node->try_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002161
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002162 // Stop the introduced shadowing and count the number of required unlinks.
2163 // After shadowing stops, the original labels are unshadowed and the
2164 // LabelShadows represent the formerly shadowing labels.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002165 int nof_unlinks = 0;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002166 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002167 shadows[i]->StopShadowing();
2168 if (shadows[i]->is_linked()) nof_unlinks++;
2169 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002170 function_return_is_shadowed_ = function_return_was_shadowed;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002171
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002172 // Get an external reference to the handler address.
2173 ExternalReference handler_address(Top::k_handler_address);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002174
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002175 // If we can fall off the end of the try block, unlink from the try
2176 // chain and set the state on the frame to FALLING.
2177 if (has_valid_frame()) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002178 // The next handler address is on top of the frame.
2179 ASSERT(StackHandlerConstants::kNextOffset == 0);
2180 frame_->EmitPop(r1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002181 __ mov(r3, Operand(handler_address));
2182 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002183 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002184
2185 // Fake a top of stack value (unneeded when FALLING) and set the
2186 // state in r2, then jump around the unlink blocks if any.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002187 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002188 frame_->EmitPush(r0);
2189 __ mov(r2, Operand(Smi::FromInt(FALLING)));
2190 if (nof_unlinks > 0) {
2191 finally_block.Jump();
2192 }
2193 }
2194
2195 // Generate code to unlink and set the state for the (formerly)
2196 // shadowing targets that have been jumped to.
2197 for (int i = 0; i < shadows.length(); i++) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002198 if (shadows[i]->is_linked()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002199 // If we have come from the shadowed return, the return value is
2200 // in (a non-refcounted reference to) r0. We must preserve it
2201 // until it is pushed.
2202 //
2203 // Because we can be jumping here (to spilled code) from
2204 // unspilled code, we need to reestablish a spilled frame at
2205 // this block.
2206 shadows[i]->Bind();
2207 frame_->SpillAll();
2208
2209 // Reload sp from the top handler, because some statements that
2210 // we break from (eg, for...in) may have left stuff on the
2211 // stack.
2212 __ mov(r3, Operand(handler_address));
2213 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002214 frame_->Forget(frame_->height() - handler_height);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002215
2216 // Unlink this handler and drop it from the frame. The next
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002217 // handler address is currently on top of the frame.
2218 ASSERT(StackHandlerConstants::kNextOffset == 0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002219 frame_->EmitPop(r1);
2220 __ str(r1, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002221 frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002222
2223 if (i == kReturnShadowIndex) {
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002224 // If this label shadowed the function return, materialize the
2225 // return value on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002226 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002227 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002228 // Fake TOS for targets that shadowed breaks and continues.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002229 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002230 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002231 }
2232 __ mov(r2, Operand(Smi::FromInt(JUMPING + i)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002233 if (--nof_unlinks > 0) {
2234 // If this is not the last unlink block, jump around the next.
2235 finally_block.Jump();
2236 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002237 }
2238 }
2239
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002240 // --- Finally block ---
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002241 finally_block.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002242
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002243 // Push the state on the stack.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002244 frame_->EmitPush(r2);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002245
2246 // We keep two elements on the stack - the (possibly faked) result
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002247 // and the state - while evaluating the finally block.
2248 //
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002249 // Generate code for the statements in the finally block.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002250 VisitStatementsAndSpill(node->finally_block()->statements());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002251
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002252 if (has_valid_frame()) {
2253 // Restore state and return value or faked TOS.
2254 frame_->EmitPop(r2);
2255 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002256 }
2257
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002258 // Generate code to jump to the right destination for all used
2259 // formerly shadowing targets. Deallocate each shadow target.
2260 for (int i = 0; i < shadows.length(); i++) {
2261 if (has_valid_frame() && shadows[i]->is_bound()) {
2262 JumpTarget* original = shadows[i]->other_target();
2263 __ cmp(r2, Operand(Smi::FromInt(JUMPING + i)));
2264 if (!function_return_is_shadowed_ && i == kReturnShadowIndex) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002265 JumpTarget skip;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002266 skip.Branch(ne);
2267 frame_->PrepareForReturn();
2268 original->Jump();
2269 skip.Bind();
2270 } else {
2271 original->Branch(eq);
2272 }
2273 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002274 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002275
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002276 if (has_valid_frame()) {
2277 // Check if we need to rethrow the exception.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002278 JumpTarget exit;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002279 __ cmp(r2, Operand(Smi::FromInt(THROWING)));
2280 exit.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002281
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002282 // Rethrow exception.
2283 frame_->EmitPush(r0);
2284 frame_->CallRuntime(Runtime::kReThrow, 1);
2285
2286 // Done.
2287 exit.Bind();
2288 }
2289 ASSERT(!has_valid_frame() || frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002290}
2291
2292
ager@chromium.org7c537e22008-10-16 08:43:32 +00002293void CodeGenerator::VisitDebuggerStatement(DebuggerStatement* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002294#ifdef DEBUG
2295 int original_height = frame_->height();
2296#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002297 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002298 Comment cmnt(masm_, "[ DebuggerStatament");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002299 CodeForStatementPosition(node);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002300#ifdef ENABLE_DEBUGGER_SUPPORT
ager@chromium.org5c838252010-02-19 08:53:10 +00002301 frame_->DebugBreak();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002302#endif
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00002303 // Ignore the return value.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002304 ASSERT(frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002305}
2306
2307
ager@chromium.org7c537e22008-10-16 08:43:32 +00002308void CodeGenerator::InstantiateBoilerplate(Handle<JSFunction> boilerplate) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002309 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002310 ASSERT(boilerplate->IsBoilerplate());
2311
ager@chromium.org3811b432009-10-28 14:53:37 +00002312 __ mov(r0, Operand(boilerplate));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002313 // Use the fast case closure allocation code that allocates in new
2314 // space for nested functions that don't need literals cloning.
2315 if (scope()->is_function_scope() && boilerplate->NumberOfLiterals() == 0) {
2316 FastNewClosureStub stub;
2317 frame_->EmitPush(r0);
2318 frame_->CallStub(&stub, 1);
2319 frame_->EmitPush(r0);
2320 } else {
2321 // Create a new closure.
2322 frame_->EmitPush(cp);
2323 frame_->EmitPush(r0);
2324 frame_->CallRuntime(Runtime::kNewClosure, 2);
2325 frame_->EmitPush(r0);
2326 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002327}
2328
2329
ager@chromium.org7c537e22008-10-16 08:43:32 +00002330void CodeGenerator::VisitFunctionLiteral(FunctionLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002331#ifdef DEBUG
2332 int original_height = frame_->height();
2333#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002334 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002335 Comment cmnt(masm_, "[ FunctionLiteral");
2336
2337 // Build the function boilerplate and instantiate it.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002338 Handle<JSFunction> boilerplate =
ager@chromium.org5c838252010-02-19 08:53:10 +00002339 Compiler::BuildBoilerplate(node, script(), this);
kasper.lund212ac232008-07-16 07:07:30 +00002340 // Check for stack-overflow exception.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002341 if (HasStackOverflow()) {
2342 ASSERT(frame_->height() == original_height);
2343 return;
2344 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002345 InstantiateBoilerplate(boilerplate);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002346 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002347}
2348
2349
ager@chromium.org7c537e22008-10-16 08:43:32 +00002350void CodeGenerator::VisitFunctionBoilerplateLiteral(
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002351 FunctionBoilerplateLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002352#ifdef DEBUG
2353 int original_height = frame_->height();
2354#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002355 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002356 Comment cmnt(masm_, "[ FunctionBoilerplateLiteral");
2357 InstantiateBoilerplate(node->boilerplate());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002358 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002359}
2360
2361
ager@chromium.org7c537e22008-10-16 08:43:32 +00002362void CodeGenerator::VisitConditional(Conditional* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002363#ifdef DEBUG
2364 int original_height = frame_->height();
2365#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002366 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002367 Comment cmnt(masm_, "[ Conditional");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002368 JumpTarget then;
2369 JumpTarget else_;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002370 LoadConditionAndSpill(node->condition(), &then, &else_, true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002371 if (has_valid_frame()) {
2372 Branch(false, &else_);
2373 }
2374 if (has_valid_frame() || then.is_linked()) {
2375 then.Bind();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002376 LoadAndSpill(node->then_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002377 }
2378 if (else_.is_linked()) {
2379 JumpTarget exit;
2380 if (has_valid_frame()) exit.Jump();
2381 else_.Bind();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002382 LoadAndSpill(node->else_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002383 if (exit.is_linked()) exit.Bind();
2384 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002385 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002386}
2387
2388
ager@chromium.org7c537e22008-10-16 08:43:32 +00002389void CodeGenerator::LoadFromSlot(Slot* slot, TypeofState typeof_state) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002390 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002391 if (slot->type() == Slot::LOOKUP) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00002392 ASSERT(slot->var()->is_dynamic());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002393
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002394 JumpTarget slow;
2395 JumpTarget done;
ager@chromium.org381abbb2009-02-25 13:23:22 +00002396
2397 // Generate fast-case code for variables that might be shadowed by
2398 // eval-introduced variables. Eval is used a lot without
2399 // introducing variables. In those cases, we do not want to
2400 // perform a runtime call for all variables in the scope
2401 // containing the eval.
2402 if (slot->var()->mode() == Variable::DYNAMIC_GLOBAL) {
2403 LoadFromGlobalSlotCheckExtensions(slot, typeof_state, r1, r2, &slow);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002404 // If there was no control flow to slow, we can exit early.
2405 if (!slow.is_linked()) {
2406 frame_->EmitPush(r0);
2407 return;
2408 }
2409
2410 done.Jump();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002411
2412 } else if (slot->var()->mode() == Variable::DYNAMIC_LOCAL) {
2413 Slot* potential_slot = slot->var()->local_if_not_shadowed()->slot();
2414 // Only generate the fast case for locals that rewrite to slots.
2415 // This rules out argument loads.
2416 if (potential_slot != NULL) {
2417 __ ldr(r0,
2418 ContextSlotOperandCheckExtensions(potential_slot,
2419 r1,
2420 r2,
2421 &slow));
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002422 if (potential_slot->var()->mode() == Variable::CONST) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002423 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2424 __ cmp(r0, ip);
2425 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002426 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002427 // There is always control flow to slow from
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002428 // ContextSlotOperandCheckExtensions so we have to jump around
2429 // it.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002430 done.Jump();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002431 }
2432 }
2433
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002434 slow.Bind();
2435 frame_->EmitPush(cp);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002436 __ mov(r0, Operand(slot->var()->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002437 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002438
ager@chromium.org7c537e22008-10-16 08:43:32 +00002439 if (typeof_state == INSIDE_TYPEOF) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002440 frame_->CallRuntime(Runtime::kLoadContextSlotNoReferenceError, 2);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002441 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002442 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002443 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00002444
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002445 done.Bind();
2446 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002447
2448 } else {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002449 // Special handling for locals allocated in registers.
ager@chromium.org7c537e22008-10-16 08:43:32 +00002450 __ ldr(r0, SlotOperand(slot, r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002451 frame_->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002452 if (slot->var()->mode() == Variable::CONST) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002453 // Const slots may contain 'the hole' value (the constant hasn't been
2454 // initialized yet) which needs to be converted into the 'undefined'
2455 // value.
2456 Comment cmnt(masm_, "[ Unhole const");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002457 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002458 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2459 __ cmp(r0, ip);
2460 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002461 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002462 }
2463 }
2464}
2465
2466
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002467void CodeGenerator::StoreToSlot(Slot* slot, InitState init_state) {
2468 ASSERT(slot != NULL);
2469 if (slot->type() == Slot::LOOKUP) {
2470 ASSERT(slot->var()->is_dynamic());
2471
2472 // For now, just do a runtime call.
2473 frame_->EmitPush(cp);
2474 __ mov(r0, Operand(slot->var()->name()));
2475 frame_->EmitPush(r0);
2476
2477 if (init_state == CONST_INIT) {
2478 // Same as the case for a normal store, but ignores attribute
2479 // (e.g. READ_ONLY) of context slot so that we can initialize
2480 // const properties (introduced via eval("const foo = (some
2481 // expr);")). Also, uses the current function context instead of
2482 // the top context.
2483 //
2484 // Note that we must declare the foo upon entry of eval(), via a
2485 // context slot declaration, but we cannot initialize it at the
2486 // same time, because the const declaration may be at the end of
2487 // the eval code (sigh...) and the const variable may have been
2488 // used before (where its value is 'undefined'). Thus, we can only
2489 // do the initialization when we actually encounter the expression
2490 // and when the expression operands are defined and valid, and
2491 // thus we need the split into 2 operations: declaration of the
2492 // context slot followed by initialization.
2493 frame_->CallRuntime(Runtime::kInitializeConstContextSlot, 3);
2494 } else {
2495 frame_->CallRuntime(Runtime::kStoreContextSlot, 3);
2496 }
2497 // Storing a variable must keep the (new) value on the expression
2498 // stack. This is necessary for compiling assignment expressions.
2499 frame_->EmitPush(r0);
2500
2501 } else {
2502 ASSERT(!slot->var()->is_dynamic());
2503
2504 JumpTarget exit;
2505 if (init_state == CONST_INIT) {
2506 ASSERT(slot->var()->mode() == Variable::CONST);
2507 // Only the first const initialization must be executed (the slot
2508 // still contains 'the hole' value). When the assignment is
2509 // executed, the code is identical to a normal store (see below).
2510 Comment cmnt(masm_, "[ Init const");
2511 __ ldr(r2, SlotOperand(slot, r2));
2512 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2513 __ cmp(r2, ip);
2514 exit.Branch(ne);
2515 }
2516
2517 // We must execute the store. Storing a variable must keep the
2518 // (new) value on the stack. This is necessary for compiling
2519 // assignment expressions.
2520 //
2521 // Note: We will reach here even with slot->var()->mode() ==
2522 // Variable::CONST because of const declarations which will
2523 // initialize consts to 'the hole' value and by doing so, end up
2524 // calling this code. r2 may be loaded with context; used below in
2525 // RecordWrite.
2526 frame_->EmitPop(r0);
2527 __ str(r0, SlotOperand(slot, r2));
2528 frame_->EmitPush(r0);
2529 if (slot->type() == Slot::CONTEXT) {
2530 // Skip write barrier if the written value is a smi.
2531 __ tst(r0, Operand(kSmiTagMask));
2532 exit.Branch(eq);
2533 // r2 is loaded with context when calling SlotOperand above.
2534 int offset = FixedArray::kHeaderSize + slot->index() * kPointerSize;
2535 __ mov(r3, Operand(offset));
2536 __ RecordWrite(r2, r3, r1);
2537 }
2538 // If we definitely did not jump over the assignment, we do not need
2539 // to bind the exit label. Doing so can defeat peephole
2540 // optimization.
2541 if (init_state == CONST_INIT || slot->type() == Slot::CONTEXT) {
2542 exit.Bind();
2543 }
2544 }
2545}
2546
2547
ager@chromium.org381abbb2009-02-25 13:23:22 +00002548void CodeGenerator::LoadFromGlobalSlotCheckExtensions(Slot* slot,
2549 TypeofState typeof_state,
2550 Register tmp,
2551 Register tmp2,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002552 JumpTarget* slow) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00002553 // Check that no extension objects have been created by calls to
2554 // eval from the current scope to the global scope.
2555 Register context = cp;
2556 Scope* s = scope();
2557 while (s != NULL) {
2558 if (s->num_heap_slots() > 0) {
2559 if (s->calls_eval()) {
2560 // Check that extension is NULL.
2561 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
2562 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002563 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002564 }
2565 // Load next context in chain.
2566 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
2567 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
2568 context = tmp;
2569 }
2570 // If no outer scope calls eval, we do not need to check more
2571 // context extensions.
2572 if (!s->outer_scope_calls_eval() || s->is_eval_scope()) break;
2573 s = s->outer_scope();
2574 }
2575
2576 if (s->is_eval_scope()) {
2577 Label next, fast;
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002578 if (!context.is(tmp)) {
2579 __ mov(tmp, Operand(context));
2580 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00002581 __ bind(&next);
2582 // Terminate at global context.
2583 __ ldr(tmp2, FieldMemOperand(tmp, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002584 __ LoadRoot(ip, Heap::kGlobalContextMapRootIndex);
2585 __ cmp(tmp2, ip);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002586 __ b(eq, &fast);
2587 // Check that extension is NULL.
2588 __ ldr(tmp2, ContextOperand(tmp, Context::EXTENSION_INDEX));
2589 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002590 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002591 // Load next context in chain.
2592 __ ldr(tmp, ContextOperand(tmp, Context::CLOSURE_INDEX));
2593 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
2594 __ b(&next);
2595 __ bind(&fast);
2596 }
2597
2598 // All extension objects were empty and it is safe to use a global
2599 // load IC call.
2600 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
2601 // Load the global object.
2602 LoadGlobal();
2603 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002604 __ mov(r2, Operand(slot->var()->name()));
ager@chromium.org381abbb2009-02-25 13:23:22 +00002605 // Call IC stub.
2606 if (typeof_state == INSIDE_TYPEOF) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002607 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002608 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002609 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET_CONTEXT, 0);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002610 }
2611
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002612 // Drop the global object. The result is in r0.
2613 frame_->Drop();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002614}
2615
2616
ager@chromium.org7c537e22008-10-16 08:43:32 +00002617void CodeGenerator::VisitSlot(Slot* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002618#ifdef DEBUG
2619 int original_height = frame_->height();
2620#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002621 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002622 Comment cmnt(masm_, "[ Slot");
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002623 LoadFromSlot(node, NOT_INSIDE_TYPEOF);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002624 ASSERT(frame_->height() == original_height + 1);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002625}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002626
ager@chromium.org7c537e22008-10-16 08:43:32 +00002627
2628void CodeGenerator::VisitVariableProxy(VariableProxy* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002629#ifdef DEBUG
2630 int original_height = frame_->height();
2631#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002632 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002633 Comment cmnt(masm_, "[ VariableProxy");
2634
2635 Variable* var = node->var();
2636 Expression* expr = var->rewrite();
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002637 if (expr != NULL) {
2638 Visit(expr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002639 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +00002640 ASSERT(var->is_global());
2641 Reference ref(this, node);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002642 ref.GetValueAndSpill();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002643 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002644 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002645}
2646
2647
ager@chromium.org7c537e22008-10-16 08:43:32 +00002648void CodeGenerator::VisitLiteral(Literal* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002649#ifdef DEBUG
2650 int original_height = frame_->height();
2651#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002652 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002653 Comment cmnt(masm_, "[ Literal");
mads.s.ager31e71382008-08-13 09:32:07 +00002654 __ mov(r0, Operand(node->handle()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002655 frame_->EmitPush(r0);
2656 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002657}
2658
2659
ager@chromium.org7c537e22008-10-16 08:43:32 +00002660void CodeGenerator::VisitRegExpLiteral(RegExpLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002661#ifdef DEBUG
2662 int original_height = frame_->height();
2663#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002664 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002665 Comment cmnt(masm_, "[ RexExp Literal");
2666
2667 // Retrieve the literal array and check the allocated entry.
2668
2669 // Load the function of this activation.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002670 __ ldr(r1, frame_->Function());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002671
2672 // Load the literals array of the function.
2673 __ ldr(r1, FieldMemOperand(r1, JSFunction::kLiteralsOffset));
2674
2675 // Load the literal at the ast saved index.
2676 int literal_offset =
2677 FixedArray::kHeaderSize + node->literal_index() * kPointerSize;
2678 __ ldr(r2, FieldMemOperand(r1, literal_offset));
2679
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002680 JumpTarget done;
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002681 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
2682 __ cmp(r2, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002683 done.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002684
2685 // If the entry is undefined we call the runtime system to computed
2686 // the literal.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002687 frame_->EmitPush(r1); // literal array (0)
mads.s.ager31e71382008-08-13 09:32:07 +00002688 __ mov(r0, Operand(Smi::FromInt(node->literal_index())));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002689 frame_->EmitPush(r0); // literal index (1)
mads.s.ager31e71382008-08-13 09:32:07 +00002690 __ mov(r0, Operand(node->pattern())); // RegExp pattern (2)
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002691 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002692 __ mov(r0, Operand(node->flags())); // RegExp flags (3)
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002693 frame_->EmitPush(r0);
2694 frame_->CallRuntime(Runtime::kMaterializeRegExpLiteral, 4);
mads.s.ager31e71382008-08-13 09:32:07 +00002695 __ mov(r2, Operand(r0));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002696
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002697 done.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002698 // Push the literal.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002699 frame_->EmitPush(r2);
2700 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002701}
2702
2703
ager@chromium.org7c537e22008-10-16 08:43:32 +00002704void CodeGenerator::VisitObjectLiteral(ObjectLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002705#ifdef DEBUG
2706 int original_height = frame_->height();
2707#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002708 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002709 Comment cmnt(masm_, "[ ObjectLiteral");
2710
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002711 // Load the function of this activation.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002712 __ ldr(r3, frame_->Function());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002713 // Literal array.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002714 __ ldr(r3, FieldMemOperand(r3, JSFunction::kLiteralsOffset));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002715 // Literal index.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002716 __ mov(r2, Operand(Smi::FromInt(node->literal_index())));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002717 // Constant properties.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002718 __ mov(r1, Operand(node->constant_properties()));
2719 // Should the object literal have fast elements?
2720 __ mov(r0, Operand(Smi::FromInt(node->fast_elements() ? 1 : 0)));
2721 frame_->EmitPushMultiple(4, r3.bit() | r2.bit() | r1.bit() | r0.bit());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002722 if (node->depth() > 1) {
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002723 frame_->CallRuntime(Runtime::kCreateObjectLiteral, 4);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002724 } else {
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002725 frame_->CallRuntime(Runtime::kCreateObjectLiteralShallow, 4);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002726 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002727 frame_->EmitPush(r0); // save the result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002728 for (int i = 0; i < node->properties()->length(); i++) {
ager@chromium.org5c838252010-02-19 08:53:10 +00002729 // At the start of each iteration, the top of stack contains
2730 // the newly created object literal.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002731 ObjectLiteral::Property* property = node->properties()->at(i);
2732 Literal* key = property->key();
2733 Expression* value = property->value();
2734 switch (property->kind()) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002735 case ObjectLiteral::Property::CONSTANT:
2736 break;
2737 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
2738 if (CompileTimeValue::IsCompileTimeValue(property->value())) break;
2739 // else fall through
ager@chromium.org5c838252010-02-19 08:53:10 +00002740 case ObjectLiteral::Property::COMPUTED:
2741 if (key->handle()->IsSymbol()) {
2742 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
2743 LoadAndSpill(value);
2744 frame_->EmitPop(r0);
2745 __ mov(r2, Operand(key->handle()));
2746 __ ldr(r1, frame_->Top()); // Load the receiver.
2747 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
2748 break;
2749 }
2750 // else fall through
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002751 case ObjectLiteral::Property::PROTOTYPE: {
ager@chromium.org5c838252010-02-19 08:53:10 +00002752 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002753 frame_->EmitPush(r0); // dup the result
2754 LoadAndSpill(key);
2755 LoadAndSpill(value);
2756 frame_->CallRuntime(Runtime::kSetProperty, 3);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002757 break;
2758 }
2759 case ObjectLiteral::Property::SETTER: {
ager@chromium.org5c838252010-02-19 08:53:10 +00002760 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002761 frame_->EmitPush(r0);
2762 LoadAndSpill(key);
mads.s.ager31e71382008-08-13 09:32:07 +00002763 __ mov(r0, Operand(Smi::FromInt(1)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002764 frame_->EmitPush(r0);
2765 LoadAndSpill(value);
2766 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002767 break;
2768 }
2769 case ObjectLiteral::Property::GETTER: {
ager@chromium.org5c838252010-02-19 08:53:10 +00002770 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002771 frame_->EmitPush(r0);
2772 LoadAndSpill(key);
mads.s.ager31e71382008-08-13 09:32:07 +00002773 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002774 frame_->EmitPush(r0);
2775 LoadAndSpill(value);
2776 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002777 break;
2778 }
2779 }
2780 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002781 ASSERT(frame_->height() == original_height + 1);
2782}
2783
2784
ager@chromium.org7c537e22008-10-16 08:43:32 +00002785void CodeGenerator::VisitArrayLiteral(ArrayLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002786#ifdef DEBUG
2787 int original_height = frame_->height();
2788#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002789 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002790 Comment cmnt(masm_, "[ ArrayLiteral");
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002791
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002792 // Load the function of this activation.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002793 __ ldr(r2, frame_->Function());
ager@chromium.org5c838252010-02-19 08:53:10 +00002794 // Load the literals array of the function.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002795 __ ldr(r2, FieldMemOperand(r2, JSFunction::kLiteralsOffset));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002796 __ mov(r1, Operand(Smi::FromInt(node->literal_index())));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002797 __ mov(r0, Operand(node->constant_elements()));
2798 frame_->EmitPushMultiple(3, r2.bit() | r1.bit() | r0.bit());
ager@chromium.org5c838252010-02-19 08:53:10 +00002799 int length = node->values()->length();
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002800 if (node->depth() > 1) {
2801 frame_->CallRuntime(Runtime::kCreateArrayLiteral, 3);
ager@chromium.org5c838252010-02-19 08:53:10 +00002802 } else if (length > FastCloneShallowArrayStub::kMaximumLength) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002803 frame_->CallRuntime(Runtime::kCreateArrayLiteralShallow, 3);
ager@chromium.org5c838252010-02-19 08:53:10 +00002804 } else {
2805 FastCloneShallowArrayStub stub(length);
2806 frame_->CallStub(&stub, 3);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002807 }
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002808 frame_->EmitPush(r0); // save the result
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002809 // r0: created object literal
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002810
2811 // Generate code to set the elements in the array that are not
2812 // literals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002813 for (int i = 0; i < node->values()->length(); i++) {
2814 Expression* value = node->values()->at(i);
2815
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002816 // If value is a literal the property value is already set in the
2817 // boilerplate object.
2818 if (value->AsLiteral() != NULL) continue;
2819 // If value is a materialized literal the property value is already set
2820 // in the boilerplate object if it is simple.
2821 if (CompileTimeValue::IsCompileTimeValue(value)) continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002822
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002823 // The property must be set by generated code.
2824 LoadAndSpill(value);
2825 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002826
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002827 // Fetch the object literal.
2828 __ ldr(r1, frame_->Top());
2829 // Get the elements array.
2830 __ ldr(r1, FieldMemOperand(r1, JSObject::kElementsOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002831
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002832 // Write to the indexed properties array.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00002833 int offset = i * kPointerSize + FixedArray::kHeaderSize;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002834 __ str(r0, FieldMemOperand(r1, offset));
2835
2836 // Update the write barrier for the array address.
2837 __ mov(r3, Operand(offset));
2838 __ RecordWrite(r1, r3, r2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002839 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002840 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002841}
2842
2843
ager@chromium.org32912102009-01-16 10:38:43 +00002844void CodeGenerator::VisitCatchExtensionObject(CatchExtensionObject* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002845#ifdef DEBUG
2846 int original_height = frame_->height();
2847#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002848 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org32912102009-01-16 10:38:43 +00002849 // Call runtime routine to allocate the catch extension object and
2850 // assign the exception value to the catch variable.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002851 Comment cmnt(masm_, "[ CatchExtensionObject");
2852 LoadAndSpill(node->key());
2853 LoadAndSpill(node->value());
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002854 frame_->CallRuntime(Runtime::kCreateCatchExtensionObject, 2);
2855 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002856 ASSERT(frame_->height() == original_height + 1);
ager@chromium.org32912102009-01-16 10:38:43 +00002857}
2858
2859
ager@chromium.org7c537e22008-10-16 08:43:32 +00002860void CodeGenerator::VisitAssignment(Assignment* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002861#ifdef DEBUG
2862 int original_height = frame_->height();
2863#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002864 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002865 Comment cmnt(masm_, "[ Assignment");
mads.s.ager31e71382008-08-13 09:32:07 +00002866
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002867 { Reference target(this, node->target(), node->is_compound());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002868 if (target.is_illegal()) {
2869 // Fool the virtual frame into thinking that we left the assignment's
2870 // value on the frame.
2871 __ mov(r0, Operand(Smi::FromInt(0)));
2872 frame_->EmitPush(r0);
2873 ASSERT(frame_->height() == original_height + 1);
2874 return;
2875 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002876
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002877 if (node->op() == Token::ASSIGN ||
2878 node->op() == Token::INIT_VAR ||
2879 node->op() == Token::INIT_CONST) {
2880 LoadAndSpill(node->value());
mads.s.ager31e71382008-08-13 09:32:07 +00002881
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002882 } else { // Assignment is a compound assignment.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002883 // Get the old value of the lhs.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002884 target.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002885 Literal* literal = node->value()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002886 bool overwrite =
2887 (node->value()->AsBinaryOperation() != NULL &&
2888 node->value()->AsBinaryOperation()->ResultOverwriteAllowed());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002889 if (literal != NULL && literal->handle()->IsSmi()) {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002890 SmiOperation(node->binary_op(),
2891 literal->handle(),
2892 false,
2893 overwrite ? OVERWRITE_RIGHT : NO_OVERWRITE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002894 frame_->EmitPush(r0);
2895
2896 } else {
2897 LoadAndSpill(node->value());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002898 GenericBinaryOperation(node->binary_op(),
2899 overwrite ? OVERWRITE_RIGHT : NO_OVERWRITE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002900 frame_->EmitPush(r0);
2901 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002902 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002903 Variable* var = node->target()->AsVariableProxy()->AsVariable();
2904 if (var != NULL &&
2905 (var->mode() == Variable::CONST) &&
2906 node->op() != Token::INIT_VAR && node->op() != Token::INIT_CONST) {
2907 // Assignment ignored - leave the value on the stack.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002908 UnloadReference(&target);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002909 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002910 CodeForSourcePosition(node->position());
2911 if (node->op() == Token::INIT_CONST) {
2912 // Dynamic constant initializations must use the function context
2913 // and initialize the actual constant declared. Dynamic variable
2914 // initializations are simply assignments and use SetValue.
2915 target.SetValue(CONST_INIT);
2916 } else {
2917 target.SetValue(NOT_CONST_INIT);
2918 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002919 }
2920 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002921 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002922}
2923
2924
ager@chromium.org7c537e22008-10-16 08:43:32 +00002925void CodeGenerator::VisitThrow(Throw* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002926#ifdef DEBUG
2927 int original_height = frame_->height();
2928#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002929 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002930 Comment cmnt(masm_, "[ Throw");
2931
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002932 LoadAndSpill(node->exception());
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002933 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002934 frame_->CallRuntime(Runtime::kThrow, 1);
2935 frame_->EmitPush(r0);
2936 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002937}
2938
2939
ager@chromium.org7c537e22008-10-16 08:43:32 +00002940void CodeGenerator::VisitProperty(Property* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002941#ifdef DEBUG
2942 int original_height = frame_->height();
2943#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002944 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002945 Comment cmnt(masm_, "[ Property");
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002946
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002947 { Reference property(this, node);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002948 property.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002949 }
2950 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002951}
2952
2953
ager@chromium.org7c537e22008-10-16 08:43:32 +00002954void CodeGenerator::VisitCall(Call* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002955#ifdef DEBUG
2956 int original_height = frame_->height();
2957#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002958 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002959 Comment cmnt(masm_, "[ Call");
2960
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002961 Expression* function = node->expression();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002962 ZoneList<Expression*>* args = node->arguments();
2963
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002964 // Standard function call.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002965 // Check if the function is a variable or a property.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002966 Variable* var = function->AsVariableProxy()->AsVariable();
2967 Property* property = function->AsProperty();
2968
2969 // ------------------------------------------------------------------------
2970 // Fast-case: Use inline caching.
2971 // ---
2972 // According to ECMA-262, section 11.2.3, page 44, the function to call
2973 // must be resolved after the arguments have been evaluated. The IC code
2974 // automatically handles this by loading the arguments before the function
2975 // is resolved in cache misses (this also holds for megamorphic calls).
2976 // ------------------------------------------------------------------------
2977
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002978 if (var != NULL && var->is_possibly_eval()) {
2979 // ----------------------------------
2980 // JavaScript example: 'eval(arg)' // eval is not known to be shadowed
2981 // ----------------------------------
2982
2983 // In a call to eval, we first call %ResolvePossiblyDirectEval to
2984 // resolve the function we need to call and the receiver of the
2985 // call. Then we call the resolved function using the given
2986 // arguments.
2987 // Prepare stack for call to resolved function.
2988 LoadAndSpill(function);
2989 __ LoadRoot(r2, Heap::kUndefinedValueRootIndex);
2990 frame_->EmitPush(r2); // Slot for receiver
2991 int arg_count = args->length();
2992 for (int i = 0; i < arg_count; i++) {
2993 LoadAndSpill(args->at(i));
2994 }
2995
2996 // Prepare stack for call to ResolvePossiblyDirectEval.
2997 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize + kPointerSize));
2998 frame_->EmitPush(r1);
2999 if (arg_count > 0) {
3000 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize));
3001 frame_->EmitPush(r1);
3002 } else {
3003 frame_->EmitPush(r2);
3004 }
3005
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003006 // Push the receiver.
3007 __ ldr(r1, frame_->Receiver());
3008 frame_->EmitPush(r1);
3009
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003010 // Resolve the call.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003011 frame_->CallRuntime(Runtime::kResolvePossiblyDirectEval, 3);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003012
3013 // Touch up stack with the right values for the function and the receiver.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003014 __ str(r0, MemOperand(sp, (arg_count + 1) * kPointerSize));
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003015 __ str(r1, MemOperand(sp, arg_count * kPointerSize));
3016
3017 // Call the function.
3018 CodeForSourcePosition(node->position());
3019
3020 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003021 CallFunctionStub call_function(arg_count, in_loop, RECEIVER_MIGHT_BE_VALUE);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003022 frame_->CallStub(&call_function, arg_count + 1);
3023
3024 __ ldr(cp, frame_->Context());
3025 // Remove the function from the stack.
3026 frame_->Drop();
3027 frame_->EmitPush(r0);
3028
3029 } else if (var != NULL && !var->is_this() && var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003030 // ----------------------------------
3031 // JavaScript example: 'foo(1, 2, 3)' // foo is global
3032 // ----------------------------------
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003033 // Pass the global object as the receiver and let the IC stub
3034 // patch the stack to use the global proxy as 'this' in the
3035 // invoked function.
3036 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003037
3038 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003039 int arg_count = args->length();
3040 for (int i = 0; i < arg_count; i++) {
3041 LoadAndSpill(args->at(i));
3042 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003043
ager@chromium.org5c838252010-02-19 08:53:10 +00003044 // Setup the name register and call the IC initialization code.
3045 __ mov(r2, Operand(var->name()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003046 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3047 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003048 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003049 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET_CONTEXT,
3050 arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003051 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003052 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003053
3054 } else if (var != NULL && var->slot() != NULL &&
3055 var->slot()->type() == Slot::LOOKUP) {
3056 // ----------------------------------
3057 // JavaScript example: 'with (obj) foo(1, 2, 3)' // foo is in obj
3058 // ----------------------------------
3059
3060 // Load the function
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003061 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00003062 __ mov(r0, Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003063 frame_->EmitPush(r0);
3064 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003065 // r0: slot value; r1: receiver
3066
3067 // Load the receiver.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003068 frame_->EmitPush(r0); // function
3069 frame_->EmitPush(r1); // receiver
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003070
3071 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003072 CallWithArguments(args, NO_CALL_FUNCTION_FLAGS, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003073 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003074
3075 } else if (property != NULL) {
3076 // Check if the key is a literal string.
3077 Literal* literal = property->key()->AsLiteral();
3078
3079 if (literal != NULL && literal->handle()->IsSymbol()) {
3080 // ------------------------------------------------------------------
3081 // JavaScript example: 'object.foo(1, 2, 3)' or 'map["key"](1, 2, 3)'
3082 // ------------------------------------------------------------------
3083
ager@chromium.org5c838252010-02-19 08:53:10 +00003084 LoadAndSpill(property->obj()); // Receiver.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003085 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003086 int arg_count = args->length();
3087 for (int i = 0; i < arg_count; i++) {
3088 LoadAndSpill(args->at(i));
3089 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003090
ager@chromium.org5c838252010-02-19 08:53:10 +00003091 // Set the name register and call the IC initialization code.
3092 __ mov(r2, Operand(literal->handle()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003093 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3094 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003095 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003096 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003097 __ ldr(cp, frame_->Context());
ager@chromium.org5c838252010-02-19 08:53:10 +00003098 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003099
3100 } else {
3101 // -------------------------------------------
3102 // JavaScript example: 'array[index](1, 2, 3)'
3103 // -------------------------------------------
3104
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003105 LoadAndSpill(property->obj());
3106 LoadAndSpill(property->key());
3107 EmitKeyedLoad(false);
3108 frame_->Drop(); // key
3109 // Put the function below the receiver.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003110 if (property->is_synthetic()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003111 // Use the global receiver.
3112 frame_->Drop();
3113 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003114 LoadGlobalReceiver(r0);
3115 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003116 frame_->EmitPop(r1); // receiver
3117 frame_->EmitPush(r0); // function
3118 frame_->EmitPush(r1); // receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003119 }
3120
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003121 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003122 CallWithArguments(args, RECEIVER_MIGHT_BE_VALUE, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003123 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003124 }
3125
3126 } else {
3127 // ----------------------------------
3128 // JavaScript example: 'foo(1, 2, 3)' // foo is not global
3129 // ----------------------------------
3130
3131 // Load the function.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003132 LoadAndSpill(function);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003133
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003134 // Pass the global proxy as the receiver.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003135 LoadGlobalReceiver(r0);
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003136
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003137 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003138 CallWithArguments(args, NO_CALL_FUNCTION_FLAGS, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003139 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003140 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003141 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003142}
3143
3144
ager@chromium.org7c537e22008-10-16 08:43:32 +00003145void CodeGenerator::VisitCallNew(CallNew* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003146#ifdef DEBUG
3147 int original_height = frame_->height();
3148#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003149 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003150 Comment cmnt(masm_, "[ CallNew");
3151
3152 // According to ECMA-262, section 11.2.2, page 44, the function
3153 // expression in new calls must be evaluated before the
3154 // arguments. This is different from ordinary calls, where the
3155 // actual function to call is resolved after the arguments have been
3156 // evaluated.
3157
3158 // Compute function to call and use the global object as the
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003159 // receiver. There is no need to use the global proxy here because
3160 // it will always be replaced with a newly allocated object.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003161 LoadAndSpill(node->expression());
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003162 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003163
3164 // Push the arguments ("left-to-right") on the stack.
3165 ZoneList<Expression*>* args = node->arguments();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003166 int arg_count = args->length();
3167 for (int i = 0; i < arg_count; i++) {
3168 LoadAndSpill(args->at(i));
3169 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003170
mads.s.ager31e71382008-08-13 09:32:07 +00003171 // r0: the number of arguments.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003172 __ mov(r0, Operand(arg_count));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003173 // Load the function into r1 as per calling convention.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003174 __ ldr(r1, frame_->ElementAt(arg_count + 1));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003175
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003176 // Call the construct call builtin that handles allocation and
3177 // constructor invocation.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003178 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003179 Handle<Code> ic(Builtins::builtin(Builtins::JSConstructCall));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003180 frame_->CallCodeObject(ic, RelocInfo::CONSTRUCT_CALL, arg_count + 1);
mads.s.ager31e71382008-08-13 09:32:07 +00003181
3182 // Discard old TOS value and push r0 on the stack (same as Pop(), push(r0)).
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003183 __ str(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003184 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003185}
3186
3187
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003188void CodeGenerator::GenerateClassOf(ZoneList<Expression*>* args) {
3189 VirtualFrame::SpilledScope spilled_scope;
3190 ASSERT(args->length() == 1);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003191 JumpTarget leave, null, function, non_function_constructor;
3192
3193 // Load the object into r0.
3194 LoadAndSpill(args->at(0));
3195 frame_->EmitPop(r0);
3196
3197 // If the object is a smi, we return null.
3198 __ tst(r0, Operand(kSmiTagMask));
3199 null.Branch(eq);
3200
3201 // Check that the object is a JS object but take special care of JS
3202 // functions to make sure they have 'Function' as their class.
3203 __ CompareObjectType(r0, r0, r1, FIRST_JS_OBJECT_TYPE);
3204 null.Branch(lt);
3205
3206 // As long as JS_FUNCTION_TYPE is the last instance type and it is
3207 // right after LAST_JS_OBJECT_TYPE, we can avoid checking for
3208 // LAST_JS_OBJECT_TYPE.
3209 ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
3210 ASSERT(JS_FUNCTION_TYPE == LAST_JS_OBJECT_TYPE + 1);
3211 __ cmp(r1, Operand(JS_FUNCTION_TYPE));
3212 function.Branch(eq);
3213
3214 // Check if the constructor in the map is a function.
3215 __ ldr(r0, FieldMemOperand(r0, Map::kConstructorOffset));
3216 __ CompareObjectType(r0, r1, r1, JS_FUNCTION_TYPE);
3217 non_function_constructor.Branch(ne);
3218
3219 // The r0 register now contains the constructor function. Grab the
3220 // instance class name from there.
3221 __ ldr(r0, FieldMemOperand(r0, JSFunction::kSharedFunctionInfoOffset));
3222 __ ldr(r0, FieldMemOperand(r0, SharedFunctionInfo::kInstanceClassNameOffset));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003223 frame_->EmitPush(r0);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003224 leave.Jump();
3225
3226 // Functions have class 'Function'.
3227 function.Bind();
3228 __ mov(r0, Operand(Factory::function_class_symbol()));
3229 frame_->EmitPush(r0);
3230 leave.Jump();
3231
3232 // Objects with a non-function constructor have class 'Object'.
3233 non_function_constructor.Bind();
3234 __ mov(r0, Operand(Factory::Object_symbol()));
3235 frame_->EmitPush(r0);
3236 leave.Jump();
3237
3238 // Non-JS objects have class null.
3239 null.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003240 __ LoadRoot(r0, Heap::kNullValueRootIndex);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003241 frame_->EmitPush(r0);
3242
3243 // All done.
3244 leave.Bind();
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003245}
3246
3247
ager@chromium.org7c537e22008-10-16 08:43:32 +00003248void CodeGenerator::GenerateValueOf(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003249 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003250 ASSERT(args->length() == 1);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003251 JumpTarget leave;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003252 LoadAndSpill(args->at(0));
3253 frame_->EmitPop(r0); // r0 contains object.
mads.s.ager31e71382008-08-13 09:32:07 +00003254 // if (object->IsSmi()) return the object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003255 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003256 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003257 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
3258 __ CompareObjectType(r0, r1, r1, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003259 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003260 // Load the value.
3261 __ ldr(r0, FieldMemOperand(r0, JSValue::kValueOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003262 leave.Bind();
3263 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003264}
3265
3266
ager@chromium.org7c537e22008-10-16 08:43:32 +00003267void CodeGenerator::GenerateSetValueOf(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003268 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003269 ASSERT(args->length() == 2);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003270 JumpTarget leave;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003271 LoadAndSpill(args->at(0)); // Load the object.
3272 LoadAndSpill(args->at(1)); // Load the value.
3273 frame_->EmitPop(r0); // r0 contains value
3274 frame_->EmitPop(r1); // r1 contains object
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003275 // if (object->IsSmi()) return object.
3276 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003277 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003278 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
3279 __ CompareObjectType(r1, r2, r2, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003280 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003281 // Store the value.
3282 __ str(r0, FieldMemOperand(r1, JSValue::kValueOffset));
3283 // Update the write barrier.
3284 __ mov(r2, Operand(JSValue::kValueOffset - kHeapObjectTag));
3285 __ RecordWrite(r1, r2, r3);
3286 // Leave.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003287 leave.Bind();
3288 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003289}
3290
3291
ager@chromium.org7c537e22008-10-16 08:43:32 +00003292void CodeGenerator::GenerateIsSmi(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003293 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003294 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003295 LoadAndSpill(args->at(0));
3296 frame_->EmitPop(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003297 __ tst(r0, Operand(kSmiTagMask));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003298 cc_reg_ = eq;
3299}
3300
3301
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003302void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003303 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003304 // See comment in CodeGenerator::GenerateLog in codegen-ia32.cc.
3305 ASSERT_EQ(args->length(), 3);
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00003306#ifdef ENABLE_LOGGING_AND_PROFILING
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003307 if (ShouldGenerateLog(args->at(0))) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003308 LoadAndSpill(args->at(1));
3309 LoadAndSpill(args->at(2));
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003310 __ CallRuntime(Runtime::kLog, 2);
3311 }
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00003312#endif
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003313 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003314 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003315}
3316
3317
ager@chromium.org7c537e22008-10-16 08:43:32 +00003318void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003319 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00003320 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003321 LoadAndSpill(args->at(0));
3322 frame_->EmitPop(r0);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003323 __ tst(r0, Operand(kSmiTagMask | 0x80000000u));
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00003324 cc_reg_ = eq;
3325}
3326
3327
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003328// Generates the Math.pow method - currently just calls runtime.
3329void CodeGenerator::GenerateMathPow(ZoneList<Expression*>* args) {
3330 ASSERT(args->length() == 2);
3331 Load(args->at(0));
3332 Load(args->at(1));
3333 frame_->CallRuntime(Runtime::kMath_pow, 2);
3334 frame_->EmitPush(r0);
3335}
3336
3337
3338// Generates the Math.sqrt method - currently just calls runtime.
3339void CodeGenerator::GenerateMathSqrt(ZoneList<Expression*>* args) {
3340 ASSERT(args->length() == 1);
3341 Load(args->at(0));
3342 frame_->CallRuntime(Runtime::kMath_sqrt, 1);
3343 frame_->EmitPush(r0);
3344}
3345
3346
kasper.lund7276f142008-07-30 08:49:36 +00003347// This should generate code that performs a charCodeAt() call or returns
3348// undefined in order to trigger the slow case, Runtime_StringCharCodeAt.
3349// It is not yet implemented on ARM, so it always goes to the slow case.
ager@chromium.org7c537e22008-10-16 08:43:32 +00003350void CodeGenerator::GenerateFastCharCodeAt(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003351 VirtualFrame::SpilledScope spilled_scope;
kasper.lund7276f142008-07-30 08:49:36 +00003352 ASSERT(args->length() == 2);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003353 Comment(masm_, "[ GenerateFastCharCodeAt");
3354
3355 LoadAndSpill(args->at(0));
3356 LoadAndSpill(args->at(1));
3357 frame_->EmitPop(r0); // Index.
3358 frame_->EmitPop(r1); // String.
3359
3360 Label slow, end, not_a_flat_string, ascii_string, try_again_with_new_string;
3361
3362 __ tst(r1, Operand(kSmiTagMask));
3363 __ b(eq, &slow); // The 'string' was a Smi.
3364
3365 ASSERT(kSmiTag == 0);
3366 __ tst(r0, Operand(kSmiTagMask | 0x80000000u));
3367 __ b(ne, &slow); // The index was negative or not a Smi.
3368
3369 __ bind(&try_again_with_new_string);
3370 __ CompareObjectType(r1, r2, r2, FIRST_NONSTRING_TYPE);
3371 __ b(ge, &slow);
3372
3373 // Now r2 has the string type.
3374 __ ldr(r3, FieldMemOperand(r1, String::kLengthOffset));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003375 // Now r3 has the length of the string. Compare with the index.
3376 __ cmp(r3, Operand(r0, LSR, kSmiTagSize));
3377 __ b(le, &slow);
3378
3379 // Here we know the index is in range. Check that string is sequential.
3380 ASSERT_EQ(0, kSeqStringTag);
3381 __ tst(r2, Operand(kStringRepresentationMask));
3382 __ b(ne, &not_a_flat_string);
3383
3384 // Check whether it is an ASCII string.
3385 ASSERT_EQ(0, kTwoByteStringTag);
3386 __ tst(r2, Operand(kStringEncodingMask));
3387 __ b(ne, &ascii_string);
3388
3389 // 2-byte string. We can add without shifting since the Smi tag size is the
3390 // log2 of the number of bytes in a two-byte character.
3391 ASSERT_EQ(1, kSmiTagSize);
3392 ASSERT_EQ(0, kSmiShiftSize);
3393 __ add(r1, r1, Operand(r0));
3394 __ ldrh(r0, FieldMemOperand(r1, SeqTwoByteString::kHeaderSize));
3395 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
3396 __ jmp(&end);
3397
3398 __ bind(&ascii_string);
3399 __ add(r1, r1, Operand(r0, LSR, kSmiTagSize));
3400 __ ldrb(r0, FieldMemOperand(r1, SeqAsciiString::kHeaderSize));
3401 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
3402 __ jmp(&end);
3403
3404 __ bind(&not_a_flat_string);
3405 __ and_(r2, r2, Operand(kStringRepresentationMask));
3406 __ cmp(r2, Operand(kConsStringTag));
3407 __ b(ne, &slow);
3408
3409 // ConsString.
3410 // Check that the right hand side is the empty string (ie if this is really a
3411 // flat string in a cons string). If that is not the case we would rather go
3412 // to the runtime system now, to flatten the string.
3413 __ ldr(r2, FieldMemOperand(r1, ConsString::kSecondOffset));
3414 __ LoadRoot(r3, Heap::kEmptyStringRootIndex);
3415 __ cmp(r2, Operand(r3));
3416 __ b(ne, &slow);
3417
3418 // Get the first of the two strings.
3419 __ ldr(r1, FieldMemOperand(r1, ConsString::kFirstOffset));
3420 __ jmp(&try_again_with_new_string);
3421
3422 __ bind(&slow);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003423 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003424
3425 __ bind(&end);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003426 frame_->EmitPush(r0);
kasper.lund7276f142008-07-30 08:49:36 +00003427}
3428
3429
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003430void CodeGenerator::GenerateCharFromCode(ZoneList<Expression*>* args) {
3431 Comment(masm_, "[ GenerateCharFromCode");
3432 ASSERT(args->length() == 1);
3433
3434 LoadAndSpill(args->at(0));
3435 frame_->EmitPop(r0);
3436
3437 JumpTarget slow_case;
3438 JumpTarget exit;
3439
3440 // Fast case of Heap::LookupSingleCharacterStringFromCode.
3441 ASSERT(kSmiTag == 0);
3442 ASSERT(kSmiShiftSize == 0);
3443 ASSERT(IsPowerOf2(String::kMaxAsciiCharCode + 1));
3444 __ tst(r0, Operand(kSmiTagMask |
3445 ((~String::kMaxAsciiCharCode) << kSmiTagSize)));
3446 slow_case.Branch(nz);
3447
3448 ASSERT(kSmiTag == 0);
3449 __ mov(r1, Operand(Factory::single_character_string_cache()));
3450 __ add(r1, r1, Operand(r0, LSL, kPointerSizeLog2 - kSmiTagSize));
3451 __ ldr(r1, MemOperand(r1, FixedArray::kHeaderSize - kHeapObjectTag));
3452 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
3453 __ cmp(r1, ip);
3454 slow_case.Branch(eq);
3455
3456 frame_->EmitPush(r1);
3457 exit.Jump();
3458
3459 slow_case.Bind();
3460 frame_->EmitPush(r0);
3461 frame_->CallRuntime(Runtime::kCharFromCode, 1);
3462 frame_->EmitPush(r0);
3463
3464 exit.Bind();
3465}
3466
3467
ager@chromium.org7c537e22008-10-16 08:43:32 +00003468void CodeGenerator::GenerateIsArray(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003469 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003470 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003471 LoadAndSpill(args->at(0));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003472 JumpTarget answer;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003473 // We need the CC bits to come out as not_equal in the case where the
3474 // object is a smi. This can't be done with the usual test opcode so
3475 // we use XOR to get the right CC bits.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003476 frame_->EmitPop(r0);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003477 __ and_(r1, r0, Operand(kSmiTagMask));
3478 __ eor(r1, r1, Operand(kSmiTagMask), SetCC);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003479 answer.Branch(ne);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003480 // It is a heap object - get the map. Check if the object is a JS array.
3481 __ CompareObjectType(r0, r1, r1, JS_ARRAY_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003482 answer.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003483 cc_reg_ = eq;
3484}
3485
3486
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00003487void CodeGenerator::GenerateIsRegExp(ZoneList<Expression*>* args) {
3488 VirtualFrame::SpilledScope spilled_scope;
3489 ASSERT(args->length() == 1);
3490 LoadAndSpill(args->at(0));
3491 JumpTarget answer;
3492 // We need the CC bits to come out as not_equal in the case where the
3493 // object is a smi. This can't be done with the usual test opcode so
3494 // we use XOR to get the right CC bits.
3495 frame_->EmitPop(r0);
3496 __ and_(r1, r0, Operand(kSmiTagMask));
3497 __ eor(r1, r1, Operand(kSmiTagMask), SetCC);
3498 answer.Branch(ne);
3499 // It is a heap object - get the map. Check if the object is a regexp.
3500 __ CompareObjectType(r0, r1, r1, JS_REGEXP_TYPE);
3501 answer.Bind();
3502 cc_reg_ = eq;
3503}
3504
3505
ager@chromium.org6141cbe2009-11-20 12:14:52 +00003506void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) {
3507 // This generates a fast version of:
3508 // (typeof(arg) === 'object' || %_ClassOf(arg) == 'RegExp')
3509 VirtualFrame::SpilledScope spilled_scope;
3510 ASSERT(args->length() == 1);
3511 LoadAndSpill(args->at(0));
3512 frame_->EmitPop(r1);
3513 __ tst(r1, Operand(kSmiTagMask));
3514 false_target()->Branch(eq);
3515
3516 __ LoadRoot(ip, Heap::kNullValueRootIndex);
3517 __ cmp(r1, ip);
3518 true_target()->Branch(eq);
3519
3520 Register map_reg = r2;
3521 __ ldr(map_reg, FieldMemOperand(r1, HeapObject::kMapOffset));
3522 // Undetectable objects behave like undefined when tested with typeof.
3523 __ ldrb(r1, FieldMemOperand(map_reg, Map::kBitFieldOffset));
3524 __ and_(r1, r1, Operand(1 << Map::kIsUndetectable));
3525 __ cmp(r1, Operand(1 << Map::kIsUndetectable));
3526 false_target()->Branch(eq);
3527
3528 __ ldrb(r1, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
3529 __ cmp(r1, Operand(FIRST_JS_OBJECT_TYPE));
3530 false_target()->Branch(lt);
3531 __ cmp(r1, Operand(LAST_JS_OBJECT_TYPE));
3532 cc_reg_ = le;
3533}
3534
3535
3536void CodeGenerator::GenerateIsFunction(ZoneList<Expression*>* args) {
3537 // This generates a fast version of:
3538 // (%_ClassOf(arg) === 'Function')
3539 VirtualFrame::SpilledScope spilled_scope;
3540 ASSERT(args->length() == 1);
3541 LoadAndSpill(args->at(0));
3542 frame_->EmitPop(r0);
3543 __ tst(r0, Operand(kSmiTagMask));
3544 false_target()->Branch(eq);
3545 Register map_reg = r2;
3546 __ CompareObjectType(r0, map_reg, r1, JS_FUNCTION_TYPE);
3547 cc_reg_ = eq;
3548}
3549
3550
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003551void CodeGenerator::GenerateIsUndetectableObject(ZoneList<Expression*>* args) {
3552 VirtualFrame::SpilledScope spilled_scope;
3553 ASSERT(args->length() == 1);
3554 LoadAndSpill(args->at(0));
3555 frame_->EmitPop(r0);
3556 __ tst(r0, Operand(kSmiTagMask));
3557 false_target()->Branch(eq);
3558 __ ldr(r1, FieldMemOperand(r0, HeapObject::kMapOffset));
3559 __ ldrb(r1, FieldMemOperand(r1, Map::kBitFieldOffset));
3560 __ tst(r1, Operand(1 << Map::kIsUndetectable));
3561 cc_reg_ = ne;
3562}
3563
3564
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003565void CodeGenerator::GenerateIsConstructCall(ZoneList<Expression*>* args) {
3566 VirtualFrame::SpilledScope spilled_scope;
3567 ASSERT(args->length() == 0);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003568
3569 // Get the frame pointer for the calling frame.
3570 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
3571
3572 // Skip the arguments adaptor frame if it exists.
3573 Label check_frame_marker;
3574 __ ldr(r1, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00003575 __ cmp(r1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003576 __ b(ne, &check_frame_marker);
3577 __ ldr(r2, MemOperand(r2, StandardFrameConstants::kCallerFPOffset));
3578
3579 // Check the marker in the calling frame.
3580 __ bind(&check_frame_marker);
3581 __ ldr(r1, MemOperand(r2, StandardFrameConstants::kMarkerOffset));
3582 __ cmp(r1, Operand(Smi::FromInt(StackFrame::CONSTRUCT)));
3583 cc_reg_ = eq;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003584}
3585
3586
ager@chromium.org7c537e22008-10-16 08:43:32 +00003587void CodeGenerator::GenerateArgumentsLength(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003588 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003589 ASSERT(args->length() == 0);
3590
mads.s.ager31e71382008-08-13 09:32:07 +00003591 // Seed the result with the formal parameters count, which will be used
3592 // in case no arguments adaptor frame is found below the current frame.
ager@chromium.org5c838252010-02-19 08:53:10 +00003593 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003594
3595 // Call the shared stub to get to the arguments.length.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003596 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_LENGTH);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003597 frame_->CallStub(&stub, 0);
3598 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003599}
3600
3601
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00003602void CodeGenerator::GenerateArguments(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003603 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003604 ASSERT(args->length() == 1);
3605
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003606 // Satisfy contract with ArgumentsAccessStub:
3607 // Load the key into r1 and the formal parameters count into r0.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003608 LoadAndSpill(args->at(0));
3609 frame_->EmitPop(r1);
ager@chromium.org5c838252010-02-19 08:53:10 +00003610 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003611
3612 // Call the shared stub to get to arguments[key].
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003613 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_ELEMENT);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003614 frame_->CallStub(&stub, 0);
3615 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003616}
3617
3618
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003619void CodeGenerator::GenerateRandomPositiveSmi(ZoneList<Expression*>* args) {
3620 VirtualFrame::SpilledScope spilled_scope;
3621 ASSERT(args->length() == 0);
3622 __ Call(ExternalReference::random_positive_smi_function().address(),
3623 RelocInfo::RUNTIME_ENTRY);
3624 frame_->EmitPush(r0);
3625}
3626
3627
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00003628void CodeGenerator::GenerateStringAdd(ZoneList<Expression*>* args) {
3629 ASSERT_EQ(2, args->length());
3630
3631 Load(args->at(0));
3632 Load(args->at(1));
3633
ager@chromium.org5c838252010-02-19 08:53:10 +00003634 StringAddStub stub(NO_STRING_ADD_FLAGS);
3635 frame_->CallStub(&stub, 2);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00003636 frame_->EmitPush(r0);
3637}
3638
3639
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003640void CodeGenerator::GenerateSubString(ZoneList<Expression*>* args) {
3641 ASSERT_EQ(3, args->length());
3642
3643 Load(args->at(0));
3644 Load(args->at(1));
3645 Load(args->at(2));
3646
ager@chromium.org5c838252010-02-19 08:53:10 +00003647 SubStringStub stub;
3648 frame_->CallStub(&stub, 3);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003649 frame_->EmitPush(r0);
3650}
3651
3652
3653void CodeGenerator::GenerateStringCompare(ZoneList<Expression*>* args) {
3654 ASSERT_EQ(2, args->length());
3655
3656 Load(args->at(0));
3657 Load(args->at(1));
3658
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003659 StringCompareStub stub;
3660 frame_->CallStub(&stub, 2);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003661 frame_->EmitPush(r0);
3662}
3663
3664
3665void CodeGenerator::GenerateRegExpExec(ZoneList<Expression*>* args) {
3666 ASSERT_EQ(4, args->length());
3667
3668 Load(args->at(0));
3669 Load(args->at(1));
3670 Load(args->at(2));
3671 Load(args->at(3));
3672
3673 frame_->CallRuntime(Runtime::kRegExpExec, 4);
3674 frame_->EmitPush(r0);
3675}
3676
3677
ager@chromium.org5c838252010-02-19 08:53:10 +00003678void CodeGenerator::GenerateNumberToString(ZoneList<Expression*>* args) {
3679 ASSERT_EQ(args->length(), 1);
3680
3681 // Load the argument on the stack and jump to the runtime.
3682 Load(args->at(0));
3683
3684 frame_->CallRuntime(Runtime::kNumberToString, 1);
3685 frame_->EmitPush(r0);
3686}
3687
3688
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003689void CodeGenerator::GenerateMathSin(ZoneList<Expression*>* args) {
3690 ASSERT_EQ(args->length(), 1);
3691 // Load the argument on the stack and jump to the runtime.
3692 Load(args->at(0));
3693 frame_->CallRuntime(Runtime::kMath_sin, 1);
3694 frame_->EmitPush(r0);
3695}
3696
3697
3698void CodeGenerator::GenerateMathCos(ZoneList<Expression*>* args) {
3699 ASSERT_EQ(args->length(), 1);
3700 // Load the argument on the stack and jump to the runtime.
3701 Load(args->at(0));
3702 frame_->CallRuntime(Runtime::kMath_cos, 1);
3703 frame_->EmitPush(r0);
3704}
3705
3706
ager@chromium.org7c537e22008-10-16 08:43:32 +00003707void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003708 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org9258b6b2008-09-11 09:11:10 +00003709 ASSERT(args->length() == 2);
3710
3711 // Load the two objects into registers and perform the comparison.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003712 LoadAndSpill(args->at(0));
3713 LoadAndSpill(args->at(1));
3714 frame_->EmitPop(r0);
3715 frame_->EmitPop(r1);
ager@chromium.org9258b6b2008-09-11 09:11:10 +00003716 __ cmp(r0, Operand(r1));
3717 cc_reg_ = eq;
3718}
3719
3720
ager@chromium.org7c537e22008-10-16 08:43:32 +00003721void CodeGenerator::VisitCallRuntime(CallRuntime* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003722#ifdef DEBUG
3723 int original_height = frame_->height();
3724#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003725 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003726 if (CheckForInlineRuntimeCall(node)) {
3727 ASSERT((has_cc() && frame_->height() == original_height) ||
3728 (!has_cc() && frame_->height() == original_height + 1));
3729 return;
3730 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003731
3732 ZoneList<Expression*>* args = node->arguments();
3733 Comment cmnt(masm_, "[ CallRuntime");
3734 Runtime::Function* function = node->function();
3735
ager@chromium.org41826e72009-03-30 13:30:57 +00003736 if (function == NULL) {
mads.s.ager31e71382008-08-13 09:32:07 +00003737 // Prepare stack for calling JS runtime function.
mads.s.ager31e71382008-08-13 09:32:07 +00003738 // Push the builtins object found in the current global object.
3739 __ ldr(r1, GlobalObject());
3740 __ ldr(r0, FieldMemOperand(r1, GlobalObject::kBuiltinsOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003741 frame_->EmitPush(r0);
ager@chromium.org41826e72009-03-30 13:30:57 +00003742 }
mads.s.ager31e71382008-08-13 09:32:07 +00003743
ager@chromium.org41826e72009-03-30 13:30:57 +00003744 // Push the arguments ("left-to-right").
3745 int arg_count = args->length();
3746 for (int i = 0; i < arg_count; i++) {
3747 LoadAndSpill(args->at(i));
3748 }
mads.s.ager31e71382008-08-13 09:32:07 +00003749
ager@chromium.org41826e72009-03-30 13:30:57 +00003750 if (function == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003751 // Call the JS runtime function.
ager@chromium.org5c838252010-02-19 08:53:10 +00003752 __ mov(r2, Operand(node->name()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003753 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3754 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003755 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003756 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003757 frame_->EmitPush(r0);
ager@chromium.org41826e72009-03-30 13:30:57 +00003758 } else {
3759 // Call the C runtime function.
3760 frame_->CallRuntime(function, arg_count);
3761 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003762 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003763 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003764}
3765
3766
ager@chromium.org7c537e22008-10-16 08:43:32 +00003767void CodeGenerator::VisitUnaryOperation(UnaryOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003768#ifdef DEBUG
3769 int original_height = frame_->height();
3770#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003771 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003772 Comment cmnt(masm_, "[ UnaryOperation");
3773
3774 Token::Value op = node->op();
3775
3776 if (op == Token::NOT) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003777 LoadConditionAndSpill(node->expression(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003778 false_target(),
3779 true_target(),
3780 true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003781 // LoadCondition may (and usually does) leave a test and branch to
3782 // be emitted by the caller. In that case, negate the condition.
3783 if (has_cc()) cc_reg_ = NegateCondition(cc_reg_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003784
3785 } else if (op == Token::DELETE) {
3786 Property* property = node->expression()->AsProperty();
mads.s.ager31e71382008-08-13 09:32:07 +00003787 Variable* variable = node->expression()->AsVariableProxy()->AsVariable();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003788 if (property != NULL) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003789 LoadAndSpill(property->obj());
3790 LoadAndSpill(property->key());
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003791 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003792
mads.s.ager31e71382008-08-13 09:32:07 +00003793 } else if (variable != NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003794 Slot* slot = variable->slot();
3795 if (variable->is_global()) {
3796 LoadGlobal();
mads.s.ager31e71382008-08-13 09:32:07 +00003797 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003798 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003799 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003800
3801 } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
3802 // lookup the context holding the named variable
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003803 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00003804 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003805 frame_->EmitPush(r0);
3806 frame_->CallRuntime(Runtime::kLookupContext, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003807 // r0: context
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003808 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003809 __ mov(r0, Operand(variable->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003810 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003811 frame_->InvokeBuiltin(Builtins::DELETE, CALL_JS, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003812
mads.s.ager31e71382008-08-13 09:32:07 +00003813 } else {
3814 // Default: Result of deleting non-global, not dynamically
3815 // introduced variables is false.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003816 __ LoadRoot(r0, Heap::kFalseValueRootIndex);
mads.s.ager31e71382008-08-13 09:32:07 +00003817 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003818
3819 } else {
3820 // Default: Result of deleting expressions is true.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003821 LoadAndSpill(node->expression()); // may have side-effects
3822 frame_->Drop();
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003823 __ LoadRoot(r0, Heap::kTrueValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003824 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003825 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003826
3827 } else if (op == Token::TYPEOF) {
3828 // Special case for loading the typeof expression; see comment on
3829 // LoadTypeofExpression().
3830 LoadTypeofExpression(node->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003831 frame_->CallRuntime(Runtime::kTypeof, 1);
3832 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003833
3834 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003835 bool overwrite =
3836 (node->expression()->AsBinaryOperation() != NULL &&
3837 node->expression()->AsBinaryOperation()->ResultOverwriteAllowed());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003838 LoadAndSpill(node->expression());
3839 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003840 switch (op) {
3841 case Token::NOT:
3842 case Token::DELETE:
3843 case Token::TYPEOF:
3844 UNREACHABLE(); // handled above
3845 break;
3846
3847 case Token::SUB: {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003848 GenericUnaryOpStub stub(Token::SUB, overwrite);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003849 frame_->CallStub(&stub, 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003850 break;
3851 }
3852
3853 case Token::BIT_NOT: {
3854 // smi check
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003855 JumpTarget smi_label;
3856 JumpTarget continue_label;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003857 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003858 smi_label.Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003859
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003860 GenericUnaryOpStub stub(Token::BIT_NOT, overwrite);
3861 frame_->CallStub(&stub, 0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003862 continue_label.Jump();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003863
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003864 smi_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003865 __ mvn(r0, Operand(r0));
3866 __ bic(r0, r0, Operand(kSmiTagMask)); // bit-clear inverted smi-tag
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003867 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003868 break;
3869 }
3870
3871 case Token::VOID:
3872 // since the stack top is cached in r0, popping and then
3873 // pushing a value can be done by just writing to r0.
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003874 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003875 break;
3876
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003877 case Token::ADD: {
3878 // Smi check.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003879 JumpTarget continue_label;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003880 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003881 continue_label.Branch(eq);
3882 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003883 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003884 continue_label.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003885 break;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003886 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003887 default:
3888 UNREACHABLE();
3889 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003890 frame_->EmitPush(r0); // r0 has result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003891 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003892 ASSERT(!has_valid_frame() ||
3893 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003894 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003895}
3896
3897
ager@chromium.org7c537e22008-10-16 08:43:32 +00003898void CodeGenerator::VisitCountOperation(CountOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003899#ifdef DEBUG
3900 int original_height = frame_->height();
3901#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003902 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003903 Comment cmnt(masm_, "[ CountOperation");
3904
3905 bool is_postfix = node->is_postfix();
3906 bool is_increment = node->op() == Token::INC;
3907
3908 Variable* var = node->expression()->AsVariableProxy()->AsVariable();
3909 bool is_const = (var != NULL && var->mode() == Variable::CONST);
3910
3911 // Postfix: Make room for the result.
mads.s.ager31e71382008-08-13 09:32:07 +00003912 if (is_postfix) {
3913 __ mov(r0, Operand(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003914 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003915 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003916
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003917 // A constant reference is not saved to, so a constant reference is not a
3918 // compound assignment reference.
3919 { Reference target(this, node->expression(), !is_const);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003920 if (target.is_illegal()) {
3921 // Spoof the virtual frame to have the expected height (one higher
3922 // than on entry).
3923 if (!is_postfix) {
3924 __ mov(r0, Operand(Smi::FromInt(0)));
3925 frame_->EmitPush(r0);
3926 }
3927 ASSERT(frame_->height() == original_height + 1);
3928 return;
3929 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003930 target.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003931 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003932
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003933 JumpTarget slow;
3934 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003935
3936 // Load the value (1) into register r1.
3937 __ mov(r1, Operand(Smi::FromInt(1)));
3938
3939 // Check for smi operand.
3940 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003941 slow.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003942
3943 // Postfix: Store the old value as the result.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003944 if (is_postfix) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003945 __ str(r0, frame_->ElementAt(target.size()));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003946 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003947
3948 // Perform optimistic increment/decrement.
3949 if (is_increment) {
3950 __ add(r0, r0, Operand(r1), SetCC);
3951 } else {
3952 __ sub(r0, r0, Operand(r1), SetCC);
3953 }
3954
3955 // If the increment/decrement didn't overflow, we're done.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003956 exit.Branch(vc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003957
3958 // Revert optimistic increment/decrement.
3959 if (is_increment) {
3960 __ sub(r0, r0, Operand(r1));
3961 } else {
3962 __ add(r0, r0, Operand(r1));
3963 }
3964
3965 // Slow case: Convert to number.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003966 slow.Bind();
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003967 {
3968 // Convert the operand to a number.
3969 frame_->EmitPush(r0);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003970 frame_->InvokeBuiltin(Builtins::TO_NUMBER, CALL_JS, 1);
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003971 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003972 if (is_postfix) {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003973 // Postfix: store to result (on the stack).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003974 __ str(r0, frame_->ElementAt(target.size()));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003975 }
3976
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003977 // Compute the new value.
3978 __ mov(r1, Operand(Smi::FromInt(1)));
3979 frame_->EmitPush(r0);
3980 frame_->EmitPush(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003981 if (is_increment) {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003982 frame_->CallRuntime(Runtime::kNumberAdd, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003983 } else {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003984 frame_->CallRuntime(Runtime::kNumberSub, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003985 }
3986
3987 // Store the new value in the target if not const.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003988 exit.Bind();
3989 frame_->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00003990 if (!is_const) target.SetValue(NOT_CONST_INIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003991 }
3992
3993 // Postfix: Discard the new value and use the old.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003994 if (is_postfix) frame_->EmitPop(r0);
3995 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003996}
3997
3998
ager@chromium.org7c537e22008-10-16 08:43:32 +00003999void CodeGenerator::VisitBinaryOperation(BinaryOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004000#ifdef DEBUG
4001 int original_height = frame_->height();
4002#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004003 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004004 Comment cmnt(masm_, "[ BinaryOperation");
4005 Token::Value op = node->op();
4006
4007 // According to ECMA-262 section 11.11, page 58, the binary logical
4008 // operators must yield the result of one of the two expressions
4009 // before any ToBoolean() conversions. This means that the value
4010 // produced by a && or || operator is not necessarily a boolean.
4011
4012 // NOTE: If the left hand side produces a materialized value (not in
4013 // the CC register), we force the right hand side to do the
4014 // same. This is necessary because we may have to branch to the exit
4015 // after evaluating the left hand side (due to the shortcut
4016 // semantics), but the compiler must (statically) know if the result
4017 // of compiling the binary operation is materialized or not.
4018
4019 if (op == Token::AND) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004020 JumpTarget is_true;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004021 LoadConditionAndSpill(node->left(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004022 &is_true,
4023 false_target(),
4024 false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004025 if (has_valid_frame() && !has_cc()) {
4026 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004027 JumpTarget pop_and_continue;
4028 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004029
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004030 __ ldr(r0, frame_->Top()); // Duplicate the stack top.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004031 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004032 // Avoid popping the result if it converts to 'false' using the
4033 // standard ToBoolean() conversion as described in ECMA-262,
4034 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00004035 ToBoolean(&pop_and_continue, &exit);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004036 Branch(false, &exit);
4037
4038 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004039 pop_and_continue.Bind();
4040 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004041
4042 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004043 is_true.Bind();
4044 LoadAndSpill(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004045
4046 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004047 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004048 } else if (has_cc() || is_true.is_linked()) {
4049 // The left-hand side is either (a) partially compiled to
4050 // control flow with a final branch left to emit or (b) fully
4051 // compiled to control flow and possibly true.
4052 if (has_cc()) {
4053 Branch(false, false_target());
4054 }
4055 is_true.Bind();
4056 LoadConditionAndSpill(node->right(),
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004057 true_target(),
4058 false_target(),
4059 false);
4060 } else {
4061 // Nothing to do.
4062 ASSERT(!has_valid_frame() && !has_cc() && !is_true.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004063 }
4064
4065 } else if (op == Token::OR) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004066 JumpTarget is_false;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004067 LoadConditionAndSpill(node->left(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004068 true_target(),
4069 &is_false,
4070 false);
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004071 if (has_valid_frame() && !has_cc()) {
4072 // The left-hand side result is on top of the virtual frame.
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004073 JumpTarget pop_and_continue;
4074 JumpTarget exit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004075
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004076 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004077 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004078 // Avoid popping the result if it converts to 'true' using the
4079 // standard ToBoolean() conversion as described in ECMA-262,
4080 // section 9.2, page 30.
mads.s.ager31e71382008-08-13 09:32:07 +00004081 ToBoolean(&exit, &pop_and_continue);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004082 Branch(true, &exit);
4083
4084 // Pop the result of evaluating the first part.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004085 pop_and_continue.Bind();
4086 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004087
4088 // Evaluate right side expression.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004089 is_false.Bind();
4090 LoadAndSpill(node->right());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004091
4092 // Exit (always with a materialized value).
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004093 exit.Bind();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004094 } else if (has_cc() || is_false.is_linked()) {
4095 // The left-hand side is either (a) partially compiled to
4096 // control flow with a final branch left to emit or (b) fully
4097 // compiled to control flow and possibly false.
4098 if (has_cc()) {
4099 Branch(true, true_target());
4100 }
4101 is_false.Bind();
4102 LoadConditionAndSpill(node->right(),
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004103 true_target(),
4104 false_target(),
4105 false);
4106 } else {
4107 // Nothing to do.
4108 ASSERT(!has_valid_frame() && !has_cc() && !is_false.is_linked());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004109 }
4110
4111 } else {
4112 // Optimize for the case where (at least) one of the expressions
4113 // is a literal small integer.
4114 Literal* lliteral = node->left()->AsLiteral();
4115 Literal* rliteral = node->right()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004116 // NOTE: The code below assumes that the slow cases (calls to runtime)
4117 // never return a constant/immutable object.
4118 bool overwrite_left =
4119 (node->left()->AsBinaryOperation() != NULL &&
4120 node->left()->AsBinaryOperation()->ResultOverwriteAllowed());
4121 bool overwrite_right =
4122 (node->right()->AsBinaryOperation() != NULL &&
4123 node->right()->AsBinaryOperation()->ResultOverwriteAllowed());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004124
4125 if (rliteral != NULL && rliteral->handle()->IsSmi()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004126 LoadAndSpill(node->left());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004127 SmiOperation(node->op(),
4128 rliteral->handle(),
4129 false,
4130 overwrite_right ? OVERWRITE_RIGHT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004131
4132 } else if (lliteral != NULL && lliteral->handle()->IsSmi()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004133 LoadAndSpill(node->right());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004134 SmiOperation(node->op(),
4135 lliteral->handle(),
4136 true,
4137 overwrite_left ? OVERWRITE_LEFT : NO_OVERWRITE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004138
4139 } else {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004140 OverwriteMode overwrite_mode = NO_OVERWRITE;
4141 if (overwrite_left) {
4142 overwrite_mode = OVERWRITE_LEFT;
4143 } else if (overwrite_right) {
4144 overwrite_mode = OVERWRITE_RIGHT;
4145 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004146 LoadAndSpill(node->left());
4147 LoadAndSpill(node->right());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004148 GenericBinaryOperation(node->op(), overwrite_mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004149 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004150 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004151 }
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004152 ASSERT(!has_valid_frame() ||
4153 (has_cc() && frame_->height() == original_height) ||
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004154 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004155}
4156
4157
ager@chromium.org7c537e22008-10-16 08:43:32 +00004158void CodeGenerator::VisitThisFunction(ThisFunction* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004159#ifdef DEBUG
4160 int original_height = frame_->height();
4161#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004162 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004163 __ ldr(r0, frame_->Function());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004164 frame_->EmitPush(r0);
4165 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004166}
4167
4168
ager@chromium.org7c537e22008-10-16 08:43:32 +00004169void CodeGenerator::VisitCompareOperation(CompareOperation* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004170#ifdef DEBUG
4171 int original_height = frame_->height();
4172#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00004173 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004174 Comment cmnt(masm_, "[ CompareOperation");
4175
4176 // Get the expressions from the node.
4177 Expression* left = node->left();
4178 Expression* right = node->right();
4179 Token::Value op = node->op();
4180
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004181 // To make null checks efficient, we check if either left or right is the
4182 // literal 'null'. If so, we optimize the code by inlining a null check
4183 // instead of calling the (very) general runtime routine for checking
4184 // equality.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004185 if (op == Token::EQ || op == Token::EQ_STRICT) {
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00004186 bool left_is_null =
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004187 left->AsLiteral() != NULL && left->AsLiteral()->IsNull();
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00004188 bool right_is_null =
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004189 right->AsLiteral() != NULL && right->AsLiteral()->IsNull();
4190 // The 'null' value can only be equal to 'null' or 'undefined'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004191 if (left_is_null || right_is_null) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004192 LoadAndSpill(left_is_null ? right : left);
4193 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004194 __ LoadRoot(ip, Heap::kNullValueRootIndex);
4195 __ cmp(r0, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004196
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004197 // The 'null' value is only equal to 'undefined' if using non-strict
4198 // comparisons.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004199 if (op != Token::EQ_STRICT) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004200 true_target()->Branch(eq);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004201
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004202 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
4203 __ cmp(r0, Operand(ip));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004204 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004205
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004206 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004207 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004208
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004209 // It can be an undetectable object.
4210 __ ldr(r0, FieldMemOperand(r0, HeapObject::kMapOffset));
4211 __ ldrb(r0, FieldMemOperand(r0, Map::kBitFieldOffset));
4212 __ and_(r0, r0, Operand(1 << Map::kIsUndetectable));
4213 __ cmp(r0, Operand(1 << Map::kIsUndetectable));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004214 }
4215
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004216 cc_reg_ = eq;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004217 ASSERT(has_cc() && frame_->height() == original_height);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004218 return;
4219 }
4220 }
4221
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004222 // To make typeof testing for natives implemented in JavaScript really
4223 // efficient, we generate special code for expressions of the form:
4224 // 'typeof <expression> == <string>'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004225 UnaryOperation* operation = left->AsUnaryOperation();
4226 if ((op == Token::EQ || op == Token::EQ_STRICT) &&
4227 (operation != NULL && operation->op() == Token::TYPEOF) &&
4228 (right->AsLiteral() != NULL &&
4229 right->AsLiteral()->handle()->IsString())) {
4230 Handle<String> check(String::cast(*right->AsLiteral()->handle()));
4231
mads.s.ager31e71382008-08-13 09:32:07 +00004232 // Load the operand, move it to register r1.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004233 LoadTypeofExpression(operation->expression());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004234 frame_->EmitPop(r1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004235
4236 if (check->Equals(Heap::number_symbol())) {
4237 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004238 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004239 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004240 __ LoadRoot(ip, Heap::kHeapNumberMapRootIndex);
4241 __ cmp(r1, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004242 cc_reg_ = eq;
4243
4244 } else if (check->Equals(Heap::string_symbol())) {
4245 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004246 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004247
4248 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
4249
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004250 // It can be an undetectable string object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004251 __ ldrb(r2, FieldMemOperand(r1, Map::kBitFieldOffset));
4252 __ and_(r2, r2, Operand(1 << Map::kIsUndetectable));
4253 __ cmp(r2, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004254 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004255
4256 __ ldrb(r2, FieldMemOperand(r1, Map::kInstanceTypeOffset));
4257 __ cmp(r2, Operand(FIRST_NONSTRING_TYPE));
4258 cc_reg_ = lt;
4259
4260 } else if (check->Equals(Heap::boolean_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004261 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
4262 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004263 true_target()->Branch(eq);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004264 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
4265 __ cmp(r1, ip);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004266 cc_reg_ = eq;
4267
4268 } else if (check->Equals(Heap::undefined_symbol())) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004269 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
4270 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004271 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004272
4273 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004274 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004275
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004276 // It can be an undetectable object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004277 __ ldr(r1, FieldMemOperand(r1, HeapObject::kMapOffset));
4278 __ ldrb(r2, FieldMemOperand(r1, Map::kBitFieldOffset));
4279 __ and_(r2, r2, Operand(1 << Map::kIsUndetectable));
4280 __ cmp(r2, Operand(1 << Map::kIsUndetectable));
4281
4282 cc_reg_ = eq;
4283
4284 } else if (check->Equals(Heap::function_symbol())) {
4285 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004286 false_target()->Branch(eq);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004287 Register map_reg = r2;
4288 __ CompareObjectType(r1, map_reg, r1, JS_FUNCTION_TYPE);
4289 true_target()->Branch(eq);
4290 // Regular expressions are callable so typeof == 'function'.
4291 __ CompareInstanceType(map_reg, r1, JS_REGEXP_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004292 cc_reg_ = eq;
4293
4294 } else if (check->Equals(Heap::object_symbol())) {
4295 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004296 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004297
ager@chromium.orgab99eea2009-08-25 07:05:41 +00004298 __ LoadRoot(ip, Heap::kNullValueRootIndex);
4299 __ cmp(r1, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004300 true_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004301
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004302 Register map_reg = r2;
4303 __ CompareObjectType(r1, map_reg, r1, JS_REGEXP_TYPE);
4304 false_target()->Branch(eq);
4305
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004306 // It can be an undetectable object.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004307 __ ldrb(r1, FieldMemOperand(map_reg, Map::kBitFieldOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004308 __ and_(r1, r1, Operand(1 << Map::kIsUndetectable));
4309 __ cmp(r1, Operand(1 << Map::kIsUndetectable));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004310 false_target()->Branch(eq);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004311
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004312 __ ldrb(r1, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
4313 __ cmp(r1, Operand(FIRST_JS_OBJECT_TYPE));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004314 false_target()->Branch(lt);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004315 __ cmp(r1, Operand(LAST_JS_OBJECT_TYPE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004316 cc_reg_ = le;
4317
4318 } else {
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004319 // Uncommon case: typeof testing against a string literal that is
4320 // never returned from the typeof operator.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004321 false_target()->Jump();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004322 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004323 ASSERT(!has_valid_frame() ||
4324 (has_cc() && frame_->height() == original_height));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004325 return;
4326 }
4327
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004328 switch (op) {
4329 case Token::EQ:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004330 Comparison(eq, left, right, false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004331 break;
4332
4333 case Token::LT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004334 Comparison(lt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004335 break;
4336
4337 case Token::GT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004338 Comparison(gt, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004339 break;
4340
4341 case Token::LTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004342 Comparison(le, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004343 break;
4344
4345 case Token::GTE:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004346 Comparison(ge, left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004347 break;
4348
4349 case Token::EQ_STRICT:
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004350 Comparison(eq, left, right, true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004351 break;
4352
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004353 case Token::IN: {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004354 LoadAndSpill(left);
4355 LoadAndSpill(right);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004356 frame_->InvokeBuiltin(Builtins::IN, CALL_JS, 2);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004357 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004358 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004359 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004360
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004361 case Token::INSTANCEOF: {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004362 LoadAndSpill(left);
4363 LoadAndSpill(right);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004364 InstanceofStub stub;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004365 frame_->CallStub(&stub, 2);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004366 // At this point if instanceof succeeded then r0 == 0.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004367 __ tst(r0, Operand(r0));
ager@chromium.org7c537e22008-10-16 08:43:32 +00004368 cc_reg_ = eq;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004369 break;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004370 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004371
4372 default:
4373 UNREACHABLE();
4374 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004375 ASSERT((has_cc() && frame_->height() == original_height) ||
4376 (!has_cc() && frame_->height() == original_height + 1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004377}
4378
4379
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004380void CodeGenerator::EmitKeyedLoad(bool is_global) {
4381 Comment cmnt(masm_, "[ Load from keyed Property");
4382 Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Initialize));
4383 RelocInfo::Mode rmode = is_global
4384 ? RelocInfo::CODE_TARGET_CONTEXT
4385 : RelocInfo::CODE_TARGET;
4386 frame_->CallCodeObject(ic, rmode, 0);
4387}
4388
4389
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004390#ifdef DEBUG
4391bool CodeGenerator::HasValidEntryRegisters() { return true; }
4392#endif
4393
4394
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004395#undef __
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004396#define __ ACCESS_MASM(masm)
4397
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004398
ager@chromium.org7c537e22008-10-16 08:43:32 +00004399Handle<String> Reference::GetName() {
4400 ASSERT(type_ == NAMED);
4401 Property* property = expression_->AsProperty();
4402 if (property == NULL) {
4403 // Global variable reference treated as a named property reference.
4404 VariableProxy* proxy = expression_->AsVariableProxy();
4405 ASSERT(proxy->AsVariable() != NULL);
4406 ASSERT(proxy->AsVariable()->is_global());
4407 return proxy->name();
4408 } else {
4409 Literal* raw_name = property->key()->AsLiteral();
4410 ASSERT(raw_name != NULL);
4411 return Handle<String>(String::cast(*raw_name->handle()));
4412 }
4413}
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004414
ager@chromium.org7c537e22008-10-16 08:43:32 +00004415
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004416void Reference::GetValue() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004417 ASSERT(cgen_->HasValidEntryRegisters());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004418 ASSERT(!is_illegal());
4419 ASSERT(!cgen_->has_cc());
4420 MacroAssembler* masm = cgen_->masm();
4421 Property* property = expression_->AsProperty();
4422 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004423 cgen_->CodeForSourcePosition(property->position());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004424 }
4425
4426 switch (type_) {
4427 case SLOT: {
4428 Comment cmnt(masm, "[ Load from Slot");
4429 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot();
4430 ASSERT(slot != NULL);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004431 cgen_->LoadFromSlot(slot, NOT_INSIDE_TYPEOF);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004432 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004433 }
4434
ager@chromium.org7c537e22008-10-16 08:43:32 +00004435 case NAMED: {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004436 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004437 Comment cmnt(masm, "[ Load from named Property");
ager@chromium.org7c537e22008-10-16 08:43:32 +00004438 Handle<String> name(GetName());
ager@chromium.org7c537e22008-10-16 08:43:32 +00004439 Variable* var = expression_->AsVariableProxy()->AsVariable();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004440 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
4441 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004442 __ mov(r2, Operand(name));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004443 ASSERT(var == NULL || var->is_global());
4444 RelocInfo::Mode rmode = (var == NULL)
4445 ? RelocInfo::CODE_TARGET
4446 : RelocInfo::CODE_TARGET_CONTEXT;
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004447 frame->CallCodeObject(ic, rmode, 0);
4448 frame->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004449 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004450 }
4451
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004452 case KEYED: {
4453 // TODO(181): Implement inlined version of array indexing once
4454 // loop nesting is properly tracked on ARM.
4455 ASSERT(property != NULL);
4456 Variable* var = expression_->AsVariableProxy()->AsVariable();
4457 ASSERT(var == NULL || var->is_global());
4458 cgen_->EmitKeyedLoad(var != NULL);
4459 cgen_->frame()->EmitPush(r0);
4460 break;
4461 }
4462
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004463 default:
4464 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004465 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004466
4467 if (!persist_after_get_) {
4468 cgen_->UnloadReference(this);
4469 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004470}
4471
4472
ager@chromium.org7c537e22008-10-16 08:43:32 +00004473void Reference::SetValue(InitState init_state) {
4474 ASSERT(!is_illegal());
4475 ASSERT(!cgen_->has_cc());
4476 MacroAssembler* masm = cgen_->masm();
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004477 VirtualFrame* frame = cgen_->frame();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004478 Property* property = expression_->AsProperty();
4479 if (property != NULL) {
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004480 cgen_->CodeForSourcePosition(property->position());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004481 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004482
ager@chromium.org7c537e22008-10-16 08:43:32 +00004483 switch (type_) {
4484 case SLOT: {
4485 Comment cmnt(masm, "[ Store to Slot");
4486 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot();
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004487 cgen_->StoreToSlot(slot, init_state);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004488 cgen_->UnloadReference(this);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004489 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004490 }
4491
ager@chromium.org7c537e22008-10-16 08:43:32 +00004492 case NAMED: {
4493 Comment cmnt(masm, "[ Store to named Property");
4494 // Call the appropriate IC code.
ager@chromium.org7c537e22008-10-16 08:43:32 +00004495 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00004496 Handle<String> name(GetName());
4497
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004498 frame->EmitPop(r0);
ager@chromium.org5c838252010-02-19 08:53:10 +00004499 frame->EmitPop(r1);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004500 __ mov(r2, Operand(name));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004501 frame->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004502 frame->EmitPush(r0);
ager@chromium.org5c838252010-02-19 08:53:10 +00004503 set_unloaded();
ager@chromium.org7c537e22008-10-16 08:43:32 +00004504 break;
4505 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004506
ager@chromium.org7c537e22008-10-16 08:43:32 +00004507 case KEYED: {
4508 Comment cmnt(masm, "[ Store to keyed Property");
4509 Property* property = expression_->AsProperty();
4510 ASSERT(property != NULL);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004511 cgen_->CodeForSourcePosition(property->position());
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004512
4513 // Call IC code.
4514 Handle<Code> ic(Builtins::builtin(Builtins::KeyedStoreIC_Initialize));
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004515 frame->EmitPop(r0); // value
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004516 frame->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004517 frame->EmitPush(r0);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004518 cgen_->UnloadReference(this);
ager@chromium.org7c537e22008-10-16 08:43:32 +00004519 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004520 }
ager@chromium.org7c537e22008-10-16 08:43:32 +00004521
4522 default:
4523 UNREACHABLE();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00004524 }
4525}
4526
4527
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004528void FastNewClosureStub::Generate(MacroAssembler* masm) {
4529 // Clone the boilerplate in new space. Set the context to the
4530 // current context in cp.
4531 Label gc;
4532
4533 // Pop the boilerplate function from the stack.
4534 __ pop(r3);
4535
4536 // Attempt to allocate new JSFunction in new space.
4537 __ AllocateInNewSpace(JSFunction::kSize / kPointerSize,
4538 r0,
4539 r1,
4540 r2,
4541 &gc,
4542 TAG_OBJECT);
4543
4544 // Compute the function map in the current global context and set that
4545 // as the map of the allocated object.
4546 __ ldr(r2, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX)));
4547 __ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalContextOffset));
4548 __ ldr(r2, MemOperand(r2, Context::SlotOffset(Context::FUNCTION_MAP_INDEX)));
4549 __ str(r2, FieldMemOperand(r0, HeapObject::kMapOffset));
4550
4551 // Clone the rest of the boilerplate fields. We don't have to update
4552 // the write barrier because the allocated object is in new space.
4553 for (int offset = kPointerSize;
4554 offset < JSFunction::kSize;
4555 offset += kPointerSize) {
4556 if (offset == JSFunction::kContextOffset) {
4557 __ str(cp, FieldMemOperand(r0, offset));
4558 } else {
4559 __ ldr(r1, FieldMemOperand(r3, offset));
4560 __ str(r1, FieldMemOperand(r0, offset));
4561 }
4562 }
4563
4564 // Return result. The argument boilerplate has been popped already.
4565 __ Ret();
4566
4567 // Create a new closure through the slower runtime call.
4568 __ bind(&gc);
4569 __ push(cp);
4570 __ push(r3);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004571 __ TailCallRuntime(Runtime::kNewClosure, 2, 1);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004572}
4573
4574
4575void FastNewContextStub::Generate(MacroAssembler* masm) {
4576 // Try to allocate the context in new space.
4577 Label gc;
4578 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
4579
4580 // Attempt to allocate the context in new space.
4581 __ AllocateInNewSpace(length + (FixedArray::kHeaderSize / kPointerSize),
4582 r0,
4583 r1,
4584 r2,
4585 &gc,
4586 TAG_OBJECT);
4587
4588 // Load the function from the stack.
ager@chromium.org5c838252010-02-19 08:53:10 +00004589 __ ldr(r3, MemOperand(sp, 0));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004590
4591 // Setup the object header.
4592 __ LoadRoot(r2, Heap::kContextMapRootIndex);
4593 __ str(r2, FieldMemOperand(r0, HeapObject::kMapOffset));
4594 __ mov(r2, Operand(length));
4595 __ str(r2, FieldMemOperand(r0, Array::kLengthOffset));
4596
4597 // Setup the fixed slots.
4598 __ mov(r1, Operand(Smi::FromInt(0)));
4599 __ str(r3, MemOperand(r0, Context::SlotOffset(Context::CLOSURE_INDEX)));
4600 __ str(r0, MemOperand(r0, Context::SlotOffset(Context::FCONTEXT_INDEX)));
4601 __ str(r1, MemOperand(r0, Context::SlotOffset(Context::PREVIOUS_INDEX)));
4602 __ str(r1, MemOperand(r0, Context::SlotOffset(Context::EXTENSION_INDEX)));
4603
4604 // Copy the global object from the surrounding context.
4605 __ ldr(r1, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX)));
4606 __ str(r1, MemOperand(r0, Context::SlotOffset(Context::GLOBAL_INDEX)));
4607
4608 // Initialize the rest of the slots to undefined.
4609 __ LoadRoot(r1, Heap::kUndefinedValueRootIndex);
4610 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; i++) {
4611 __ str(r1, MemOperand(r0, Context::SlotOffset(i)));
4612 }
4613
4614 // Remove the on-stack argument and return.
4615 __ mov(cp, r0);
4616 __ pop();
4617 __ Ret();
4618
4619 // Need to collect. Call into runtime system.
4620 __ bind(&gc);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004621 __ TailCallRuntime(Runtime::kNewContext, 1, 1);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004622}
4623
4624
ager@chromium.org5c838252010-02-19 08:53:10 +00004625void FastCloneShallowArrayStub::Generate(MacroAssembler* masm) {
4626 // Stack layout on entry:
4627 //
4628 // [sp]: constant elements.
4629 // [sp + kPointerSize]: literal index.
4630 // [sp + (2 * kPointerSize)]: literals array.
4631
4632 // All sizes here are multiples of kPointerSize.
4633 int elements_size = (length_ > 0) ? FixedArray::SizeFor(length_) : 0;
4634 int size = JSArray::kSize + elements_size;
4635
4636 // Load boilerplate object into r3 and check if we need to create a
4637 // boilerplate.
4638 Label slow_case;
4639 __ ldr(r3, MemOperand(sp, 2 * kPointerSize));
4640 __ ldr(r0, MemOperand(sp, 1 * kPointerSize));
4641 __ add(r3, r3, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
4642 __ ldr(r3, MemOperand(r3, r0, LSL, kPointerSizeLog2 - kSmiTagSize));
4643 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
4644 __ cmp(r3, ip);
4645 __ b(eq, &slow_case);
4646
4647 // Allocate both the JS array and the elements array in one big
4648 // allocation. This avoids multiple limit checks.
4649 __ AllocateInNewSpace(size / kPointerSize,
4650 r0,
4651 r1,
4652 r2,
4653 &slow_case,
4654 TAG_OBJECT);
4655
4656 // Copy the JS array part.
4657 for (int i = 0; i < JSArray::kSize; i += kPointerSize) {
4658 if ((i != JSArray::kElementsOffset) || (length_ == 0)) {
4659 __ ldr(r1, FieldMemOperand(r3, i));
4660 __ str(r1, FieldMemOperand(r0, i));
4661 }
4662 }
4663
4664 if (length_ > 0) {
4665 // Get hold of the elements array of the boilerplate and setup the
4666 // elements pointer in the resulting object.
4667 __ ldr(r3, FieldMemOperand(r3, JSArray::kElementsOffset));
4668 __ add(r2, r0, Operand(JSArray::kSize));
4669 __ str(r2, FieldMemOperand(r0, JSArray::kElementsOffset));
4670
4671 // Copy the elements array.
4672 for (int i = 0; i < elements_size; i += kPointerSize) {
4673 __ ldr(r1, FieldMemOperand(r3, i));
4674 __ str(r1, FieldMemOperand(r2, i));
4675 }
4676 }
4677
4678 // Return and remove the on-stack parameters.
4679 __ add(sp, sp, Operand(3 * kPointerSize));
4680 __ Ret();
4681
4682 __ bind(&slow_case);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004683 __ TailCallRuntime(Runtime::kCreateArrayLiteralShallow, 3, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00004684}
4685
4686
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004687// Count leading zeros in a 32 bit word. On ARM5 and later it uses the clz
4688// instruction. On pre-ARM5 hardware this routine gives the wrong answer for 0
4689// (31 instead of 32).
4690static void CountLeadingZeros(
4691 MacroAssembler* masm,
4692 Register source,
4693 Register scratch,
4694 Register zeros) {
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +00004695#ifdef CAN_USE_ARMV5_INSTRUCTIONS
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004696 __ clz(zeros, source); // This instruction is only supported after ARM5.
4697#else
4698 __ mov(zeros, Operand(0));
4699 __ mov(scratch, source);
4700 // Top 16.
4701 __ tst(scratch, Operand(0xffff0000));
4702 __ add(zeros, zeros, Operand(16), LeaveCC, eq);
4703 __ mov(scratch, Operand(scratch, LSL, 16), LeaveCC, eq);
4704 // Top 8.
4705 __ tst(scratch, Operand(0xff000000));
4706 __ add(zeros, zeros, Operand(8), LeaveCC, eq);
4707 __ mov(scratch, Operand(scratch, LSL, 8), LeaveCC, eq);
4708 // Top 4.
4709 __ tst(scratch, Operand(0xf0000000));
4710 __ add(zeros, zeros, Operand(4), LeaveCC, eq);
4711 __ mov(scratch, Operand(scratch, LSL, 4), LeaveCC, eq);
4712 // Top 2.
4713 __ tst(scratch, Operand(0xc0000000));
4714 __ add(zeros, zeros, Operand(2), LeaveCC, eq);
4715 __ mov(scratch, Operand(scratch, LSL, 2), LeaveCC, eq);
4716 // Top bit.
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004717 __ tst(scratch, Operand(0x80000000u));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004718 __ add(zeros, zeros, Operand(1), LeaveCC, eq);
4719#endif
4720}
4721
4722
4723// Takes a Smi and converts to an IEEE 64 bit floating point value in two
4724// registers. The format is 1 sign bit, 11 exponent bits (biased 1023) and
4725// 52 fraction bits (20 in the first word, 32 in the second). Zeros is a
4726// scratch register. Destroys the source register. No GC occurs during this
4727// stub so you don't have to set up the frame.
4728class ConvertToDoubleStub : public CodeStub {
4729 public:
4730 ConvertToDoubleStub(Register result_reg_1,
4731 Register result_reg_2,
4732 Register source_reg,
4733 Register scratch_reg)
4734 : result1_(result_reg_1),
4735 result2_(result_reg_2),
4736 source_(source_reg),
4737 zeros_(scratch_reg) { }
4738
4739 private:
4740 Register result1_;
4741 Register result2_;
4742 Register source_;
4743 Register zeros_;
4744
4745 // Minor key encoding in 16 bits.
4746 class ModeBits: public BitField<OverwriteMode, 0, 2> {};
4747 class OpBits: public BitField<Token::Value, 2, 14> {};
4748
4749 Major MajorKey() { return ConvertToDouble; }
4750 int MinorKey() {
4751 // Encode the parameters in a unique 16 bit value.
4752 return result1_.code() +
4753 (result2_.code() << 4) +
4754 (source_.code() << 8) +
4755 (zeros_.code() << 12);
4756 }
4757
4758 void Generate(MacroAssembler* masm);
4759
4760 const char* GetName() { return "ConvertToDoubleStub"; }
4761
4762#ifdef DEBUG
4763 void Print() { PrintF("ConvertToDoubleStub\n"); }
4764#endif
4765};
4766
4767
4768void ConvertToDoubleStub::Generate(MacroAssembler* masm) {
4769#ifndef BIG_ENDIAN_FLOATING_POINT
4770 Register exponent = result1_;
4771 Register mantissa = result2_;
4772#else
4773 Register exponent = result2_;
4774 Register mantissa = result1_;
4775#endif
4776 Label not_special;
4777 // Convert from Smi to integer.
4778 __ mov(source_, Operand(source_, ASR, kSmiTagSize));
4779 // Move sign bit from source to destination. This works because the sign bit
4780 // in the exponent word of the double has the same position and polarity as
4781 // the 2's complement sign bit in a Smi.
4782 ASSERT(HeapNumber::kSignMask == 0x80000000u);
4783 __ and_(exponent, source_, Operand(HeapNumber::kSignMask), SetCC);
4784 // Subtract from 0 if source was negative.
4785 __ rsb(source_, source_, Operand(0), LeaveCC, ne);
4786 __ cmp(source_, Operand(1));
4787 __ b(gt, &not_special);
4788
4789 // We have -1, 0 or 1, which we treat specially.
4790 __ cmp(source_, Operand(0));
4791 // For 1 or -1 we need to or in the 0 exponent (biased to 1023).
4792 static const uint32_t exponent_word_for_1 =
4793 HeapNumber::kExponentBias << HeapNumber::kExponentShift;
4794 __ orr(exponent, exponent, Operand(exponent_word_for_1), LeaveCC, ne);
4795 // 1, 0 and -1 all have 0 for the second word.
4796 __ mov(mantissa, Operand(0));
4797 __ Ret();
4798
4799 __ bind(&not_special);
4800 // Count leading zeros. Uses result2 for a scratch register on pre-ARM5.
4801 // Gets the wrong answer for 0, but we already checked for that case above.
4802 CountLeadingZeros(masm, source_, mantissa, zeros_);
4803 // Compute exponent and or it into the exponent register.
4804 // We use result2 as a scratch register here.
4805 __ rsb(mantissa, zeros_, Operand(31 + HeapNumber::kExponentBias));
4806 __ orr(exponent,
4807 exponent,
4808 Operand(mantissa, LSL, HeapNumber::kExponentShift));
4809 // Shift up the source chopping the top bit off.
4810 __ add(zeros_, zeros_, Operand(1));
4811 // This wouldn't work for 1.0 or -1.0 as the shift would be 32 which means 0.
4812 __ mov(source_, Operand(source_, LSL, zeros_));
4813 // Compute lower part of fraction (last 12 bits).
4814 __ mov(mantissa, Operand(source_, LSL, HeapNumber::kMantissaBitsInTopWord));
4815 // And the top (top 20 bits).
4816 __ orr(exponent,
4817 exponent,
4818 Operand(source_, LSR, 32 - HeapNumber::kMantissaBitsInTopWord));
4819 __ Ret();
4820}
4821
4822
4823// This stub can convert a signed int32 to a heap number (double). It does
4824// not work for int32s that are in Smi range! No GC occurs during this stub
4825// so you don't have to set up the frame.
4826class WriteInt32ToHeapNumberStub : public CodeStub {
4827 public:
4828 WriteInt32ToHeapNumberStub(Register the_int,
4829 Register the_heap_number,
4830 Register scratch)
4831 : the_int_(the_int),
4832 the_heap_number_(the_heap_number),
4833 scratch_(scratch) { }
4834
4835 private:
4836 Register the_int_;
4837 Register the_heap_number_;
4838 Register scratch_;
4839
4840 // Minor key encoding in 16 bits.
4841 class ModeBits: public BitField<OverwriteMode, 0, 2> {};
4842 class OpBits: public BitField<Token::Value, 2, 14> {};
4843
4844 Major MajorKey() { return WriteInt32ToHeapNumber; }
4845 int MinorKey() {
4846 // Encode the parameters in a unique 16 bit value.
4847 return the_int_.code() +
4848 (the_heap_number_.code() << 4) +
4849 (scratch_.code() << 8);
4850 }
4851
4852 void Generate(MacroAssembler* masm);
4853
4854 const char* GetName() { return "WriteInt32ToHeapNumberStub"; }
4855
4856#ifdef DEBUG
4857 void Print() { PrintF("WriteInt32ToHeapNumberStub\n"); }
4858#endif
4859};
4860
4861
4862// See comment for class.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004863void WriteInt32ToHeapNumberStub::Generate(MacroAssembler* masm) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004864 Label max_negative_int;
4865 // the_int_ has the answer which is a signed int32 but not a Smi.
4866 // We test for the special value that has a different exponent. This test
4867 // has the neat side effect of setting the flags according to the sign.
4868 ASSERT(HeapNumber::kSignMask == 0x80000000u);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004869 __ cmp(the_int_, Operand(0x80000000u));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004870 __ b(eq, &max_negative_int);
4871 // Set up the correct exponent in scratch_. All non-Smi int32s have the same.
4872 // A non-Smi integer is 1.xxx * 2^30 so the exponent is 30 (biased).
4873 uint32_t non_smi_exponent =
4874 (HeapNumber::kExponentBias + 30) << HeapNumber::kExponentShift;
4875 __ mov(scratch_, Operand(non_smi_exponent));
4876 // Set the sign bit in scratch_ if the value was negative.
4877 __ orr(scratch_, scratch_, Operand(HeapNumber::kSignMask), LeaveCC, cs);
4878 // Subtract from 0 if the value was negative.
4879 __ rsb(the_int_, the_int_, Operand(0), LeaveCC, cs);
4880 // We should be masking the implict first digit of the mantissa away here,
4881 // but it just ends up combining harmlessly with the last digit of the
4882 // exponent that happens to be 1. The sign bit is 0 so we shift 10 to get
4883 // the most significant 1 to hit the last bit of the 12 bit sign and exponent.
4884 ASSERT(((1 << HeapNumber::kExponentShift) & non_smi_exponent) != 0);
4885 const int shift_distance = HeapNumber::kNonMantissaBitsInTopWord - 2;
4886 __ orr(scratch_, scratch_, Operand(the_int_, LSR, shift_distance));
4887 __ str(scratch_, FieldMemOperand(the_heap_number_,
4888 HeapNumber::kExponentOffset));
4889 __ mov(scratch_, Operand(the_int_, LSL, 32 - shift_distance));
4890 __ str(scratch_, FieldMemOperand(the_heap_number_,
4891 HeapNumber::kMantissaOffset));
4892 __ Ret();
4893
4894 __ bind(&max_negative_int);
4895 // The max negative int32 is stored as a positive number in the mantissa of
4896 // a double because it uses a sign bit instead of using two's complement.
4897 // The actual mantissa bits stored are all 0 because the implicit most
4898 // significant 1 bit is not stored.
4899 non_smi_exponent += 1 << HeapNumber::kExponentShift;
4900 __ mov(ip, Operand(HeapNumber::kSignMask | non_smi_exponent));
4901 __ str(ip, FieldMemOperand(the_heap_number_, HeapNumber::kExponentOffset));
4902 __ mov(ip, Operand(0));
4903 __ str(ip, FieldMemOperand(the_heap_number_, HeapNumber::kMantissaOffset));
4904 __ Ret();
4905}
4906
4907
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004908// Handle the case where the lhs and rhs are the same object.
4909// Equality is almost reflexive (everything but NaN), so this is a test
4910// for "identity and not NaN".
4911static void EmitIdenticalObjectComparison(MacroAssembler* masm,
4912 Label* slow,
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004913 Condition cc,
4914 bool never_nan_nan) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004915 Label not_identical;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004916 Label heap_number, return_equal;
4917 Register exp_mask_reg = r5;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004918 __ cmp(r0, Operand(r1));
4919 __ b(ne, &not_identical);
4920
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004921 // The two objects are identical. If we know that one of them isn't NaN then
4922 // we now know they test equal.
4923 if (cc != eq || !never_nan_nan) {
4924 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004925
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004926 // Test for NaN. Sadly, we can't just compare to Factory::nan_value(),
4927 // so we do the second best thing - test it ourselves.
4928 // They are both equal and they are not both Smis so both of them are not
4929 // Smis. If it's not a heap number, then return equal.
4930 if (cc == lt || cc == gt) {
4931 __ CompareObjectType(r0, r4, r4, FIRST_JS_OBJECT_TYPE);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004932 __ b(ge, slow);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004933 } else {
4934 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
4935 __ b(eq, &heap_number);
4936 // Comparing JS objects with <=, >= is complicated.
4937 if (cc != eq) {
4938 __ cmp(r4, Operand(FIRST_JS_OBJECT_TYPE));
4939 __ b(ge, slow);
4940 // Normally here we fall through to return_equal, but undefined is
4941 // special: (undefined == undefined) == true, but
4942 // (undefined <= undefined) == false! See ECMAScript 11.8.5.
4943 if (cc == le || cc == ge) {
4944 __ cmp(r4, Operand(ODDBALL_TYPE));
4945 __ b(ne, &return_equal);
4946 __ LoadRoot(r2, Heap::kUndefinedValueRootIndex);
4947 __ cmp(r0, Operand(r2));
4948 __ b(ne, &return_equal);
4949 if (cc == le) {
4950 // undefined <= undefined should fail.
4951 __ mov(r0, Operand(GREATER));
4952 } else {
4953 // undefined >= undefined should fail.
4954 __ mov(r0, Operand(LESS));
4955 }
4956 __ mov(pc, Operand(lr)); // Return.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004957 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004958 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004959 }
4960 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004961
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004962 __ bind(&return_equal);
4963 if (cc == lt) {
4964 __ mov(r0, Operand(GREATER)); // Things aren't less than themselves.
4965 } else if (cc == gt) {
4966 __ mov(r0, Operand(LESS)); // Things aren't greater than themselves.
4967 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004968 __ mov(r0, Operand(EQUAL)); // Things are <=, >=, ==, === themselves.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004969 }
4970 __ mov(pc, Operand(lr)); // Return.
4971
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004972 if (cc != eq || !never_nan_nan) {
4973 // For less and greater we don't have to check for NaN since the result of
4974 // x < x is false regardless. For the others here is some code to check
4975 // for NaN.
4976 if (cc != lt && cc != gt) {
4977 __ bind(&heap_number);
4978 // It is a heap number, so return non-equal if it's NaN and equal if it's
4979 // not NaN.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004980
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004981 // The representation of NaN values has all exponent bits (52..62) set,
4982 // and not all mantissa bits (0..51) clear.
4983 // Read top bits of double representation (second word of value).
4984 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
4985 // Test that exponent bits are all set.
4986 __ and_(r3, r2, Operand(exp_mask_reg));
4987 __ cmp(r3, Operand(exp_mask_reg));
4988 __ b(ne, &return_equal);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004989
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004990 // Shift out flag and all exponent bits, retaining only mantissa.
4991 __ mov(r2, Operand(r2, LSL, HeapNumber::kNonMantissaBitsInTopWord));
4992 // Or with all low-bits of mantissa.
4993 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kMantissaOffset));
4994 __ orr(r0, r3, Operand(r2), SetCC);
4995 // For equal we already have the right value in r0: Return zero (equal)
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004996 // if all bits in mantissa are zero (it's an Infinity) and non-zero if
4997 // not (it's a NaN). For <= and >= we need to load r0 with the failing
4998 // value if it's a NaN.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004999 if (cc != eq) {
5000 // All-zero means Infinity means equal.
5001 __ mov(pc, Operand(lr), LeaveCC, eq); // Return equal
5002 if (cc == le) {
5003 __ mov(r0, Operand(GREATER)); // NaN <= NaN should fail.
5004 } else {
5005 __ mov(r0, Operand(LESS)); // NaN >= NaN should fail.
5006 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005007 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005008 __ mov(pc, Operand(lr)); // Return.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005009 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005010 // No fall through here.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005011 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005012
5013 __ bind(&not_identical);
5014}
5015
5016
5017// See comment at call site.
5018static void EmitSmiNonsmiComparison(MacroAssembler* masm,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005019 Label* lhs_not_nan,
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005020 Label* slow,
5021 bool strict) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005022 Label rhs_is_smi;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005023 __ tst(r0, Operand(kSmiTagMask));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005024 __ b(eq, &rhs_is_smi);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005025
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005026 // Lhs is a Smi. Check whether the rhs is a heap number.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005027 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
5028 if (strict) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005029 // If rhs is not a number and lhs is a Smi then strict equality cannot
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005030 // succeed. Return non-equal (r0 is already not zero)
5031 __ mov(pc, Operand(lr), LeaveCC, ne); // Return.
5032 } else {
5033 // Smi compared non-strictly with a non-Smi non-heap-number. Call
5034 // the runtime.
5035 __ b(ne, slow);
5036 }
5037
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005038 // Lhs (r1) is a smi, rhs (r0) is a number.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005039 if (CpuFeatures::IsSupported(VFP3)) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005040 // Convert lhs to a double in d7 .
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005041 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005042 __ mov(r7, Operand(r1, ASR, kSmiTagSize));
5043 __ vmov(s15, r7);
5044 __ vcvt(d7, s15);
5045 // Load the double from rhs, tagged HeapNumber r0, to d6.
5046 __ sub(r7, r0, Operand(kHeapObjectTag));
5047 __ vldr(d6, r7, HeapNumber::kValueOffset);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005048 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005049 __ push(lr);
5050 // Convert lhs to a double in r2, r3.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005051 __ mov(r7, Operand(r1));
5052 ConvertToDoubleStub stub1(r3, r2, r7, r6);
5053 __ Call(stub1.GetCode(), RelocInfo::CODE_TARGET);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005054 // Load rhs to a double in r0, r1.
5055 __ ldr(r1, FieldMemOperand(r0, HeapNumber::kValueOffset + kPointerSize));
5056 __ ldr(r0, FieldMemOperand(r0, HeapNumber::kValueOffset));
5057 __ pop(lr);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005058 }
5059
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005060 // We now have both loaded as doubles but we can skip the lhs nan check
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005061 // since it's a smi.
5062 __ jmp(lhs_not_nan);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005063
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005064 __ bind(&rhs_is_smi);
5065 // Rhs is a smi. Check whether the non-smi lhs is a heap number.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005066 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5067 if (strict) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005068 // If lhs is not a number and rhs is a smi then strict equality cannot
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005069 // succeed. Return non-equal.
5070 __ mov(r0, Operand(1), LeaveCC, ne); // Non-zero indicates not equal.
5071 __ mov(pc, Operand(lr), LeaveCC, ne); // Return.
5072 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005073 // Smi compared non-strictly with a non-smi non-heap-number. Call
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005074 // the runtime.
5075 __ b(ne, slow);
5076 }
5077
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005078 // Rhs (r0) is a smi, lhs (r1) is a heap number.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005079 if (CpuFeatures::IsSupported(VFP3)) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005080 // Convert rhs to a double in d6 .
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005081 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005082 // Load the double from lhs, tagged HeapNumber r1, to d7.
5083 __ sub(r7, r1, Operand(kHeapObjectTag));
5084 __ vldr(d7, r7, HeapNumber::kValueOffset);
5085 __ mov(r7, Operand(r0, ASR, kSmiTagSize));
5086 __ vmov(s13, r7);
5087 __ vcvt(d6, s13);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005088 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005089 __ push(lr);
5090 // Load lhs to a double in r2, r3.
5091 __ ldr(r3, FieldMemOperand(r1, HeapNumber::kValueOffset + kPointerSize));
5092 __ ldr(r2, FieldMemOperand(r1, HeapNumber::kValueOffset));
5093 // Convert rhs to a double in r0, r1.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005094 __ mov(r7, Operand(r0));
5095 ConvertToDoubleStub stub2(r1, r0, r7, r6);
5096 __ Call(stub2.GetCode(), RelocInfo::CODE_TARGET);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005097 __ pop(lr);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005098 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005099 // Fall through to both_loaded_as_doubles.
5100}
5101
5102
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005103void EmitNanCheck(MacroAssembler* masm, Label* lhs_not_nan, Condition cc) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005104 bool exp_first = (HeapNumber::kExponentOffset == HeapNumber::kValueOffset);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005105 Register rhs_exponent = exp_first ? r0 : r1;
5106 Register lhs_exponent = exp_first ? r2 : r3;
5107 Register rhs_mantissa = exp_first ? r1 : r0;
5108 Register lhs_mantissa = exp_first ? r3 : r2;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005109 Label one_is_nan, neither_is_nan;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005110 Label lhs_not_nan_exp_mask_is_loaded;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005111
5112 Register exp_mask_reg = r5;
5113
5114 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005115 __ and_(r4, lhs_exponent, Operand(exp_mask_reg));
5116 __ cmp(r4, Operand(exp_mask_reg));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005117 __ b(ne, &lhs_not_nan_exp_mask_is_loaded);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005118 __ mov(r4,
5119 Operand(lhs_exponent, LSL, HeapNumber::kNonMantissaBitsInTopWord),
5120 SetCC);
5121 __ b(ne, &one_is_nan);
5122 __ cmp(lhs_mantissa, Operand(0));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005123 __ b(ne, &one_is_nan);
5124
5125 __ bind(lhs_not_nan);
5126 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
5127 __ bind(&lhs_not_nan_exp_mask_is_loaded);
5128 __ and_(r4, rhs_exponent, Operand(exp_mask_reg));
5129 __ cmp(r4, Operand(exp_mask_reg));
5130 __ b(ne, &neither_is_nan);
5131 __ mov(r4,
5132 Operand(rhs_exponent, LSL, HeapNumber::kNonMantissaBitsInTopWord),
5133 SetCC);
5134 __ b(ne, &one_is_nan);
5135 __ cmp(rhs_mantissa, Operand(0));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005136 __ b(eq, &neither_is_nan);
5137
5138 __ bind(&one_is_nan);
5139 // NaN comparisons always fail.
5140 // Load whatever we need in r0 to make the comparison fail.
5141 if (cc == lt || cc == le) {
5142 __ mov(r0, Operand(GREATER));
5143 } else {
5144 __ mov(r0, Operand(LESS));
5145 }
5146 __ mov(pc, Operand(lr)); // Return.
5147
5148 __ bind(&neither_is_nan);
5149}
5150
5151
5152// See comment at call site.
5153static void EmitTwoNonNanDoubleComparison(MacroAssembler* masm, Condition cc) {
5154 bool exp_first = (HeapNumber::kExponentOffset == HeapNumber::kValueOffset);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005155 Register rhs_exponent = exp_first ? r0 : r1;
5156 Register lhs_exponent = exp_first ? r2 : r3;
5157 Register rhs_mantissa = exp_first ? r1 : r0;
5158 Register lhs_mantissa = exp_first ? r3 : r2;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005159
5160 // r0, r1, r2, r3 have the two doubles. Neither is a NaN.
5161 if (cc == eq) {
5162 // Doubles are not equal unless they have the same bit pattern.
5163 // Exception: 0 and -0.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005164 __ cmp(rhs_mantissa, Operand(lhs_mantissa));
5165 __ orr(r0, rhs_mantissa, Operand(lhs_mantissa), LeaveCC, ne);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005166 // Return non-zero if the numbers are unequal.
5167 __ mov(pc, Operand(lr), LeaveCC, ne);
5168
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005169 __ sub(r0, rhs_exponent, Operand(lhs_exponent), SetCC);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005170 // If exponents are equal then return 0.
5171 __ mov(pc, Operand(lr), LeaveCC, eq);
5172
5173 // Exponents are unequal. The only way we can return that the numbers
5174 // are equal is if one is -0 and the other is 0. We already dealt
5175 // with the case where both are -0 or both are 0.
5176 // We start by seeing if the mantissas (that are equal) or the bottom
5177 // 31 bits of the rhs exponent are non-zero. If so we return not
5178 // equal.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005179 __ orr(r4, lhs_mantissa, Operand(lhs_exponent, LSL, kSmiTagSize), SetCC);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005180 __ mov(r0, Operand(r4), LeaveCC, ne);
5181 __ mov(pc, Operand(lr), LeaveCC, ne); // Return conditionally.
5182 // Now they are equal if and only if the lhs exponent is zero in its
5183 // low 31 bits.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005184 __ mov(r0, Operand(rhs_exponent, LSL, kSmiTagSize));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005185 __ mov(pc, Operand(lr));
5186 } else {
5187 // Call a native function to do a comparison between two non-NaNs.
5188 // Call C routine that may not cause GC or other trouble.
5189 __ mov(r5, Operand(ExternalReference::compare_doubles()));
5190 __ Jump(r5); // Tail call.
5191 }
5192}
5193
5194
5195// See comment at call site.
5196static void EmitStrictTwoHeapObjectCompare(MacroAssembler* masm) {
5197 // If either operand is a JSObject or an oddball value, then they are
5198 // not equal since their pointers are different.
5199 // There is no test for undetectability in strict equality.
5200 ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
5201 Label first_non_object;
5202 // Get the type of the first operand into r2 and compare it with
5203 // FIRST_JS_OBJECT_TYPE.
5204 __ CompareObjectType(r0, r2, r2, FIRST_JS_OBJECT_TYPE);
5205 __ b(lt, &first_non_object);
5206
5207 // Return non-zero (r0 is not zero)
5208 Label return_not_equal;
5209 __ bind(&return_not_equal);
5210 __ mov(pc, Operand(lr)); // Return.
5211
5212 __ bind(&first_non_object);
5213 // Check for oddballs: true, false, null, undefined.
5214 __ cmp(r2, Operand(ODDBALL_TYPE));
5215 __ b(eq, &return_not_equal);
5216
5217 __ CompareObjectType(r1, r3, r3, FIRST_JS_OBJECT_TYPE);
5218 __ b(ge, &return_not_equal);
5219
5220 // Check for oddballs: true, false, null, undefined.
5221 __ cmp(r3, Operand(ODDBALL_TYPE));
5222 __ b(eq, &return_not_equal);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005223
5224 // Now that we have the types we might as well check for symbol-symbol.
5225 // Ensure that no non-strings have the symbol bit set.
5226 ASSERT(kNotStringTag + kIsSymbolMask > LAST_TYPE);
5227 ASSERT(kSymbolTag != 0);
5228 __ and_(r2, r2, Operand(r3));
5229 __ tst(r2, Operand(kIsSymbolMask));
5230 __ b(ne, &return_not_equal);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005231}
5232
5233
5234// See comment at call site.
5235static void EmitCheckForTwoHeapNumbers(MacroAssembler* masm,
5236 Label* both_loaded_as_doubles,
5237 Label* not_heap_numbers,
5238 Label* slow) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005239 __ CompareObjectType(r0, r3, r2, HEAP_NUMBER_TYPE);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005240 __ b(ne, not_heap_numbers);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005241 __ ldr(r2, FieldMemOperand(r1, HeapObject::kMapOffset));
5242 __ cmp(r2, r3);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005243 __ b(ne, slow); // First was a heap number, second wasn't. Go slow case.
5244
5245 // Both are heap numbers. Load them up then jump to the code we have
5246 // for that.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005247 if (CpuFeatures::IsSupported(VFP3)) {
5248 CpuFeatures::Scope scope(VFP3);
5249 __ sub(r7, r0, Operand(kHeapObjectTag));
5250 __ vldr(d6, r7, HeapNumber::kValueOffset);
5251 __ sub(r7, r1, Operand(kHeapObjectTag));
5252 __ vldr(d7, r7, HeapNumber::kValueOffset);
5253 } else {
5254 __ ldr(r2, FieldMemOperand(r1, HeapNumber::kValueOffset));
5255 __ ldr(r3, FieldMemOperand(r1, HeapNumber::kValueOffset + kPointerSize));
5256 __ ldr(r1, FieldMemOperand(r0, HeapNumber::kValueOffset + kPointerSize));
5257 __ ldr(r0, FieldMemOperand(r0, HeapNumber::kValueOffset));
5258 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005259 __ jmp(both_loaded_as_doubles);
5260}
5261
5262
5263// Fast negative check for symbol-to-symbol equality.
5264static void EmitCheckForSymbols(MacroAssembler* masm, Label* slow) {
5265 // r2 is object type of r0.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005266 // Ensure that no non-strings have the symbol bit set.
5267 ASSERT(kNotStringTag + kIsSymbolMask > LAST_TYPE);
5268 ASSERT(kSymbolTag != 0);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005269 __ tst(r2, Operand(kIsSymbolMask));
5270 __ b(eq, slow);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005271 __ ldr(r3, FieldMemOperand(r1, HeapObject::kMapOffset));
5272 __ ldrb(r3, FieldMemOperand(r3, Map::kInstanceTypeOffset));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005273 __ tst(r3, Operand(kIsSymbolMask));
5274 __ b(eq, slow);
5275
5276 // Both are symbols. We already checked they weren't the same pointer
5277 // so they are not equal.
5278 __ mov(r0, Operand(1)); // Non-zero indicates not equal.
5279 __ mov(pc, Operand(lr)); // Return.
5280}
5281
5282
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005283// On entry r0 (rhs) and r1 (lhs) are the values to be compared.
5284// On exit r0 is 0, positive or negative to indicate the result of
5285// the comparison.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005286void CompareStub::Generate(MacroAssembler* masm) {
5287 Label slow; // Call builtin.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005288 Label not_smis, both_loaded_as_doubles, lhs_not_nan;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005289
5290 // NOTICE! This code is only reached after a smi-fast-case check, so
5291 // it is certain that at least one operand isn't a smi.
5292
5293 // Handle the case where the objects are identical. Either returns the answer
5294 // or goes to slow. Only falls through if the objects were not identical.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005295 EmitIdenticalObjectComparison(masm, &slow, cc_, never_nan_nan_);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005296
5297 // If either is a Smi (we know that not both are), then they can only
5298 // be strictly equal if the other is a HeapNumber.
5299 ASSERT_EQ(0, kSmiTag);
5300 ASSERT_EQ(0, Smi::FromInt(0));
5301 __ and_(r2, r0, Operand(r1));
5302 __ tst(r2, Operand(kSmiTagMask));
5303 __ b(ne, &not_smis);
5304 // One operand is a smi. EmitSmiNonsmiComparison generates code that can:
5305 // 1) Return the answer.
5306 // 2) Go to slow.
5307 // 3) Fall through to both_loaded_as_doubles.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005308 // 4) Jump to lhs_not_nan.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005309 // In cases 3 and 4 we have found out we were dealing with a number-number
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005310 // comparison. If VFP3 is supported the double values of the numbers have
5311 // been loaded into d7 and d6. Otherwise, the double values have been loaded
5312 // into r0, r1, r2, and r3.
5313 EmitSmiNonsmiComparison(masm, &lhs_not_nan, &slow, strict_);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005314
5315 __ bind(&both_loaded_as_doubles);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005316 // The arguments have been converted to doubles and stored in d6 and d7, if
5317 // VFP3 is supported, or in r0, r1, r2, and r3.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005318 if (CpuFeatures::IsSupported(VFP3)) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005319 __ bind(&lhs_not_nan);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005320 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005321 Label no_nan;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005322 // ARMv7 VFP3 instructions to implement double precision comparison.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005323 __ vcmp(d7, d6);
5324 __ vmrs(pc); // Move vector status bits to normal status bits.
5325 Label nan;
5326 __ b(vs, &nan);
5327 __ mov(r0, Operand(EQUAL), LeaveCC, eq);
5328 __ mov(r0, Operand(LESS), LeaveCC, lt);
5329 __ mov(r0, Operand(GREATER), LeaveCC, gt);
5330 __ mov(pc, Operand(lr));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005331
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005332 __ bind(&nan);
5333 // If one of the sides was a NaN then the v flag is set. Load r0 with
5334 // whatever it takes to make the comparison fail, since comparisons with NaN
5335 // always fail.
5336 if (cc_ == lt || cc_ == le) {
5337 __ mov(r0, Operand(GREATER));
5338 } else {
5339 __ mov(r0, Operand(LESS));
5340 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005341 __ mov(pc, Operand(lr));
5342 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005343 // Checks for NaN in the doubles we have loaded. Can return the answer or
5344 // fall through if neither is a NaN. Also binds lhs_not_nan.
5345 EmitNanCheck(masm, &lhs_not_nan, cc_);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005346 // Compares two doubles in r0, r1, r2, r3 that are not NaNs. Returns the
5347 // answer. Never falls through.
5348 EmitTwoNonNanDoubleComparison(masm, cc_);
5349 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005350
5351 __ bind(&not_smis);
5352 // At this point we know we are dealing with two different objects,
5353 // and neither of them is a Smi. The objects are in r0 and r1.
5354 if (strict_) {
5355 // This returns non-equal for some object types, or falls through if it
5356 // was not lucky.
5357 EmitStrictTwoHeapObjectCompare(masm);
5358 }
5359
5360 Label check_for_symbols;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005361 Label flat_string_check;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005362 // Check for heap-number-heap-number comparison. Can jump to slow case,
5363 // or load both doubles into r0, r1, r2, r3 and jump to the code that handles
5364 // that case. If the inputs are not doubles then jumps to check_for_symbols.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005365 // In this case r2 will contain the type of r0. Never falls through.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005366 EmitCheckForTwoHeapNumbers(masm,
5367 &both_loaded_as_doubles,
5368 &check_for_symbols,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005369 &flat_string_check);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005370
5371 __ bind(&check_for_symbols);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005372 // In the strict case the EmitStrictTwoHeapObjectCompare already took care of
5373 // symbols.
5374 if (cc_ == eq && !strict_) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005375 // Either jumps to slow or returns the answer. Assumes that r2 is the type
5376 // of r0 on entry.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005377 EmitCheckForSymbols(masm, &flat_string_check);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005378 }
5379
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005380 // Check for both being sequential ASCII strings, and inline if that is the
5381 // case.
5382 __ bind(&flat_string_check);
5383
5384 __ JumpIfNonSmisNotBothSequentialAsciiStrings(r0, r1, r2, r3, &slow);
5385
5386 __ IncrementCounter(&Counters::string_compare_native, 1, r2, r3);
5387 StringCompareStub::GenerateCompareFlatAsciiStrings(masm,
5388 r1,
5389 r0,
5390 r2,
5391 r3,
5392 r4,
5393 r5);
5394 // Never falls through to here.
5395
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005396 __ bind(&slow);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005397
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005398 __ push(r1);
5399 __ push(r0);
5400 // Figure out which native to call and setup the arguments.
5401 Builtins::JavaScript native;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005402 if (cc_ == eq) {
5403 native = strict_ ? Builtins::STRICT_EQUALS : Builtins::EQUALS;
5404 } else {
5405 native = Builtins::COMPARE;
5406 int ncr; // NaN compare result
5407 if (cc_ == lt || cc_ == le) {
5408 ncr = GREATER;
5409 } else {
5410 ASSERT(cc_ == gt || cc_ == ge); // remaining cases
5411 ncr = LESS;
5412 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005413 __ mov(r0, Operand(Smi::FromInt(ncr)));
5414 __ push(r0);
5415 }
5416
5417 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
5418 // tagged as a small integer.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005419 __ InvokeBuiltin(native, JUMP_JS);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005420}
5421
5422
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005423// Allocates a heap number or jumps to the label if the young space is full and
5424// a scavenge is needed.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005425static void AllocateHeapNumber(
5426 MacroAssembler* masm,
5427 Label* need_gc, // Jump here if young space is full.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005428 Register result, // The tagged address of the new heap number.
5429 Register scratch1, // A scratch register.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005430 Register scratch2) { // Another scratch register.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005431 // Allocate an object in the heap for the heap number and tag it as a heap
5432 // object.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005433 __ AllocateInNewSpace(HeapNumber::kSize / kPointerSize,
5434 result,
5435 scratch1,
5436 scratch2,
5437 need_gc,
5438 TAG_OBJECT);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005439
ager@chromium.org18ad94b2009-09-02 08:22:29 +00005440 // Get heap number map and store it in the allocated object.
5441 __ LoadRoot(scratch1, Heap::kHeapNumberMapRootIndex);
5442 __ str(scratch1, FieldMemOperand(result, HeapObject::kMapOffset));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005443}
5444
5445
5446// We fall into this code if the operands were Smis, but the result was
5447// not (eg. overflow). We branch into this code (to the not_smi label) if
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005448// the operands were not both Smi. The operands are in r0 and r1. In order
5449// to call the C-implemented binary fp operation routines we need to end up
5450// with the double precision floating point operands in r0 and r1 (for the
5451// value in r1) and r2 and r3 (for the value in r0).
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005452static void HandleBinaryOpSlowCases(MacroAssembler* masm,
5453 Label* not_smi,
5454 const Builtins::JavaScript& builtin,
5455 Token::Value operation,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005456 OverwriteMode mode) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005457 Label slow, slow_pop_2_first, do_the_call;
5458 Label r0_is_smi, r1_is_smi, finished_loading_r0, finished_loading_r1;
5459 // Smi-smi case (overflow).
5460 // Since both are Smis there is no heap number to overwrite, so allocate.
5461 // The new heap number is in r5. r6 and r7 are scratch.
5462 AllocateHeapNumber(masm, &slow, r5, r6, r7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005463
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005464 // If we have floating point hardware, inline ADD, SUB, MUL, and DIV,
5465 // using registers d7 and d6 for the double values.
5466 bool use_fp_registers = CpuFeatures::IsSupported(VFP3) &&
5467 Token::MOD != operation;
5468 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005469 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005470 __ mov(r7, Operand(r0, ASR, kSmiTagSize));
5471 __ vmov(s15, r7);
5472 __ vcvt(d7, s15);
5473 __ mov(r7, Operand(r1, ASR, kSmiTagSize));
5474 __ vmov(s13, r7);
5475 __ vcvt(d6, s13);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005476 } else {
5477 // Write Smi from r0 to r3 and r2 in double format. r6 is scratch.
5478 __ mov(r7, Operand(r0));
5479 ConvertToDoubleStub stub1(r3, r2, r7, r6);
5480 __ push(lr);
5481 __ Call(stub1.GetCode(), RelocInfo::CODE_TARGET);
5482 // Write Smi from r1 to r1 and r0 in double format. r6 is scratch.
5483 __ mov(r7, Operand(r1));
5484 ConvertToDoubleStub stub2(r1, r0, r7, r6);
5485 __ Call(stub2.GetCode(), RelocInfo::CODE_TARGET);
5486 __ pop(lr);
5487 }
5488
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005489 __ jmp(&do_the_call); // Tail call. No return.
5490
5491 // We jump to here if something goes wrong (one param is not a number of any
5492 // sort or new-space allocation fails).
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005493 __ bind(&slow);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005494
5495 // Push arguments to the stack
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005496 __ push(r1);
5497 __ push(r0);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005498
5499 if (Token::ADD == operation) {
5500 // Test for string arguments before calling runtime.
5501 // r1 : first argument
5502 // r0 : second argument
5503 // sp[0] : second argument
ager@chromium.org5c838252010-02-19 08:53:10 +00005504 // sp[4] : first argument
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005505
5506 Label not_strings, not_string1, string1;
5507 __ tst(r1, Operand(kSmiTagMask));
5508 __ b(eq, &not_string1);
5509 __ CompareObjectType(r1, r2, r2, FIRST_NONSTRING_TYPE);
5510 __ b(ge, &not_string1);
5511
5512 // First argument is a a string, test second.
5513 __ tst(r0, Operand(kSmiTagMask));
5514 __ b(eq, &string1);
5515 __ CompareObjectType(r0, r2, r2, FIRST_NONSTRING_TYPE);
5516 __ b(ge, &string1);
5517
5518 // First and second argument are strings.
ager@chromium.org5c838252010-02-19 08:53:10 +00005519 StringAddStub stub(NO_STRING_CHECK_IN_STUB);
5520 __ TailCallStub(&stub);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005521
5522 // Only first argument is a string.
5523 __ bind(&string1);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005524 __ InvokeBuiltin(Builtins::STRING_ADD_LEFT, JUMP_JS);
5525
5526 // First argument was not a string, test second.
5527 __ bind(&not_string1);
5528 __ tst(r0, Operand(kSmiTagMask));
5529 __ b(eq, &not_strings);
5530 __ CompareObjectType(r0, r2, r2, FIRST_NONSTRING_TYPE);
5531 __ b(ge, &not_strings);
5532
5533 // Only second argument is a string.
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005534 __ InvokeBuiltin(Builtins::STRING_ADD_RIGHT, JUMP_JS);
5535
5536 __ bind(&not_strings);
5537 }
5538
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005539 __ InvokeBuiltin(builtin, JUMP_JS); // Tail call. No return.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005540
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005541 // We branch here if at least one of r0 and r1 is not a Smi.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005542 __ bind(not_smi);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005543 if (mode == NO_OVERWRITE) {
5544 // In the case where there is no chance of an overwritable float we may as
5545 // well do the allocation immediately while r0 and r1 are untouched.
5546 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5547 }
5548
5549 // Move r0 to a double in r2-r3.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005550 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005551 __ b(eq, &r0_is_smi); // It's a Smi so don't check it's a heap number.
5552 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005553 __ b(ne, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005554 if (mode == OVERWRITE_RIGHT) {
5555 __ mov(r5, Operand(r0)); // Overwrite this heap number.
5556 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005557 if (use_fp_registers) {
5558 CpuFeatures::Scope scope(VFP3);
5559 // Load the double from tagged HeapNumber r0 to d7.
5560 __ sub(r7, r0, Operand(kHeapObjectTag));
5561 __ vldr(d7, r7, HeapNumber::kValueOffset);
5562 } else {
5563 // Calling convention says that second double is in r2 and r3.
5564 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kValueOffset));
5565 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kValueOffset + 4));
5566 }
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005567 __ jmp(&finished_loading_r0);
5568 __ bind(&r0_is_smi);
5569 if (mode == OVERWRITE_RIGHT) {
5570 // We can't overwrite a Smi so get address of new heap number into r5.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005571 AllocateHeapNumber(masm, &slow, r5, r6, r7);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005572 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005573
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005574 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005575 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005576 // Convert smi in r0 to double in d7.
5577 __ mov(r7, Operand(r0, ASR, kSmiTagSize));
5578 __ vmov(s15, r7);
5579 __ vcvt(d7, s15);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005580 } else {
5581 // Write Smi from r0 to r3 and r2 in double format.
5582 __ mov(r7, Operand(r0));
5583 ConvertToDoubleStub stub3(r3, r2, r7, r6);
5584 __ push(lr);
5585 __ Call(stub3.GetCode(), RelocInfo::CODE_TARGET);
5586 __ pop(lr);
5587 }
5588
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005589 __ bind(&finished_loading_r0);
5590
5591 // Move r1 to a double in r0-r1.
5592 __ tst(r1, Operand(kSmiTagMask));
5593 __ b(eq, &r1_is_smi); // It's a Smi so don't check it's a heap number.
5594 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5595 __ b(ne, &slow);
5596 if (mode == OVERWRITE_LEFT) {
5597 __ mov(r5, Operand(r1)); // Overwrite this heap number.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005598 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005599 if (use_fp_registers) {
5600 CpuFeatures::Scope scope(VFP3);
5601 // Load the double from tagged HeapNumber r1 to d6.
5602 __ sub(r7, r1, Operand(kHeapObjectTag));
5603 __ vldr(d6, r7, HeapNumber::kValueOffset);
5604 } else {
5605 // Calling convention says that first double is in r0 and r1.
5606 __ ldr(r0, FieldMemOperand(r1, HeapNumber::kValueOffset));
5607 __ ldr(r1, FieldMemOperand(r1, HeapNumber::kValueOffset + 4));
5608 }
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005609 __ jmp(&finished_loading_r1);
5610 __ bind(&r1_is_smi);
5611 if (mode == OVERWRITE_LEFT) {
5612 // We can't overwrite a Smi so get address of new heap number into r5.
5613 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5614 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005615
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005616 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005617 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005618 // Convert smi in r1 to double in d6.
5619 __ mov(r7, Operand(r1, ASR, kSmiTagSize));
5620 __ vmov(s13, r7);
5621 __ vcvt(d6, s13);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005622 } else {
5623 // Write Smi from r1 to r1 and r0 in double format.
5624 __ mov(r7, Operand(r1));
5625 ConvertToDoubleStub stub4(r1, r0, r7, r6);
5626 __ push(lr);
5627 __ Call(stub4.GetCode(), RelocInfo::CODE_TARGET);
5628 __ pop(lr);
5629 }
5630
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005631 __ bind(&finished_loading_r1);
5632
5633 __ bind(&do_the_call);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005634 // If we are inlining the operation using VFP3 instructions for
5635 // add, subtract, multiply, or divide, the arguments are in d6 and d7.
5636 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005637 CpuFeatures::Scope scope(VFP3);
5638 // ARMv7 VFP3 instructions to implement
5639 // double precision, add, subtract, multiply, divide.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005640
5641 if (Token::MUL == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005642 __ vmul(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005643 } else if (Token::DIV == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005644 __ vdiv(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005645 } else if (Token::ADD == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005646 __ vadd(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005647 } else if (Token::SUB == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005648 __ vsub(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005649 } else {
5650 UNREACHABLE();
5651 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005652 __ sub(r0, r5, Operand(kHeapObjectTag));
5653 __ vstr(d5, r0, HeapNumber::kValueOffset);
5654 __ add(r0, r0, Operand(kHeapObjectTag));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005655 __ mov(pc, lr);
5656 return;
5657 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005658
5659 // If we did not inline the operation, then the arguments are in:
5660 // r0: Left value (least significant part of mantissa).
5661 // r1: Left value (sign, exponent, top of mantissa).
5662 // r2: Right value (least significant part of mantissa).
5663 // r3: Right value (sign, exponent, top of mantissa).
5664 // r5: Address of heap number for result.
5665
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005666 __ push(lr); // For later.
5667 __ push(r5); // Address of heap number that is answer.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005668 __ AlignStack(0);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005669 // Call C routine that may not cause GC or other trouble.
5670 __ mov(r5, Operand(ExternalReference::double_fp_operation(operation)));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005671 __ Call(r5);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005672 __ pop(r4); // Address of heap number.
5673 __ cmp(r4, Operand(Smi::FromInt(0)));
5674 __ pop(r4, eq); // Conditional pop instruction to get rid of alignment push.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005675 // Store answer in the overwritable heap number.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005676#if !defined(USE_ARM_EABI)
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005677 // Double returned in fp coprocessor register 0 and 1, encoded as register
5678 // cr8. Offsets must be divisible by 4 for coprocessor so we need to
5679 // substract the tag from r4.
5680 __ sub(r5, r4, Operand(kHeapObjectTag));
5681 __ stc(p1, cr8, MemOperand(r5, HeapNumber::kValueOffset));
5682#else
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005683 // Double returned in registers 0 and 1.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005684 __ str(r0, FieldMemOperand(r4, HeapNumber::kValueOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005685 __ str(r1, FieldMemOperand(r4, HeapNumber::kValueOffset + 4));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005686#endif
5687 __ mov(r0, Operand(r4));
5688 // And we are done.
5689 __ pop(pc);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005690}
5691
5692
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005693// Tries to get a signed int32 out of a double precision floating point heap
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005694// number. Rounds towards 0. Fastest for doubles that are in the ranges
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005695// -0x7fffffff to -0x40000000 or 0x40000000 to 0x7fffffff. This corresponds
5696// almost to the range of signed int32 values that are not Smis. Jumps to the
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005697// label 'slow' if the double isn't in the range -0x80000000.0 to 0x80000000.0
5698// (excluding the endpoints).
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005699static void GetInt32(MacroAssembler* masm,
5700 Register source,
5701 Register dest,
5702 Register scratch,
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005703 Register scratch2,
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005704 Label* slow) {
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005705 Label right_exponent, done;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005706 // Get exponent word.
5707 __ ldr(scratch, FieldMemOperand(source, HeapNumber::kExponentOffset));
5708 // Get exponent alone in scratch2.
5709 __ and_(scratch2, scratch, Operand(HeapNumber::kExponentMask));
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005710 // Load dest with zero. We use this either for the final shift or
5711 // for the answer.
5712 __ mov(dest, Operand(0));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005713 // Check whether the exponent matches a 32 bit signed int that is not a Smi.
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005714 // A non-Smi integer is 1.xxx * 2^30 so the exponent is 30 (biased). This is
5715 // the exponent that we are fastest at and also the highest exponent we can
5716 // handle here.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005717 const uint32_t non_smi_exponent =
5718 (HeapNumber::kExponentBias + 30) << HeapNumber::kExponentShift;
5719 __ cmp(scratch2, Operand(non_smi_exponent));
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005720 // If we have a match of the int32-but-not-Smi exponent then skip some logic.
5721 __ b(eq, &right_exponent);
5722 // If the exponent is higher than that then go to slow case. This catches
5723 // numbers that don't fit in a signed int32, infinities and NaNs.
5724 __ b(gt, slow);
5725
5726 // We know the exponent is smaller than 30 (biased). If it is less than
5727 // 0 (biased) then the number is smaller in magnitude than 1.0 * 2^0, ie
5728 // it rounds to zero.
5729 const uint32_t zero_exponent =
5730 (HeapNumber::kExponentBias + 0) << HeapNumber::kExponentShift;
5731 __ sub(scratch2, scratch2, Operand(zero_exponent), SetCC);
5732 // Dest already has a Smi zero.
5733 __ b(lt, &done);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005734 if (!CpuFeatures::IsSupported(VFP3)) {
5735 // We have a shifted exponent between 0 and 30 in scratch2.
5736 __ mov(dest, Operand(scratch2, LSR, HeapNumber::kExponentShift));
5737 // We now have the exponent in dest. Subtract from 30 to get
5738 // how much to shift down.
5739 __ rsb(dest, dest, Operand(30));
5740 }
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005741 __ bind(&right_exponent);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005742 if (CpuFeatures::IsSupported(VFP3)) {
5743 CpuFeatures::Scope scope(VFP3);
5744 // ARMv7 VFP3 instructions implementing double precision to integer
5745 // conversion using round to zero.
5746 __ ldr(scratch2, FieldMemOperand(source, HeapNumber::kMantissaOffset));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005747 __ vmov(d7, scratch2, scratch);
5748 __ vcvt(s15, d7);
5749 __ vmov(dest, s15);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005750 } else {
5751 // Get the top bits of the mantissa.
5752 __ and_(scratch2, scratch, Operand(HeapNumber::kMantissaMask));
5753 // Put back the implicit 1.
5754 __ orr(scratch2, scratch2, Operand(1 << HeapNumber::kExponentShift));
5755 // Shift up the mantissa bits to take up the space the exponent used to
5756 // take. We just orred in the implicit bit so that took care of one and
5757 // we want to leave the sign bit 0 so we subtract 2 bits from the shift
5758 // distance.
5759 const int shift_distance = HeapNumber::kNonMantissaBitsInTopWord - 2;
5760 __ mov(scratch2, Operand(scratch2, LSL, shift_distance));
5761 // Put sign in zero flag.
5762 __ tst(scratch, Operand(HeapNumber::kSignMask));
5763 // Get the second half of the double. For some exponents we don't
5764 // actually need this because the bits get shifted out again, but
5765 // it's probably slower to test than just to do it.
5766 __ ldr(scratch, FieldMemOperand(source, HeapNumber::kMantissaOffset));
5767 // Shift down 22 bits to get the last 10 bits.
5768 __ orr(scratch, scratch2, Operand(scratch, LSR, 32 - shift_distance));
5769 // Move down according to the exponent.
5770 __ mov(dest, Operand(scratch, LSR, dest));
5771 // Fix sign if sign bit was set.
5772 __ rsb(dest, dest, Operand(0), LeaveCC, ne);
5773 }
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005774 __ bind(&done);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005775}
5776
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005777// For bitwise ops where the inputs are not both Smis we here try to determine
5778// whether both inputs are either Smis or at least heap numbers that can be
5779// represented by a 32 bit signed value. We truncate towards zero as required
5780// by the ES spec. If this is the case we do the bitwise op and see if the
5781// result is a Smi. If so, great, otherwise we try to find a heap number to
5782// write the answer into (either by allocating or by overwriting).
5783// On entry the operands are in r0 and r1. On exit the answer is in r0.
5784void GenericBinaryOpStub::HandleNonSmiBitwiseOp(MacroAssembler* masm) {
5785 Label slow, result_not_a_smi;
5786 Label r0_is_smi, r1_is_smi;
5787 Label done_checking_r0, done_checking_r1;
5788
5789 __ tst(r1, Operand(kSmiTagMask));
5790 __ b(eq, &r1_is_smi); // It's a Smi so don't check it's a heap number.
5791 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5792 __ b(ne, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005793 GetInt32(masm, r1, r3, r5, r4, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005794 __ jmp(&done_checking_r1);
5795 __ bind(&r1_is_smi);
5796 __ mov(r3, Operand(r1, ASR, 1));
5797 __ bind(&done_checking_r1);
5798
5799 __ tst(r0, Operand(kSmiTagMask));
5800 __ b(eq, &r0_is_smi); // It's a Smi so don't check it's a heap number.
5801 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
5802 __ b(ne, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005803 GetInt32(masm, r0, r2, r5, r4, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005804 __ jmp(&done_checking_r0);
5805 __ bind(&r0_is_smi);
5806 __ mov(r2, Operand(r0, ASR, 1));
5807 __ bind(&done_checking_r0);
5808
5809 // r0 and r1: Original operands (Smi or heap numbers).
5810 // r2 and r3: Signed int32 operands.
5811 switch (op_) {
5812 case Token::BIT_OR: __ orr(r2, r2, Operand(r3)); break;
5813 case Token::BIT_XOR: __ eor(r2, r2, Operand(r3)); break;
5814 case Token::BIT_AND: __ and_(r2, r2, Operand(r3)); break;
5815 case Token::SAR:
5816 // Use only the 5 least significant bits of the shift count.
5817 __ and_(r2, r2, Operand(0x1f));
5818 __ mov(r2, Operand(r3, ASR, r2));
5819 break;
5820 case Token::SHR:
5821 // Use only the 5 least significant bits of the shift count.
5822 __ and_(r2, r2, Operand(0x1f));
5823 __ mov(r2, Operand(r3, LSR, r2), SetCC);
5824 // SHR is special because it is required to produce a positive answer.
5825 // The code below for writing into heap numbers isn't capable of writing
5826 // the register as an unsigned int so we go to slow case if we hit this
5827 // case.
5828 __ b(mi, &slow);
5829 break;
5830 case Token::SHL:
5831 // Use only the 5 least significant bits of the shift count.
5832 __ and_(r2, r2, Operand(0x1f));
5833 __ mov(r2, Operand(r3, LSL, r2));
5834 break;
5835 default: UNREACHABLE();
5836 }
5837 // check that the *signed* result fits in a smi
5838 __ add(r3, r2, Operand(0x40000000), SetCC);
5839 __ b(mi, &result_not_a_smi);
5840 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
5841 __ Ret();
5842
5843 Label have_to_allocate, got_a_heap_number;
5844 __ bind(&result_not_a_smi);
5845 switch (mode_) {
5846 case OVERWRITE_RIGHT: {
5847 __ tst(r0, Operand(kSmiTagMask));
5848 __ b(eq, &have_to_allocate);
5849 __ mov(r5, Operand(r0));
5850 break;
5851 }
5852 case OVERWRITE_LEFT: {
5853 __ tst(r1, Operand(kSmiTagMask));
5854 __ b(eq, &have_to_allocate);
5855 __ mov(r5, Operand(r1));
5856 break;
5857 }
5858 case NO_OVERWRITE: {
5859 // Get a new heap number in r5. r6 and r7 are scratch.
5860 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5861 }
5862 default: break;
5863 }
5864 __ bind(&got_a_heap_number);
5865 // r2: Answer as signed int32.
5866 // r5: Heap number to write answer into.
5867
5868 // Nothing can go wrong now, so move the heap number to r0, which is the
5869 // result.
5870 __ mov(r0, Operand(r5));
5871
5872 // Tail call that writes the int32 in r2 to the heap number in r0, using
5873 // r3 as scratch. r0 is preserved and returned.
5874 WriteInt32ToHeapNumberStub stub(r2, r0, r3);
5875 __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET);
5876
5877 if (mode_ != NO_OVERWRITE) {
5878 __ bind(&have_to_allocate);
5879 // Get a new heap number in r5. r6 and r7 are scratch.
5880 AllocateHeapNumber(masm, &slow, r5, r6, r7);
5881 __ jmp(&got_a_heap_number);
5882 }
5883
5884 // If all else failed then we go to the runtime system.
5885 __ bind(&slow);
5886 __ push(r1); // restore stack
5887 __ push(r0);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005888 switch (op_) {
5889 case Token::BIT_OR:
5890 __ InvokeBuiltin(Builtins::BIT_OR, JUMP_JS);
5891 break;
5892 case Token::BIT_AND:
5893 __ InvokeBuiltin(Builtins::BIT_AND, JUMP_JS);
5894 break;
5895 case Token::BIT_XOR:
5896 __ InvokeBuiltin(Builtins::BIT_XOR, JUMP_JS);
5897 break;
5898 case Token::SAR:
5899 __ InvokeBuiltin(Builtins::SAR, JUMP_JS);
5900 break;
5901 case Token::SHR:
5902 __ InvokeBuiltin(Builtins::SHR, JUMP_JS);
5903 break;
5904 case Token::SHL:
5905 __ InvokeBuiltin(Builtins::SHL, JUMP_JS);
5906 break;
5907 default:
5908 UNREACHABLE();
5909 }
5910}
5911
5912
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00005913// Can we multiply by x with max two shifts and an add.
5914// This answers yes to all integers from 2 to 10.
5915static bool IsEasyToMultiplyBy(int x) {
5916 if (x < 2) return false; // Avoid special cases.
5917 if (x > (Smi::kMaxValue + 1) >> 2) return false; // Almost always overflows.
5918 if (IsPowerOf2(x)) return true; // Simple shift.
5919 if (PopCountLessThanEqual2(x)) return true; // Shift and add and shift.
5920 if (IsPowerOf2(x + 1)) return true; // Patterns like 11111.
5921 return false;
5922}
5923
5924
5925// Can multiply by anything that IsEasyToMultiplyBy returns true for.
5926// Source and destination may be the same register. This routine does
5927// not set carry and overflow the way a mul instruction would.
5928static void MultiplyByKnownInt(MacroAssembler* masm,
5929 Register source,
5930 Register destination,
5931 int known_int) {
5932 if (IsPowerOf2(known_int)) {
5933 __ mov(destination, Operand(source, LSL, BitPosition(known_int)));
5934 } else if (PopCountLessThanEqual2(known_int)) {
5935 int first_bit = BitPosition(known_int);
5936 int second_bit = BitPosition(known_int ^ (1 << first_bit));
5937 __ add(destination, source, Operand(source, LSL, second_bit - first_bit));
5938 if (first_bit != 0) {
5939 __ mov(destination, Operand(destination, LSL, first_bit));
5940 }
5941 } else {
5942 ASSERT(IsPowerOf2(known_int + 1)); // Patterns like 1111.
5943 int the_bit = BitPosition(known_int + 1);
5944 __ rsb(destination, source, Operand(source, LSL, the_bit));
5945 }
5946}
5947
5948
5949// This function (as opposed to MultiplyByKnownInt) takes the known int in a
5950// a register for the cases where it doesn't know a good trick, and may deliver
5951// a result that needs shifting.
5952static void MultiplyByKnownInt2(
5953 MacroAssembler* masm,
5954 Register result,
5955 Register source,
5956 Register known_int_register, // Smi tagged.
5957 int known_int,
5958 int* required_shift) { // Including Smi tag shift
5959 switch (known_int) {
5960 case 3:
5961 __ add(result, source, Operand(source, LSL, 1));
5962 *required_shift = 1;
5963 break;
5964 case 5:
5965 __ add(result, source, Operand(source, LSL, 2));
5966 *required_shift = 1;
5967 break;
5968 case 6:
5969 __ add(result, source, Operand(source, LSL, 1));
5970 *required_shift = 2;
5971 break;
5972 case 7:
5973 __ rsb(result, source, Operand(source, LSL, 3));
5974 *required_shift = 1;
5975 break;
5976 case 9:
5977 __ add(result, source, Operand(source, LSL, 3));
5978 *required_shift = 1;
5979 break;
5980 case 10:
5981 __ add(result, source, Operand(source, LSL, 2));
5982 *required_shift = 2;
5983 break;
5984 default:
5985 ASSERT(!IsPowerOf2(known_int)); // That would be very inefficient.
5986 __ mul(result, source, known_int_register);
5987 *required_shift = 0;
5988 }
5989}
5990
5991
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005992const char* GenericBinaryOpStub::GetName() {
5993 if (name_ != NULL) return name_;
5994 const int len = 100;
5995 name_ = Bootstrapper::AllocateAutoDeletedArray(len);
5996 if (name_ == NULL) return "OOM";
5997 const char* op_name = Token::Name(op_);
5998 const char* overwrite_name;
5999 switch (mode_) {
6000 case NO_OVERWRITE: overwrite_name = "Alloc"; break;
6001 case OVERWRITE_RIGHT: overwrite_name = "OverwriteRight"; break;
6002 case OVERWRITE_LEFT: overwrite_name = "OverwriteLeft"; break;
6003 default: overwrite_name = "UnknownOverwrite"; break;
6004 }
6005
6006 OS::SNPrintF(Vector<char>(name_, len),
6007 "GenericBinaryOpStub_%s_%s%s",
6008 op_name,
6009 overwrite_name,
6010 specialized_on_rhs_ ? "_ConstantRhs" : 0);
6011 return name_;
6012}
6013
6014
ager@chromium.org5c838252010-02-19 08:53:10 +00006015
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006016void GenericBinaryOpStub::Generate(MacroAssembler* masm) {
6017 // r1 : x
6018 // r0 : y
6019 // result : r0
6020
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006021 // All ops need to know whether we are dealing with two Smis. Set up r2 to
6022 // tell us that.
6023 __ orr(r2, r1, Operand(r0)); // r2 = x | y;
6024
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006025 switch (op_) {
6026 case Token::ADD: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006027 Label not_smi;
6028 // Fast path.
6029 ASSERT(kSmiTag == 0); // Adjust code below.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006030 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006031 __ b(ne, &not_smi);
6032 __ add(r0, r1, Operand(r0), SetCC); // Add y optimistically.
6033 // Return if no overflow.
6034 __ Ret(vc);
6035 __ sub(r0, r0, Operand(r1)); // Revert optimistic add.
6036
6037 HandleBinaryOpSlowCases(masm,
6038 &not_smi,
6039 Builtins::ADD,
6040 Token::ADD,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006041 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006042 break;
6043 }
6044
6045 case Token::SUB: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006046 Label not_smi;
6047 // Fast path.
6048 ASSERT(kSmiTag == 0); // Adjust code below.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006049 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006050 __ b(ne, &not_smi);
6051 __ sub(r0, r1, Operand(r0), SetCC); // Subtract y optimistically.
6052 // Return if no overflow.
6053 __ Ret(vc);
6054 __ sub(r0, r1, Operand(r0)); // Revert optimistic subtract.
6055
6056 HandleBinaryOpSlowCases(masm,
6057 &not_smi,
6058 Builtins::SUB,
6059 Token::SUB,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006060 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006061 break;
6062 }
6063
6064 case Token::MUL: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006065 Label not_smi, slow;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006066 ASSERT(kSmiTag == 0); // adjust code below
6067 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006068 __ b(ne, &not_smi);
6069 // Remove tag from one operand (but keep sign), so that result is Smi.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006070 __ mov(ip, Operand(r0, ASR, kSmiTagSize));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006071 // Do multiplication
6072 __ smull(r3, r2, r1, ip); // r3 = lower 32 bits of ip*r1.
6073 // Go slow on overflows (overflow bit is not set).
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006074 __ mov(ip, Operand(r3, ASR, 31));
6075 __ cmp(ip, Operand(r2)); // no overflow if higher 33 bits are identical
6076 __ b(ne, &slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006077 // Go slow on zero result to handle -0.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006078 __ tst(r3, Operand(r3));
6079 __ mov(r0, Operand(r3), LeaveCC, ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006080 __ Ret(ne);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006081 // We need -0 if we were multiplying a negative number with 0 to get 0.
6082 // We know one of them was zero.
6083 __ add(r2, r0, Operand(r1), SetCC);
6084 __ mov(r0, Operand(Smi::FromInt(0)), LeaveCC, pl);
6085 __ Ret(pl); // Return Smi 0 if the non-zero one was positive.
6086 // Slow case. We fall through here if we multiplied a negative number
6087 // with 0, because that would mean we should produce -0.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006088 __ bind(&slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006089
6090 HandleBinaryOpSlowCases(masm,
6091 &not_smi,
6092 Builtins::MUL,
6093 Token::MUL,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00006094 mode_);
6095 break;
6096 }
6097
6098 case Token::DIV:
6099 case Token::MOD: {
6100 Label not_smi;
6101 if (specialized_on_rhs_) {
6102 Label smi_is_unsuitable;
6103 __ BranchOnNotSmi(r1, &not_smi);
6104 if (IsPowerOf2(constant_rhs_)) {
6105 if (op_ == Token::MOD) {
6106 __ and_(r0,
6107 r1,
6108 Operand(0x80000000u | ((constant_rhs_ << kSmiTagSize) - 1)),
6109 SetCC);
6110 // We now have the answer, but if the input was negative we also
6111 // have the sign bit. Our work is done if the result is
6112 // positive or zero:
6113 __ Ret(pl);
6114 // A mod of a negative left hand side must return a negative number.
6115 // Unfortunately if the answer is 0 then we must return -0. And we
6116 // already optimistically trashed r0 so we may need to restore it.
6117 __ eor(r0, r0, Operand(0x80000000u), SetCC);
6118 // Next two instructions are conditional on the answer being -0.
6119 __ mov(r0, Operand(Smi::FromInt(constant_rhs_)), LeaveCC, eq);
6120 __ b(eq, &smi_is_unsuitable);
6121 // We need to subtract the dividend. Eg. -3 % 4 == -3.
6122 __ sub(r0, r0, Operand(Smi::FromInt(constant_rhs_)));
6123 } else {
6124 ASSERT(op_ == Token::DIV);
6125 __ tst(r1,
6126 Operand(0x80000000u | ((constant_rhs_ << kSmiTagSize) - 1)));
6127 __ b(ne, &smi_is_unsuitable); // Go slow on negative or remainder.
6128 int shift = 0;
6129 int d = constant_rhs_;
6130 while ((d & 1) == 0) {
6131 d >>= 1;
6132 shift++;
6133 }
6134 __ mov(r0, Operand(r1, LSR, shift));
6135 __ bic(r0, r0, Operand(kSmiTagMask));
6136 }
6137 } else {
6138 // Not a power of 2.
6139 __ tst(r1, Operand(0x80000000u));
6140 __ b(ne, &smi_is_unsuitable);
6141 // Find a fixed point reciprocal of the divisor so we can divide by
6142 // multiplying.
6143 double divisor = 1.0 / constant_rhs_;
6144 int shift = 32;
6145 double scale = 4294967296.0; // 1 << 32.
6146 uint32_t mul;
6147 // Maximise the precision of the fixed point reciprocal.
6148 while (true) {
6149 mul = static_cast<uint32_t>(scale * divisor);
6150 if (mul >= 0x7fffffff) break;
6151 scale *= 2.0;
6152 shift++;
6153 }
6154 mul++;
6155 __ mov(r2, Operand(mul));
6156 __ umull(r3, r2, r2, r1);
6157 __ mov(r2, Operand(r2, LSR, shift - 31));
6158 // r2 is r1 / rhs. r2 is not Smi tagged.
6159 // r0 is still the known rhs. r0 is Smi tagged.
6160 // r1 is still the unkown lhs. r1 is Smi tagged.
6161 int required_r4_shift = 0; // Including the Smi tag shift of 1.
6162 // r4 = r2 * r0.
6163 MultiplyByKnownInt2(masm,
6164 r4,
6165 r2,
6166 r0,
6167 constant_rhs_,
6168 &required_r4_shift);
6169 // r4 << required_r4_shift is now the Smi tagged rhs * (r1 / rhs).
6170 if (op_ == Token::DIV) {
6171 __ sub(r3, r1, Operand(r4, LSL, required_r4_shift), SetCC);
6172 __ b(ne, &smi_is_unsuitable); // There was a remainder.
6173 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
6174 } else {
6175 ASSERT(op_ == Token::MOD);
6176 __ sub(r0, r1, Operand(r4, LSL, required_r4_shift));
6177 }
6178 }
6179 __ Ret();
6180 __ bind(&smi_is_unsuitable);
6181 } else {
6182 __ jmp(&not_smi);
6183 }
6184 HandleBinaryOpSlowCases(masm,
6185 &not_smi,
6186 op_ == Token::MOD ? Builtins::MOD : Builtins::DIV,
6187 op_,
6188 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006189 break;
6190 }
6191
6192 case Token::BIT_OR:
6193 case Token::BIT_AND:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006194 case Token::BIT_XOR:
6195 case Token::SAR:
6196 case Token::SHR:
6197 case Token::SHL: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006198 Label slow;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006199 ASSERT(kSmiTag == 0); // adjust code below
6200 __ tst(r2, Operand(kSmiTagMask));
6201 __ b(ne, &slow);
6202 switch (op_) {
6203 case Token::BIT_OR: __ orr(r0, r0, Operand(r1)); break;
6204 case Token::BIT_AND: __ and_(r0, r0, Operand(r1)); break;
6205 case Token::BIT_XOR: __ eor(r0, r0, Operand(r1)); break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006206 case Token::SAR:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006207 // Remove tags from right operand.
ager@chromium.org5c838252010-02-19 08:53:10 +00006208 __ GetLeastBitsFromSmi(r2, r0, 5);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006209 __ mov(r0, Operand(r1, ASR, r2));
6210 // Smi tag result.
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00006211 __ bic(r0, r0, Operand(kSmiTagMask));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006212 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006213 case Token::SHR:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006214 // Remove tags from operands. We can't do this on a 31 bit number
6215 // because then the 0s get shifted into bit 30 instead of bit 31.
6216 __ mov(r3, Operand(r1, ASR, kSmiTagSize)); // x
ager@chromium.org5c838252010-02-19 08:53:10 +00006217 __ GetLeastBitsFromSmi(r2, r0, 5);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006218 __ mov(r3, Operand(r3, LSR, r2));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006219 // Unsigned shift is not allowed to produce a negative number, so
6220 // check the sign bit and the sign bit after Smi tagging.
6221 __ tst(r3, Operand(0xc0000000));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006222 __ b(ne, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006223 // Smi tag result.
6224 __ mov(r0, Operand(r3, LSL, kSmiTagSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006225 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006226 case Token::SHL:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006227 // Remove tags from operands.
6228 __ mov(r3, Operand(r1, ASR, kSmiTagSize)); // x
ager@chromium.org5c838252010-02-19 08:53:10 +00006229 __ GetLeastBitsFromSmi(r2, r0, 5);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006230 __ mov(r3, Operand(r3, LSL, r2));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006231 // Check that the signed result fits in a Smi.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006232 __ add(r2, r3, Operand(0x40000000), SetCC);
6233 __ b(mi, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006234 __ mov(r0, Operand(r3, LSL, kSmiTagSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006235 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006236 default: UNREACHABLE();
6237 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006238 __ Ret();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006239 __ bind(&slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006240 HandleNonSmiBitwiseOp(masm);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006241 break;
6242 }
6243
6244 default: UNREACHABLE();
6245 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006246 // This code should be unreachable.
6247 __ stop("Unreachable");
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006248}
6249
6250
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006251Handle<Code> GetBinaryOpStub(int key, BinaryOpIC::TypeInfo type_info) {
6252 return Handle<Code>::null();
6253}
6254
6255
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006256void StackCheckStub::Generate(MacroAssembler* masm) {
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00006257 // Do tail-call to runtime routine. Runtime routines expect at least one
6258 // argument, so give it a Smi.
6259 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006260 __ push(r0);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006261 __ TailCallRuntime(Runtime::kStackGuard, 1, 1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006262
6263 __ StubReturn(1);
6264}
6265
6266
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00006267void GenericUnaryOpStub::Generate(MacroAssembler* masm) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006268 Label slow, done;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00006269
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006270 if (op_ == Token::SUB) {
6271 // Check whether the value is a smi.
6272 Label try_float;
6273 __ tst(r0, Operand(kSmiTagMask));
6274 __ b(ne, &try_float);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006275
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006276 // Go slow case if the value of the expression is zero
6277 // to make sure that we switch between 0 and -0.
6278 __ cmp(r0, Operand(0));
6279 __ b(eq, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006280
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006281 // The value of the expression is a smi that is not zero. Try
6282 // optimistic subtraction '0 - value'.
6283 __ rsb(r1, r0, Operand(0), SetCC);
6284 __ b(vs, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006285
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006286 __ mov(r0, Operand(r1)); // Set r0 to result.
6287 __ b(&done);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006288
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006289 __ bind(&try_float);
6290 __ CompareObjectType(r0, r1, r1, HEAP_NUMBER_TYPE);
6291 __ b(ne, &slow);
6292 // r0 is a heap number. Get a new heap number in r1.
6293 if (overwrite_) {
6294 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
6295 __ eor(r2, r2, Operand(HeapNumber::kSignMask)); // Flip sign.
6296 __ str(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
6297 } else {
6298 AllocateHeapNumber(masm, &slow, r1, r2, r3);
6299 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kMantissaOffset));
6300 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
6301 __ str(r3, FieldMemOperand(r1, HeapNumber::kMantissaOffset));
6302 __ eor(r2, r2, Operand(HeapNumber::kSignMask)); // Flip sign.
6303 __ str(r2, FieldMemOperand(r1, HeapNumber::kExponentOffset));
6304 __ mov(r0, Operand(r1));
6305 }
6306 } else if (op_ == Token::BIT_NOT) {
6307 // Check if the operand is a heap number.
6308 __ CompareObjectType(r0, r1, r1, HEAP_NUMBER_TYPE);
6309 __ b(ne, &slow);
6310
6311 // Convert the heap number is r0 to an untagged integer in r1.
6312 GetInt32(masm, r0, r1, r2, r3, &slow);
6313
6314 // Do the bitwise operation (move negated) and check if the result
6315 // fits in a smi.
6316 Label try_float;
6317 __ mvn(r1, Operand(r1));
6318 __ add(r2, r1, Operand(0x40000000), SetCC);
6319 __ b(mi, &try_float);
6320 __ mov(r0, Operand(r1, LSL, kSmiTagSize));
6321 __ b(&done);
6322
6323 __ bind(&try_float);
6324 if (!overwrite_) {
6325 // Allocate a fresh heap number, but don't overwrite r0 until
6326 // we're sure we can do it without going through the slow case
6327 // that needs the value in r0.
6328 AllocateHeapNumber(masm, &slow, r2, r3, r4);
6329 __ mov(r0, Operand(r2));
6330 }
6331
6332 // WriteInt32ToHeapNumberStub does not trigger GC, so we do not
6333 // have to set up a frame.
6334 WriteInt32ToHeapNumberStub stub(r1, r0, r2);
6335 __ push(lr);
6336 __ Call(stub.GetCode(), RelocInfo::CODE_TARGET);
6337 __ pop(lr);
6338 } else {
6339 UNIMPLEMENTED();
6340 }
6341
6342 __ bind(&done);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006343 __ StubReturn(1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006344
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006345 // Handle the slow case by jumping to the JavaScript builtin.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006346 __ bind(&slow);
6347 __ push(r0);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006348 switch (op_) {
6349 case Token::SUB:
6350 __ InvokeBuiltin(Builtins::UNARY_MINUS, JUMP_JS);
6351 break;
6352 case Token::BIT_NOT:
6353 __ InvokeBuiltin(Builtins::BIT_NOT, JUMP_JS);
6354 break;
6355 default:
6356 UNREACHABLE();
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006357 }
ager@chromium.orga1645e22009-09-09 19:27:10 +00006358}
6359
6360
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006361void CEntryStub::GenerateThrowTOS(MacroAssembler* masm) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006362 // r0 holds the exception.
6363
6364 // Adjust this code if not the case.
6365 ASSERT(StackHandlerConstants::kSize == 4 * kPointerSize);
6366
6367 // Drop the sp to the top of the handler.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006368 __ mov(r3, Operand(ExternalReference(Top::k_handler_address)));
6369 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006370
6371 // Restore the next handler and frame pointer, discard handler state.
6372 ASSERT(StackHandlerConstants::kNextOffset == 0);
6373 __ pop(r2);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006374 __ str(r2, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006375 ASSERT(StackHandlerConstants::kFPOffset == 2 * kPointerSize);
6376 __ ldm(ia_w, sp, r3.bit() | fp.bit()); // r3: discarded state.
6377
6378 // Before returning we restore the context from the frame pointer if
6379 // not NULL. The frame pointer is NULL in the exception handler of a
6380 // JS entry frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006381 __ cmp(fp, Operand(0));
6382 // Set cp to NULL if fp is NULL.
6383 __ mov(cp, Operand(0), LeaveCC, eq);
6384 // Restore cp otherwise.
6385 __ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset), ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006386#ifdef DEBUG
6387 if (FLAG_debug_code) {
6388 __ mov(lr, Operand(pc));
6389 }
6390#endif
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006391 ASSERT(StackHandlerConstants::kPCOffset == 3 * kPointerSize);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006392 __ pop(pc);
6393}
6394
6395
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006396void CEntryStub::GenerateThrowUncatchable(MacroAssembler* masm,
6397 UncatchableExceptionType type) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006398 // Adjust this code if not the case.
6399 ASSERT(StackHandlerConstants::kSize == 4 * kPointerSize);
6400
6401 // Drop sp to the top stack handler.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006402 __ mov(r3, Operand(ExternalReference(Top::k_handler_address)));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006403 __ ldr(sp, MemOperand(r3));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006404
6405 // Unwind the handlers until the ENTRY handler is found.
6406 Label loop, done;
6407 __ bind(&loop);
6408 // Load the type of the current stack handler.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006409 const int kStateOffset = StackHandlerConstants::kStateOffset;
6410 __ ldr(r2, MemOperand(sp, kStateOffset));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006411 __ cmp(r2, Operand(StackHandler::ENTRY));
6412 __ b(eq, &done);
6413 // Fetch the next handler in the list.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006414 const int kNextOffset = StackHandlerConstants::kNextOffset;
6415 __ ldr(sp, MemOperand(sp, kNextOffset));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006416 __ jmp(&loop);
6417 __ bind(&done);
6418
6419 // Set the top handler address to next handler past the current ENTRY handler.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006420 ASSERT(StackHandlerConstants::kNextOffset == 0);
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006421 __ pop(r2);
6422 __ str(r2, MemOperand(r3));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006423
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006424 if (type == OUT_OF_MEMORY) {
6425 // Set external caught exception to false.
6426 ExternalReference external_caught(Top::k_external_caught_exception_address);
6427 __ mov(r0, Operand(false));
6428 __ mov(r2, Operand(external_caught));
6429 __ str(r0, MemOperand(r2));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006430
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006431 // Set pending exception and r0 to out of memory exception.
6432 Failure* out_of_memory = Failure::OutOfMemoryException();
6433 __ mov(r0, Operand(reinterpret_cast<int32_t>(out_of_memory)));
6434 __ mov(r2, Operand(ExternalReference(Top::k_pending_exception_address)));
6435 __ str(r0, MemOperand(r2));
6436 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006437
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006438 // Stack layout at this point. See also StackHandlerConstants.
6439 // sp -> state (ENTRY)
6440 // fp
6441 // lr
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006442
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006443 // Discard handler state (r2 is not used) and restore frame pointer.
6444 ASSERT(StackHandlerConstants::kFPOffset == 2 * kPointerSize);
6445 __ ldm(ia_w, sp, r2.bit() | fp.bit()); // r2: discarded state.
6446 // Before returning we restore the context from the frame pointer if
6447 // not NULL. The frame pointer is NULL in the exception handler of a
6448 // JS entry frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006449 __ cmp(fp, Operand(0));
6450 // Set cp to NULL if fp is NULL.
6451 __ mov(cp, Operand(0), LeaveCC, eq);
6452 // Restore cp otherwise.
6453 __ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset), ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006454#ifdef DEBUG
6455 if (FLAG_debug_code) {
6456 __ mov(lr, Operand(pc));
6457 }
6458#endif
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006459 ASSERT(StackHandlerConstants::kPCOffset == 3 * kPointerSize);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006460 __ pop(pc);
6461}
6462
6463
6464void CEntryStub::GenerateCore(MacroAssembler* masm,
6465 Label* throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006466 Label* throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006467 Label* throw_out_of_memory_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006468 bool do_gc,
6469 bool always_allocate) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006470 // r0: result parameter for PerformGC, if any
6471 // r4: number of arguments including receiver (C callee-saved)
6472 // r5: pointer to builtin function (C callee-saved)
6473 // r6: pointer to the first argument (C callee-saved)
6474
6475 if (do_gc) {
6476 // Passing r0.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006477 ExternalReference gc_reference = ExternalReference::perform_gc_function();
6478 __ Call(gc_reference.address(), RelocInfo::RUNTIME_ENTRY);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006479 }
6480
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006481 ExternalReference scope_depth =
6482 ExternalReference::heap_always_allocate_scope_depth();
6483 if (always_allocate) {
6484 __ mov(r0, Operand(scope_depth));
6485 __ ldr(r1, MemOperand(r0));
6486 __ add(r1, r1, Operand(1));
6487 __ str(r1, MemOperand(r0));
6488 }
6489
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006490 // Call C built-in.
6491 // r0 = argc, r1 = argv
6492 __ mov(r0, Operand(r4));
6493 __ mov(r1, Operand(r6));
6494
6495 // TODO(1242173): To let the GC traverse the return address of the exit
6496 // frames, we need to know where the return address is. Right now,
6497 // we push it on the stack to be able to find it again, but we never
6498 // restore from it in case of changes, which makes it impossible to
6499 // support moving the C entry code stub. This should be fixed, but currently
6500 // this is OK because the CEntryStub gets generated so early in the V8 boot
6501 // sequence that it is not moving ever.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006502 masm->add(lr, pc, Operand(4)); // compute return address: (pc + 8) + 4
6503 masm->push(lr);
6504 masm->Jump(r5);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006505
6506 if (always_allocate) {
6507 // It's okay to clobber r2 and r3 here. Don't mess with r0 and r1
6508 // though (contain the result).
6509 __ mov(r2, Operand(scope_depth));
6510 __ ldr(r3, MemOperand(r2));
6511 __ sub(r3, r3, Operand(1));
6512 __ str(r3, MemOperand(r2));
6513 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006514
6515 // check for failure result
6516 Label failure_returned;
6517 ASSERT(((kFailureTag + 1) & kFailureTagMask) == 0);
6518 // Lower 2 bits of r2 are 0 iff r0 has failure tag.
6519 __ add(r2, r0, Operand(1));
6520 __ tst(r2, Operand(kFailureTagMask));
6521 __ b(eq, &failure_returned);
6522
6523 // Exit C frame and return.
6524 // r0:r1: result
6525 // sp: stack pointer
6526 // fp: frame pointer
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006527 __ LeaveExitFrame(mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006528
6529 // check if we should retry or throw exception
6530 Label retry;
6531 __ bind(&failure_returned);
6532 ASSERT(Failure::RETRY_AFTER_GC == 0);
6533 __ tst(r0, Operand(((1 << kFailureTypeTagSize) - 1) << kFailureTagSize));
6534 __ b(eq, &retry);
6535
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006536 // Special handling of out of memory exceptions.
6537 Failure* out_of_memory = Failure::OutOfMemoryException();
6538 __ cmp(r0, Operand(reinterpret_cast<int32_t>(out_of_memory)));
6539 __ b(eq, throw_out_of_memory_exception);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006540
6541 // Retrieve the pending exception and clear the variable.
ager@chromium.org32912102009-01-16 10:38:43 +00006542 __ mov(ip, Operand(ExternalReference::the_hole_value_location()));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006543 __ ldr(r3, MemOperand(ip));
ager@chromium.org32912102009-01-16 10:38:43 +00006544 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006545 __ ldr(r0, MemOperand(ip));
6546 __ str(r3, MemOperand(ip));
6547
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006548 // Special handling of termination exceptions which are uncatchable
6549 // by javascript code.
6550 __ cmp(r0, Operand(Factory::termination_exception()));
6551 __ b(eq, throw_termination_exception);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006552
6553 // Handle normal exception.
6554 __ jmp(throw_normal_exception);
6555
6556 __ bind(&retry); // pass last failure (r0) as parameter (r0) when retrying
6557}
6558
6559
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006560void CEntryStub::Generate(MacroAssembler* masm) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006561 // Called from JavaScript; parameters are on stack as if calling JS function
6562 // r0: number of arguments including receiver
6563 // r1: pointer to builtin function
6564 // fp: frame pointer (restored after C call)
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006565 // sp: stack pointer (restored as callee's sp after C call)
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006566 // cp: current context (C callee-saved)
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006567
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006568 // Result returned in r0 or r0+r1 by default.
6569
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006570 // NOTE: Invocations of builtins may return failure objects
6571 // instead of a proper result. The builtin entry handles
6572 // this by performing a garbage collection and retrying the
6573 // builtin once.
6574
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006575 // Enter the exit frame that transitions from JavaScript to C++.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006576 __ EnterExitFrame(mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006577
6578 // r4: number of arguments (C callee-saved)
6579 // r5: pointer to builtin function (C callee-saved)
6580 // r6: pointer to first argument (C callee-saved)
6581
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006582 Label throw_normal_exception;
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006583 Label throw_termination_exception;
6584 Label throw_out_of_memory_exception;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006585
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00006586 // Call into the runtime system.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006587 GenerateCore(masm,
6588 &throw_normal_exception,
6589 &throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006590 &throw_out_of_memory_exception,
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00006591 false,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006592 false);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006593
6594 // Do space-specific GC and retry runtime call.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006595 GenerateCore(masm,
6596 &throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006597 &throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006598 &throw_out_of_memory_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006599 true,
6600 false);
6601
6602 // Do full GC and retry runtime call one final time.
6603 Failure* failure = Failure::InternalError();
6604 __ mov(r0, Operand(reinterpret_cast<int32_t>(failure)));
6605 GenerateCore(masm,
6606 &throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006607 &throw_termination_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006608 &throw_out_of_memory_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006609 true,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006610 true);
6611
6612 __ bind(&throw_out_of_memory_exception);
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006613 GenerateThrowUncatchable(masm, OUT_OF_MEMORY);
6614
6615 __ bind(&throw_termination_exception);
6616 GenerateThrowUncatchable(masm, TERMINATION);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006617
6618 __ bind(&throw_normal_exception);
6619 GenerateThrowTOS(masm);
6620}
6621
6622
6623void JSEntryStub::GenerateBody(MacroAssembler* masm, bool is_construct) {
6624 // r0: code entry
6625 // r1: function
6626 // r2: receiver
6627 // r3: argc
6628 // [sp+0]: argv
6629
6630 Label invoke, exit;
6631
6632 // Called from C, so do not pop argc and args on exit (preserve sp)
6633 // No need to save register-passed args
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006634 // Save callee-saved registers (incl. cp and fp), sp, and lr
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006635 __ stm(db_w, sp, kCalleeSaved | lr.bit());
6636
6637 // Get address of argv, see stm above.
6638 // r0: code entry
6639 // r1: function
6640 // r2: receiver
6641 // r3: argc
ager@chromium.org5c838252010-02-19 08:53:10 +00006642 __ ldr(r4, MemOperand(sp, (kNumCalleeSaved + 1) * kPointerSize)); // argv
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006643
6644 // Push a frame with special values setup to mark it as an entry frame.
6645 // r0: code entry
6646 // r1: function
6647 // r2: receiver
6648 // r3: argc
6649 // r4: argv
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006650 __ mov(r8, Operand(-1)); // Push a bad frame pointer to fail if it is used.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006651 int marker = is_construct ? StackFrame::ENTRY_CONSTRUCT : StackFrame::ENTRY;
6652 __ mov(r7, Operand(Smi::FromInt(marker)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006653 __ mov(r6, Operand(Smi::FromInt(marker)));
6654 __ mov(r5, Operand(ExternalReference(Top::k_c_entry_fp_address)));
6655 __ ldr(r5, MemOperand(r5));
6656 __ stm(db_w, sp, r5.bit() | r6.bit() | r7.bit() | r8.bit());
6657
6658 // Setup frame pointer for the frame to be pushed.
6659 __ add(fp, sp, Operand(-EntryFrameConstants::kCallerFPOffset));
6660
6661 // Call a faked try-block that does the invoke.
6662 __ bl(&invoke);
6663
6664 // Caught exception: Store result (exception) in the pending
6665 // exception field in the JSEnv and return a failure sentinel.
6666 // Coming in here the fp will be invalid because the PushTryHandler below
6667 // sets it to 0 to signal the existence of the JSEntry frame.
ager@chromium.org32912102009-01-16 10:38:43 +00006668 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006669 __ str(r0, MemOperand(ip));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006670 __ mov(r0, Operand(reinterpret_cast<int32_t>(Failure::Exception())));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006671 __ b(&exit);
6672
6673 // Invoke: Link this frame into the handler chain.
6674 __ bind(&invoke);
6675 // Must preserve r0-r4, r5-r7 are available.
6676 __ PushTryHandler(IN_JS_ENTRY, JS_ENTRY_HANDLER);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006677 // If an exception not caught by another handler occurs, this handler
6678 // returns control to the code after the bl(&invoke) above, which
6679 // restores all kCalleeSaved registers (including cp and fp) to their
6680 // saved values before returning a failure to C.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006681
6682 // Clear any pending exceptions.
6683 __ mov(ip, Operand(ExternalReference::the_hole_value_location()));
6684 __ ldr(r5, MemOperand(ip));
ager@chromium.org32912102009-01-16 10:38:43 +00006685 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006686 __ str(r5, MemOperand(ip));
6687
6688 // Invoke the function by calling through JS entry trampoline builtin.
6689 // Notice that we cannot store a reference to the trampoline code directly in
6690 // this stub, because runtime stubs are not traversed when doing GC.
6691
6692 // Expected registers by Builtins::JSEntryTrampoline
6693 // r0: code entry
6694 // r1: function
6695 // r2: receiver
6696 // r3: argc
6697 // r4: argv
6698 if (is_construct) {
6699 ExternalReference construct_entry(Builtins::JSConstructEntryTrampoline);
6700 __ mov(ip, Operand(construct_entry));
6701 } else {
6702 ExternalReference entry(Builtins::JSEntryTrampoline);
6703 __ mov(ip, Operand(entry));
6704 }
6705 __ ldr(ip, MemOperand(ip)); // deref address
6706
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006707 // Branch and link to JSEntryTrampoline. We don't use the double underscore
6708 // macro for the add instruction because we don't want the coverage tool
6709 // inserting instructions here after we read the pc.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006710 __ mov(lr, Operand(pc));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006711 masm->add(pc, ip, Operand(Code::kHeaderSize - kHeapObjectTag));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006712
6713 // Unlink this frame from the handler chain. When reading the
6714 // address of the next handler, there is no need to use the address
6715 // displacement since the current stack pointer (sp) points directly
6716 // to the stack handler.
6717 __ ldr(r3, MemOperand(sp, StackHandlerConstants::kNextOffset));
6718 __ mov(ip, Operand(ExternalReference(Top::k_handler_address)));
6719 __ str(r3, MemOperand(ip));
6720 // No need to restore registers
6721 __ add(sp, sp, Operand(StackHandlerConstants::kSize));
6722
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006723
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006724 __ bind(&exit); // r0 holds result
6725 // Restore the top frame descriptors from the stack.
6726 __ pop(r3);
6727 __ mov(ip, Operand(ExternalReference(Top::k_c_entry_fp_address)));
6728 __ str(r3, MemOperand(ip));
6729
6730 // Reset the stack to the callee saved registers.
6731 __ add(sp, sp, Operand(-EntryFrameConstants::kCallerFPOffset));
6732
6733 // Restore callee-saved registers and return.
6734#ifdef DEBUG
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006735 if (FLAG_debug_code) {
6736 __ mov(lr, Operand(pc));
6737 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006738#endif
6739 __ ldm(ia_w, sp, kCalleeSaved | pc.bit());
6740}
6741
6742
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006743// This stub performs an instanceof, calling the builtin function if
6744// necessary. Uses r1 for the object, r0 for the function that it may
6745// be an instance of (these are fetched from the stack).
6746void InstanceofStub::Generate(MacroAssembler* masm) {
6747 // Get the object - slow case for smis (we may need to throw an exception
6748 // depending on the rhs).
6749 Label slow, loop, is_instance, is_not_instance;
6750 __ ldr(r0, MemOperand(sp, 1 * kPointerSize));
6751 __ BranchOnSmi(r0, &slow);
6752
6753 // Check that the left hand is a JS object and put map in r3.
6754 __ CompareObjectType(r0, r3, r2, FIRST_JS_OBJECT_TYPE);
6755 __ b(lt, &slow);
6756 __ cmp(r2, Operand(LAST_JS_OBJECT_TYPE));
6757 __ b(gt, &slow);
6758
6759 // Get the prototype of the function (r4 is result, r2 is scratch).
ager@chromium.org5c838252010-02-19 08:53:10 +00006760 __ ldr(r1, MemOperand(sp, 0));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006761 __ TryGetFunctionPrototype(r1, r4, r2, &slow);
6762
6763 // Check that the function prototype is a JS object.
6764 __ BranchOnSmi(r4, &slow);
6765 __ CompareObjectType(r4, r5, r5, FIRST_JS_OBJECT_TYPE);
6766 __ b(lt, &slow);
6767 __ cmp(r5, Operand(LAST_JS_OBJECT_TYPE));
6768 __ b(gt, &slow);
6769
6770 // Register mapping: r3 is object map and r4 is function prototype.
6771 // Get prototype of object into r2.
6772 __ ldr(r2, FieldMemOperand(r3, Map::kPrototypeOffset));
6773
6774 // Loop through the prototype chain looking for the function prototype.
6775 __ bind(&loop);
6776 __ cmp(r2, Operand(r4));
6777 __ b(eq, &is_instance);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006778 __ LoadRoot(ip, Heap::kNullValueRootIndex);
6779 __ cmp(r2, ip);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006780 __ b(eq, &is_not_instance);
6781 __ ldr(r2, FieldMemOperand(r2, HeapObject::kMapOffset));
6782 __ ldr(r2, FieldMemOperand(r2, Map::kPrototypeOffset));
6783 __ jmp(&loop);
6784
6785 __ bind(&is_instance);
6786 __ mov(r0, Operand(Smi::FromInt(0)));
6787 __ pop();
6788 __ pop();
6789 __ mov(pc, Operand(lr)); // Return.
6790
6791 __ bind(&is_not_instance);
6792 __ mov(r0, Operand(Smi::FromInt(1)));
6793 __ pop();
6794 __ pop();
6795 __ mov(pc, Operand(lr)); // Return.
6796
6797 // Slow-case. Tail call builtin.
6798 __ bind(&slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006799 __ InvokeBuiltin(Builtins::INSTANCE_OF, JUMP_JS);
6800}
6801
6802
ager@chromium.org7c537e22008-10-16 08:43:32 +00006803void ArgumentsAccessStub::GenerateReadLength(MacroAssembler* masm) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006804 // Check if the calling frame is an arguments adaptor frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006805 Label adaptor;
6806 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6807 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006808 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006809 __ b(eq, &adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006810
ager@chromium.org7c537e22008-10-16 08:43:32 +00006811 // Nothing to do: The formal number of parameters has already been
6812 // passed in register r0 by calling function. Just return it.
ager@chromium.org9085a012009-05-11 19:22:57 +00006813 __ Jump(lr);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006814
ager@chromium.org7c537e22008-10-16 08:43:32 +00006815 // Arguments adaptor case: Read the arguments length from the
6816 // adaptor frame and return it.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006817 __ bind(&adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006818 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
ager@chromium.org9085a012009-05-11 19:22:57 +00006819 __ Jump(lr);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006820}
6821
6822
ager@chromium.org7c537e22008-10-16 08:43:32 +00006823void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) {
6824 // The displacement is the offset of the last parameter (if any)
6825 // relative to the frame pointer.
6826 static const int kDisplacement =
6827 StandardFrameConstants::kCallerSPOffset - kPointerSize;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006828
ager@chromium.org7c537e22008-10-16 08:43:32 +00006829 // Check that the key is a smi.
6830 Label slow;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006831 __ BranchOnNotSmi(r1, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006832
ager@chromium.org7c537e22008-10-16 08:43:32 +00006833 // Check if the calling frame is an arguments adaptor frame.
6834 Label adaptor;
6835 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6836 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006837 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006838 __ b(eq, &adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006839
ager@chromium.org7c537e22008-10-16 08:43:32 +00006840 // Check index against formal parameters count limit passed in
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00006841 // through register r0. Use unsigned comparison to get negative
ager@chromium.org7c537e22008-10-16 08:43:32 +00006842 // check for free.
6843 __ cmp(r1, r0);
6844 __ b(cs, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006845
ager@chromium.org7c537e22008-10-16 08:43:32 +00006846 // Read the argument from the stack and return it.
6847 __ sub(r3, r0, r1);
6848 __ add(r3, fp, Operand(r3, LSL, kPointerSizeLog2 - kSmiTagSize));
6849 __ ldr(r0, MemOperand(r3, kDisplacement));
ager@chromium.org9085a012009-05-11 19:22:57 +00006850 __ Jump(lr);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006851
6852 // Arguments adaptor case: Check index against actual arguments
6853 // limit found in the arguments adaptor frame. Use unsigned
6854 // comparison to get negative check for free.
6855 __ bind(&adaptor);
6856 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
6857 __ cmp(r1, r0);
6858 __ b(cs, &slow);
6859
6860 // Read the argument from the adaptor frame and return it.
6861 __ sub(r3, r0, r1);
6862 __ add(r3, r2, Operand(r3, LSL, kPointerSizeLog2 - kSmiTagSize));
6863 __ ldr(r0, MemOperand(r3, kDisplacement));
ager@chromium.org9085a012009-05-11 19:22:57 +00006864 __ Jump(lr);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006865
6866 // Slow-case: Handle non-smi or out-of-bounds access to arguments
6867 // by calling the runtime system.
6868 __ bind(&slow);
6869 __ push(r1);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006870 __ TailCallRuntime(Runtime::kGetArgumentsProperty, 1, 1);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006871}
6872
6873
6874void ArgumentsAccessStub::GenerateNewObject(MacroAssembler* masm) {
ager@chromium.org5c838252010-02-19 08:53:10 +00006875 // sp[0] : number of parameters
6876 // sp[4] : receiver displacement
6877 // sp[8] : function
6878
ager@chromium.org7c537e22008-10-16 08:43:32 +00006879 // Check if the calling frame is an arguments adaptor frame.
ager@chromium.org5c838252010-02-19 08:53:10 +00006880 Label adaptor_frame, try_allocate, runtime;
ager@chromium.org7c537e22008-10-16 08:43:32 +00006881 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6882 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006883 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org5c838252010-02-19 08:53:10 +00006884 __ b(eq, &adaptor_frame);
6885
6886 // Get the length from the frame.
6887 __ ldr(r1, MemOperand(sp, 0));
6888 __ b(&try_allocate);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006889
6890 // Patch the arguments.length and the parameters pointer.
ager@chromium.org5c838252010-02-19 08:53:10 +00006891 __ bind(&adaptor_frame);
6892 __ ldr(r1, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
6893 __ str(r1, MemOperand(sp, 0));
6894 __ add(r3, r2, Operand(r1, LSL, kPointerSizeLog2 - kSmiTagSize));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006895 __ add(r3, r3, Operand(StandardFrameConstants::kCallerSPOffset));
6896 __ str(r3, MemOperand(sp, 1 * kPointerSize));
6897
ager@chromium.org5c838252010-02-19 08:53:10 +00006898 // Try the new space allocation. Start out with computing the size
6899 // of the arguments object and the elements array (in words, not
6900 // bytes because AllocateInNewSpace expects words).
6901 Label add_arguments_object;
6902 __ bind(&try_allocate);
6903 __ cmp(r1, Operand(0));
6904 __ b(eq, &add_arguments_object);
6905 __ mov(r1, Operand(r1, LSR, kSmiTagSize));
6906 __ add(r1, r1, Operand(FixedArray::kHeaderSize / kPointerSize));
6907 __ bind(&add_arguments_object);
6908 __ add(r1, r1, Operand(Heap::kArgumentsObjectSize / kPointerSize));
6909
6910 // Do the allocation of both objects in one go.
6911 __ AllocateInNewSpace(r1, r0, r2, r3, &runtime, TAG_OBJECT);
6912
6913 // Get the arguments boilerplate from the current (global) context.
6914 int offset = Context::SlotOffset(Context::ARGUMENTS_BOILERPLATE_INDEX);
6915 __ ldr(r4, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX)));
6916 __ ldr(r4, FieldMemOperand(r4, GlobalObject::kGlobalContextOffset));
6917 __ ldr(r4, MemOperand(r4, offset));
6918
6919 // Copy the JS object part.
6920 for (int i = 0; i < JSObject::kHeaderSize; i += kPointerSize) {
6921 __ ldr(r3, FieldMemOperand(r4, i));
6922 __ str(r3, FieldMemOperand(r0, i));
6923 }
6924
6925 // Setup the callee in-object property.
6926 ASSERT(Heap::arguments_callee_index == 0);
6927 __ ldr(r3, MemOperand(sp, 2 * kPointerSize));
6928 __ str(r3, FieldMemOperand(r0, JSObject::kHeaderSize));
6929
6930 // Get the length (smi tagged) and set that as an in-object property too.
6931 ASSERT(Heap::arguments_length_index == 1);
6932 __ ldr(r1, MemOperand(sp, 0 * kPointerSize));
6933 __ str(r1, FieldMemOperand(r0, JSObject::kHeaderSize + kPointerSize));
6934
6935 // If there are no actual arguments, we're done.
6936 Label done;
6937 __ cmp(r1, Operand(0));
6938 __ b(eq, &done);
6939
6940 // Get the parameters pointer from the stack and untag the length.
6941 __ ldr(r2, MemOperand(sp, 1 * kPointerSize));
6942 __ mov(r1, Operand(r1, LSR, kSmiTagSize));
6943
6944 // Setup the elements pointer in the allocated arguments object and
6945 // initialize the header in the elements fixed array.
6946 __ add(r4, r0, Operand(Heap::kArgumentsObjectSize));
6947 __ str(r4, FieldMemOperand(r0, JSObject::kElementsOffset));
6948 __ LoadRoot(r3, Heap::kFixedArrayMapRootIndex);
6949 __ str(r3, FieldMemOperand(r4, FixedArray::kMapOffset));
6950 __ str(r1, FieldMemOperand(r4, FixedArray::kLengthOffset));
6951
6952 // Copy the fixed array slots.
6953 Label loop;
6954 // Setup r4 to point to the first array slot.
6955 __ add(r4, r4, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
6956 __ bind(&loop);
6957 // Pre-decrement r2 with kPointerSize on each iteration.
6958 // Pre-decrement in order to skip receiver.
6959 __ ldr(r3, MemOperand(r2, kPointerSize, NegPreIndex));
6960 // Post-increment r4 with kPointerSize on each iteration.
6961 __ str(r3, MemOperand(r4, kPointerSize, PostIndex));
6962 __ sub(r1, r1, Operand(1));
6963 __ cmp(r1, Operand(0));
6964 __ b(ne, &loop);
6965
6966 // Return and remove the on-stack parameters.
6967 __ bind(&done);
6968 __ add(sp, sp, Operand(3 * kPointerSize));
6969 __ Ret();
6970
ager@chromium.org7c537e22008-10-16 08:43:32 +00006971 // Do the runtime call to allocate the arguments object.
6972 __ bind(&runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006973 __ TailCallRuntime(Runtime::kNewArgumentsFast, 3, 1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006974}
6975
6976
6977void CallFunctionStub::Generate(MacroAssembler* masm) {
6978 Label slow;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006979
6980 // If the receiver might be a value (string, number or boolean) check for this
6981 // and box it if it is.
6982 if (ReceiverMightBeValue()) {
6983 // Get the receiver from the stack.
6984 // function, receiver [, arguments]
6985 Label receiver_is_value, receiver_is_js_object;
6986 __ ldr(r1, MemOperand(sp, argc_ * kPointerSize));
6987
6988 // Check if receiver is a smi (which is a number value).
6989 __ BranchOnSmi(r1, &receiver_is_value);
6990
6991 // Check if the receiver is a valid JS object.
6992 __ CompareObjectType(r1, r2, r2, FIRST_JS_OBJECT_TYPE);
6993 __ b(ge, &receiver_is_js_object);
6994
6995 // Call the runtime to box the value.
6996 __ bind(&receiver_is_value);
6997 __ EnterInternalFrame();
6998 __ push(r1);
6999 __ InvokeBuiltin(Builtins::TO_OBJECT, CALL_JS);
7000 __ LeaveInternalFrame();
7001 __ str(r0, MemOperand(sp, argc_ * kPointerSize));
7002
7003 __ bind(&receiver_is_js_object);
7004 }
7005
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007006 // Get the function to call from the stack.
7007 // function, receiver [, arguments]
7008 __ ldr(r1, MemOperand(sp, (argc_ + 1) * kPointerSize));
7009
7010 // Check that the function is really a JavaScript function.
7011 // r1: pushed function (to be verified)
ager@chromium.orgeadaf222009-06-16 09:43:10 +00007012 __ BranchOnSmi(r1, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007013 // Get the map of the function object.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00007014 __ CompareObjectType(r1, r2, r2, JS_FUNCTION_TYPE);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007015 __ b(ne, &slow);
7016
7017 // Fast-case: Invoke the function now.
7018 // r1: pushed function
7019 ParameterCount actual(argc_);
7020 __ InvokeFunction(r1, actual, JUMP_FUNCTION);
7021
7022 // Slow-case: Non-function called.
7023 __ bind(&slow);
ager@chromium.org5c838252010-02-19 08:53:10 +00007024 // CALL_NON_FUNCTION expects the non-function callee as receiver (instead
7025 // of the original receiver from the call site).
7026 __ str(r1, MemOperand(sp, argc_ * kPointerSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007027 __ mov(r0, Operand(argc_)); // Setup the number of arguments.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00007028 __ mov(r2, Operand(0));
7029 __ GetBuiltinEntry(r3, Builtins::CALL_NON_FUNCTION);
7030 __ Jump(Handle<Code>(Builtins::builtin(Builtins::ArgumentsAdaptorTrampoline)),
7031 RelocInfo::CODE_TARGET);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007032}
7033
7034
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007035const char* CompareStub::GetName() {
7036 switch (cc_) {
7037 case lt: return "CompareStub_LT";
7038 case gt: return "CompareStub_GT";
7039 case le: return "CompareStub_LE";
7040 case ge: return "CompareStub_GE";
7041 case ne: {
7042 if (strict_) {
7043 if (never_nan_nan_) {
7044 return "CompareStub_NE_STRICT_NO_NAN";
7045 } else {
7046 return "CompareStub_NE_STRICT";
7047 }
7048 } else {
7049 if (never_nan_nan_) {
7050 return "CompareStub_NE_NO_NAN";
7051 } else {
7052 return "CompareStub_NE";
7053 }
7054 }
7055 }
7056 case eq: {
7057 if (strict_) {
7058 if (never_nan_nan_) {
7059 return "CompareStub_EQ_STRICT_NO_NAN";
7060 } else {
7061 return "CompareStub_EQ_STRICT";
7062 }
7063 } else {
7064 if (never_nan_nan_) {
7065 return "CompareStub_EQ_NO_NAN";
7066 } else {
7067 return "CompareStub_EQ";
7068 }
7069 }
7070 }
7071 default: return "CompareStub";
7072 }
7073}
7074
7075
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00007076int CompareStub::MinorKey() {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007077 // Encode the three parameters in a unique 16 bit value.
7078 ASSERT((static_cast<unsigned>(cc_) >> 26) < (1 << 16));
7079 int nnn_value = (never_nan_nan_ ? 2 : 0);
7080 if (cc_ != eq) nnn_value = 0; // Avoid duplicate stubs.
7081 return (static_cast<unsigned>(cc_) >> 26) | nnn_value | (strict_ ? 1 : 0);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00007082}
7083
7084
ager@chromium.org5c838252010-02-19 08:53:10 +00007085void StringStubBase::GenerateCopyCharacters(MacroAssembler* masm,
7086 Register dest,
7087 Register src,
7088 Register count,
7089 Register scratch,
7090 bool ascii) {
7091 Label loop;
7092 Label done;
7093 // This loop just copies one character at a time, as it is only used for very
7094 // short strings.
7095 if (!ascii) {
7096 __ add(count, count, Operand(count), SetCC);
7097 } else {
7098 __ cmp(count, Operand(0));
7099 }
7100 __ b(eq, &done);
7101
7102 __ bind(&loop);
7103 __ ldrb(scratch, MemOperand(src, 1, PostIndex));
7104 // Perform sub between load and dependent store to get the load time to
7105 // complete.
7106 __ sub(count, count, Operand(1), SetCC);
7107 __ strb(scratch, MemOperand(dest, 1, PostIndex));
7108 // last iteration.
7109 __ b(gt, &loop);
7110
7111 __ bind(&done);
7112}
7113
7114
7115enum CopyCharactersFlags {
7116 COPY_ASCII = 1,
7117 DEST_ALWAYS_ALIGNED = 2
7118};
7119
7120
7121void StringStubBase::GenerateCopyCharactersLong(MacroAssembler* masm,
7122 Register dest,
7123 Register src,
7124 Register count,
7125 Register scratch1,
7126 Register scratch2,
7127 Register scratch3,
7128 Register scratch4,
7129 Register scratch5,
7130 int flags) {
7131 bool ascii = (flags & COPY_ASCII) != 0;
7132 bool dest_always_aligned = (flags & DEST_ALWAYS_ALIGNED) != 0;
7133
7134 if (dest_always_aligned && FLAG_debug_code) {
7135 // Check that destination is actually word aligned if the flag says
7136 // that it is.
7137 __ tst(dest, Operand(kPointerAlignmentMask));
7138 __ Check(eq, "Destination of copy not aligned.");
7139 }
7140
7141 const int kReadAlignment = 4;
7142 const int kReadAlignmentMask = kReadAlignment - 1;
7143 // Ensure that reading an entire aligned word containing the last character
7144 // of a string will not read outside the allocated area (because we pad up
7145 // to kObjectAlignment).
7146 ASSERT(kObjectAlignment >= kReadAlignment);
7147 // Assumes word reads and writes are little endian.
7148 // Nothing to do for zero characters.
7149 Label done;
7150 if (!ascii) {
7151 __ add(count, count, Operand(count), SetCC);
7152 } else {
7153 __ cmp(count, Operand(0));
7154 }
7155 __ b(eq, &done);
7156
7157 // Assume that you cannot read (or write) unaligned.
7158 Label byte_loop;
7159 // Must copy at least eight bytes, otherwise just do it one byte at a time.
7160 __ cmp(count, Operand(8));
7161 __ add(count, dest, Operand(count));
7162 Register limit = count; // Read until src equals this.
7163 __ b(lt, &byte_loop);
7164
7165 if (!dest_always_aligned) {
7166 // Align dest by byte copying. Copies between zero and three bytes.
7167 __ and_(scratch4, dest, Operand(kReadAlignmentMask), SetCC);
7168 Label dest_aligned;
7169 __ b(eq, &dest_aligned);
7170 __ cmp(scratch4, Operand(2));
7171 __ ldrb(scratch1, MemOperand(src, 1, PostIndex));
7172 __ ldrb(scratch2, MemOperand(src, 1, PostIndex), le);
7173 __ ldrb(scratch3, MemOperand(src, 1, PostIndex), lt);
7174 __ strb(scratch1, MemOperand(dest, 1, PostIndex));
7175 __ strb(scratch2, MemOperand(dest, 1, PostIndex), le);
7176 __ strb(scratch3, MemOperand(dest, 1, PostIndex), lt);
7177 __ bind(&dest_aligned);
7178 }
7179
7180 Label simple_loop;
7181
7182 __ sub(scratch4, dest, Operand(src));
7183 __ and_(scratch4, scratch4, Operand(0x03), SetCC);
7184 __ b(eq, &simple_loop);
7185 // Shift register is number of bits in a source word that
7186 // must be combined with bits in the next source word in order
7187 // to create a destination word.
7188
7189 // Complex loop for src/dst that are not aligned the same way.
7190 {
7191 Label loop;
7192 __ mov(scratch4, Operand(scratch4, LSL, 3));
7193 Register left_shift = scratch4;
7194 __ and_(src, src, Operand(~3)); // Round down to load previous word.
7195 __ ldr(scratch1, MemOperand(src, 4, PostIndex));
7196 // Store the "shift" most significant bits of scratch in the least
7197 // signficant bits (i.e., shift down by (32-shift)).
7198 __ rsb(scratch2, left_shift, Operand(32));
7199 Register right_shift = scratch2;
7200 __ mov(scratch1, Operand(scratch1, LSR, right_shift));
7201
7202 __ bind(&loop);
7203 __ ldr(scratch3, MemOperand(src, 4, PostIndex));
7204 __ sub(scratch5, limit, Operand(dest));
7205 __ orr(scratch1, scratch1, Operand(scratch3, LSL, left_shift));
7206 __ str(scratch1, MemOperand(dest, 4, PostIndex));
7207 __ mov(scratch1, Operand(scratch3, LSR, right_shift));
7208 // Loop if four or more bytes left to copy.
7209 // Compare to eight, because we did the subtract before increasing dst.
7210 __ sub(scratch5, scratch5, Operand(8), SetCC);
7211 __ b(ge, &loop);
7212 }
7213 // There is now between zero and three bytes left to copy (negative that
7214 // number is in scratch5), and between one and three bytes already read into
7215 // scratch1 (eight times that number in scratch4). We may have read past
7216 // the end of the string, but because objects are aligned, we have not read
7217 // past the end of the object.
7218 // Find the minimum of remaining characters to move and preloaded characters
7219 // and write those as bytes.
7220 __ add(scratch5, scratch5, Operand(4), SetCC);
7221 __ b(eq, &done);
7222 __ cmp(scratch4, Operand(scratch5, LSL, 3), ne);
7223 // Move minimum of bytes read and bytes left to copy to scratch4.
7224 __ mov(scratch5, Operand(scratch4, LSR, 3), LeaveCC, lt);
7225 // Between one and three (value in scratch5) characters already read into
7226 // scratch ready to write.
7227 __ cmp(scratch5, Operand(2));
7228 __ strb(scratch1, MemOperand(dest, 1, PostIndex));
7229 __ mov(scratch1, Operand(scratch1, LSR, 8), LeaveCC, ge);
7230 __ strb(scratch1, MemOperand(dest, 1, PostIndex), ge);
7231 __ mov(scratch1, Operand(scratch1, LSR, 8), LeaveCC, gt);
7232 __ strb(scratch1, MemOperand(dest, 1, PostIndex), gt);
7233 // Copy any remaining bytes.
7234 __ b(&byte_loop);
7235
7236 // Simple loop.
7237 // Copy words from src to dst, until less than four bytes left.
7238 // Both src and dest are word aligned.
7239 __ bind(&simple_loop);
7240 {
7241 Label loop;
7242 __ bind(&loop);
7243 __ ldr(scratch1, MemOperand(src, 4, PostIndex));
7244 __ sub(scratch3, limit, Operand(dest));
7245 __ str(scratch1, MemOperand(dest, 4, PostIndex));
7246 // Compare to 8, not 4, because we do the substraction before increasing
7247 // dest.
7248 __ cmp(scratch3, Operand(8));
7249 __ b(ge, &loop);
7250 }
7251
7252 // Copy bytes from src to dst until dst hits limit.
7253 __ bind(&byte_loop);
7254 __ cmp(dest, Operand(limit));
7255 __ ldrb(scratch1, MemOperand(src, 1, PostIndex), lt);
7256 __ b(ge, &done);
7257 __ strb(scratch1, MemOperand(dest, 1, PostIndex));
7258 __ b(&byte_loop);
7259
7260 __ bind(&done);
7261}
7262
7263
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007264void StringStubBase::GenerateTwoCharacterSymbolTableProbe(MacroAssembler* masm,
7265 Register c1,
7266 Register c2,
7267 Register scratch1,
7268 Register scratch2,
7269 Register scratch3,
7270 Register scratch4,
7271 Register scratch5,
7272 Label* not_found) {
7273 // Register scratch3 is the general scratch register in this function.
7274 Register scratch = scratch3;
7275
7276 // Make sure that both characters are not digits as such strings has a
7277 // different hash algorithm. Don't try to look for these in the symbol table.
7278 Label not_array_index;
7279 __ sub(scratch, c1, Operand(static_cast<int>('0')));
7280 __ cmp(scratch, Operand(static_cast<int>('9' - '0')));
7281 __ b(hi, &not_array_index);
7282 __ sub(scratch, c2, Operand(static_cast<int>('0')));
7283 __ cmp(scratch, Operand(static_cast<int>('9' - '0')));
7284
7285 // If check failed combine both characters into single halfword.
7286 // This is required by the contract of the method: code at the
7287 // not_found branch expects this combination in c1 register
7288 __ orr(c1, c1, Operand(c2, LSL, kBitsPerByte), LeaveCC, ls);
7289 __ b(ls, not_found);
7290
7291 __ bind(&not_array_index);
7292 // Calculate the two character string hash.
7293 Register hash = scratch1;
7294 GenerateHashInit(masm, hash, c1);
7295 GenerateHashAddCharacter(masm, hash, c2);
7296 GenerateHashGetHash(masm, hash);
7297
7298 // Collect the two characters in a register.
7299 Register chars = c1;
7300 __ orr(chars, chars, Operand(c2, LSL, kBitsPerByte));
7301
7302 // chars: two character string, char 1 in byte 0 and char 2 in byte 1.
7303 // hash: hash of two character string.
7304
7305 // Load symbol table
7306 // Load address of first element of the symbol table.
7307 Register symbol_table = c2;
7308 __ LoadRoot(symbol_table, Heap::kSymbolTableRootIndex);
7309
7310 // Load undefined value
7311 Register undefined = scratch4;
7312 __ LoadRoot(undefined, Heap::kUndefinedValueRootIndex);
7313
7314 // Calculate capacity mask from the symbol table capacity.
7315 Register mask = scratch2;
7316 __ ldr(mask, FieldMemOperand(symbol_table, SymbolTable::kCapacityOffset));
7317 __ mov(mask, Operand(mask, ASR, 1));
7318 __ sub(mask, mask, Operand(1));
7319
7320 // Calculate untagged address of the first element of the symbol table.
7321 Register first_symbol_table_element = symbol_table;
7322 __ add(first_symbol_table_element, symbol_table,
7323 Operand(SymbolTable::kElementsStartOffset - kHeapObjectTag));
7324
7325 // Registers
7326 // chars: two character string, char 1 in byte 0 and char 2 in byte 1.
7327 // hash: hash of two character string
7328 // mask: capacity mask
7329 // first_symbol_table_element: address of the first element of
7330 // the symbol table
7331 // scratch: -
7332
7333 // Perform a number of probes in the symbol table.
7334 static const int kProbes = 4;
7335 Label found_in_symbol_table;
7336 Label next_probe[kProbes];
7337 for (int i = 0; i < kProbes; i++) {
7338 Register candidate = scratch5; // Scratch register contains candidate.
7339
7340 // Calculate entry in symbol table.
7341 if (i > 0) {
7342 __ add(candidate, hash, Operand(SymbolTable::GetProbeOffset(i)));
7343 } else {
7344 __ mov(candidate, hash);
7345 }
7346
7347 __ and_(candidate, candidate, Operand(mask));
7348
7349 // Load the entry from the symble table.
7350 ASSERT_EQ(1, SymbolTable::kEntrySize);
7351 __ ldr(candidate,
7352 MemOperand(first_symbol_table_element,
7353 candidate,
7354 LSL,
7355 kPointerSizeLog2));
7356
7357 // If entry is undefined no string with this hash can be found.
7358 __ cmp(candidate, undefined);
7359 __ b(eq, not_found);
7360
7361 // If length is not 2 the string is not a candidate.
7362 __ ldr(scratch, FieldMemOperand(candidate, String::kLengthOffset));
7363 __ cmp(scratch, Operand(2));
7364 __ b(ne, &next_probe[i]);
7365
7366 // Check that the candidate is a non-external ascii string.
7367 __ ldr(scratch, FieldMemOperand(candidate, HeapObject::kMapOffset));
7368 __ ldrb(scratch, FieldMemOperand(scratch, Map::kInstanceTypeOffset));
7369 __ JumpIfInstanceTypeIsNotSequentialAscii(scratch, scratch,
7370 &next_probe[i]);
7371
7372 // Check if the two characters match.
7373 // Assumes that word load is little endian.
7374 __ ldrh(scratch, FieldMemOperand(candidate, SeqAsciiString::kHeaderSize));
7375 __ cmp(chars, scratch);
7376 __ b(eq, &found_in_symbol_table);
7377 __ bind(&next_probe[i]);
7378 }
7379
7380 // No matching 2 character string found by probing.
7381 __ jmp(not_found);
7382
7383 // Scratch register contains result when we fall through to here.
7384 Register result = scratch;
7385 __ bind(&found_in_symbol_table);
7386 if (!result.is(r0)) {
7387 __ mov(r0, result);
7388 }
7389}
7390
7391
7392void StringStubBase::GenerateHashInit(MacroAssembler* masm,
7393 Register hash,
7394 Register character) {
7395 // hash = character + (character << 10);
7396 __ add(hash, character, Operand(character, LSL, 10));
7397 // hash ^= hash >> 6;
7398 __ eor(hash, hash, Operand(hash, ASR, 6));
7399}
7400
7401
7402void StringStubBase::GenerateHashAddCharacter(MacroAssembler* masm,
7403 Register hash,
7404 Register character) {
7405 // hash += character;
7406 __ add(hash, hash, Operand(character));
7407 // hash += hash << 10;
7408 __ add(hash, hash, Operand(hash, LSL, 10));
7409 // hash ^= hash >> 6;
7410 __ eor(hash, hash, Operand(hash, ASR, 6));
7411}
7412
7413
7414void StringStubBase::GenerateHashGetHash(MacroAssembler* masm,
7415 Register hash) {
7416 // hash += hash << 3;
7417 __ add(hash, hash, Operand(hash, LSL, 3));
7418 // hash ^= hash >> 11;
7419 __ eor(hash, hash, Operand(hash, ASR, 11));
7420 // hash += hash << 15;
7421 __ add(hash, hash, Operand(hash, LSL, 15), SetCC);
7422
7423 // if (hash == 0) hash = 27;
7424 __ mov(hash, Operand(27), LeaveCC, nz);
7425}
7426
7427
ager@chromium.org5c838252010-02-19 08:53:10 +00007428void SubStringStub::Generate(MacroAssembler* masm) {
7429 Label runtime;
7430
7431 // Stack frame on entry.
7432 // lr: return address
7433 // sp[0]: to
7434 // sp[4]: from
7435 // sp[8]: string
7436
7437 // This stub is called from the native-call %_SubString(...), so
7438 // nothing can be assumed about the arguments. It is tested that:
7439 // "string" is a sequential string,
7440 // both "from" and "to" are smis, and
7441 // 0 <= from <= to <= string.length.
7442 // If any of these assumptions fail, we call the runtime system.
7443
7444 static const int kToOffset = 0 * kPointerSize;
7445 static const int kFromOffset = 1 * kPointerSize;
7446 static const int kStringOffset = 2 * kPointerSize;
7447
7448
7449 // Check bounds and smi-ness.
7450 __ ldr(r7, MemOperand(sp, kToOffset));
7451 __ ldr(r6, MemOperand(sp, kFromOffset));
7452 ASSERT_EQ(0, kSmiTag);
7453 ASSERT_EQ(1, kSmiTagSize + kSmiShiftSize);
7454 // I.e., arithmetic shift right by one un-smi-tags.
7455 __ mov(r2, Operand(r7, ASR, 1), SetCC);
7456 __ mov(r3, Operand(r6, ASR, 1), SetCC, cc);
7457 // If either r2 or r6 had the smi tag bit set, then carry is set now.
7458 __ b(cs, &runtime); // Either "from" or "to" is not a smi.
7459 __ b(mi, &runtime); // From is negative.
7460
7461 __ sub(r2, r2, Operand(r3), SetCC);
7462 __ b(mi, &runtime); // Fail if from > to.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007463 // Special handling of sub-strings of length 1 and 2. One character strings
7464 // are handled in the runtime system (looked up in the single character
7465 // cache). Two character strings are looked for in the symbol cache.
ager@chromium.org5c838252010-02-19 08:53:10 +00007466 __ cmp(r2, Operand(2));
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007467 __ b(lt, &runtime);
ager@chromium.org5c838252010-02-19 08:53:10 +00007468
7469 // r2: length
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007470 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007471 // r6: from (smi)
7472 // r7: to (smi)
7473
7474 // Make sure first argument is a sequential (or flat) string.
7475 __ ldr(r5, MemOperand(sp, kStringOffset));
7476 ASSERT_EQ(0, kSmiTag);
7477 __ tst(r5, Operand(kSmiTagMask));
7478 __ b(eq, &runtime);
7479 Condition is_string = masm->IsObjectStringType(r5, r1);
7480 __ b(NegateCondition(is_string), &runtime);
7481
7482 // r1: instance type
7483 // r2: length
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007484 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007485 // r5: string
7486 // r6: from (smi)
7487 // r7: to (smi)
7488 Label seq_string;
7489 __ and_(r4, r1, Operand(kStringRepresentationMask));
7490 ASSERT(kSeqStringTag < kConsStringTag);
7491 ASSERT(kExternalStringTag > kConsStringTag);
7492 __ cmp(r4, Operand(kConsStringTag));
7493 __ b(gt, &runtime); // External strings go to runtime.
7494 __ b(lt, &seq_string); // Sequential strings are handled directly.
7495
7496 // Cons string. Try to recurse (once) on the first substring.
7497 // (This adds a little more generality than necessary to handle flattened
7498 // cons strings, but not much).
7499 __ ldr(r5, FieldMemOperand(r5, ConsString::kFirstOffset));
7500 __ ldr(r4, FieldMemOperand(r5, HeapObject::kMapOffset));
7501 __ ldrb(r1, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7502 __ tst(r1, Operand(kStringRepresentationMask));
7503 ASSERT_EQ(0, kSeqStringTag);
7504 __ b(ne, &runtime); // Cons and External strings go to runtime.
7505
7506 // Definitly a sequential string.
7507 __ bind(&seq_string);
7508
7509 // r1: instance type.
7510 // r2: length
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007511 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007512 // r5: string
7513 // r6: from (smi)
7514 // r7: to (smi)
7515 __ ldr(r4, FieldMemOperand(r5, String::kLengthOffset));
7516 __ cmp(r4, Operand(r7, ASR, 1));
7517 __ b(lt, &runtime); // Fail if to > length.
7518
7519 // r1: instance type.
7520 // r2: result string length.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007521 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007522 // r5: string.
7523 // r6: from offset (smi)
7524 // Check for flat ascii string.
7525 Label non_ascii_flat;
7526 __ tst(r1, Operand(kStringEncodingMask));
7527 ASSERT_EQ(0, kTwoByteStringTag);
7528 __ b(eq, &non_ascii_flat);
7529
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007530 Label result_longer_than_two;
7531 __ cmp(r2, Operand(2));
7532 __ b(gt, &result_longer_than_two);
7533
7534 // Sub string of length 2 requested.
7535 // Get the two characters forming the sub string.
7536 __ add(r5, r5, Operand(r3));
7537 __ ldrb(r3, FieldMemOperand(r5, SeqAsciiString::kHeaderSize));
7538 __ ldrb(r4, FieldMemOperand(r5, SeqAsciiString::kHeaderSize + 1));
7539
7540 // Try to lookup two character string in symbol table.
7541 Label make_two_character_string;
7542 GenerateTwoCharacterSymbolTableProbe(masm, r3, r4, r1, r5, r6, r7, r9,
7543 &make_two_character_string);
7544 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7545 __ add(sp, sp, Operand(3 * kPointerSize));
7546 __ Ret();
7547
7548 // r2: result string length.
7549 // r3: two characters combined into halfword in little endian byte order.
7550 __ bind(&make_two_character_string);
7551 __ AllocateAsciiString(r0, r2, r4, r5, r9, &runtime);
7552 __ strh(r3, FieldMemOperand(r0, SeqAsciiString::kHeaderSize));
7553 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7554 __ add(sp, sp, Operand(3 * kPointerSize));
7555 __ Ret();
7556
7557 __ bind(&result_longer_than_two);
7558
ager@chromium.org5c838252010-02-19 08:53:10 +00007559 // Allocate the result.
7560 __ AllocateAsciiString(r0, r2, r3, r4, r1, &runtime);
7561
7562 // r0: result string.
7563 // r2: result string length.
7564 // r5: string.
7565 // r6: from offset (smi)
7566 // Locate first character of result.
7567 __ add(r1, r0, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7568 // Locate 'from' character of string.
7569 __ add(r5, r5, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7570 __ add(r5, r5, Operand(r6, ASR, 1));
7571
7572 // r0: result string.
7573 // r1: first character of result string.
7574 // r2: result string length.
7575 // r5: first character of sub string to copy.
7576 ASSERT_EQ(0, SeqAsciiString::kHeaderSize & kObjectAlignmentMask);
7577 GenerateCopyCharactersLong(masm, r1, r5, r2, r3, r4, r6, r7, r9,
7578 COPY_ASCII | DEST_ALWAYS_ALIGNED);
7579 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7580 __ add(sp, sp, Operand(3 * kPointerSize));
7581 __ Ret();
7582
7583 __ bind(&non_ascii_flat);
7584 // r2: result string length.
7585 // r5: string.
7586 // r6: from offset (smi)
7587 // Check for flat two byte string.
7588
7589 // Allocate the result.
7590 __ AllocateTwoByteString(r0, r2, r1, r3, r4, &runtime);
7591
7592 // r0: result string.
7593 // r2: result string length.
7594 // r5: string.
7595 // Locate first character of result.
7596 __ add(r1, r0, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7597 // Locate 'from' character of string.
7598 __ add(r5, r5, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7599 // As "from" is a smi it is 2 times the value which matches the size of a two
7600 // byte character.
7601 __ add(r5, r5, Operand(r6));
7602
7603 // r0: result string.
7604 // r1: first character of result.
7605 // r2: result length.
7606 // r5: first character of string to copy.
7607 ASSERT_EQ(0, SeqTwoByteString::kHeaderSize & kObjectAlignmentMask);
7608 GenerateCopyCharactersLong(masm, r1, r5, r2, r3, r4, r6, r7, r9,
7609 DEST_ALWAYS_ALIGNED);
7610 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7611 __ add(sp, sp, Operand(3 * kPointerSize));
7612 __ Ret();
7613
7614 // Just jump to runtime to create the sub string.
7615 __ bind(&runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007616 __ TailCallRuntime(Runtime::kSubString, 3, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00007617}
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007618
7619
7620void StringCompareStub::GenerateCompareFlatAsciiStrings(MacroAssembler* masm,
7621 Register left,
7622 Register right,
7623 Register scratch1,
7624 Register scratch2,
7625 Register scratch3,
7626 Register scratch4) {
7627 Label compare_lengths;
7628 // Find minimum length and length difference.
7629 __ ldr(scratch1, FieldMemOperand(left, String::kLengthOffset));
7630 __ ldr(scratch2, FieldMemOperand(right, String::kLengthOffset));
7631 __ sub(scratch3, scratch1, Operand(scratch2), SetCC);
7632 Register length_delta = scratch3;
7633 __ mov(scratch1, scratch2, LeaveCC, gt);
7634 Register min_length = scratch1;
7635 __ tst(min_length, Operand(min_length));
7636 __ b(eq, &compare_lengths);
7637
7638 // Setup registers so that we only need to increment one register
7639 // in the loop.
7640 __ add(scratch2, min_length,
7641 Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7642 __ add(left, left, Operand(scratch2));
7643 __ add(right, right, Operand(scratch2));
7644 // Registers left and right points to the min_length character of strings.
7645 __ rsb(min_length, min_length, Operand(-1));
7646 Register index = min_length;
7647 // Index starts at -min_length.
7648
7649 {
7650 // Compare loop.
7651 Label loop;
7652 __ bind(&loop);
7653 // Compare characters.
7654 __ add(index, index, Operand(1), SetCC);
7655 __ ldrb(scratch2, MemOperand(left, index), ne);
7656 __ ldrb(scratch4, MemOperand(right, index), ne);
7657 // Skip to compare lengths with eq condition true.
7658 __ b(eq, &compare_lengths);
7659 __ cmp(scratch2, scratch4);
7660 __ b(eq, &loop);
7661 // Fallthrough with eq condition false.
7662 }
7663 // Compare lengths - strings up to min-length are equal.
7664 __ bind(&compare_lengths);
7665 ASSERT(Smi::FromInt(EQUAL) == static_cast<Smi*>(0));
7666 // Use zero length_delta as result.
7667 __ mov(r0, Operand(length_delta), SetCC, eq);
7668 // Fall through to here if characters compare not-equal.
7669 __ mov(r0, Operand(Smi::FromInt(GREATER)), LeaveCC, gt);
7670 __ mov(r0, Operand(Smi::FromInt(LESS)), LeaveCC, lt);
7671 __ Ret();
7672}
7673
7674
7675void StringCompareStub::Generate(MacroAssembler* masm) {
7676 Label runtime;
7677
7678 // Stack frame on entry.
ager@chromium.org5c838252010-02-19 08:53:10 +00007679 // sp[0]: right string
7680 // sp[4]: left string
7681 __ ldr(r0, MemOperand(sp, 1 * kPointerSize)); // left
7682 __ ldr(r1, MemOperand(sp, 0 * kPointerSize)); // right
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007683
7684 Label not_same;
7685 __ cmp(r0, r1);
7686 __ b(ne, &not_same);
7687 ASSERT_EQ(0, EQUAL);
7688 ASSERT_EQ(0, kSmiTag);
7689 __ mov(r0, Operand(Smi::FromInt(EQUAL)));
7690 __ IncrementCounter(&Counters::string_compare_native, 1, r1, r2);
7691 __ add(sp, sp, Operand(2 * kPointerSize));
7692 __ Ret();
7693
7694 __ bind(&not_same);
7695
7696 // Check that both objects are sequential ascii strings.
7697 __ JumpIfNotBothSequentialAsciiStrings(r0, r1, r2, r3, &runtime);
7698
7699 // Compare flat ascii strings natively. Remove arguments from stack first.
7700 __ IncrementCounter(&Counters::string_compare_native, 1, r2, r3);
7701 __ add(sp, sp, Operand(2 * kPointerSize));
7702 GenerateCompareFlatAsciiStrings(masm, r0, r1, r2, r3, r4, r5);
7703
7704 // Call the runtime; it returns -1 (less), 0 (equal), or 1 (greater)
7705 // tagged as a small integer.
7706 __ bind(&runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007707 __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007708}
7709
7710
ager@chromium.org5c838252010-02-19 08:53:10 +00007711void StringAddStub::Generate(MacroAssembler* masm) {
7712 Label string_add_runtime;
7713 // Stack on entry:
7714 // sp[0]: second argument.
7715 // sp[4]: first argument.
7716
7717 // Load the two arguments.
7718 __ ldr(r0, MemOperand(sp, 1 * kPointerSize)); // First argument.
7719 __ ldr(r1, MemOperand(sp, 0 * kPointerSize)); // Second argument.
7720
7721 // Make sure that both arguments are strings if not known in advance.
7722 if (string_check_) {
7723 ASSERT_EQ(0, kSmiTag);
7724 __ JumpIfEitherSmi(r0, r1, &string_add_runtime);
7725 // Load instance types.
7726 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7727 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7728 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7729 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7730 ASSERT_EQ(0, kStringTag);
7731 // If either is not a string, go to runtime.
7732 __ tst(r4, Operand(kIsNotStringMask));
7733 __ tst(r5, Operand(kIsNotStringMask), eq);
7734 __ b(ne, &string_add_runtime);
7735 }
7736
7737 // Both arguments are strings.
7738 // r0: first string
7739 // r1: second string
7740 // r4: first string instance type (if string_check_)
7741 // r5: second string instance type (if string_check_)
7742 {
7743 Label strings_not_empty;
7744 // Check if either of the strings are empty. In that case return the other.
7745 __ ldr(r2, FieldMemOperand(r0, String::kLengthOffset));
7746 __ ldr(r3, FieldMemOperand(r1, String::kLengthOffset));
7747 __ cmp(r2, Operand(0)); // Test if first string is empty.
7748 __ mov(r0, Operand(r1), LeaveCC, eq); // If first is empty, return second.
7749 __ cmp(r3, Operand(0), ne); // Else test if second string is empty.
7750 __ b(ne, &strings_not_empty); // If either string was empty, return r0.
7751
7752 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7753 __ add(sp, sp, Operand(2 * kPointerSize));
7754 __ Ret();
7755
7756 __ bind(&strings_not_empty);
7757 }
7758
7759 // Both strings are non-empty.
7760 // r0: first string
7761 // r1: second string
7762 // r2: length of first string
7763 // r3: length of second string
7764 // r4: first string instance type (if string_check_)
7765 // r5: second string instance type (if string_check_)
7766 // Look at the length of the result of adding the two strings.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007767 Label string_add_flat_result, longer_than_two;
ager@chromium.org5c838252010-02-19 08:53:10 +00007768 // Adding two lengths can't overflow.
7769 ASSERT(String::kMaxLength * 2 > String::kMaxLength);
7770 __ add(r6, r2, Operand(r3));
7771 // Use the runtime system when adding two one character strings, as it
7772 // contains optimizations for this specific case using the symbol table.
7773 __ cmp(r6, Operand(2));
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007774 __ b(ne, &longer_than_two);
7775
7776 // Check that both strings are non-external ascii strings.
7777 if (!string_check_) {
7778 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7779 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7780 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7781 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7782 }
7783 __ JumpIfBothInstanceTypesAreNotSequentialAscii(r4, r5, r6, r7,
7784 &string_add_runtime);
7785
7786 // Get the two characters forming the sub string.
7787 __ ldrb(r2, FieldMemOperand(r0, SeqAsciiString::kHeaderSize));
7788 __ ldrb(r3, FieldMemOperand(r1, SeqAsciiString::kHeaderSize));
7789
7790 // Try to lookup two character string in symbol table. If it is not found
7791 // just allocate a new one.
7792 Label make_two_character_string;
7793 GenerateTwoCharacterSymbolTableProbe(masm, r2, r3, r6, r7, r4, r5, r9,
7794 &make_two_character_string);
7795 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7796 __ add(sp, sp, Operand(2 * kPointerSize));
7797 __ Ret();
7798
7799 __ bind(&make_two_character_string);
7800 // Resulting string has length 2 and first chars of two strings
7801 // are combined into single halfword in r2 register.
7802 // So we can fill resulting string without two loops by a single
7803 // halfword store instruction (which assumes that processor is
7804 // in a little endian mode)
7805 __ mov(r6, Operand(2));
7806 __ AllocateAsciiString(r0, r6, r4, r5, r9, &string_add_runtime);
7807 __ strh(r2, FieldMemOperand(r0, SeqAsciiString::kHeaderSize));
7808 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7809 __ add(sp, sp, Operand(2 * kPointerSize));
7810 __ Ret();
7811
7812 __ bind(&longer_than_two);
ager@chromium.org5c838252010-02-19 08:53:10 +00007813 // Check if resulting string will be flat.
7814 __ cmp(r6, Operand(String::kMinNonFlatLength));
7815 __ b(lt, &string_add_flat_result);
7816 // Handle exceptionally long strings in the runtime system.
7817 ASSERT((String::kMaxLength & 0x80000000) == 0);
7818 ASSERT(IsPowerOf2(String::kMaxLength + 1));
7819 // kMaxLength + 1 is representable as shifted literal, kMaxLength is not.
7820 __ cmp(r6, Operand(String::kMaxLength + 1));
7821 __ b(hs, &string_add_runtime);
7822
7823 // If result is not supposed to be flat, allocate a cons string object.
7824 // If both strings are ascii the result is an ascii cons string.
7825 if (!string_check_) {
7826 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7827 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7828 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7829 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7830 }
7831 Label non_ascii, allocated;
7832 ASSERT_EQ(0, kTwoByteStringTag);
7833 __ tst(r4, Operand(kStringEncodingMask));
7834 __ tst(r5, Operand(kStringEncodingMask), ne);
7835 __ b(eq, &non_ascii);
7836
7837 // Allocate an ASCII cons string.
7838 __ AllocateAsciiConsString(r7, r6, r4, r5, &string_add_runtime);
7839 __ bind(&allocated);
7840 // Fill the fields of the cons string.
7841 __ str(r0, FieldMemOperand(r7, ConsString::kFirstOffset));
7842 __ str(r1, FieldMemOperand(r7, ConsString::kSecondOffset));
7843 __ mov(r0, Operand(r7));
7844 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7845 __ add(sp, sp, Operand(2 * kPointerSize));
7846 __ Ret();
7847
7848 __ bind(&non_ascii);
7849 // Allocate a two byte cons string.
7850 __ AllocateTwoByteConsString(r7, r6, r4, r5, &string_add_runtime);
7851 __ jmp(&allocated);
7852
7853 // Handle creating a flat result. First check that both strings are
7854 // sequential and that they have the same encoding.
7855 // r0: first string
7856 // r1: second string
7857 // r2: length of first string
7858 // r3: length of second string
7859 // r4: first string instance type (if string_check_)
7860 // r5: second string instance type (if string_check_)
7861 // r6: sum of lengths.
7862 __ bind(&string_add_flat_result);
7863 if (!string_check_) {
7864 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7865 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7866 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7867 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7868 }
7869 // Check that both strings are sequential.
7870 ASSERT_EQ(0, kSeqStringTag);
7871 __ tst(r4, Operand(kStringRepresentationMask));
7872 __ tst(r5, Operand(kStringRepresentationMask), eq);
7873 __ b(ne, &string_add_runtime);
7874 // Now check if both strings have the same encoding (ASCII/Two-byte).
7875 // r0: first string.
7876 // r1: second string.
7877 // r2: length of first string.
7878 // r3: length of second string.
7879 // r6: sum of lengths..
7880 Label non_ascii_string_add_flat_result;
7881 ASSERT(IsPowerOf2(kStringEncodingMask)); // Just one bit to test.
7882 __ eor(r7, r4, Operand(r5));
7883 __ tst(r7, Operand(kStringEncodingMask));
7884 __ b(ne, &string_add_runtime);
7885 // And see if it's ASCII or two-byte.
7886 __ tst(r4, Operand(kStringEncodingMask));
7887 __ b(eq, &non_ascii_string_add_flat_result);
7888
7889 // Both strings are sequential ASCII strings. We also know that they are
7890 // short (since the sum of the lengths is less than kMinNonFlatLength).
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007891 // r6: length of resulting flat string
ager@chromium.org5c838252010-02-19 08:53:10 +00007892 __ AllocateAsciiString(r7, r6, r4, r5, r9, &string_add_runtime);
7893 // Locate first character of result.
7894 __ add(r6, r7, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7895 // Locate first character of first argument.
7896 __ add(r0, r0, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7897 // r0: first character of first string.
7898 // r1: second string.
7899 // r2: length of first string.
7900 // r3: length of second string.
7901 // r6: first character of result.
7902 // r7: result string.
7903 GenerateCopyCharacters(masm, r6, r0, r2, r4, true);
7904
7905 // Load second argument and locate first character.
7906 __ add(r1, r1, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7907 // r1: first character of second string.
7908 // r3: length of second string.
7909 // r6: next character of result.
7910 // r7: result string.
7911 GenerateCopyCharacters(masm, r6, r1, r3, r4, true);
7912 __ mov(r0, Operand(r7));
7913 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7914 __ add(sp, sp, Operand(2 * kPointerSize));
7915 __ Ret();
7916
7917 __ bind(&non_ascii_string_add_flat_result);
7918 // Both strings are sequential two byte strings.
7919 // r0: first string.
7920 // r1: second string.
7921 // r2: length of first string.
7922 // r3: length of second string.
7923 // r6: sum of length of strings.
7924 __ AllocateTwoByteString(r7, r6, r4, r5, r9, &string_add_runtime);
7925 // r0: first string.
7926 // r1: second string.
7927 // r2: length of first string.
7928 // r3: length of second string.
7929 // r7: result string.
7930
7931 // Locate first character of result.
7932 __ add(r6, r7, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7933 // Locate first character of first argument.
7934 __ add(r0, r0, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7935
7936 // r0: first character of first string.
7937 // r1: second string.
7938 // r2: length of first string.
7939 // r3: length of second string.
7940 // r6: first character of result.
7941 // r7: result string.
7942 GenerateCopyCharacters(masm, r6, r0, r2, r4, false);
7943
7944 // Locate first character of second argument.
7945 __ add(r1, r1, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7946
7947 // r1: first character of second string.
7948 // r3: length of second string.
7949 // r6: next character of result (after copy of first string).
7950 // r7: result string.
7951 GenerateCopyCharacters(masm, r6, r1, r3, r4, false);
7952
7953 __ mov(r0, Operand(r7));
7954 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7955 __ add(sp, sp, Operand(2 * kPointerSize));
7956 __ Ret();
7957
7958 // Just jump to runtime to add the two strings.
7959 __ bind(&string_add_runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007960 __ TailCallRuntime(Runtime::kStringAdd, 2, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00007961}
7962
7963
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007964#undef __
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007965
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007966} } // namespace v8::internal