blob: 5e0067716b1a3454c4948549eaf9f85fee49ae11 [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
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002308void CodeGenerator::InstantiateFunction(
2309 Handle<SharedFunctionInfo> function_info) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002310 VirtualFrame::SpilledScope spilled_scope;
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002311 __ mov(r0, Operand(function_info));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002312 // Use the fast case closure allocation code that allocates in new
2313 // space for nested functions that don't need literals cloning.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002314 if (scope()->is_function_scope() && function_info->num_literals() == 0) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002315 FastNewClosureStub stub;
2316 frame_->EmitPush(r0);
2317 frame_->CallStub(&stub, 1);
2318 frame_->EmitPush(r0);
2319 } else {
2320 // Create a new closure.
2321 frame_->EmitPush(cp);
2322 frame_->EmitPush(r0);
2323 frame_->CallRuntime(Runtime::kNewClosure, 2);
2324 frame_->EmitPush(r0);
2325 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002326}
2327
2328
ager@chromium.org7c537e22008-10-16 08:43:32 +00002329void CodeGenerator::VisitFunctionLiteral(FunctionLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002330#ifdef DEBUG
2331 int original_height = frame_->height();
2332#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002333 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002334 Comment cmnt(masm_, "[ FunctionLiteral");
2335
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002336 // Build the function info and instantiate it.
2337 Handle<SharedFunctionInfo> function_info =
2338 Compiler::BuildFunctionInfo(node, script(), this);
kasper.lund212ac232008-07-16 07:07:30 +00002339 // Check for stack-overflow exception.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002340 if (HasStackOverflow()) {
2341 ASSERT(frame_->height() == original_height);
2342 return;
2343 }
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002344 InstantiateFunction(function_info);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002345 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002346}
2347
2348
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002349void CodeGenerator::VisitSharedFunctionInfoLiteral(
2350 SharedFunctionInfoLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002351#ifdef DEBUG
2352 int original_height = frame_->height();
2353#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002354 VirtualFrame::SpilledScope spilled_scope;
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002355 Comment cmnt(masm_, "[ SharedFunctionInfoLiteral");
2356 InstantiateFunction(node->shared_function_info());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002357 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002358}
2359
2360
ager@chromium.org7c537e22008-10-16 08:43:32 +00002361void CodeGenerator::VisitConditional(Conditional* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002362#ifdef DEBUG
2363 int original_height = frame_->height();
2364#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002365 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002366 Comment cmnt(masm_, "[ Conditional");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002367 JumpTarget then;
2368 JumpTarget else_;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002369 LoadConditionAndSpill(node->condition(), &then, &else_, true);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002370 if (has_valid_frame()) {
2371 Branch(false, &else_);
2372 }
2373 if (has_valid_frame() || then.is_linked()) {
2374 then.Bind();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002375 LoadAndSpill(node->then_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002376 }
2377 if (else_.is_linked()) {
2378 JumpTarget exit;
2379 if (has_valid_frame()) exit.Jump();
2380 else_.Bind();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002381 LoadAndSpill(node->else_expression());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00002382 if (exit.is_linked()) exit.Bind();
2383 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002384 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002385}
2386
2387
ager@chromium.org7c537e22008-10-16 08:43:32 +00002388void CodeGenerator::LoadFromSlot(Slot* slot, TypeofState typeof_state) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002389 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002390 if (slot->type() == Slot::LOOKUP) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00002391 ASSERT(slot->var()->is_dynamic());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002392
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002393 JumpTarget slow;
2394 JumpTarget done;
ager@chromium.org381abbb2009-02-25 13:23:22 +00002395
2396 // Generate fast-case code for variables that might be shadowed by
2397 // eval-introduced variables. Eval is used a lot without
2398 // introducing variables. In those cases, we do not want to
2399 // perform a runtime call for all variables in the scope
2400 // containing the eval.
2401 if (slot->var()->mode() == Variable::DYNAMIC_GLOBAL) {
2402 LoadFromGlobalSlotCheckExtensions(slot, typeof_state, r1, r2, &slow);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002403 // If there was no control flow to slow, we can exit early.
2404 if (!slow.is_linked()) {
2405 frame_->EmitPush(r0);
2406 return;
2407 }
2408
2409 done.Jump();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002410
2411 } else if (slot->var()->mode() == Variable::DYNAMIC_LOCAL) {
2412 Slot* potential_slot = slot->var()->local_if_not_shadowed()->slot();
2413 // Only generate the fast case for locals that rewrite to slots.
2414 // This rules out argument loads.
2415 if (potential_slot != NULL) {
2416 __ ldr(r0,
2417 ContextSlotOperandCheckExtensions(potential_slot,
2418 r1,
2419 r2,
2420 &slow));
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002421 if (potential_slot->var()->mode() == Variable::CONST) {
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002422 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2423 __ cmp(r0, ip);
2424 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002425 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002426 // There is always control flow to slow from
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002427 // ContextSlotOperandCheckExtensions so we have to jump around
2428 // it.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002429 done.Jump();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002430 }
2431 }
2432
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002433 slow.Bind();
2434 frame_->EmitPush(cp);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002435 __ mov(r0, Operand(slot->var()->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002436 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002437
ager@chromium.org7c537e22008-10-16 08:43:32 +00002438 if (typeof_state == INSIDE_TYPEOF) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002439 frame_->CallRuntime(Runtime::kLoadContextSlotNoReferenceError, 2);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002440 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002441 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002442 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00002443
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002444 done.Bind();
2445 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002446
2447 } else {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002448 // Special handling for locals allocated in registers.
ager@chromium.org7c537e22008-10-16 08:43:32 +00002449 __ ldr(r0, SlotOperand(slot, r2));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002450 frame_->EmitPush(r0);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002451 if (slot->var()->mode() == Variable::CONST) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002452 // Const slots may contain 'the hole' value (the constant hasn't been
2453 // initialized yet) which needs to be converted into the 'undefined'
2454 // value.
2455 Comment cmnt(masm_, "[ Unhole const");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002456 frame_->EmitPop(r0);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002457 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2458 __ cmp(r0, ip);
2459 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002460 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002461 }
2462 }
2463}
2464
2465
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002466void CodeGenerator::StoreToSlot(Slot* slot, InitState init_state) {
2467 ASSERT(slot != NULL);
2468 if (slot->type() == Slot::LOOKUP) {
2469 ASSERT(slot->var()->is_dynamic());
2470
2471 // For now, just do a runtime call.
2472 frame_->EmitPush(cp);
2473 __ mov(r0, Operand(slot->var()->name()));
2474 frame_->EmitPush(r0);
2475
2476 if (init_state == CONST_INIT) {
2477 // Same as the case for a normal store, but ignores attribute
2478 // (e.g. READ_ONLY) of context slot so that we can initialize
2479 // const properties (introduced via eval("const foo = (some
2480 // expr);")). Also, uses the current function context instead of
2481 // the top context.
2482 //
2483 // Note that we must declare the foo upon entry of eval(), via a
2484 // context slot declaration, but we cannot initialize it at the
2485 // same time, because the const declaration may be at the end of
2486 // the eval code (sigh...) and the const variable may have been
2487 // used before (where its value is 'undefined'). Thus, we can only
2488 // do the initialization when we actually encounter the expression
2489 // and when the expression operands are defined and valid, and
2490 // thus we need the split into 2 operations: declaration of the
2491 // context slot followed by initialization.
2492 frame_->CallRuntime(Runtime::kInitializeConstContextSlot, 3);
2493 } else {
2494 frame_->CallRuntime(Runtime::kStoreContextSlot, 3);
2495 }
2496 // Storing a variable must keep the (new) value on the expression
2497 // stack. This is necessary for compiling assignment expressions.
2498 frame_->EmitPush(r0);
2499
2500 } else {
2501 ASSERT(!slot->var()->is_dynamic());
2502
2503 JumpTarget exit;
2504 if (init_state == CONST_INIT) {
2505 ASSERT(slot->var()->mode() == Variable::CONST);
2506 // Only the first const initialization must be executed (the slot
2507 // still contains 'the hole' value). When the assignment is
2508 // executed, the code is identical to a normal store (see below).
2509 Comment cmnt(masm_, "[ Init const");
2510 __ ldr(r2, SlotOperand(slot, r2));
2511 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
2512 __ cmp(r2, ip);
2513 exit.Branch(ne);
2514 }
2515
2516 // We must execute the store. Storing a variable must keep the
2517 // (new) value on the stack. This is necessary for compiling
2518 // assignment expressions.
2519 //
2520 // Note: We will reach here even with slot->var()->mode() ==
2521 // Variable::CONST because of const declarations which will
2522 // initialize consts to 'the hole' value and by doing so, end up
2523 // calling this code. r2 may be loaded with context; used below in
2524 // RecordWrite.
2525 frame_->EmitPop(r0);
2526 __ str(r0, SlotOperand(slot, r2));
2527 frame_->EmitPush(r0);
2528 if (slot->type() == Slot::CONTEXT) {
2529 // Skip write barrier if the written value is a smi.
2530 __ tst(r0, Operand(kSmiTagMask));
2531 exit.Branch(eq);
2532 // r2 is loaded with context when calling SlotOperand above.
2533 int offset = FixedArray::kHeaderSize + slot->index() * kPointerSize;
2534 __ mov(r3, Operand(offset));
2535 __ RecordWrite(r2, r3, r1);
2536 }
2537 // If we definitely did not jump over the assignment, we do not need
2538 // to bind the exit label. Doing so can defeat peephole
2539 // optimization.
2540 if (init_state == CONST_INIT || slot->type() == Slot::CONTEXT) {
2541 exit.Bind();
2542 }
2543 }
2544}
2545
2546
ager@chromium.org381abbb2009-02-25 13:23:22 +00002547void CodeGenerator::LoadFromGlobalSlotCheckExtensions(Slot* slot,
2548 TypeofState typeof_state,
2549 Register tmp,
2550 Register tmp2,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002551 JumpTarget* slow) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00002552 // Check that no extension objects have been created by calls to
2553 // eval from the current scope to the global scope.
2554 Register context = cp;
2555 Scope* s = scope();
2556 while (s != NULL) {
2557 if (s->num_heap_slots() > 0) {
2558 if (s->calls_eval()) {
2559 // Check that extension is NULL.
2560 __ ldr(tmp2, ContextOperand(context, Context::EXTENSION_INDEX));
2561 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002562 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002563 }
2564 // Load next context in chain.
2565 __ ldr(tmp, ContextOperand(context, Context::CLOSURE_INDEX));
2566 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
2567 context = tmp;
2568 }
2569 // If no outer scope calls eval, we do not need to check more
2570 // context extensions.
2571 if (!s->outer_scope_calls_eval() || s->is_eval_scope()) break;
2572 s = s->outer_scope();
2573 }
2574
2575 if (s->is_eval_scope()) {
2576 Label next, fast;
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002577 if (!context.is(tmp)) {
2578 __ mov(tmp, Operand(context));
2579 }
ager@chromium.org381abbb2009-02-25 13:23:22 +00002580 __ bind(&next);
2581 // Terminate at global context.
2582 __ ldr(tmp2, FieldMemOperand(tmp, HeapObject::kMapOffset));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002583 __ LoadRoot(ip, Heap::kGlobalContextMapRootIndex);
2584 __ cmp(tmp2, ip);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002585 __ b(eq, &fast);
2586 // Check that extension is NULL.
2587 __ ldr(tmp2, ContextOperand(tmp, Context::EXTENSION_INDEX));
2588 __ tst(tmp2, tmp2);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002589 slow->Branch(ne);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002590 // Load next context in chain.
2591 __ ldr(tmp, ContextOperand(tmp, Context::CLOSURE_INDEX));
2592 __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset));
2593 __ b(&next);
2594 __ bind(&fast);
2595 }
2596
2597 // All extension objects were empty and it is safe to use a global
2598 // load IC call.
2599 Handle<Code> ic(Builtins::builtin(Builtins::LoadIC_Initialize));
2600 // Load the global object.
2601 LoadGlobal();
2602 // Setup the name register.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002603 __ mov(r2, Operand(slot->var()->name()));
ager@chromium.org381abbb2009-02-25 13:23:22 +00002604 // Call IC stub.
2605 if (typeof_state == INSIDE_TYPEOF) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002606 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002607 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002608 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET_CONTEXT, 0);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002609 }
2610
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002611 // Drop the global object. The result is in r0.
2612 frame_->Drop();
ager@chromium.org381abbb2009-02-25 13:23:22 +00002613}
2614
2615
ager@chromium.org7c537e22008-10-16 08:43:32 +00002616void CodeGenerator::VisitSlot(Slot* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002617#ifdef DEBUG
2618 int original_height = frame_->height();
2619#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002620 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002621 Comment cmnt(masm_, "[ Slot");
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002622 LoadFromSlot(node, NOT_INSIDE_TYPEOF);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002623 ASSERT(frame_->height() == original_height + 1);
ager@chromium.org7c537e22008-10-16 08:43:32 +00002624}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002625
ager@chromium.org7c537e22008-10-16 08:43:32 +00002626
2627void CodeGenerator::VisitVariableProxy(VariableProxy* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002628#ifdef DEBUG
2629 int original_height = frame_->height();
2630#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002631 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org7c537e22008-10-16 08:43:32 +00002632 Comment cmnt(masm_, "[ VariableProxy");
2633
2634 Variable* var = node->var();
2635 Expression* expr = var->rewrite();
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002636 if (expr != NULL) {
2637 Visit(expr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002638 } else {
ager@chromium.org7c537e22008-10-16 08:43:32 +00002639 ASSERT(var->is_global());
2640 Reference ref(this, node);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002641 ref.GetValueAndSpill();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002642 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002643 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002644}
2645
2646
ager@chromium.org7c537e22008-10-16 08:43:32 +00002647void CodeGenerator::VisitLiteral(Literal* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002648#ifdef DEBUG
2649 int original_height = frame_->height();
2650#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002651 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002652 Comment cmnt(masm_, "[ Literal");
mads.s.ager31e71382008-08-13 09:32:07 +00002653 __ mov(r0, Operand(node->handle()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002654 frame_->EmitPush(r0);
2655 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002656}
2657
2658
ager@chromium.org7c537e22008-10-16 08:43:32 +00002659void CodeGenerator::VisitRegExpLiteral(RegExpLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002660#ifdef DEBUG
2661 int original_height = frame_->height();
2662#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002663 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002664 Comment cmnt(masm_, "[ RexExp Literal");
2665
2666 // Retrieve the literal array and check the allocated entry.
2667
2668 // Load the function of this activation.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00002669 __ ldr(r1, frame_->Function());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002670
2671 // Load the literals array of the function.
2672 __ ldr(r1, FieldMemOperand(r1, JSFunction::kLiteralsOffset));
2673
2674 // Load the literal at the ast saved index.
2675 int literal_offset =
2676 FixedArray::kHeaderSize + node->literal_index() * kPointerSize;
2677 __ ldr(r2, FieldMemOperand(r1, literal_offset));
2678
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002679 JumpTarget done;
ager@chromium.orgab99eea2009-08-25 07:05:41 +00002680 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
2681 __ cmp(r2, ip);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002682 done.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002683
2684 // If the entry is undefined we call the runtime system to computed
2685 // the literal.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002686 frame_->EmitPush(r1); // literal array (0)
mads.s.ager31e71382008-08-13 09:32:07 +00002687 __ mov(r0, Operand(Smi::FromInt(node->literal_index())));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002688 frame_->EmitPush(r0); // literal index (1)
mads.s.ager31e71382008-08-13 09:32:07 +00002689 __ mov(r0, Operand(node->pattern())); // RegExp pattern (2)
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002690 frame_->EmitPush(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00002691 __ mov(r0, Operand(node->flags())); // RegExp flags (3)
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002692 frame_->EmitPush(r0);
2693 frame_->CallRuntime(Runtime::kMaterializeRegExpLiteral, 4);
mads.s.ager31e71382008-08-13 09:32:07 +00002694 __ mov(r2, Operand(r0));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002695
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002696 done.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002697 // Push the literal.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002698 frame_->EmitPush(r2);
2699 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002700}
2701
2702
ager@chromium.org7c537e22008-10-16 08:43:32 +00002703void CodeGenerator::VisitObjectLiteral(ObjectLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002704#ifdef DEBUG
2705 int original_height = frame_->height();
2706#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002707 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002708 Comment cmnt(masm_, "[ ObjectLiteral");
2709
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002710 // Load the function of this activation.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002711 __ ldr(r3, frame_->Function());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002712 // Literal array.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002713 __ ldr(r3, FieldMemOperand(r3, JSFunction::kLiteralsOffset));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002714 // Literal index.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002715 __ mov(r2, Operand(Smi::FromInt(node->literal_index())));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002716 // Constant properties.
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002717 __ mov(r1, Operand(node->constant_properties()));
2718 // Should the object literal have fast elements?
2719 __ mov(r0, Operand(Smi::FromInt(node->fast_elements() ? 1 : 0)));
2720 frame_->EmitPushMultiple(4, r3.bit() | r2.bit() | r1.bit() | r0.bit());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002721 if (node->depth() > 1) {
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002722 frame_->CallRuntime(Runtime::kCreateObjectLiteral, 4);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002723 } else {
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00002724 frame_->CallRuntime(Runtime::kCreateObjectLiteralShallow, 4);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002725 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002726 frame_->EmitPush(r0); // save the result
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002727 for (int i = 0; i < node->properties()->length(); i++) {
ager@chromium.org5c838252010-02-19 08:53:10 +00002728 // At the start of each iteration, the top of stack contains
2729 // the newly created object literal.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002730 ObjectLiteral::Property* property = node->properties()->at(i);
2731 Literal* key = property->key();
2732 Expression* value = property->value();
2733 switch (property->kind()) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002734 case ObjectLiteral::Property::CONSTANT:
2735 break;
2736 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
2737 if (CompileTimeValue::IsCompileTimeValue(property->value())) break;
2738 // else fall through
ager@chromium.org5c838252010-02-19 08:53:10 +00002739 case ObjectLiteral::Property::COMPUTED:
2740 if (key->handle()->IsSymbol()) {
2741 Handle<Code> ic(Builtins::builtin(Builtins::StoreIC_Initialize));
2742 LoadAndSpill(value);
2743 frame_->EmitPop(r0);
2744 __ mov(r2, Operand(key->handle()));
2745 __ ldr(r1, frame_->Top()); // Load the receiver.
2746 frame_->CallCodeObject(ic, RelocInfo::CODE_TARGET, 0);
2747 break;
2748 }
2749 // else fall through
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002750 case ObjectLiteral::Property::PROTOTYPE: {
ager@chromium.org5c838252010-02-19 08:53:10 +00002751 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002752 frame_->EmitPush(r0); // dup the result
2753 LoadAndSpill(key);
2754 LoadAndSpill(value);
2755 frame_->CallRuntime(Runtime::kSetProperty, 3);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002756 break;
2757 }
2758 case ObjectLiteral::Property::SETTER: {
ager@chromium.org5c838252010-02-19 08:53:10 +00002759 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002760 frame_->EmitPush(r0);
2761 LoadAndSpill(key);
mads.s.ager31e71382008-08-13 09:32:07 +00002762 __ mov(r0, Operand(Smi::FromInt(1)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002763 frame_->EmitPush(r0);
2764 LoadAndSpill(value);
2765 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002766 break;
2767 }
2768 case ObjectLiteral::Property::GETTER: {
ager@chromium.org5c838252010-02-19 08:53:10 +00002769 __ ldr(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002770 frame_->EmitPush(r0);
2771 LoadAndSpill(key);
mads.s.ager31e71382008-08-13 09:32:07 +00002772 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002773 frame_->EmitPush(r0);
2774 LoadAndSpill(value);
2775 frame_->CallRuntime(Runtime::kDefineAccessor, 4);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002776 break;
2777 }
2778 }
2779 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002780 ASSERT(frame_->height() == original_height + 1);
2781}
2782
2783
ager@chromium.org7c537e22008-10-16 08:43:32 +00002784void CodeGenerator::VisitArrayLiteral(ArrayLiteral* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002785#ifdef DEBUG
2786 int original_height = frame_->height();
2787#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002788 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002789 Comment cmnt(masm_, "[ ArrayLiteral");
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002790
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002791 // Load the function of this activation.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002792 __ ldr(r2, frame_->Function());
ager@chromium.org5c838252010-02-19 08:53:10 +00002793 // Load the literals array of the function.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002794 __ ldr(r2, FieldMemOperand(r2, JSFunction::kLiteralsOffset));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002795 __ mov(r1, Operand(Smi::FromInt(node->literal_index())));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002796 __ mov(r0, Operand(node->constant_elements()));
2797 frame_->EmitPushMultiple(3, r2.bit() | r1.bit() | r0.bit());
ager@chromium.org5c838252010-02-19 08:53:10 +00002798 int length = node->values()->length();
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002799 if (node->depth() > 1) {
2800 frame_->CallRuntime(Runtime::kCreateArrayLiteral, 3);
ager@chromium.org5c838252010-02-19 08:53:10 +00002801 } else if (length > FastCloneShallowArrayStub::kMaximumLength) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002802 frame_->CallRuntime(Runtime::kCreateArrayLiteralShallow, 3);
ager@chromium.org5c838252010-02-19 08:53:10 +00002803 } else {
2804 FastCloneShallowArrayStub stub(length);
2805 frame_->CallStub(&stub, 3);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002806 }
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002807 frame_->EmitPush(r0); // save the result
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00002808 // r0: created object literal
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002809
2810 // Generate code to set the elements in the array that are not
2811 // literals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002812 for (int i = 0; i < node->values()->length(); i++) {
2813 Expression* value = node->values()->at(i);
2814
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002815 // If value is a literal the property value is already set in the
2816 // boilerplate object.
2817 if (value->AsLiteral() != NULL) continue;
2818 // If value is a materialized literal the property value is already set
2819 // in the boilerplate object if it is simple.
2820 if (CompileTimeValue::IsCompileTimeValue(value)) continue;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002821
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002822 // The property must be set by generated code.
2823 LoadAndSpill(value);
2824 frame_->EmitPop(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002825
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002826 // Fetch the object literal.
2827 __ ldr(r1, frame_->Top());
2828 // Get the elements array.
2829 __ ldr(r1, FieldMemOperand(r1, JSObject::kElementsOffset));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002830
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002831 // Write to the indexed properties array.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00002832 int offset = i * kPointerSize + FixedArray::kHeaderSize;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002833 __ str(r0, FieldMemOperand(r1, offset));
2834
2835 // Update the write barrier for the array address.
2836 __ mov(r3, Operand(offset));
2837 __ RecordWrite(r1, r3, r2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002838 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002839 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002840}
2841
2842
ager@chromium.org32912102009-01-16 10:38:43 +00002843void CodeGenerator::VisitCatchExtensionObject(CatchExtensionObject* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002844#ifdef DEBUG
2845 int original_height = frame_->height();
2846#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002847 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.org32912102009-01-16 10:38:43 +00002848 // Call runtime routine to allocate the catch extension object and
2849 // assign the exception value to the catch variable.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002850 Comment cmnt(masm_, "[ CatchExtensionObject");
2851 LoadAndSpill(node->key());
2852 LoadAndSpill(node->value());
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002853 frame_->CallRuntime(Runtime::kCreateCatchExtensionObject, 2);
2854 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002855 ASSERT(frame_->height() == original_height + 1);
ager@chromium.org32912102009-01-16 10:38:43 +00002856}
2857
2858
ager@chromium.org7c537e22008-10-16 08:43:32 +00002859void CodeGenerator::VisitAssignment(Assignment* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002860#ifdef DEBUG
2861 int original_height = frame_->height();
2862#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002863 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002864 Comment cmnt(masm_, "[ Assignment");
mads.s.ager31e71382008-08-13 09:32:07 +00002865
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002866 { Reference target(this, node->target(), node->is_compound());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002867 if (target.is_illegal()) {
2868 // Fool the virtual frame into thinking that we left the assignment's
2869 // value on the frame.
2870 __ mov(r0, Operand(Smi::FromInt(0)));
2871 frame_->EmitPush(r0);
2872 ASSERT(frame_->height() == original_height + 1);
2873 return;
2874 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002875
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002876 if (node->op() == Token::ASSIGN ||
2877 node->op() == Token::INIT_VAR ||
2878 node->op() == Token::INIT_CONST) {
2879 LoadAndSpill(node->value());
mads.s.ager31e71382008-08-13 09:32:07 +00002880
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002881 } else { // Assignment is a compound assignment.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002882 // Get the old value of the lhs.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002883 target.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002884 Literal* literal = node->value()->AsLiteral();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002885 bool overwrite =
2886 (node->value()->AsBinaryOperation() != NULL &&
2887 node->value()->AsBinaryOperation()->ResultOverwriteAllowed());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002888 if (literal != NULL && literal->handle()->IsSmi()) {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002889 SmiOperation(node->binary_op(),
2890 literal->handle(),
2891 false,
2892 overwrite ? OVERWRITE_RIGHT : NO_OVERWRITE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002893 frame_->EmitPush(r0);
2894
2895 } else {
2896 LoadAndSpill(node->value());
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002897 GenericBinaryOperation(node->binary_op(),
2898 overwrite ? OVERWRITE_RIGHT : NO_OVERWRITE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002899 frame_->EmitPush(r0);
2900 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002901 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002902 Variable* var = node->target()->AsVariableProxy()->AsVariable();
2903 if (var != NULL &&
2904 (var->mode() == Variable::CONST) &&
2905 node->op() != Token::INIT_VAR && node->op() != Token::INIT_CONST) {
2906 // Assignment ignored - leave the value on the stack.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002907 UnloadReference(&target);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002908 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002909 CodeForSourcePosition(node->position());
2910 if (node->op() == Token::INIT_CONST) {
2911 // Dynamic constant initializations must use the function context
2912 // and initialize the actual constant declared. Dynamic variable
2913 // initializations are simply assignments and use SetValue.
2914 target.SetValue(CONST_INIT);
2915 } else {
2916 target.SetValue(NOT_CONST_INIT);
2917 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002918 }
2919 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002920 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002921}
2922
2923
ager@chromium.org7c537e22008-10-16 08:43:32 +00002924void CodeGenerator::VisitThrow(Throw* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002925#ifdef DEBUG
2926 int original_height = frame_->height();
2927#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002928 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002929 Comment cmnt(masm_, "[ Throw");
2930
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002931 LoadAndSpill(node->exception());
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002932 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002933 frame_->CallRuntime(Runtime::kThrow, 1);
2934 frame_->EmitPush(r0);
2935 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002936}
2937
2938
ager@chromium.org7c537e22008-10-16 08:43:32 +00002939void CodeGenerator::VisitProperty(Property* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002940#ifdef DEBUG
2941 int original_height = frame_->height();
2942#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002943 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002944 Comment cmnt(masm_, "[ Property");
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00002945
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002946 { Reference property(this, node);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00002947 property.GetValueAndSpill();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002948 }
2949 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002950}
2951
2952
ager@chromium.org7c537e22008-10-16 08:43:32 +00002953void CodeGenerator::VisitCall(Call* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002954#ifdef DEBUG
2955 int original_height = frame_->height();
2956#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002957 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002958 Comment cmnt(masm_, "[ Call");
2959
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002960 Expression* function = node->expression();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002961 ZoneList<Expression*>* args = node->arguments();
2962
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002963 // Standard function call.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002964 // Check if the function is a variable or a property.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002965 Variable* var = function->AsVariableProxy()->AsVariable();
2966 Property* property = function->AsProperty();
2967
2968 // ------------------------------------------------------------------------
2969 // Fast-case: Use inline caching.
2970 // ---
2971 // According to ECMA-262, section 11.2.3, page 44, the function to call
2972 // must be resolved after the arguments have been evaluated. The IC code
2973 // automatically handles this by loading the arguments before the function
2974 // is resolved in cache misses (this also holds for megamorphic calls).
2975 // ------------------------------------------------------------------------
2976
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002977 if (var != NULL && var->is_possibly_eval()) {
2978 // ----------------------------------
2979 // JavaScript example: 'eval(arg)' // eval is not known to be shadowed
2980 // ----------------------------------
2981
2982 // In a call to eval, we first call %ResolvePossiblyDirectEval to
2983 // resolve the function we need to call and the receiver of the
2984 // call. Then we call the resolved function using the given
2985 // arguments.
2986 // Prepare stack for call to resolved function.
2987 LoadAndSpill(function);
2988 __ LoadRoot(r2, Heap::kUndefinedValueRootIndex);
2989 frame_->EmitPush(r2); // Slot for receiver
2990 int arg_count = args->length();
2991 for (int i = 0; i < arg_count; i++) {
2992 LoadAndSpill(args->at(i));
2993 }
2994
2995 // Prepare stack for call to ResolvePossiblyDirectEval.
2996 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize + kPointerSize));
2997 frame_->EmitPush(r1);
2998 if (arg_count > 0) {
2999 __ ldr(r1, MemOperand(sp, arg_count * kPointerSize));
3000 frame_->EmitPush(r1);
3001 } else {
3002 frame_->EmitPush(r2);
3003 }
3004
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003005 // Push the receiver.
3006 __ ldr(r1, frame_->Receiver());
3007 frame_->EmitPush(r1);
3008
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003009 // Resolve the call.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003010 frame_->CallRuntime(Runtime::kResolvePossiblyDirectEval, 3);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003011
3012 // Touch up stack with the right values for the function and the receiver.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003013 __ str(r0, MemOperand(sp, (arg_count + 1) * kPointerSize));
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003014 __ str(r1, MemOperand(sp, arg_count * kPointerSize));
3015
3016 // Call the function.
3017 CodeForSourcePosition(node->position());
3018
3019 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003020 CallFunctionStub call_function(arg_count, in_loop, RECEIVER_MIGHT_BE_VALUE);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003021 frame_->CallStub(&call_function, arg_count + 1);
3022
3023 __ ldr(cp, frame_->Context());
3024 // Remove the function from the stack.
3025 frame_->Drop();
3026 frame_->EmitPush(r0);
3027
3028 } else if (var != NULL && !var->is_this() && var->is_global()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003029 // ----------------------------------
3030 // JavaScript example: 'foo(1, 2, 3)' // foo is global
3031 // ----------------------------------
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003032 // Pass the global object as the receiver and let the IC stub
3033 // patch the stack to use the global proxy as 'this' in the
3034 // invoked function.
3035 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003036
3037 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003038 int arg_count = args->length();
3039 for (int i = 0; i < arg_count; i++) {
3040 LoadAndSpill(args->at(i));
3041 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003042
ager@chromium.org5c838252010-02-19 08:53:10 +00003043 // Setup the name register and call the IC initialization code.
3044 __ mov(r2, Operand(var->name()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003045 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3046 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003047 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003048 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET_CONTEXT,
3049 arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003050 __ ldr(cp, frame_->Context());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003051 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003052
3053 } else if (var != NULL && var->slot() != NULL &&
3054 var->slot()->type() == Slot::LOOKUP) {
3055 // ----------------------------------
3056 // JavaScript example: 'with (obj) foo(1, 2, 3)' // foo is in obj
3057 // ----------------------------------
3058
3059 // Load the function
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003060 frame_->EmitPush(cp);
mads.s.ager31e71382008-08-13 09:32:07 +00003061 __ mov(r0, Operand(var->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003062 frame_->EmitPush(r0);
3063 frame_->CallRuntime(Runtime::kLoadContextSlot, 2);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003064 // r0: slot value; r1: receiver
3065
3066 // Load the receiver.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003067 frame_->EmitPush(r0); // function
3068 frame_->EmitPush(r1); // receiver
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003069
3070 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003071 CallWithArguments(args, NO_CALL_FUNCTION_FLAGS, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003072 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003073
3074 } else if (property != NULL) {
3075 // Check if the key is a literal string.
3076 Literal* literal = property->key()->AsLiteral();
3077
3078 if (literal != NULL && literal->handle()->IsSymbol()) {
3079 // ------------------------------------------------------------------
3080 // JavaScript example: 'object.foo(1, 2, 3)' or 'map["key"](1, 2, 3)'
3081 // ------------------------------------------------------------------
3082
ager@chromium.org5c838252010-02-19 08:53:10 +00003083 LoadAndSpill(property->obj()); // Receiver.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003084 // Load the arguments.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003085 int arg_count = args->length();
3086 for (int i = 0; i < arg_count; i++) {
3087 LoadAndSpill(args->at(i));
3088 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003089
ager@chromium.org5c838252010-02-19 08:53:10 +00003090 // Set the name register and call the IC initialization code.
3091 __ mov(r2, Operand(literal->handle()));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003092 InLoopFlag in_loop = loop_nesting() > 0 ? IN_LOOP : NOT_IN_LOOP;
3093 Handle<Code> stub = ComputeCallInitialize(arg_count, in_loop);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003094 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003095 frame_->CallCodeObject(stub, RelocInfo::CODE_TARGET, arg_count + 1);
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003096 __ ldr(cp, frame_->Context());
ager@chromium.org5c838252010-02-19 08:53:10 +00003097 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003098
3099 } else {
3100 // -------------------------------------------
3101 // JavaScript example: 'array[index](1, 2, 3)'
3102 // -------------------------------------------
3103
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003104 LoadAndSpill(property->obj());
3105 LoadAndSpill(property->key());
3106 EmitKeyedLoad(false);
3107 frame_->Drop(); // key
3108 // Put the function below the receiver.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003109 if (property->is_synthetic()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003110 // Use the global receiver.
3111 frame_->Drop();
3112 frame_->EmitPush(r0);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003113 LoadGlobalReceiver(r0);
3114 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003115 frame_->EmitPop(r1); // receiver
3116 frame_->EmitPush(r0); // function
3117 frame_->EmitPush(r1); // receiver
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003118 }
3119
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003120 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003121 CallWithArguments(args, RECEIVER_MIGHT_BE_VALUE, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003122 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003123 }
3124
3125 } else {
3126 // ----------------------------------
3127 // JavaScript example: 'foo(1, 2, 3)' // foo is not global
3128 // ----------------------------------
3129
3130 // Load the function.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003131 LoadAndSpill(function);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003132
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003133 // Pass the global proxy as the receiver.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003134 LoadGlobalReceiver(r0);
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003135
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003136 // Call the function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003137 CallWithArguments(args, NO_CALL_FUNCTION_FLAGS, node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003138 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003139 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003140 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003141}
3142
3143
ager@chromium.org7c537e22008-10-16 08:43:32 +00003144void CodeGenerator::VisitCallNew(CallNew* node) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003145#ifdef DEBUG
3146 int original_height = frame_->height();
3147#endif
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003148 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003149 Comment cmnt(masm_, "[ CallNew");
3150
3151 // According to ECMA-262, section 11.2.2, page 44, the function
3152 // expression in new calls must be evaluated before the
3153 // arguments. This is different from ordinary calls, where the
3154 // actual function to call is resolved after the arguments have been
3155 // evaluated.
3156
3157 // Compute function to call and use the global object as the
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003158 // receiver. There is no need to use the global proxy here because
3159 // it will always be replaced with a newly allocated object.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003160 LoadAndSpill(node->expression());
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00003161 LoadGlobal();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003162
3163 // Push the arguments ("left-to-right") on the stack.
3164 ZoneList<Expression*>* args = node->arguments();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003165 int arg_count = args->length();
3166 for (int i = 0; i < arg_count; i++) {
3167 LoadAndSpill(args->at(i));
3168 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003169
mads.s.ager31e71382008-08-13 09:32:07 +00003170 // r0: the number of arguments.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003171 __ mov(r0, Operand(arg_count));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003172 // Load the function into r1 as per calling convention.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003173 __ ldr(r1, frame_->ElementAt(arg_count + 1));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003174
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003175 // Call the construct call builtin that handles allocation and
3176 // constructor invocation.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003177 CodeForSourcePosition(node->position());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003178 Handle<Code> ic(Builtins::builtin(Builtins::JSConstructCall));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003179 frame_->CallCodeObject(ic, RelocInfo::CONSTRUCT_CALL, arg_count + 1);
mads.s.ager31e71382008-08-13 09:32:07 +00003180
3181 // Discard old TOS value and push r0 on the stack (same as Pop(), push(r0)).
ager@chromium.org3bf7b912008-11-17 09:09:45 +00003182 __ str(r0, frame_->Top());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003183 ASSERT(frame_->height() == original_height + 1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003184}
3185
3186
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003187void CodeGenerator::GenerateClassOf(ZoneList<Expression*>* args) {
3188 VirtualFrame::SpilledScope spilled_scope;
3189 ASSERT(args->length() == 1);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003190 JumpTarget leave, null, function, non_function_constructor;
3191
3192 // Load the object into r0.
3193 LoadAndSpill(args->at(0));
3194 frame_->EmitPop(r0);
3195
3196 // If the object is a smi, we return null.
3197 __ tst(r0, Operand(kSmiTagMask));
3198 null.Branch(eq);
3199
3200 // Check that the object is a JS object but take special care of JS
3201 // functions to make sure they have 'Function' as their class.
3202 __ CompareObjectType(r0, r0, r1, FIRST_JS_OBJECT_TYPE);
3203 null.Branch(lt);
3204
3205 // As long as JS_FUNCTION_TYPE is the last instance type and it is
3206 // right after LAST_JS_OBJECT_TYPE, we can avoid checking for
3207 // LAST_JS_OBJECT_TYPE.
3208 ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
3209 ASSERT(JS_FUNCTION_TYPE == LAST_JS_OBJECT_TYPE + 1);
3210 __ cmp(r1, Operand(JS_FUNCTION_TYPE));
3211 function.Branch(eq);
3212
3213 // Check if the constructor in the map is a function.
3214 __ ldr(r0, FieldMemOperand(r0, Map::kConstructorOffset));
3215 __ CompareObjectType(r0, r1, r1, JS_FUNCTION_TYPE);
3216 non_function_constructor.Branch(ne);
3217
3218 // The r0 register now contains the constructor function. Grab the
3219 // instance class name from there.
3220 __ ldr(r0, FieldMemOperand(r0, JSFunction::kSharedFunctionInfoOffset));
3221 __ ldr(r0, FieldMemOperand(r0, SharedFunctionInfo::kInstanceClassNameOffset));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003222 frame_->EmitPush(r0);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003223 leave.Jump();
3224
3225 // Functions have class 'Function'.
3226 function.Bind();
3227 __ mov(r0, Operand(Factory::function_class_symbol()));
3228 frame_->EmitPush(r0);
3229 leave.Jump();
3230
3231 // Objects with a non-function constructor have class 'Object'.
3232 non_function_constructor.Bind();
3233 __ mov(r0, Operand(Factory::Object_symbol()));
3234 frame_->EmitPush(r0);
3235 leave.Jump();
3236
3237 // Non-JS objects have class null.
3238 null.Bind();
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003239 __ LoadRoot(r0, Heap::kNullValueRootIndex);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003240 frame_->EmitPush(r0);
3241
3242 // All done.
3243 leave.Bind();
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003244}
3245
3246
ager@chromium.org7c537e22008-10-16 08:43:32 +00003247void CodeGenerator::GenerateValueOf(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003248 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003249 ASSERT(args->length() == 1);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003250 JumpTarget leave;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003251 LoadAndSpill(args->at(0));
3252 frame_->EmitPop(r0); // r0 contains object.
mads.s.ager31e71382008-08-13 09:32:07 +00003253 // if (object->IsSmi()) return the object.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003254 __ tst(r0, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003255 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003256 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
3257 __ CompareObjectType(r0, r1, r1, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003258 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003259 // Load the value.
3260 __ ldr(r0, FieldMemOperand(r0, JSValue::kValueOffset));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003261 leave.Bind();
3262 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003263}
3264
3265
ager@chromium.org7c537e22008-10-16 08:43:32 +00003266void CodeGenerator::GenerateSetValueOf(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003267 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003268 ASSERT(args->length() == 2);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003269 JumpTarget leave;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003270 LoadAndSpill(args->at(0)); // Load the object.
3271 LoadAndSpill(args->at(1)); // Load the value.
3272 frame_->EmitPop(r0); // r0 contains value
3273 frame_->EmitPop(r1); // r1 contains object
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003274 // if (object->IsSmi()) return object.
3275 __ tst(r1, Operand(kSmiTagMask));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003276 leave.Branch(eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003277 // It is a heap object - get map. If (!object->IsJSValue()) return the object.
3278 __ CompareObjectType(r1, r2, r2, JS_VALUE_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003279 leave.Branch(ne);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003280 // Store the value.
3281 __ str(r0, FieldMemOperand(r1, JSValue::kValueOffset));
3282 // Update the write barrier.
3283 __ mov(r2, Operand(JSValue::kValueOffset - kHeapObjectTag));
3284 __ RecordWrite(r1, r2, r3);
3285 // Leave.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003286 leave.Bind();
3287 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003288}
3289
3290
ager@chromium.org7c537e22008-10-16 08:43:32 +00003291void CodeGenerator::GenerateIsSmi(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003292 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003293 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003294 LoadAndSpill(args->at(0));
3295 frame_->EmitPop(r0);
mads.s.ager31e71382008-08-13 09:32:07 +00003296 __ tst(r0, Operand(kSmiTagMask));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003297 cc_reg_ = eq;
3298}
3299
3300
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003301void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003302 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003303 // See comment in CodeGenerator::GenerateLog in codegen-ia32.cc.
3304 ASSERT_EQ(args->length(), 3);
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00003305#ifdef ENABLE_LOGGING_AND_PROFILING
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003306 if (ShouldGenerateLog(args->at(0))) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003307 LoadAndSpill(args->at(1));
3308 LoadAndSpill(args->at(2));
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003309 __ CallRuntime(Runtime::kLog, 2);
3310 }
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +00003311#endif
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003312 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003313 frame_->EmitPush(r0);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003314}
3315
3316
ager@chromium.org7c537e22008-10-16 08:43:32 +00003317void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003318 VirtualFrame::SpilledScope spilled_scope;
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00003319 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003320 LoadAndSpill(args->at(0));
3321 frame_->EmitPop(r0);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00003322 __ tst(r0, Operand(kSmiTagMask | 0x80000000u));
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00003323 cc_reg_ = eq;
3324}
3325
3326
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003327// Generates the Math.pow method - currently just calls runtime.
3328void CodeGenerator::GenerateMathPow(ZoneList<Expression*>* args) {
3329 ASSERT(args->length() == 2);
3330 Load(args->at(0));
3331 Load(args->at(1));
3332 frame_->CallRuntime(Runtime::kMath_pow, 2);
3333 frame_->EmitPush(r0);
3334}
3335
3336
3337// Generates the Math.sqrt method - currently just calls runtime.
3338void CodeGenerator::GenerateMathSqrt(ZoneList<Expression*>* args) {
3339 ASSERT(args->length() == 1);
3340 Load(args->at(0));
3341 frame_->CallRuntime(Runtime::kMath_sqrt, 1);
3342 frame_->EmitPush(r0);
3343}
3344
3345
kasper.lund7276f142008-07-30 08:49:36 +00003346// This should generate code that performs a charCodeAt() call or returns
3347// undefined in order to trigger the slow case, Runtime_StringCharCodeAt.
3348// It is not yet implemented on ARM, so it always goes to the slow case.
ager@chromium.org7c537e22008-10-16 08:43:32 +00003349void CodeGenerator::GenerateFastCharCodeAt(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003350 VirtualFrame::SpilledScope spilled_scope;
kasper.lund7276f142008-07-30 08:49:36 +00003351 ASSERT(args->length() == 2);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003352 Comment(masm_, "[ GenerateFastCharCodeAt");
3353
3354 LoadAndSpill(args->at(0));
3355 LoadAndSpill(args->at(1));
3356 frame_->EmitPop(r0); // Index.
3357 frame_->EmitPop(r1); // String.
3358
3359 Label slow, end, not_a_flat_string, ascii_string, try_again_with_new_string;
3360
3361 __ tst(r1, Operand(kSmiTagMask));
3362 __ b(eq, &slow); // The 'string' was a Smi.
3363
3364 ASSERT(kSmiTag == 0);
3365 __ tst(r0, Operand(kSmiTagMask | 0x80000000u));
3366 __ b(ne, &slow); // The index was negative or not a Smi.
3367
3368 __ bind(&try_again_with_new_string);
3369 __ CompareObjectType(r1, r2, r2, FIRST_NONSTRING_TYPE);
3370 __ b(ge, &slow);
3371
3372 // Now r2 has the string type.
3373 __ ldr(r3, FieldMemOperand(r1, String::kLengthOffset));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003374 // Now r3 has the length of the string. Compare with the index.
3375 __ cmp(r3, Operand(r0, LSR, kSmiTagSize));
3376 __ b(le, &slow);
3377
3378 // Here we know the index is in range. Check that string is sequential.
3379 ASSERT_EQ(0, kSeqStringTag);
3380 __ tst(r2, Operand(kStringRepresentationMask));
3381 __ b(ne, &not_a_flat_string);
3382
3383 // Check whether it is an ASCII string.
3384 ASSERT_EQ(0, kTwoByteStringTag);
3385 __ tst(r2, Operand(kStringEncodingMask));
3386 __ b(ne, &ascii_string);
3387
3388 // 2-byte string. We can add without shifting since the Smi tag size is the
3389 // log2 of the number of bytes in a two-byte character.
3390 ASSERT_EQ(1, kSmiTagSize);
3391 ASSERT_EQ(0, kSmiShiftSize);
3392 __ add(r1, r1, Operand(r0));
3393 __ ldrh(r0, FieldMemOperand(r1, SeqTwoByteString::kHeaderSize));
3394 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
3395 __ jmp(&end);
3396
3397 __ bind(&ascii_string);
3398 __ add(r1, r1, Operand(r0, LSR, kSmiTagSize));
3399 __ ldrb(r0, FieldMemOperand(r1, SeqAsciiString::kHeaderSize));
3400 __ mov(r0, Operand(r0, LSL, kSmiTagSize));
3401 __ jmp(&end);
3402
3403 __ bind(&not_a_flat_string);
3404 __ and_(r2, r2, Operand(kStringRepresentationMask));
3405 __ cmp(r2, Operand(kConsStringTag));
3406 __ b(ne, &slow);
3407
3408 // ConsString.
3409 // Check that the right hand side is the empty string (ie if this is really a
3410 // flat string in a cons string). If that is not the case we would rather go
3411 // to the runtime system now, to flatten the string.
3412 __ ldr(r2, FieldMemOperand(r1, ConsString::kSecondOffset));
3413 __ LoadRoot(r3, Heap::kEmptyStringRootIndex);
3414 __ cmp(r2, Operand(r3));
3415 __ b(ne, &slow);
3416
3417 // Get the first of the two strings.
3418 __ ldr(r1, FieldMemOperand(r1, ConsString::kFirstOffset));
3419 __ jmp(&try_again_with_new_string);
3420
3421 __ bind(&slow);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00003422 __ LoadRoot(r0, Heap::kUndefinedValueRootIndex);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003423
3424 __ bind(&end);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003425 frame_->EmitPush(r0);
kasper.lund7276f142008-07-30 08:49:36 +00003426}
3427
3428
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003429void CodeGenerator::GenerateCharFromCode(ZoneList<Expression*>* args) {
3430 Comment(masm_, "[ GenerateCharFromCode");
3431 ASSERT(args->length() == 1);
3432
3433 LoadAndSpill(args->at(0));
3434 frame_->EmitPop(r0);
3435
3436 JumpTarget slow_case;
3437 JumpTarget exit;
3438
3439 // Fast case of Heap::LookupSingleCharacterStringFromCode.
3440 ASSERT(kSmiTag == 0);
3441 ASSERT(kSmiShiftSize == 0);
3442 ASSERT(IsPowerOf2(String::kMaxAsciiCharCode + 1));
3443 __ tst(r0, Operand(kSmiTagMask |
3444 ((~String::kMaxAsciiCharCode) << kSmiTagSize)));
3445 slow_case.Branch(nz);
3446
3447 ASSERT(kSmiTag == 0);
3448 __ mov(r1, Operand(Factory::single_character_string_cache()));
3449 __ add(r1, r1, Operand(r0, LSL, kPointerSizeLog2 - kSmiTagSize));
3450 __ ldr(r1, MemOperand(r1, FixedArray::kHeaderSize - kHeapObjectTag));
3451 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
3452 __ cmp(r1, ip);
3453 slow_case.Branch(eq);
3454
3455 frame_->EmitPush(r1);
3456 exit.Jump();
3457
3458 slow_case.Bind();
3459 frame_->EmitPush(r0);
3460 frame_->CallRuntime(Runtime::kCharFromCode, 1);
3461 frame_->EmitPush(r0);
3462
3463 exit.Bind();
3464}
3465
3466
ager@chromium.org7c537e22008-10-16 08:43:32 +00003467void CodeGenerator::GenerateIsArray(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003468 VirtualFrame::SpilledScope spilled_scope;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003469 ASSERT(args->length() == 1);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003470 LoadAndSpill(args->at(0));
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003471 JumpTarget answer;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003472 // We need the CC bits to come out as not_equal in the case where the
3473 // object is a smi. This can't be done with the usual test opcode so
3474 // we use XOR to get the right CC bits.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003475 frame_->EmitPop(r0);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003476 __ and_(r1, r0, Operand(kSmiTagMask));
3477 __ eor(r1, r1, Operand(kSmiTagMask), SetCC);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003478 answer.Branch(ne);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003479 // It is a heap object - get the map. Check if the object is a JS array.
3480 __ CompareObjectType(r0, r1, r1, JS_ARRAY_TYPE);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003481 answer.Bind();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003482 cc_reg_ = eq;
3483}
3484
3485
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00003486void CodeGenerator::GenerateIsRegExp(ZoneList<Expression*>* args) {
3487 VirtualFrame::SpilledScope spilled_scope;
3488 ASSERT(args->length() == 1);
3489 LoadAndSpill(args->at(0));
3490 JumpTarget answer;
3491 // We need the CC bits to come out as not_equal in the case where the
3492 // object is a smi. This can't be done with the usual test opcode so
3493 // we use XOR to get the right CC bits.
3494 frame_->EmitPop(r0);
3495 __ and_(r1, r0, Operand(kSmiTagMask));
3496 __ eor(r1, r1, Operand(kSmiTagMask), SetCC);
3497 answer.Branch(ne);
3498 // It is a heap object - get the map. Check if the object is a regexp.
3499 __ CompareObjectType(r0, r1, r1, JS_REGEXP_TYPE);
3500 answer.Bind();
3501 cc_reg_ = eq;
3502}
3503
3504
ager@chromium.org6141cbe2009-11-20 12:14:52 +00003505void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) {
3506 // This generates a fast version of:
3507 // (typeof(arg) === 'object' || %_ClassOf(arg) == 'RegExp')
3508 VirtualFrame::SpilledScope spilled_scope;
3509 ASSERT(args->length() == 1);
3510 LoadAndSpill(args->at(0));
3511 frame_->EmitPop(r1);
3512 __ tst(r1, Operand(kSmiTagMask));
3513 false_target()->Branch(eq);
3514
3515 __ LoadRoot(ip, Heap::kNullValueRootIndex);
3516 __ cmp(r1, ip);
3517 true_target()->Branch(eq);
3518
3519 Register map_reg = r2;
3520 __ ldr(map_reg, FieldMemOperand(r1, HeapObject::kMapOffset));
3521 // Undetectable objects behave like undefined when tested with typeof.
3522 __ ldrb(r1, FieldMemOperand(map_reg, Map::kBitFieldOffset));
3523 __ and_(r1, r1, Operand(1 << Map::kIsUndetectable));
3524 __ cmp(r1, Operand(1 << Map::kIsUndetectable));
3525 false_target()->Branch(eq);
3526
3527 __ ldrb(r1, FieldMemOperand(map_reg, Map::kInstanceTypeOffset));
3528 __ cmp(r1, Operand(FIRST_JS_OBJECT_TYPE));
3529 false_target()->Branch(lt);
3530 __ cmp(r1, Operand(LAST_JS_OBJECT_TYPE));
3531 cc_reg_ = le;
3532}
3533
3534
3535void CodeGenerator::GenerateIsFunction(ZoneList<Expression*>* args) {
3536 // This generates a fast version of:
3537 // (%_ClassOf(arg) === 'Function')
3538 VirtualFrame::SpilledScope spilled_scope;
3539 ASSERT(args->length() == 1);
3540 LoadAndSpill(args->at(0));
3541 frame_->EmitPop(r0);
3542 __ tst(r0, Operand(kSmiTagMask));
3543 false_target()->Branch(eq);
3544 Register map_reg = r2;
3545 __ CompareObjectType(r0, map_reg, r1, JS_FUNCTION_TYPE);
3546 cc_reg_ = eq;
3547}
3548
3549
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003550void CodeGenerator::GenerateIsUndetectableObject(ZoneList<Expression*>* args) {
3551 VirtualFrame::SpilledScope spilled_scope;
3552 ASSERT(args->length() == 1);
3553 LoadAndSpill(args->at(0));
3554 frame_->EmitPop(r0);
3555 __ tst(r0, Operand(kSmiTagMask));
3556 false_target()->Branch(eq);
3557 __ ldr(r1, FieldMemOperand(r0, HeapObject::kMapOffset));
3558 __ ldrb(r1, FieldMemOperand(r1, Map::kBitFieldOffset));
3559 __ tst(r1, Operand(1 << Map::kIsUndetectable));
3560 cc_reg_ = ne;
3561}
3562
3563
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003564void CodeGenerator::GenerateIsConstructCall(ZoneList<Expression*>* args) {
3565 VirtualFrame::SpilledScope spilled_scope;
3566 ASSERT(args->length() == 0);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003567
3568 // Get the frame pointer for the calling frame.
3569 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
3570
3571 // Skip the arguments adaptor frame if it exists.
3572 Label check_frame_marker;
3573 __ ldr(r1, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00003574 __ cmp(r1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00003575 __ b(ne, &check_frame_marker);
3576 __ ldr(r2, MemOperand(r2, StandardFrameConstants::kCallerFPOffset));
3577
3578 // Check the marker in the calling frame.
3579 __ bind(&check_frame_marker);
3580 __ ldr(r1, MemOperand(r2, StandardFrameConstants::kMarkerOffset));
3581 __ cmp(r1, Operand(Smi::FromInt(StackFrame::CONSTRUCT)));
3582 cc_reg_ = eq;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00003583}
3584
3585
ager@chromium.org7c537e22008-10-16 08:43:32 +00003586void CodeGenerator::GenerateArgumentsLength(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003587 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003588 ASSERT(args->length() == 0);
3589
mads.s.ager31e71382008-08-13 09:32:07 +00003590 // Seed the result with the formal parameters count, which will be used
3591 // in case no arguments adaptor frame is found below the current frame.
ager@chromium.org5c838252010-02-19 08:53:10 +00003592 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003593
3594 // Call the shared stub to get to the arguments.length.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003595 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_LENGTH);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003596 frame_->CallStub(&stub, 0);
3597 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003598}
3599
3600
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00003601void CodeGenerator::GenerateArguments(ZoneList<Expression*>* args) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003602 VirtualFrame::SpilledScope spilled_scope;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003603 ASSERT(args->length() == 1);
3604
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00003605 // Satisfy contract with ArgumentsAccessStub:
3606 // Load the key into r1 and the formal parameters count into r0.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003607 LoadAndSpill(args->at(0));
3608 frame_->EmitPop(r1);
ager@chromium.org5c838252010-02-19 08:53:10 +00003609 __ mov(r0, Operand(Smi::FromInt(scope()->num_parameters())));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003610
3611 // Call the shared stub to get to arguments[key].
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00003612 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_ELEMENT);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003613 frame_->CallStub(&stub, 0);
3614 frame_->EmitPush(r0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003615}
3616
3617
ager@chromium.orgeadaf222009-06-16 09:43:10 +00003618void CodeGenerator::GenerateRandomPositiveSmi(ZoneList<Expression*>* args) {
3619 VirtualFrame::SpilledScope spilled_scope;
3620 ASSERT(args->length() == 0);
3621 __ Call(ExternalReference::random_positive_smi_function().address(),
3622 RelocInfo::RUNTIME_ENTRY);
3623 frame_->EmitPush(r0);
3624}
3625
3626
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00003627void CodeGenerator::GenerateStringAdd(ZoneList<Expression*>* args) {
3628 ASSERT_EQ(2, args->length());
3629
3630 Load(args->at(0));
3631 Load(args->at(1));
3632
ager@chromium.org5c838252010-02-19 08:53:10 +00003633 StringAddStub stub(NO_STRING_ADD_FLAGS);
3634 frame_->CallStub(&stub, 2);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00003635 frame_->EmitPush(r0);
3636}
3637
3638
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003639void CodeGenerator::GenerateSubString(ZoneList<Expression*>* args) {
3640 ASSERT_EQ(3, args->length());
3641
3642 Load(args->at(0));
3643 Load(args->at(1));
3644 Load(args->at(2));
3645
ager@chromium.org5c838252010-02-19 08:53:10 +00003646 SubStringStub stub;
3647 frame_->CallStub(&stub, 3);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003648 frame_->EmitPush(r0);
3649}
3650
3651
3652void CodeGenerator::GenerateStringCompare(ZoneList<Expression*>* args) {
3653 ASSERT_EQ(2, args->length());
3654
3655 Load(args->at(0));
3656 Load(args->at(1));
3657
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003658 StringCompareStub stub;
3659 frame_->CallStub(&stub, 2);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003660 frame_->EmitPush(r0);
3661}
3662
3663
3664void CodeGenerator::GenerateRegExpExec(ZoneList<Expression*>* args) {
3665 ASSERT_EQ(4, args->length());
3666
3667 Load(args->at(0));
3668 Load(args->at(1));
3669 Load(args->at(2));
3670 Load(args->at(3));
3671
3672 frame_->CallRuntime(Runtime::kRegExpExec, 4);
3673 frame_->EmitPush(r0);
3674}
3675
3676
ager@chromium.org5c838252010-02-19 08:53:10 +00003677void CodeGenerator::GenerateNumberToString(ZoneList<Expression*>* args) {
3678 ASSERT_EQ(args->length(), 1);
3679
3680 // Load the argument on the stack and jump to the runtime.
3681 Load(args->at(0));
3682
fschneider@chromium.org086aac62010-03-17 13:18:24 +00003683 NumberToStringStub stub;
3684 frame_->CallStub(&stub, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00003685 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) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004529 // Create a new closure from the given function info in new
4530 // space. Set the context to the current context in cp.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004531 Label gc;
4532
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004533 // Pop the function info from the stack.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004534 __ 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
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004551 // Initialize the rest of the function. We don't have to update the
4552 // write barrier because the allocated object is in new space.
4553 __ LoadRoot(r1, Heap::kEmptyFixedArrayRootIndex);
4554 __ LoadRoot(r2, Heap::kTheHoleValueRootIndex);
4555 __ str(r1, FieldMemOperand(r0, JSObject::kPropertiesOffset));
4556 __ str(r1, FieldMemOperand(r0, JSObject::kElementsOffset));
4557 __ str(r2, FieldMemOperand(r0, JSFunction::kPrototypeOrInitialMapOffset));
4558 __ str(r3, FieldMemOperand(r0, JSFunction::kSharedFunctionInfoOffset));
4559 __ str(cp, FieldMemOperand(r0, JSFunction::kContextOffset));
4560 __ str(r1, FieldMemOperand(r0, JSFunction::kLiteralsOffset));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004561
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004562 // Return result. The argument function info has been popped already.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004563 __ Ret();
4564
4565 // Create a new closure through the slower runtime call.
4566 __ bind(&gc);
4567 __ push(cp);
4568 __ push(r3);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004569 __ TailCallRuntime(Runtime::kNewClosure, 2, 1);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004570}
4571
4572
4573void FastNewContextStub::Generate(MacroAssembler* masm) {
4574 // Try to allocate the context in new space.
4575 Label gc;
4576 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
4577
4578 // Attempt to allocate the context in new space.
4579 __ AllocateInNewSpace(length + (FixedArray::kHeaderSize / kPointerSize),
4580 r0,
4581 r1,
4582 r2,
4583 &gc,
4584 TAG_OBJECT);
4585
4586 // Load the function from the stack.
ager@chromium.org5c838252010-02-19 08:53:10 +00004587 __ ldr(r3, MemOperand(sp, 0));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004588
4589 // Setup the object header.
4590 __ LoadRoot(r2, Heap::kContextMapRootIndex);
4591 __ str(r2, FieldMemOperand(r0, HeapObject::kMapOffset));
4592 __ mov(r2, Operand(length));
4593 __ str(r2, FieldMemOperand(r0, Array::kLengthOffset));
4594
4595 // Setup the fixed slots.
4596 __ mov(r1, Operand(Smi::FromInt(0)));
4597 __ str(r3, MemOperand(r0, Context::SlotOffset(Context::CLOSURE_INDEX)));
4598 __ str(r0, MemOperand(r0, Context::SlotOffset(Context::FCONTEXT_INDEX)));
4599 __ str(r1, MemOperand(r0, Context::SlotOffset(Context::PREVIOUS_INDEX)));
4600 __ str(r1, MemOperand(r0, Context::SlotOffset(Context::EXTENSION_INDEX)));
4601
4602 // Copy the global object from the surrounding context.
4603 __ ldr(r1, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX)));
4604 __ str(r1, MemOperand(r0, Context::SlotOffset(Context::GLOBAL_INDEX)));
4605
4606 // Initialize the rest of the slots to undefined.
4607 __ LoadRoot(r1, Heap::kUndefinedValueRootIndex);
4608 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; i++) {
4609 __ str(r1, MemOperand(r0, Context::SlotOffset(i)));
4610 }
4611
4612 // Remove the on-stack argument and return.
4613 __ mov(cp, r0);
4614 __ pop();
4615 __ Ret();
4616
4617 // Need to collect. Call into runtime system.
4618 __ bind(&gc);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004619 __ TailCallRuntime(Runtime::kNewContext, 1, 1);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004620}
4621
4622
ager@chromium.org5c838252010-02-19 08:53:10 +00004623void FastCloneShallowArrayStub::Generate(MacroAssembler* masm) {
4624 // Stack layout on entry:
4625 //
4626 // [sp]: constant elements.
4627 // [sp + kPointerSize]: literal index.
4628 // [sp + (2 * kPointerSize)]: literals array.
4629
4630 // All sizes here are multiples of kPointerSize.
4631 int elements_size = (length_ > 0) ? FixedArray::SizeFor(length_) : 0;
4632 int size = JSArray::kSize + elements_size;
4633
4634 // Load boilerplate object into r3 and check if we need to create a
4635 // boilerplate.
4636 Label slow_case;
4637 __ ldr(r3, MemOperand(sp, 2 * kPointerSize));
4638 __ ldr(r0, MemOperand(sp, 1 * kPointerSize));
4639 __ add(r3, r3, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
4640 __ ldr(r3, MemOperand(r3, r0, LSL, kPointerSizeLog2 - kSmiTagSize));
4641 __ LoadRoot(ip, Heap::kUndefinedValueRootIndex);
4642 __ cmp(r3, ip);
4643 __ b(eq, &slow_case);
4644
4645 // Allocate both the JS array and the elements array in one big
4646 // allocation. This avoids multiple limit checks.
4647 __ AllocateInNewSpace(size / kPointerSize,
4648 r0,
4649 r1,
4650 r2,
4651 &slow_case,
4652 TAG_OBJECT);
4653
4654 // Copy the JS array part.
4655 for (int i = 0; i < JSArray::kSize; i += kPointerSize) {
4656 if ((i != JSArray::kElementsOffset) || (length_ == 0)) {
4657 __ ldr(r1, FieldMemOperand(r3, i));
4658 __ str(r1, FieldMemOperand(r0, i));
4659 }
4660 }
4661
4662 if (length_ > 0) {
4663 // Get hold of the elements array of the boilerplate and setup the
4664 // elements pointer in the resulting object.
4665 __ ldr(r3, FieldMemOperand(r3, JSArray::kElementsOffset));
4666 __ add(r2, r0, Operand(JSArray::kSize));
4667 __ str(r2, FieldMemOperand(r0, JSArray::kElementsOffset));
4668
4669 // Copy the elements array.
4670 for (int i = 0; i < elements_size; i += kPointerSize) {
4671 __ ldr(r1, FieldMemOperand(r3, i));
4672 __ str(r1, FieldMemOperand(r2, i));
4673 }
4674 }
4675
4676 // Return and remove the on-stack parameters.
4677 __ add(sp, sp, Operand(3 * kPointerSize));
4678 __ Ret();
4679
4680 __ bind(&slow_case);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004681 __ TailCallRuntime(Runtime::kCreateArrayLiteralShallow, 3, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00004682}
4683
4684
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004685// Takes a Smi and converts to an IEEE 64 bit floating point value in two
4686// registers. The format is 1 sign bit, 11 exponent bits (biased 1023) and
4687// 52 fraction bits (20 in the first word, 32 in the second). Zeros is a
4688// scratch register. Destroys the source register. No GC occurs during this
4689// stub so you don't have to set up the frame.
4690class ConvertToDoubleStub : public CodeStub {
4691 public:
4692 ConvertToDoubleStub(Register result_reg_1,
4693 Register result_reg_2,
4694 Register source_reg,
4695 Register scratch_reg)
4696 : result1_(result_reg_1),
4697 result2_(result_reg_2),
4698 source_(source_reg),
4699 zeros_(scratch_reg) { }
4700
4701 private:
4702 Register result1_;
4703 Register result2_;
4704 Register source_;
4705 Register zeros_;
4706
4707 // Minor key encoding in 16 bits.
4708 class ModeBits: public BitField<OverwriteMode, 0, 2> {};
4709 class OpBits: public BitField<Token::Value, 2, 14> {};
4710
4711 Major MajorKey() { return ConvertToDouble; }
4712 int MinorKey() {
4713 // Encode the parameters in a unique 16 bit value.
4714 return result1_.code() +
4715 (result2_.code() << 4) +
4716 (source_.code() << 8) +
4717 (zeros_.code() << 12);
4718 }
4719
4720 void Generate(MacroAssembler* masm);
4721
4722 const char* GetName() { return "ConvertToDoubleStub"; }
4723
4724#ifdef DEBUG
4725 void Print() { PrintF("ConvertToDoubleStub\n"); }
4726#endif
4727};
4728
4729
4730void ConvertToDoubleStub::Generate(MacroAssembler* masm) {
4731#ifndef BIG_ENDIAN_FLOATING_POINT
4732 Register exponent = result1_;
4733 Register mantissa = result2_;
4734#else
4735 Register exponent = result2_;
4736 Register mantissa = result1_;
4737#endif
4738 Label not_special;
4739 // Convert from Smi to integer.
4740 __ mov(source_, Operand(source_, ASR, kSmiTagSize));
4741 // Move sign bit from source to destination. This works because the sign bit
4742 // in the exponent word of the double has the same position and polarity as
4743 // the 2's complement sign bit in a Smi.
4744 ASSERT(HeapNumber::kSignMask == 0x80000000u);
4745 __ and_(exponent, source_, Operand(HeapNumber::kSignMask), SetCC);
4746 // Subtract from 0 if source was negative.
4747 __ rsb(source_, source_, Operand(0), LeaveCC, ne);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004748
4749 // We have -1, 0 or 1, which we treat specially. Register source_ contains
4750 // absolute value: it is either equal to 1 (special case of -1 and 1),
4751 // greater than 1 (not a special case) or less than 1 (special case of 0).
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004752 __ cmp(source_, Operand(1));
4753 __ b(gt, &not_special);
4754
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004755 // For 1 or -1 we need to or in the 0 exponent (biased to 1023).
4756 static const uint32_t exponent_word_for_1 =
4757 HeapNumber::kExponentBias << HeapNumber::kExponentShift;
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004758 __ orr(exponent, exponent, Operand(exponent_word_for_1), LeaveCC, eq);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004759 // 1, 0 and -1 all have 0 for the second word.
4760 __ mov(mantissa, Operand(0));
4761 __ Ret();
4762
4763 __ bind(&not_special);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004764 // Count leading zeros. Uses mantissa for a scratch register on pre-ARM5.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004765 // Gets the wrong answer for 0, but we already checked for that case above.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004766 __ CountLeadingZeros(source_, mantissa, zeros_);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004767 // Compute exponent and or it into the exponent register.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004768 // We use mantissa as a scratch register here.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004769 __ rsb(mantissa, zeros_, Operand(31 + HeapNumber::kExponentBias));
4770 __ orr(exponent,
4771 exponent,
4772 Operand(mantissa, LSL, HeapNumber::kExponentShift));
4773 // Shift up the source chopping the top bit off.
4774 __ add(zeros_, zeros_, Operand(1));
4775 // This wouldn't work for 1.0 or -1.0 as the shift would be 32 which means 0.
4776 __ mov(source_, Operand(source_, LSL, zeros_));
4777 // Compute lower part of fraction (last 12 bits).
4778 __ mov(mantissa, Operand(source_, LSL, HeapNumber::kMantissaBitsInTopWord));
4779 // And the top (top 20 bits).
4780 __ orr(exponent,
4781 exponent,
4782 Operand(source_, LSR, 32 - HeapNumber::kMantissaBitsInTopWord));
4783 __ Ret();
4784}
4785
4786
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004787// See comment for class.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004788void WriteInt32ToHeapNumberStub::Generate(MacroAssembler* masm) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004789 Label max_negative_int;
4790 // the_int_ has the answer which is a signed int32 but not a Smi.
4791 // We test for the special value that has a different exponent. This test
4792 // has the neat side effect of setting the flags according to the sign.
4793 ASSERT(HeapNumber::kSignMask == 0x80000000u);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00004794 __ cmp(the_int_, Operand(0x80000000u));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00004795 __ b(eq, &max_negative_int);
4796 // Set up the correct exponent in scratch_. All non-Smi int32s have the same.
4797 // A non-Smi integer is 1.xxx * 2^30 so the exponent is 30 (biased).
4798 uint32_t non_smi_exponent =
4799 (HeapNumber::kExponentBias + 30) << HeapNumber::kExponentShift;
4800 __ mov(scratch_, Operand(non_smi_exponent));
4801 // Set the sign bit in scratch_ if the value was negative.
4802 __ orr(scratch_, scratch_, Operand(HeapNumber::kSignMask), LeaveCC, cs);
4803 // Subtract from 0 if the value was negative.
4804 __ rsb(the_int_, the_int_, Operand(0), LeaveCC, cs);
4805 // We should be masking the implict first digit of the mantissa away here,
4806 // but it just ends up combining harmlessly with the last digit of the
4807 // exponent that happens to be 1. The sign bit is 0 so we shift 10 to get
4808 // the most significant 1 to hit the last bit of the 12 bit sign and exponent.
4809 ASSERT(((1 << HeapNumber::kExponentShift) & non_smi_exponent) != 0);
4810 const int shift_distance = HeapNumber::kNonMantissaBitsInTopWord - 2;
4811 __ orr(scratch_, scratch_, Operand(the_int_, LSR, shift_distance));
4812 __ str(scratch_, FieldMemOperand(the_heap_number_,
4813 HeapNumber::kExponentOffset));
4814 __ mov(scratch_, Operand(the_int_, LSL, 32 - shift_distance));
4815 __ str(scratch_, FieldMemOperand(the_heap_number_,
4816 HeapNumber::kMantissaOffset));
4817 __ Ret();
4818
4819 __ bind(&max_negative_int);
4820 // The max negative int32 is stored as a positive number in the mantissa of
4821 // a double because it uses a sign bit instead of using two's complement.
4822 // The actual mantissa bits stored are all 0 because the implicit most
4823 // significant 1 bit is not stored.
4824 non_smi_exponent += 1 << HeapNumber::kExponentShift;
4825 __ mov(ip, Operand(HeapNumber::kSignMask | non_smi_exponent));
4826 __ str(ip, FieldMemOperand(the_heap_number_, HeapNumber::kExponentOffset));
4827 __ mov(ip, Operand(0));
4828 __ str(ip, FieldMemOperand(the_heap_number_, HeapNumber::kMantissaOffset));
4829 __ Ret();
4830}
4831
4832
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004833// Handle the case where the lhs and rhs are the same object.
4834// Equality is almost reflexive (everything but NaN), so this is a test
4835// for "identity and not NaN".
4836static void EmitIdenticalObjectComparison(MacroAssembler* masm,
4837 Label* slow,
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004838 Condition cc,
4839 bool never_nan_nan) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004840 Label not_identical;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004841 Label heap_number, return_equal;
4842 Register exp_mask_reg = r5;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004843 __ cmp(r0, Operand(r1));
4844 __ b(ne, &not_identical);
4845
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004846 // The two objects are identical. If we know that one of them isn't NaN then
4847 // we now know they test equal.
4848 if (cc != eq || !never_nan_nan) {
4849 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004850
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004851 // Test for NaN. Sadly, we can't just compare to Factory::nan_value(),
4852 // so we do the second best thing - test it ourselves.
4853 // They are both equal and they are not both Smis so both of them are not
4854 // Smis. If it's not a heap number, then return equal.
4855 if (cc == lt || cc == gt) {
4856 __ CompareObjectType(r0, r4, r4, FIRST_JS_OBJECT_TYPE);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004857 __ b(ge, slow);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004858 } else {
4859 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
4860 __ b(eq, &heap_number);
4861 // Comparing JS objects with <=, >= is complicated.
4862 if (cc != eq) {
4863 __ cmp(r4, Operand(FIRST_JS_OBJECT_TYPE));
4864 __ b(ge, slow);
4865 // Normally here we fall through to return_equal, but undefined is
4866 // special: (undefined == undefined) == true, but
4867 // (undefined <= undefined) == false! See ECMAScript 11.8.5.
4868 if (cc == le || cc == ge) {
4869 __ cmp(r4, Operand(ODDBALL_TYPE));
4870 __ b(ne, &return_equal);
4871 __ LoadRoot(r2, Heap::kUndefinedValueRootIndex);
4872 __ cmp(r0, Operand(r2));
4873 __ b(ne, &return_equal);
4874 if (cc == le) {
4875 // undefined <= undefined should fail.
4876 __ mov(r0, Operand(GREATER));
4877 } else {
4878 // undefined >= undefined should fail.
4879 __ mov(r0, Operand(LESS));
4880 }
4881 __ mov(pc, Operand(lr)); // Return.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004882 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004883 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004884 }
4885 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004886
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004887 __ bind(&return_equal);
4888 if (cc == lt) {
4889 __ mov(r0, Operand(GREATER)); // Things aren't less than themselves.
4890 } else if (cc == gt) {
4891 __ mov(r0, Operand(LESS)); // Things aren't greater than themselves.
4892 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004893 __ mov(r0, Operand(EQUAL)); // Things are <=, >=, ==, === themselves.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004894 }
4895 __ mov(pc, Operand(lr)); // Return.
4896
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004897 if (cc != eq || !never_nan_nan) {
4898 // For less and greater we don't have to check for NaN since the result of
4899 // x < x is false regardless. For the others here is some code to check
4900 // for NaN.
4901 if (cc != lt && cc != gt) {
4902 __ bind(&heap_number);
4903 // It is a heap number, so return non-equal if it's NaN and equal if it's
4904 // not NaN.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004905
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004906 // The representation of NaN values has all exponent bits (52..62) set,
4907 // and not all mantissa bits (0..51) clear.
4908 // Read top bits of double representation (second word of value).
4909 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
4910 // Test that exponent bits are all set.
4911 __ and_(r3, r2, Operand(exp_mask_reg));
4912 __ cmp(r3, Operand(exp_mask_reg));
4913 __ b(ne, &return_equal);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004914
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004915 // Shift out flag and all exponent bits, retaining only mantissa.
4916 __ mov(r2, Operand(r2, LSL, HeapNumber::kNonMantissaBitsInTopWord));
4917 // Or with all low-bits of mantissa.
4918 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kMantissaOffset));
4919 __ orr(r0, r3, Operand(r2), SetCC);
4920 // For equal we already have the right value in r0: Return zero (equal)
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004921 // if all bits in mantissa are zero (it's an Infinity) and non-zero if
4922 // not (it's a NaN). For <= and >= we need to load r0 with the failing
4923 // value if it's a NaN.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004924 if (cc != eq) {
4925 // All-zero means Infinity means equal.
4926 __ mov(pc, Operand(lr), LeaveCC, eq); // Return equal
4927 if (cc == le) {
4928 __ mov(r0, Operand(GREATER)); // NaN <= NaN should fail.
4929 } else {
4930 __ mov(r0, Operand(LESS)); // NaN >= NaN should fail.
4931 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004932 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004933 __ mov(pc, Operand(lr)); // Return.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004934 }
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00004935 // No fall through here.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004936 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004937
4938 __ bind(&not_identical);
4939}
4940
4941
4942// See comment at call site.
4943static void EmitSmiNonsmiComparison(MacroAssembler* masm,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004944 Label* lhs_not_nan,
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004945 Label* slow,
4946 bool strict) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004947 Label rhs_is_smi;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004948 __ tst(r0, Operand(kSmiTagMask));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004949 __ b(eq, &rhs_is_smi);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004950
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004951 // Lhs is a Smi. Check whether the rhs is a heap number.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004952 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
4953 if (strict) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004954 // If rhs is not a number and lhs is a Smi then strict equality cannot
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004955 // succeed. Return non-equal (r0 is already not zero)
4956 __ mov(pc, Operand(lr), LeaveCC, ne); // Return.
4957 } else {
4958 // Smi compared non-strictly with a non-Smi non-heap-number. Call
4959 // the runtime.
4960 __ b(ne, slow);
4961 }
4962
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004963 // Lhs (r1) is a smi, rhs (r0) is a number.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004964 if (CpuFeatures::IsSupported(VFP3)) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004965 // Convert lhs to a double in d7 .
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004966 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004967 __ mov(r7, Operand(r1, ASR, kSmiTagSize));
4968 __ vmov(s15, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00004969 __ vcvt_f64_s32(d7, s15);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004970 // Load the double from rhs, tagged HeapNumber r0, to d6.
4971 __ sub(r7, r0, Operand(kHeapObjectTag));
4972 __ vldr(d6, r7, HeapNumber::kValueOffset);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004973 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004974 __ push(lr);
4975 // Convert lhs to a double in r2, r3.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004976 __ mov(r7, Operand(r1));
4977 ConvertToDoubleStub stub1(r3, r2, r7, r6);
4978 __ Call(stub1.GetCode(), RelocInfo::CODE_TARGET);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004979 // Load rhs to a double in r0, r1.
4980 __ ldr(r1, FieldMemOperand(r0, HeapNumber::kValueOffset + kPointerSize));
4981 __ ldr(r0, FieldMemOperand(r0, HeapNumber::kValueOffset));
4982 __ pop(lr);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00004983 }
4984
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004985 // We now have both loaded as doubles but we can skip the lhs nan check
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004986 // since it's a smi.
4987 __ jmp(lhs_not_nan);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004988
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004989 __ bind(&rhs_is_smi);
4990 // Rhs is a smi. Check whether the non-smi lhs is a heap number.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004991 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
4992 if (strict) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004993 // If lhs is not a number and rhs is a smi then strict equality cannot
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004994 // succeed. Return non-equal.
4995 __ mov(r0, Operand(1), LeaveCC, ne); // Non-zero indicates not equal.
4996 __ mov(pc, Operand(lr), LeaveCC, ne); // Return.
4997 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004998 // Smi compared non-strictly with a non-smi non-heap-number. Call
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00004999 // the runtime.
5000 __ b(ne, slow);
5001 }
5002
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005003 // Rhs (r0) is a smi, lhs (r1) is a heap number.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005004 if (CpuFeatures::IsSupported(VFP3)) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005005 // Convert rhs to a double in d6 .
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005006 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005007 // Load the double from lhs, tagged HeapNumber r1, to d7.
5008 __ sub(r7, r1, Operand(kHeapObjectTag));
5009 __ vldr(d7, r7, HeapNumber::kValueOffset);
5010 __ mov(r7, Operand(r0, ASR, kSmiTagSize));
5011 __ vmov(s13, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005012 __ vcvt_f64_s32(d6, s13);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005013 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005014 __ push(lr);
5015 // Load lhs to a double in r2, r3.
5016 __ ldr(r3, FieldMemOperand(r1, HeapNumber::kValueOffset + kPointerSize));
5017 __ ldr(r2, FieldMemOperand(r1, HeapNumber::kValueOffset));
5018 // Convert rhs to a double in r0, r1.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005019 __ mov(r7, Operand(r0));
5020 ConvertToDoubleStub stub2(r1, r0, r7, r6);
5021 __ Call(stub2.GetCode(), RelocInfo::CODE_TARGET);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005022 __ pop(lr);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005023 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005024 // Fall through to both_loaded_as_doubles.
5025}
5026
5027
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005028void EmitNanCheck(MacroAssembler* masm, Label* lhs_not_nan, Condition cc) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005029 bool exp_first = (HeapNumber::kExponentOffset == HeapNumber::kValueOffset);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005030 Register rhs_exponent = exp_first ? r0 : r1;
5031 Register lhs_exponent = exp_first ? r2 : r3;
5032 Register rhs_mantissa = exp_first ? r1 : r0;
5033 Register lhs_mantissa = exp_first ? r3 : r2;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005034 Label one_is_nan, neither_is_nan;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005035 Label lhs_not_nan_exp_mask_is_loaded;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005036
5037 Register exp_mask_reg = r5;
5038
5039 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005040 __ and_(r4, lhs_exponent, Operand(exp_mask_reg));
5041 __ cmp(r4, Operand(exp_mask_reg));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005042 __ b(ne, &lhs_not_nan_exp_mask_is_loaded);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005043 __ mov(r4,
5044 Operand(lhs_exponent, LSL, HeapNumber::kNonMantissaBitsInTopWord),
5045 SetCC);
5046 __ b(ne, &one_is_nan);
5047 __ cmp(lhs_mantissa, Operand(0));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005048 __ b(ne, &one_is_nan);
5049
5050 __ bind(lhs_not_nan);
5051 __ mov(exp_mask_reg, Operand(HeapNumber::kExponentMask));
5052 __ bind(&lhs_not_nan_exp_mask_is_loaded);
5053 __ and_(r4, rhs_exponent, Operand(exp_mask_reg));
5054 __ cmp(r4, Operand(exp_mask_reg));
5055 __ b(ne, &neither_is_nan);
5056 __ mov(r4,
5057 Operand(rhs_exponent, LSL, HeapNumber::kNonMantissaBitsInTopWord),
5058 SetCC);
5059 __ b(ne, &one_is_nan);
5060 __ cmp(rhs_mantissa, Operand(0));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005061 __ b(eq, &neither_is_nan);
5062
5063 __ bind(&one_is_nan);
5064 // NaN comparisons always fail.
5065 // Load whatever we need in r0 to make the comparison fail.
5066 if (cc == lt || cc == le) {
5067 __ mov(r0, Operand(GREATER));
5068 } else {
5069 __ mov(r0, Operand(LESS));
5070 }
5071 __ mov(pc, Operand(lr)); // Return.
5072
5073 __ bind(&neither_is_nan);
5074}
5075
5076
5077// See comment at call site.
5078static void EmitTwoNonNanDoubleComparison(MacroAssembler* masm, Condition cc) {
5079 bool exp_first = (HeapNumber::kExponentOffset == HeapNumber::kValueOffset);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005080 Register rhs_exponent = exp_first ? r0 : r1;
5081 Register lhs_exponent = exp_first ? r2 : r3;
5082 Register rhs_mantissa = exp_first ? r1 : r0;
5083 Register lhs_mantissa = exp_first ? r3 : r2;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005084
5085 // r0, r1, r2, r3 have the two doubles. Neither is a NaN.
5086 if (cc == eq) {
5087 // Doubles are not equal unless they have the same bit pattern.
5088 // Exception: 0 and -0.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005089 __ cmp(rhs_mantissa, Operand(lhs_mantissa));
5090 __ orr(r0, rhs_mantissa, Operand(lhs_mantissa), LeaveCC, ne);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005091 // Return non-zero if the numbers are unequal.
5092 __ mov(pc, Operand(lr), LeaveCC, ne);
5093
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005094 __ sub(r0, rhs_exponent, Operand(lhs_exponent), SetCC);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005095 // If exponents are equal then return 0.
5096 __ mov(pc, Operand(lr), LeaveCC, eq);
5097
5098 // Exponents are unequal. The only way we can return that the numbers
5099 // are equal is if one is -0 and the other is 0. We already dealt
5100 // with the case where both are -0 or both are 0.
5101 // We start by seeing if the mantissas (that are equal) or the bottom
5102 // 31 bits of the rhs exponent are non-zero. If so we return not
5103 // equal.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005104 __ orr(r4, lhs_mantissa, Operand(lhs_exponent, LSL, kSmiTagSize), SetCC);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005105 __ mov(r0, Operand(r4), LeaveCC, ne);
5106 __ mov(pc, Operand(lr), LeaveCC, ne); // Return conditionally.
5107 // Now they are equal if and only if the lhs exponent is zero in its
5108 // low 31 bits.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005109 __ mov(r0, Operand(rhs_exponent, LSL, kSmiTagSize));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005110 __ mov(pc, Operand(lr));
5111 } else {
5112 // Call a native function to do a comparison between two non-NaNs.
5113 // Call C routine that may not cause GC or other trouble.
5114 __ mov(r5, Operand(ExternalReference::compare_doubles()));
5115 __ Jump(r5); // Tail call.
5116 }
5117}
5118
5119
5120// See comment at call site.
5121static void EmitStrictTwoHeapObjectCompare(MacroAssembler* masm) {
5122 // If either operand is a JSObject or an oddball value, then they are
5123 // not equal since their pointers are different.
5124 // There is no test for undetectability in strict equality.
5125 ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
5126 Label first_non_object;
5127 // Get the type of the first operand into r2 and compare it with
5128 // FIRST_JS_OBJECT_TYPE.
5129 __ CompareObjectType(r0, r2, r2, FIRST_JS_OBJECT_TYPE);
5130 __ b(lt, &first_non_object);
5131
5132 // Return non-zero (r0 is not zero)
5133 Label return_not_equal;
5134 __ bind(&return_not_equal);
5135 __ mov(pc, Operand(lr)); // Return.
5136
5137 __ bind(&first_non_object);
5138 // Check for oddballs: true, false, null, undefined.
5139 __ cmp(r2, Operand(ODDBALL_TYPE));
5140 __ b(eq, &return_not_equal);
5141
5142 __ CompareObjectType(r1, r3, r3, FIRST_JS_OBJECT_TYPE);
5143 __ b(ge, &return_not_equal);
5144
5145 // Check for oddballs: true, false, null, undefined.
5146 __ cmp(r3, Operand(ODDBALL_TYPE));
5147 __ b(eq, &return_not_equal);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005148
5149 // Now that we have the types we might as well check for symbol-symbol.
5150 // Ensure that no non-strings have the symbol bit set.
5151 ASSERT(kNotStringTag + kIsSymbolMask > LAST_TYPE);
5152 ASSERT(kSymbolTag != 0);
5153 __ and_(r2, r2, Operand(r3));
5154 __ tst(r2, Operand(kIsSymbolMask));
5155 __ b(ne, &return_not_equal);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005156}
5157
5158
5159// See comment at call site.
5160static void EmitCheckForTwoHeapNumbers(MacroAssembler* masm,
5161 Label* both_loaded_as_doubles,
5162 Label* not_heap_numbers,
5163 Label* slow) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005164 __ CompareObjectType(r0, r3, r2, HEAP_NUMBER_TYPE);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005165 __ b(ne, not_heap_numbers);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005166 __ ldr(r2, FieldMemOperand(r1, HeapObject::kMapOffset));
5167 __ cmp(r2, r3);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005168 __ b(ne, slow); // First was a heap number, second wasn't. Go slow case.
5169
5170 // Both are heap numbers. Load them up then jump to the code we have
5171 // for that.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005172 if (CpuFeatures::IsSupported(VFP3)) {
5173 CpuFeatures::Scope scope(VFP3);
5174 __ sub(r7, r0, Operand(kHeapObjectTag));
5175 __ vldr(d6, r7, HeapNumber::kValueOffset);
5176 __ sub(r7, r1, Operand(kHeapObjectTag));
5177 __ vldr(d7, r7, HeapNumber::kValueOffset);
5178 } else {
5179 __ ldr(r2, FieldMemOperand(r1, HeapNumber::kValueOffset));
5180 __ ldr(r3, FieldMemOperand(r1, HeapNumber::kValueOffset + kPointerSize));
5181 __ ldr(r1, FieldMemOperand(r0, HeapNumber::kValueOffset + kPointerSize));
5182 __ ldr(r0, FieldMemOperand(r0, HeapNumber::kValueOffset));
5183 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005184 __ jmp(both_loaded_as_doubles);
5185}
5186
5187
5188// Fast negative check for symbol-to-symbol equality.
5189static void EmitCheckForSymbols(MacroAssembler* masm, Label* slow) {
5190 // r2 is object type of r0.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005191 // Ensure that no non-strings have the symbol bit set.
5192 ASSERT(kNotStringTag + kIsSymbolMask > LAST_TYPE);
5193 ASSERT(kSymbolTag != 0);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005194 __ tst(r2, Operand(kIsSymbolMask));
5195 __ b(eq, slow);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005196 __ ldr(r3, FieldMemOperand(r1, HeapObject::kMapOffset));
5197 __ ldrb(r3, FieldMemOperand(r3, Map::kInstanceTypeOffset));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005198 __ tst(r3, Operand(kIsSymbolMask));
5199 __ b(eq, slow);
5200
5201 // Both are symbols. We already checked they weren't the same pointer
5202 // so they are not equal.
5203 __ mov(r0, Operand(1)); // Non-zero indicates not equal.
5204 __ mov(pc, Operand(lr)); // Return.
5205}
5206
5207
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005208void NumberToStringStub::GenerateLookupNumberStringCache(MacroAssembler* masm,
5209 Register object,
5210 Register result,
5211 Register scratch1,
5212 Register scratch2,
5213 bool object_is_smi,
5214 Label* not_found) {
5215 // Currently only lookup for smis. Check for smi if object is not known to be
5216 // a smi.
5217 if (!object_is_smi) {
5218 ASSERT(kSmiTag == 0);
5219 __ tst(object, Operand(kSmiTagMask));
5220 __ b(ne, not_found);
5221 }
5222
5223 // Use of registers. Register result is used as a temporary.
5224 Register number_string_cache = result;
5225 Register mask = scratch1;
5226 Register scratch = scratch2;
5227
5228 // Load the number string cache.
5229 __ LoadRoot(number_string_cache, Heap::kNumberStringCacheRootIndex);
5230
5231 // Make the hash mask from the length of the number string cache. It
5232 // contains two elements (number and string) for each cache entry.
5233 __ ldr(mask, FieldMemOperand(number_string_cache, FixedArray::kLengthOffset));
5234 // Divide length by two (length is not a smi).
5235 __ mov(mask, Operand(mask, ASR, 1));
5236 __ sub(mask, mask, Operand(1)); // Make mask.
5237
5238 // Calculate the entry in the number string cache. The hash value in the
5239 // number string cache for smis is just the smi value.
5240 __ and_(scratch, mask, Operand(object, ASR, 1));
5241
5242 // Calculate address of entry in string cache: each entry consists
5243 // of two pointer sized fields.
5244 __ add(scratch,
5245 number_string_cache,
5246 Operand(scratch, LSL, kPointerSizeLog2 + 1));
5247
5248 // Check if the entry is the smi we are looking for.
5249 Register object1 = scratch1;
5250 __ ldr(object1, FieldMemOperand(scratch, FixedArray::kHeaderSize));
5251 __ cmp(object, object1);
5252 __ b(ne, not_found);
5253
5254 // Get the result from the cache.
5255 __ ldr(result,
5256 FieldMemOperand(scratch, FixedArray::kHeaderSize + kPointerSize));
5257
5258 __ IncrementCounter(&Counters::number_to_string_native,
5259 1,
5260 scratch1,
5261 scratch2);
5262}
5263
5264
5265void NumberToStringStub::Generate(MacroAssembler* masm) {
5266 Label runtime;
5267
5268 __ ldr(r1, MemOperand(sp, 0));
5269
5270 // Generate code to lookup number in the number string cache.
5271 GenerateLookupNumberStringCache(masm, r1, r0, r2, r3, false, &runtime);
5272 __ add(sp, sp, Operand(1 * kPointerSize));
5273 __ Ret();
5274
5275 __ bind(&runtime);
5276 // Handle number to string in the runtime system if not found in the cache.
5277 __ TailCallRuntime(Runtime::kNumberToString, 1, 1);
5278}
5279
5280
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005281// On entry r0 (rhs) and r1 (lhs) are the values to be compared.
5282// On exit r0 is 0, positive or negative to indicate the result of
5283// the comparison.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005284void CompareStub::Generate(MacroAssembler* masm) {
5285 Label slow; // Call builtin.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005286 Label not_smis, both_loaded_as_doubles, lhs_not_nan;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005287
5288 // NOTICE! This code is only reached after a smi-fast-case check, so
5289 // it is certain that at least one operand isn't a smi.
5290
5291 // Handle the case where the objects are identical. Either returns the answer
5292 // or goes to slow. Only falls through if the objects were not identical.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005293 EmitIdenticalObjectComparison(masm, &slow, cc_, never_nan_nan_);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005294
5295 // If either is a Smi (we know that not both are), then they can only
5296 // be strictly equal if the other is a HeapNumber.
5297 ASSERT_EQ(0, kSmiTag);
5298 ASSERT_EQ(0, Smi::FromInt(0));
5299 __ and_(r2, r0, Operand(r1));
5300 __ tst(r2, Operand(kSmiTagMask));
5301 __ b(ne, &not_smis);
5302 // One operand is a smi. EmitSmiNonsmiComparison generates code that can:
5303 // 1) Return the answer.
5304 // 2) Go to slow.
5305 // 3) Fall through to both_loaded_as_doubles.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005306 // 4) Jump to lhs_not_nan.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005307 // In cases 3 and 4 we have found out we were dealing with a number-number
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005308 // comparison. If VFP3 is supported the double values of the numbers have
5309 // been loaded into d7 and d6. Otherwise, the double values have been loaded
5310 // into r0, r1, r2, and r3.
5311 EmitSmiNonsmiComparison(masm, &lhs_not_nan, &slow, strict_);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005312
5313 __ bind(&both_loaded_as_doubles);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005314 // The arguments have been converted to doubles and stored in d6 and d7, if
5315 // VFP3 is supported, or in r0, r1, r2, and r3.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005316 if (CpuFeatures::IsSupported(VFP3)) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005317 __ bind(&lhs_not_nan);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005318 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005319 Label no_nan;
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005320 // ARMv7 VFP3 instructions to implement double precision comparison.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005321 __ vcmp(d7, d6);
5322 __ vmrs(pc); // Move vector status bits to normal status bits.
5323 Label nan;
5324 __ b(vs, &nan);
5325 __ mov(r0, Operand(EQUAL), LeaveCC, eq);
5326 __ mov(r0, Operand(LESS), LeaveCC, lt);
5327 __ mov(r0, Operand(GREATER), LeaveCC, gt);
5328 __ mov(pc, Operand(lr));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005329
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005330 __ bind(&nan);
5331 // If one of the sides was a NaN then the v flag is set. Load r0 with
5332 // whatever it takes to make the comparison fail, since comparisons with NaN
5333 // always fail.
5334 if (cc_ == lt || cc_ == le) {
5335 __ mov(r0, Operand(GREATER));
5336 } else {
5337 __ mov(r0, Operand(LESS));
5338 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005339 __ mov(pc, Operand(lr));
5340 } else {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005341 // Checks for NaN in the doubles we have loaded. Can return the answer or
5342 // fall through if neither is a NaN. Also binds lhs_not_nan.
5343 EmitNanCheck(masm, &lhs_not_nan, cc_);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005344 // Compares two doubles in r0, r1, r2, r3 that are not NaNs. Returns the
5345 // answer. Never falls through.
5346 EmitTwoNonNanDoubleComparison(masm, cc_);
5347 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005348
5349 __ bind(&not_smis);
5350 // At this point we know we are dealing with two different objects,
5351 // and neither of them is a Smi. The objects are in r0 and r1.
5352 if (strict_) {
5353 // This returns non-equal for some object types, or falls through if it
5354 // was not lucky.
5355 EmitStrictTwoHeapObjectCompare(masm);
5356 }
5357
5358 Label check_for_symbols;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005359 Label flat_string_check;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005360 // Check for heap-number-heap-number comparison. Can jump to slow case,
5361 // or load both doubles into r0, r1, r2, r3 and jump to the code that handles
5362 // that case. If the inputs are not doubles then jumps to check_for_symbols.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005363 // In this case r2 will contain the type of r0. Never falls through.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005364 EmitCheckForTwoHeapNumbers(masm,
5365 &both_loaded_as_doubles,
5366 &check_for_symbols,
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005367 &flat_string_check);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005368
5369 __ bind(&check_for_symbols);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005370 // In the strict case the EmitStrictTwoHeapObjectCompare already took care of
5371 // symbols.
5372 if (cc_ == eq && !strict_) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005373 // Either jumps to slow or returns the answer. Assumes that r2 is the type
5374 // of r0 on entry.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005375 EmitCheckForSymbols(masm, &flat_string_check);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005376 }
5377
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005378 // Check for both being sequential ASCII strings, and inline if that is the
5379 // case.
5380 __ bind(&flat_string_check);
5381
5382 __ JumpIfNonSmisNotBothSequentialAsciiStrings(r0, r1, r2, r3, &slow);
5383
5384 __ IncrementCounter(&Counters::string_compare_native, 1, r2, r3);
5385 StringCompareStub::GenerateCompareFlatAsciiStrings(masm,
5386 r1,
5387 r0,
5388 r2,
5389 r3,
5390 r4,
5391 r5);
5392 // Never falls through to here.
5393
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005394 __ bind(&slow);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005395
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005396 __ push(r1);
5397 __ push(r0);
5398 // Figure out which native to call and setup the arguments.
5399 Builtins::JavaScript native;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005400 if (cc_ == eq) {
5401 native = strict_ ? Builtins::STRICT_EQUALS : Builtins::EQUALS;
5402 } else {
5403 native = Builtins::COMPARE;
5404 int ncr; // NaN compare result
5405 if (cc_ == lt || cc_ == le) {
5406 ncr = GREATER;
5407 } else {
5408 ASSERT(cc_ == gt || cc_ == ge); // remaining cases
5409 ncr = LESS;
5410 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005411 __ mov(r0, Operand(Smi::FromInt(ncr)));
5412 __ push(r0);
5413 }
5414
5415 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
5416 // tagged as a small integer.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00005417 __ InvokeBuiltin(native, JUMP_JS);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00005418}
5419
5420
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005421// We fall into this code if the operands were Smis, but the result was
5422// not (eg. overflow). We branch into this code (to the not_smi label) if
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005423// the operands were not both Smi. The operands are in r0 and r1. In order
5424// to call the C-implemented binary fp operation routines we need to end up
5425// with the double precision floating point operands in r0 and r1 (for the
5426// value in r1) and r2 and r3 (for the value in r0).
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005427static void HandleBinaryOpSlowCases(MacroAssembler* masm,
5428 Label* not_smi,
5429 const Builtins::JavaScript& builtin,
5430 Token::Value operation,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005431 OverwriteMode mode) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005432 Label slow, slow_pop_2_first, do_the_call;
5433 Label r0_is_smi, r1_is_smi, finished_loading_r0, finished_loading_r1;
5434 // Smi-smi case (overflow).
5435 // Since both are Smis there is no heap number to overwrite, so allocate.
5436 // The new heap number is in r5. r6 and r7 are scratch.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005437 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005438
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005439 // If we have floating point hardware, inline ADD, SUB, MUL, and DIV,
5440 // using registers d7 and d6 for the double values.
5441 bool use_fp_registers = CpuFeatures::IsSupported(VFP3) &&
5442 Token::MOD != operation;
5443 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005444 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005445 __ mov(r7, Operand(r0, ASR, kSmiTagSize));
5446 __ vmov(s15, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005447 __ vcvt_f64_s32(d7, s15);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005448 __ mov(r7, Operand(r1, ASR, kSmiTagSize));
5449 __ vmov(s13, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005450 __ vcvt_f64_s32(d6, s13);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005451 } else {
5452 // Write Smi from r0 to r3 and r2 in double format. r6 is scratch.
5453 __ mov(r7, Operand(r0));
5454 ConvertToDoubleStub stub1(r3, r2, r7, r6);
5455 __ push(lr);
5456 __ Call(stub1.GetCode(), RelocInfo::CODE_TARGET);
5457 // Write Smi from r1 to r1 and r0 in double format. r6 is scratch.
5458 __ mov(r7, Operand(r1));
5459 ConvertToDoubleStub stub2(r1, r0, r7, r6);
5460 __ Call(stub2.GetCode(), RelocInfo::CODE_TARGET);
5461 __ pop(lr);
5462 }
5463
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005464 __ jmp(&do_the_call); // Tail call. No return.
5465
5466 // We jump to here if something goes wrong (one param is not a number of any
5467 // sort or new-space allocation fails).
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005468 __ bind(&slow);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005469
5470 // Push arguments to the stack
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005471 __ push(r1);
5472 __ push(r0);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005473
5474 if (Token::ADD == operation) {
5475 // Test for string arguments before calling runtime.
5476 // r1 : first argument
5477 // r0 : second argument
5478 // sp[0] : second argument
ager@chromium.org5c838252010-02-19 08:53:10 +00005479 // sp[4] : first argument
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005480
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005481 Label not_strings, not_string1, string1, string1_smi2;
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005482 __ tst(r1, Operand(kSmiTagMask));
5483 __ b(eq, &not_string1);
5484 __ CompareObjectType(r1, r2, r2, FIRST_NONSTRING_TYPE);
5485 __ b(ge, &not_string1);
5486
5487 // First argument is a a string, test second.
5488 __ tst(r0, Operand(kSmiTagMask));
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005489 __ b(eq, &string1_smi2);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005490 __ CompareObjectType(r0, r2, r2, FIRST_NONSTRING_TYPE);
5491 __ b(ge, &string1);
5492
5493 // First and second argument are strings.
fschneider@chromium.org086aac62010-03-17 13:18:24 +00005494 StringAddStub string_add_stub(NO_STRING_CHECK_IN_STUB);
5495 __ TailCallStub(&string_add_stub);
5496
5497 __ bind(&string1_smi2);
5498 // First argument is a string, second is a smi. Try to lookup the number
5499 // string for the smi in the number string cache.
5500 NumberToStringStub::GenerateLookupNumberStringCache(
5501 masm, r0, r2, r4, r5, true, &string1);
5502
5503 // Replace second argument on stack and tailcall string add stub to make
5504 // the result.
5505 __ str(r2, MemOperand(sp, 0));
5506 __ TailCallStub(&string_add_stub);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005507
5508 // Only first argument is a string.
5509 __ bind(&string1);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005510 __ InvokeBuiltin(Builtins::STRING_ADD_LEFT, JUMP_JS);
5511
5512 // First argument was not a string, test second.
5513 __ bind(&not_string1);
5514 __ tst(r0, Operand(kSmiTagMask));
5515 __ b(eq, &not_strings);
5516 __ CompareObjectType(r0, r2, r2, FIRST_NONSTRING_TYPE);
5517 __ b(ge, &not_strings);
5518
5519 // Only second argument is a string.
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00005520 __ InvokeBuiltin(Builtins::STRING_ADD_RIGHT, JUMP_JS);
5521
5522 __ bind(&not_strings);
5523 }
5524
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005525 __ InvokeBuiltin(builtin, JUMP_JS); // Tail call. No return.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005526
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005527 // We branch here if at least one of r0 and r1 is not a Smi.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005528 __ bind(not_smi);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005529 if (mode == NO_OVERWRITE) {
5530 // In the case where there is no chance of an overwritable float we may as
5531 // well do the allocation immediately while r0 and r1 are untouched.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005532 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005533 }
5534
5535 // Move r0 to a double in r2-r3.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005536 __ tst(r0, Operand(kSmiTagMask));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005537 __ b(eq, &r0_is_smi); // It's a Smi so don't check it's a heap number.
5538 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005539 __ b(ne, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005540 if (mode == OVERWRITE_RIGHT) {
5541 __ mov(r5, Operand(r0)); // Overwrite this heap number.
5542 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005543 if (use_fp_registers) {
5544 CpuFeatures::Scope scope(VFP3);
5545 // Load the double from tagged HeapNumber r0 to d7.
5546 __ sub(r7, r0, Operand(kHeapObjectTag));
5547 __ vldr(d7, r7, HeapNumber::kValueOffset);
5548 } else {
5549 // Calling convention says that second double is in r2 and r3.
5550 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kValueOffset));
5551 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kValueOffset + 4));
5552 }
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005553 __ jmp(&finished_loading_r0);
5554 __ bind(&r0_is_smi);
5555 if (mode == OVERWRITE_RIGHT) {
5556 // We can't overwrite a Smi so get address of new heap number into r5.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005557 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005558 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005559
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005560 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005561 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005562 // Convert smi in r0 to double in d7.
5563 __ mov(r7, Operand(r0, ASR, kSmiTagSize));
5564 __ vmov(s15, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005565 __ vcvt_f64_s32(d7, s15);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005566 } else {
5567 // Write Smi from r0 to r3 and r2 in double format.
5568 __ mov(r7, Operand(r0));
5569 ConvertToDoubleStub stub3(r3, r2, r7, r6);
5570 __ push(lr);
5571 __ Call(stub3.GetCode(), RelocInfo::CODE_TARGET);
5572 __ pop(lr);
5573 }
5574
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005575 __ bind(&finished_loading_r0);
5576
5577 // Move r1 to a double in r0-r1.
5578 __ tst(r1, Operand(kSmiTagMask));
5579 __ b(eq, &r1_is_smi); // It's a Smi so don't check it's a heap number.
5580 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5581 __ b(ne, &slow);
5582 if (mode == OVERWRITE_LEFT) {
5583 __ mov(r5, Operand(r1)); // Overwrite this heap number.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00005584 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005585 if (use_fp_registers) {
5586 CpuFeatures::Scope scope(VFP3);
5587 // Load the double from tagged HeapNumber r1 to d6.
5588 __ sub(r7, r1, Operand(kHeapObjectTag));
5589 __ vldr(d6, r7, HeapNumber::kValueOffset);
5590 } else {
5591 // Calling convention says that first double is in r0 and r1.
5592 __ ldr(r0, FieldMemOperand(r1, HeapNumber::kValueOffset));
5593 __ ldr(r1, FieldMemOperand(r1, HeapNumber::kValueOffset + 4));
5594 }
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005595 __ jmp(&finished_loading_r1);
5596 __ bind(&r1_is_smi);
5597 if (mode == OVERWRITE_LEFT) {
5598 // We can't overwrite a Smi so get address of new heap number into r5.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005599 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005600 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005601
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005602 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005603 CpuFeatures::Scope scope(VFP3);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005604 // Convert smi in r1 to double in d6.
5605 __ mov(r7, Operand(r1, ASR, kSmiTagSize));
5606 __ vmov(s13, r7);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005607 __ vcvt_f64_s32(d6, s13);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005608 } else {
5609 // Write Smi from r1 to r1 and r0 in double format.
5610 __ mov(r7, Operand(r1));
5611 ConvertToDoubleStub stub4(r1, r0, r7, r6);
5612 __ push(lr);
5613 __ Call(stub4.GetCode(), RelocInfo::CODE_TARGET);
5614 __ pop(lr);
5615 }
5616
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005617 __ bind(&finished_loading_r1);
5618
5619 __ bind(&do_the_call);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005620 // If we are inlining the operation using VFP3 instructions for
5621 // add, subtract, multiply, or divide, the arguments are in d6 and d7.
5622 if (use_fp_registers) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005623 CpuFeatures::Scope scope(VFP3);
5624 // ARMv7 VFP3 instructions to implement
5625 // double precision, add, subtract, multiply, divide.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005626
5627 if (Token::MUL == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005628 __ vmul(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005629 } else if (Token::DIV == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005630 __ vdiv(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005631 } else if (Token::ADD == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005632 __ vadd(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005633 } else if (Token::SUB == operation) {
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005634 __ vsub(d5, d6, d7);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005635 } else {
5636 UNREACHABLE();
5637 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005638 __ sub(r0, r5, Operand(kHeapObjectTag));
5639 __ vstr(d5, r0, HeapNumber::kValueOffset);
5640 __ add(r0, r0, Operand(kHeapObjectTag));
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005641 __ mov(pc, lr);
5642 return;
5643 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00005644
5645 // If we did not inline the operation, then the arguments are in:
5646 // r0: Left value (least significant part of mantissa).
5647 // r1: Left value (sign, exponent, top of mantissa).
5648 // r2: Right value (least significant part of mantissa).
5649 // r3: Right value (sign, exponent, top of mantissa).
5650 // r5: Address of heap number for result.
5651
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005652 __ push(lr); // For later.
5653 __ push(r5); // Address of heap number that is answer.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005654 __ AlignStack(0);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005655 // Call C routine that may not cause GC or other trouble.
5656 __ mov(r5, Operand(ExternalReference::double_fp_operation(operation)));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005657 __ Call(r5);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00005658 __ pop(r4); // Address of heap number.
5659 __ cmp(r4, Operand(Smi::FromInt(0)));
5660 __ pop(r4, eq); // Conditional pop instruction to get rid of alignment push.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005661 // Store answer in the overwritable heap number.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005662#if !defined(USE_ARM_EABI)
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005663 // Double returned in fp coprocessor register 0 and 1, encoded as register
5664 // cr8. Offsets must be divisible by 4 for coprocessor so we need to
5665 // substract the tag from r4.
5666 __ sub(r5, r4, Operand(kHeapObjectTag));
5667 __ stc(p1, cr8, MemOperand(r5, HeapNumber::kValueOffset));
5668#else
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005669 // Double returned in registers 0 and 1.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005670 __ str(r0, FieldMemOperand(r4, HeapNumber::kValueOffset));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005671 __ str(r1, FieldMemOperand(r4, HeapNumber::kValueOffset + 4));
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00005672#endif
5673 __ mov(r0, Operand(r4));
5674 // And we are done.
5675 __ pop(pc);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005676}
5677
5678
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005679// Tries to get a signed int32 out of a double precision floating point heap
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005680// number. Rounds towards 0. Fastest for doubles that are in the ranges
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005681// -0x7fffffff to -0x40000000 or 0x40000000 to 0x7fffffff. This corresponds
5682// almost to the range of signed int32 values that are not Smis. Jumps to the
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005683// label 'slow' if the double isn't in the range -0x80000000.0 to 0x80000000.0
5684// (excluding the endpoints).
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005685static void GetInt32(MacroAssembler* masm,
5686 Register source,
5687 Register dest,
5688 Register scratch,
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005689 Register scratch2,
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005690 Label* slow) {
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005691 Label right_exponent, done;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005692 // Get exponent word.
5693 __ ldr(scratch, FieldMemOperand(source, HeapNumber::kExponentOffset));
5694 // Get exponent alone in scratch2.
5695 __ and_(scratch2, scratch, Operand(HeapNumber::kExponentMask));
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005696 // Load dest with zero. We use this either for the final shift or
5697 // for the answer.
5698 __ mov(dest, Operand(0));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005699 // Check whether the exponent matches a 32 bit signed int that is not a Smi.
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005700 // A non-Smi integer is 1.xxx * 2^30 so the exponent is 30 (biased). This is
5701 // the exponent that we are fastest at and also the highest exponent we can
5702 // handle here.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005703 const uint32_t non_smi_exponent =
5704 (HeapNumber::kExponentBias + 30) << HeapNumber::kExponentShift;
5705 __ cmp(scratch2, Operand(non_smi_exponent));
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005706 // If we have a match of the int32-but-not-Smi exponent then skip some logic.
5707 __ b(eq, &right_exponent);
5708 // If the exponent is higher than that then go to slow case. This catches
5709 // numbers that don't fit in a signed int32, infinities and NaNs.
5710 __ b(gt, slow);
5711
5712 // We know the exponent is smaller than 30 (biased). If it is less than
5713 // 0 (biased) then the number is smaller in magnitude than 1.0 * 2^0, ie
5714 // it rounds to zero.
5715 const uint32_t zero_exponent =
5716 (HeapNumber::kExponentBias + 0) << HeapNumber::kExponentShift;
5717 __ sub(scratch2, scratch2, Operand(zero_exponent), SetCC);
5718 // Dest already has a Smi zero.
5719 __ b(lt, &done);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005720 if (!CpuFeatures::IsSupported(VFP3)) {
5721 // We have a shifted exponent between 0 and 30 in scratch2.
5722 __ mov(dest, Operand(scratch2, LSR, HeapNumber::kExponentShift));
5723 // We now have the exponent in dest. Subtract from 30 to get
5724 // how much to shift down.
5725 __ rsb(dest, dest, Operand(30));
5726 }
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005727 __ bind(&right_exponent);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005728 if (CpuFeatures::IsSupported(VFP3)) {
5729 CpuFeatures::Scope scope(VFP3);
5730 // ARMv7 VFP3 instructions implementing double precision to integer
5731 // conversion using round to zero.
5732 __ ldr(scratch2, FieldMemOperand(source, HeapNumber::kMantissaOffset));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005733 __ vmov(d7, scratch2, scratch);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005734 __ vcvt_s32_f64(s15, d7);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005735 __ vmov(dest, s15);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005736 } else {
5737 // Get the top bits of the mantissa.
5738 __ and_(scratch2, scratch, Operand(HeapNumber::kMantissaMask));
5739 // Put back the implicit 1.
5740 __ orr(scratch2, scratch2, Operand(1 << HeapNumber::kExponentShift));
5741 // Shift up the mantissa bits to take up the space the exponent used to
5742 // take. We just orred in the implicit bit so that took care of one and
5743 // we want to leave the sign bit 0 so we subtract 2 bits from the shift
5744 // distance.
5745 const int shift_distance = HeapNumber::kNonMantissaBitsInTopWord - 2;
5746 __ mov(scratch2, Operand(scratch2, LSL, shift_distance));
5747 // Put sign in zero flag.
5748 __ tst(scratch, Operand(HeapNumber::kSignMask));
5749 // Get the second half of the double. For some exponents we don't
5750 // actually need this because the bits get shifted out again, but
5751 // it's probably slower to test than just to do it.
5752 __ ldr(scratch, FieldMemOperand(source, HeapNumber::kMantissaOffset));
5753 // Shift down 22 bits to get the last 10 bits.
5754 __ orr(scratch, scratch2, Operand(scratch, LSR, 32 - shift_distance));
5755 // Move down according to the exponent.
5756 __ mov(dest, Operand(scratch, LSR, dest));
5757 // Fix sign if sign bit was set.
5758 __ rsb(dest, dest, Operand(0), LeaveCC, ne);
5759 }
ager@chromium.org5aa501c2009-06-23 07:57:28 +00005760 __ bind(&done);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005761}
5762
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005763// For bitwise ops where the inputs are not both Smis we here try to determine
5764// whether both inputs are either Smis or at least heap numbers that can be
5765// represented by a 32 bit signed value. We truncate towards zero as required
5766// by the ES spec. If this is the case we do the bitwise op and see if the
5767// result is a Smi. If so, great, otherwise we try to find a heap number to
5768// write the answer into (either by allocating or by overwriting).
5769// On entry the operands are in r0 and r1. On exit the answer is in r0.
5770void GenericBinaryOpStub::HandleNonSmiBitwiseOp(MacroAssembler* masm) {
5771 Label slow, result_not_a_smi;
5772 Label r0_is_smi, r1_is_smi;
5773 Label done_checking_r0, done_checking_r1;
5774
5775 __ tst(r1, Operand(kSmiTagMask));
5776 __ b(eq, &r1_is_smi); // It's a Smi so don't check it's a heap number.
5777 __ CompareObjectType(r1, r4, r4, HEAP_NUMBER_TYPE);
5778 __ b(ne, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005779 GetInt32(masm, r1, r3, r5, r4, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005780 __ jmp(&done_checking_r1);
5781 __ bind(&r1_is_smi);
5782 __ mov(r3, Operand(r1, ASR, 1));
5783 __ bind(&done_checking_r1);
5784
5785 __ tst(r0, Operand(kSmiTagMask));
5786 __ b(eq, &r0_is_smi); // It's a Smi so don't check it's a heap number.
5787 __ CompareObjectType(r0, r4, r4, HEAP_NUMBER_TYPE);
5788 __ b(ne, &slow);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00005789 GetInt32(masm, r0, r2, r5, r4, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005790 __ jmp(&done_checking_r0);
5791 __ bind(&r0_is_smi);
5792 __ mov(r2, Operand(r0, ASR, 1));
5793 __ bind(&done_checking_r0);
5794
5795 // r0 and r1: Original operands (Smi or heap numbers).
5796 // r2 and r3: Signed int32 operands.
5797 switch (op_) {
5798 case Token::BIT_OR: __ orr(r2, r2, Operand(r3)); break;
5799 case Token::BIT_XOR: __ eor(r2, r2, Operand(r3)); break;
5800 case Token::BIT_AND: __ and_(r2, r2, Operand(r3)); break;
5801 case Token::SAR:
5802 // Use only the 5 least significant bits of the shift count.
5803 __ and_(r2, r2, Operand(0x1f));
5804 __ mov(r2, Operand(r3, ASR, r2));
5805 break;
5806 case Token::SHR:
5807 // Use only the 5 least significant bits of the shift count.
5808 __ and_(r2, r2, Operand(0x1f));
5809 __ mov(r2, Operand(r3, LSR, r2), SetCC);
5810 // SHR is special because it is required to produce a positive answer.
5811 // The code below for writing into heap numbers isn't capable of writing
5812 // the register as an unsigned int so we go to slow case if we hit this
5813 // case.
5814 __ b(mi, &slow);
5815 break;
5816 case Token::SHL:
5817 // Use only the 5 least significant bits of the shift count.
5818 __ and_(r2, r2, Operand(0x1f));
5819 __ mov(r2, Operand(r3, LSL, r2));
5820 break;
5821 default: UNREACHABLE();
5822 }
5823 // check that the *signed* result fits in a smi
5824 __ add(r3, r2, Operand(0x40000000), SetCC);
5825 __ b(mi, &result_not_a_smi);
5826 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
5827 __ Ret();
5828
5829 Label have_to_allocate, got_a_heap_number;
5830 __ bind(&result_not_a_smi);
5831 switch (mode_) {
5832 case OVERWRITE_RIGHT: {
5833 __ tst(r0, Operand(kSmiTagMask));
5834 __ b(eq, &have_to_allocate);
5835 __ mov(r5, Operand(r0));
5836 break;
5837 }
5838 case OVERWRITE_LEFT: {
5839 __ tst(r1, Operand(kSmiTagMask));
5840 __ b(eq, &have_to_allocate);
5841 __ mov(r5, Operand(r1));
5842 break;
5843 }
5844 case NO_OVERWRITE: {
5845 // Get a new heap number in r5. r6 and r7 are scratch.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005846 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005847 }
5848 default: break;
5849 }
5850 __ bind(&got_a_heap_number);
5851 // r2: Answer as signed int32.
5852 // r5: Heap number to write answer into.
5853
5854 // Nothing can go wrong now, so move the heap number to r0, which is the
5855 // result.
5856 __ mov(r0, Operand(r5));
5857
5858 // Tail call that writes the int32 in r2 to the heap number in r0, using
5859 // r3 as scratch. r0 is preserved and returned.
5860 WriteInt32ToHeapNumberStub stub(r2, r0, r3);
5861 __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET);
5862
5863 if (mode_ != NO_OVERWRITE) {
5864 __ bind(&have_to_allocate);
5865 // Get a new heap number in r5. r6 and r7 are scratch.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00005866 __ AllocateHeapNumber(r5, r6, r7, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005867 __ jmp(&got_a_heap_number);
5868 }
5869
5870 // If all else failed then we go to the runtime system.
5871 __ bind(&slow);
5872 __ push(r1); // restore stack
5873 __ push(r0);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00005874 switch (op_) {
5875 case Token::BIT_OR:
5876 __ InvokeBuiltin(Builtins::BIT_OR, JUMP_JS);
5877 break;
5878 case Token::BIT_AND:
5879 __ InvokeBuiltin(Builtins::BIT_AND, JUMP_JS);
5880 break;
5881 case Token::BIT_XOR:
5882 __ InvokeBuiltin(Builtins::BIT_XOR, JUMP_JS);
5883 break;
5884 case Token::SAR:
5885 __ InvokeBuiltin(Builtins::SAR, JUMP_JS);
5886 break;
5887 case Token::SHR:
5888 __ InvokeBuiltin(Builtins::SHR, JUMP_JS);
5889 break;
5890 case Token::SHL:
5891 __ InvokeBuiltin(Builtins::SHL, JUMP_JS);
5892 break;
5893 default:
5894 UNREACHABLE();
5895 }
5896}
5897
5898
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00005899// Can we multiply by x with max two shifts and an add.
5900// This answers yes to all integers from 2 to 10.
5901static bool IsEasyToMultiplyBy(int x) {
5902 if (x < 2) return false; // Avoid special cases.
5903 if (x > (Smi::kMaxValue + 1) >> 2) return false; // Almost always overflows.
5904 if (IsPowerOf2(x)) return true; // Simple shift.
5905 if (PopCountLessThanEqual2(x)) return true; // Shift and add and shift.
5906 if (IsPowerOf2(x + 1)) return true; // Patterns like 11111.
5907 return false;
5908}
5909
5910
5911// Can multiply by anything that IsEasyToMultiplyBy returns true for.
5912// Source and destination may be the same register. This routine does
5913// not set carry and overflow the way a mul instruction would.
5914static void MultiplyByKnownInt(MacroAssembler* masm,
5915 Register source,
5916 Register destination,
5917 int known_int) {
5918 if (IsPowerOf2(known_int)) {
5919 __ mov(destination, Operand(source, LSL, BitPosition(known_int)));
5920 } else if (PopCountLessThanEqual2(known_int)) {
5921 int first_bit = BitPosition(known_int);
5922 int second_bit = BitPosition(known_int ^ (1 << first_bit));
5923 __ add(destination, source, Operand(source, LSL, second_bit - first_bit));
5924 if (first_bit != 0) {
5925 __ mov(destination, Operand(destination, LSL, first_bit));
5926 }
5927 } else {
5928 ASSERT(IsPowerOf2(known_int + 1)); // Patterns like 1111.
5929 int the_bit = BitPosition(known_int + 1);
5930 __ rsb(destination, source, Operand(source, LSL, the_bit));
5931 }
5932}
5933
5934
5935// This function (as opposed to MultiplyByKnownInt) takes the known int in a
5936// a register for the cases where it doesn't know a good trick, and may deliver
5937// a result that needs shifting.
5938static void MultiplyByKnownInt2(
5939 MacroAssembler* masm,
5940 Register result,
5941 Register source,
5942 Register known_int_register, // Smi tagged.
5943 int known_int,
5944 int* required_shift) { // Including Smi tag shift
5945 switch (known_int) {
5946 case 3:
5947 __ add(result, source, Operand(source, LSL, 1));
5948 *required_shift = 1;
5949 break;
5950 case 5:
5951 __ add(result, source, Operand(source, LSL, 2));
5952 *required_shift = 1;
5953 break;
5954 case 6:
5955 __ add(result, source, Operand(source, LSL, 1));
5956 *required_shift = 2;
5957 break;
5958 case 7:
5959 __ rsb(result, source, Operand(source, LSL, 3));
5960 *required_shift = 1;
5961 break;
5962 case 9:
5963 __ add(result, source, Operand(source, LSL, 3));
5964 *required_shift = 1;
5965 break;
5966 case 10:
5967 __ add(result, source, Operand(source, LSL, 2));
5968 *required_shift = 2;
5969 break;
5970 default:
5971 ASSERT(!IsPowerOf2(known_int)); // That would be very inefficient.
5972 __ mul(result, source, known_int_register);
5973 *required_shift = 0;
5974 }
5975}
5976
5977
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00005978const char* GenericBinaryOpStub::GetName() {
5979 if (name_ != NULL) return name_;
5980 const int len = 100;
5981 name_ = Bootstrapper::AllocateAutoDeletedArray(len);
5982 if (name_ == NULL) return "OOM";
5983 const char* op_name = Token::Name(op_);
5984 const char* overwrite_name;
5985 switch (mode_) {
5986 case NO_OVERWRITE: overwrite_name = "Alloc"; break;
5987 case OVERWRITE_RIGHT: overwrite_name = "OverwriteRight"; break;
5988 case OVERWRITE_LEFT: overwrite_name = "OverwriteLeft"; break;
5989 default: overwrite_name = "UnknownOverwrite"; break;
5990 }
5991
5992 OS::SNPrintF(Vector<char>(name_, len),
5993 "GenericBinaryOpStub_%s_%s%s",
5994 op_name,
5995 overwrite_name,
5996 specialized_on_rhs_ ? "_ConstantRhs" : 0);
5997 return name_;
5998}
5999
6000
ager@chromium.org5c838252010-02-19 08:53:10 +00006001
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006002void GenericBinaryOpStub::Generate(MacroAssembler* masm) {
6003 // r1 : x
6004 // r0 : y
6005 // result : r0
6006
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006007 // All ops need to know whether we are dealing with two Smis. Set up r2 to
6008 // tell us that.
6009 __ orr(r2, r1, Operand(r0)); // r2 = x | y;
6010
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006011 switch (op_) {
6012 case Token::ADD: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006013 Label not_smi;
6014 // Fast path.
6015 ASSERT(kSmiTag == 0); // Adjust code below.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006016 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006017 __ b(ne, &not_smi);
6018 __ add(r0, r1, Operand(r0), SetCC); // Add y optimistically.
6019 // Return if no overflow.
6020 __ Ret(vc);
6021 __ sub(r0, r0, Operand(r1)); // Revert optimistic add.
6022
6023 HandleBinaryOpSlowCases(masm,
6024 &not_smi,
6025 Builtins::ADD,
6026 Token::ADD,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006027 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006028 break;
6029 }
6030
6031 case Token::SUB: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006032 Label not_smi;
6033 // Fast path.
6034 ASSERT(kSmiTag == 0); // Adjust code below.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006035 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006036 __ b(ne, &not_smi);
6037 __ sub(r0, r1, Operand(r0), SetCC); // Subtract y optimistically.
6038 // Return if no overflow.
6039 __ Ret(vc);
6040 __ sub(r0, r1, Operand(r0)); // Revert optimistic subtract.
6041
6042 HandleBinaryOpSlowCases(masm,
6043 &not_smi,
6044 Builtins::SUB,
6045 Token::SUB,
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006046 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006047 break;
6048 }
6049
6050 case Token::MUL: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006051 Label not_smi, slow;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006052 ASSERT(kSmiTag == 0); // adjust code below
6053 __ tst(r2, Operand(kSmiTagMask));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006054 __ b(ne, &not_smi);
6055 // Remove tag from one operand (but keep sign), so that result is Smi.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006056 __ mov(ip, Operand(r0, ASR, kSmiTagSize));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006057 // Do multiplication
6058 __ smull(r3, r2, r1, ip); // r3 = lower 32 bits of ip*r1.
6059 // Go slow on overflows (overflow bit is not set).
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006060 __ mov(ip, Operand(r3, ASR, 31));
6061 __ cmp(ip, Operand(r2)); // no overflow if higher 33 bits are identical
6062 __ b(ne, &slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006063 // Go slow on zero result to handle -0.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006064 __ tst(r3, Operand(r3));
6065 __ mov(r0, Operand(r3), LeaveCC, ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006066 __ Ret(ne);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006067 // We need -0 if we were multiplying a negative number with 0 to get 0.
6068 // We know one of them was zero.
6069 __ add(r2, r0, Operand(r1), SetCC);
6070 __ mov(r0, Operand(Smi::FromInt(0)), LeaveCC, pl);
6071 __ Ret(pl); // Return Smi 0 if the non-zero one was positive.
6072 // Slow case. We fall through here if we multiplied a negative number
6073 // with 0, because that would mean we should produce -0.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006074 __ bind(&slow);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006075
6076 HandleBinaryOpSlowCases(masm,
6077 &not_smi,
6078 Builtins::MUL,
6079 Token::MUL,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00006080 mode_);
6081 break;
6082 }
6083
6084 case Token::DIV:
6085 case Token::MOD: {
6086 Label not_smi;
6087 if (specialized_on_rhs_) {
6088 Label smi_is_unsuitable;
6089 __ BranchOnNotSmi(r1, &not_smi);
6090 if (IsPowerOf2(constant_rhs_)) {
6091 if (op_ == Token::MOD) {
6092 __ and_(r0,
6093 r1,
6094 Operand(0x80000000u | ((constant_rhs_ << kSmiTagSize) - 1)),
6095 SetCC);
6096 // We now have the answer, but if the input was negative we also
6097 // have the sign bit. Our work is done if the result is
6098 // positive or zero:
6099 __ Ret(pl);
6100 // A mod of a negative left hand side must return a negative number.
6101 // Unfortunately if the answer is 0 then we must return -0. And we
6102 // already optimistically trashed r0 so we may need to restore it.
6103 __ eor(r0, r0, Operand(0x80000000u), SetCC);
6104 // Next two instructions are conditional on the answer being -0.
6105 __ mov(r0, Operand(Smi::FromInt(constant_rhs_)), LeaveCC, eq);
6106 __ b(eq, &smi_is_unsuitable);
6107 // We need to subtract the dividend. Eg. -3 % 4 == -3.
6108 __ sub(r0, r0, Operand(Smi::FromInt(constant_rhs_)));
6109 } else {
6110 ASSERT(op_ == Token::DIV);
6111 __ tst(r1,
6112 Operand(0x80000000u | ((constant_rhs_ << kSmiTagSize) - 1)));
6113 __ b(ne, &smi_is_unsuitable); // Go slow on negative or remainder.
6114 int shift = 0;
6115 int d = constant_rhs_;
6116 while ((d & 1) == 0) {
6117 d >>= 1;
6118 shift++;
6119 }
6120 __ mov(r0, Operand(r1, LSR, shift));
6121 __ bic(r0, r0, Operand(kSmiTagMask));
6122 }
6123 } else {
6124 // Not a power of 2.
6125 __ tst(r1, Operand(0x80000000u));
6126 __ b(ne, &smi_is_unsuitable);
6127 // Find a fixed point reciprocal of the divisor so we can divide by
6128 // multiplying.
6129 double divisor = 1.0 / constant_rhs_;
6130 int shift = 32;
6131 double scale = 4294967296.0; // 1 << 32.
6132 uint32_t mul;
6133 // Maximise the precision of the fixed point reciprocal.
6134 while (true) {
6135 mul = static_cast<uint32_t>(scale * divisor);
6136 if (mul >= 0x7fffffff) break;
6137 scale *= 2.0;
6138 shift++;
6139 }
6140 mul++;
6141 __ mov(r2, Operand(mul));
6142 __ umull(r3, r2, r2, r1);
6143 __ mov(r2, Operand(r2, LSR, shift - 31));
6144 // r2 is r1 / rhs. r2 is not Smi tagged.
6145 // r0 is still the known rhs. r0 is Smi tagged.
6146 // r1 is still the unkown lhs. r1 is Smi tagged.
6147 int required_r4_shift = 0; // Including the Smi tag shift of 1.
6148 // r4 = r2 * r0.
6149 MultiplyByKnownInt2(masm,
6150 r4,
6151 r2,
6152 r0,
6153 constant_rhs_,
6154 &required_r4_shift);
6155 // r4 << required_r4_shift is now the Smi tagged rhs * (r1 / rhs).
6156 if (op_ == Token::DIV) {
6157 __ sub(r3, r1, Operand(r4, LSL, required_r4_shift), SetCC);
6158 __ b(ne, &smi_is_unsuitable); // There was a remainder.
6159 __ mov(r0, Operand(r2, LSL, kSmiTagSize));
6160 } else {
6161 ASSERT(op_ == Token::MOD);
6162 __ sub(r0, r1, Operand(r4, LSL, required_r4_shift));
6163 }
6164 }
6165 __ Ret();
6166 __ bind(&smi_is_unsuitable);
6167 } else {
6168 __ jmp(&not_smi);
6169 }
6170 HandleBinaryOpSlowCases(masm,
6171 &not_smi,
6172 op_ == Token::MOD ? Builtins::MOD : Builtins::DIV,
6173 op_,
6174 mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006175 break;
6176 }
6177
6178 case Token::BIT_OR:
6179 case Token::BIT_AND:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006180 case Token::BIT_XOR:
6181 case Token::SAR:
6182 case Token::SHR:
6183 case Token::SHL: {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006184 Label slow;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006185 ASSERT(kSmiTag == 0); // adjust code below
6186 __ tst(r2, Operand(kSmiTagMask));
6187 __ b(ne, &slow);
6188 switch (op_) {
6189 case Token::BIT_OR: __ orr(r0, r0, Operand(r1)); break;
6190 case Token::BIT_AND: __ and_(r0, r0, Operand(r1)); break;
6191 case Token::BIT_XOR: __ eor(r0, r0, Operand(r1)); break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006192 case Token::SAR:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006193 // Remove tags from right operand.
ager@chromium.org5c838252010-02-19 08:53:10 +00006194 __ GetLeastBitsFromSmi(r2, r0, 5);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006195 __ mov(r0, Operand(r1, ASR, r2));
6196 // Smi tag result.
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00006197 __ bic(r0, r0, Operand(kSmiTagMask));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006198 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006199 case Token::SHR:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006200 // Remove tags from operands. We can't do this on a 31 bit number
6201 // because then the 0s get shifted into bit 30 instead of bit 31.
6202 __ mov(r3, Operand(r1, ASR, kSmiTagSize)); // x
ager@chromium.org5c838252010-02-19 08:53:10 +00006203 __ GetLeastBitsFromSmi(r2, r0, 5);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006204 __ mov(r3, Operand(r3, LSR, r2));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006205 // Unsigned shift is not allowed to produce a negative number, so
6206 // check the sign bit and the sign bit after Smi tagging.
6207 __ tst(r3, Operand(0xc0000000));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006208 __ b(ne, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006209 // Smi tag result.
6210 __ mov(r0, Operand(r3, LSL, kSmiTagSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006211 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006212 case Token::SHL:
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006213 // Remove tags from operands.
6214 __ mov(r3, Operand(r1, ASR, kSmiTagSize)); // x
ager@chromium.org5c838252010-02-19 08:53:10 +00006215 __ GetLeastBitsFromSmi(r2, r0, 5);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006216 __ mov(r3, Operand(r3, LSL, r2));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006217 // Check that the signed result fits in a Smi.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006218 __ add(r2, r3, Operand(0x40000000), SetCC);
6219 __ b(mi, &slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006220 __ mov(r0, Operand(r3, LSL, kSmiTagSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006221 break;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006222 default: UNREACHABLE();
6223 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006224 __ Ret();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006225 __ bind(&slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006226 HandleNonSmiBitwiseOp(masm);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006227 break;
6228 }
6229
6230 default: UNREACHABLE();
6231 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006232 // This code should be unreachable.
6233 __ stop("Unreachable");
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006234}
6235
6236
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006237Handle<Code> GetBinaryOpStub(int key, BinaryOpIC::TypeInfo type_info) {
6238 return Handle<Code>::null();
6239}
6240
6241
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006242void StackCheckStub::Generate(MacroAssembler* masm) {
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00006243 // Do tail-call to runtime routine. Runtime routines expect at least one
6244 // argument, so give it a Smi.
6245 __ mov(r0, Operand(Smi::FromInt(0)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006246 __ push(r0);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006247 __ TailCallRuntime(Runtime::kStackGuard, 1, 1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006248
6249 __ StubReturn(1);
6250}
6251
6252
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00006253void GenericUnaryOpStub::Generate(MacroAssembler* masm) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006254 Label slow, done;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00006255
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006256 if (op_ == Token::SUB) {
6257 // Check whether the value is a smi.
6258 Label try_float;
6259 __ tst(r0, Operand(kSmiTagMask));
6260 __ b(ne, &try_float);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006261
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006262 // Go slow case if the value of the expression is zero
6263 // to make sure that we switch between 0 and -0.
6264 __ cmp(r0, Operand(0));
6265 __ b(eq, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006266
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006267 // The value of the expression is a smi that is not zero. Try
6268 // optimistic subtraction '0 - value'.
6269 __ rsb(r1, r0, Operand(0), SetCC);
6270 __ b(vs, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006271
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006272 __ mov(r0, Operand(r1)); // Set r0 to result.
6273 __ b(&done);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006274
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006275 __ bind(&try_float);
6276 __ CompareObjectType(r0, r1, r1, HEAP_NUMBER_TYPE);
6277 __ b(ne, &slow);
6278 // r0 is a heap number. Get a new heap number in r1.
6279 if (overwrite_) {
6280 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
6281 __ eor(r2, r2, Operand(HeapNumber::kSignMask)); // Flip sign.
6282 __ str(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
6283 } else {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00006284 __ AllocateHeapNumber(r1, r2, r3, &slow);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006285 __ ldr(r3, FieldMemOperand(r0, HeapNumber::kMantissaOffset));
6286 __ ldr(r2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
6287 __ str(r3, FieldMemOperand(r1, HeapNumber::kMantissaOffset));
6288 __ eor(r2, r2, Operand(HeapNumber::kSignMask)); // Flip sign.
6289 __ str(r2, FieldMemOperand(r1, HeapNumber::kExponentOffset));
6290 __ mov(r0, Operand(r1));
6291 }
6292 } else if (op_ == Token::BIT_NOT) {
6293 // Check if the operand is a heap number.
6294 __ CompareObjectType(r0, r1, r1, HEAP_NUMBER_TYPE);
6295 __ b(ne, &slow);
6296
6297 // Convert the heap number is r0 to an untagged integer in r1.
6298 GetInt32(masm, r0, r1, r2, r3, &slow);
6299
6300 // Do the bitwise operation (move negated) and check if the result
6301 // fits in a smi.
6302 Label try_float;
6303 __ mvn(r1, Operand(r1));
6304 __ add(r2, r1, Operand(0x40000000), SetCC);
6305 __ b(mi, &try_float);
6306 __ mov(r0, Operand(r1, LSL, kSmiTagSize));
6307 __ b(&done);
6308
6309 __ bind(&try_float);
6310 if (!overwrite_) {
6311 // Allocate a fresh heap number, but don't overwrite r0 until
6312 // we're sure we can do it without going through the slow case
6313 // that needs the value in r0.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00006314 __ AllocateHeapNumber(r2, r3, r4, &slow);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006315 __ mov(r0, Operand(r2));
6316 }
6317
6318 // WriteInt32ToHeapNumberStub does not trigger GC, so we do not
6319 // have to set up a frame.
6320 WriteInt32ToHeapNumberStub stub(r1, r0, r2);
6321 __ push(lr);
6322 __ Call(stub.GetCode(), RelocInfo::CODE_TARGET);
6323 __ pop(lr);
6324 } else {
6325 UNIMPLEMENTED();
6326 }
6327
6328 __ bind(&done);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006329 __ StubReturn(1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006330
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006331 // Handle the slow case by jumping to the JavaScript builtin.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006332 __ bind(&slow);
6333 __ push(r0);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006334 switch (op_) {
6335 case Token::SUB:
6336 __ InvokeBuiltin(Builtins::UNARY_MINUS, JUMP_JS);
6337 break;
6338 case Token::BIT_NOT:
6339 __ InvokeBuiltin(Builtins::BIT_NOT, JUMP_JS);
6340 break;
6341 default:
6342 UNREACHABLE();
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006343 }
ager@chromium.orga1645e22009-09-09 19:27:10 +00006344}
6345
6346
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006347void CEntryStub::GenerateThrowTOS(MacroAssembler* masm) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006348 // r0 holds the exception.
6349
6350 // Adjust this code if not the case.
6351 ASSERT(StackHandlerConstants::kSize == 4 * kPointerSize);
6352
6353 // Drop the sp to the top of the handler.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006354 __ mov(r3, Operand(ExternalReference(Top::k_handler_address)));
6355 __ ldr(sp, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006356
6357 // Restore the next handler and frame pointer, discard handler state.
6358 ASSERT(StackHandlerConstants::kNextOffset == 0);
6359 __ pop(r2);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006360 __ str(r2, MemOperand(r3));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006361 ASSERT(StackHandlerConstants::kFPOffset == 2 * kPointerSize);
6362 __ ldm(ia_w, sp, r3.bit() | fp.bit()); // r3: discarded state.
6363
6364 // Before returning we restore the context from the frame pointer if
6365 // not NULL. The frame pointer is NULL in the exception handler of a
6366 // JS entry frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006367 __ cmp(fp, Operand(0));
6368 // Set cp to NULL if fp is NULL.
6369 __ mov(cp, Operand(0), LeaveCC, eq);
6370 // Restore cp otherwise.
6371 __ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset), ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006372#ifdef DEBUG
6373 if (FLAG_debug_code) {
6374 __ mov(lr, Operand(pc));
6375 }
6376#endif
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006377 ASSERT(StackHandlerConstants::kPCOffset == 3 * kPointerSize);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006378 __ pop(pc);
6379}
6380
6381
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006382void CEntryStub::GenerateThrowUncatchable(MacroAssembler* masm,
6383 UncatchableExceptionType type) {
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006384 // Adjust this code if not the case.
6385 ASSERT(StackHandlerConstants::kSize == 4 * kPointerSize);
6386
6387 // Drop sp to the top stack handler.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006388 __ mov(r3, Operand(ExternalReference(Top::k_handler_address)));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006389 __ ldr(sp, MemOperand(r3));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006390
6391 // Unwind the handlers until the ENTRY handler is found.
6392 Label loop, done;
6393 __ bind(&loop);
6394 // Load the type of the current stack handler.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006395 const int kStateOffset = StackHandlerConstants::kStateOffset;
6396 __ ldr(r2, MemOperand(sp, kStateOffset));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006397 __ cmp(r2, Operand(StackHandler::ENTRY));
6398 __ b(eq, &done);
6399 // Fetch the next handler in the list.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006400 const int kNextOffset = StackHandlerConstants::kNextOffset;
6401 __ ldr(sp, MemOperand(sp, kNextOffset));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006402 __ jmp(&loop);
6403 __ bind(&done);
6404
6405 // Set the top handler address to next handler past the current ENTRY handler.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006406 ASSERT(StackHandlerConstants::kNextOffset == 0);
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006407 __ pop(r2);
6408 __ str(r2, MemOperand(r3));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006409
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006410 if (type == OUT_OF_MEMORY) {
6411 // Set external caught exception to false.
6412 ExternalReference external_caught(Top::k_external_caught_exception_address);
6413 __ mov(r0, Operand(false));
6414 __ mov(r2, Operand(external_caught));
6415 __ str(r0, MemOperand(r2));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006416
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006417 // Set pending exception and r0 to out of memory exception.
6418 Failure* out_of_memory = Failure::OutOfMemoryException();
6419 __ mov(r0, Operand(reinterpret_cast<int32_t>(out_of_memory)));
6420 __ mov(r2, Operand(ExternalReference(Top::k_pending_exception_address)));
6421 __ str(r0, MemOperand(r2));
6422 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006423
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006424 // Stack layout at this point. See also StackHandlerConstants.
6425 // sp -> state (ENTRY)
6426 // fp
6427 // lr
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006428
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006429 // Discard handler state (r2 is not used) and restore frame pointer.
6430 ASSERT(StackHandlerConstants::kFPOffset == 2 * kPointerSize);
6431 __ ldm(ia_w, sp, r2.bit() | fp.bit()); // r2: discarded state.
6432 // Before returning we restore the context from the frame pointer if
6433 // not NULL. The frame pointer is NULL in the exception handler of a
6434 // JS entry frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006435 __ cmp(fp, Operand(0));
6436 // Set cp to NULL if fp is NULL.
6437 __ mov(cp, Operand(0), LeaveCC, eq);
6438 // Restore cp otherwise.
6439 __ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset), ne);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006440#ifdef DEBUG
6441 if (FLAG_debug_code) {
6442 __ mov(lr, Operand(pc));
6443 }
6444#endif
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006445 ASSERT(StackHandlerConstants::kPCOffset == 3 * kPointerSize);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006446 __ pop(pc);
6447}
6448
6449
6450void CEntryStub::GenerateCore(MacroAssembler* masm,
6451 Label* throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006452 Label* throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006453 Label* throw_out_of_memory_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006454 bool do_gc,
6455 bool always_allocate) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006456 // r0: result parameter for PerformGC, if any
6457 // r4: number of arguments including receiver (C callee-saved)
6458 // r5: pointer to builtin function (C callee-saved)
6459 // r6: pointer to the first argument (C callee-saved)
6460
6461 if (do_gc) {
6462 // Passing r0.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006463 ExternalReference gc_reference = ExternalReference::perform_gc_function();
6464 __ Call(gc_reference.address(), RelocInfo::RUNTIME_ENTRY);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006465 }
6466
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006467 ExternalReference scope_depth =
6468 ExternalReference::heap_always_allocate_scope_depth();
6469 if (always_allocate) {
6470 __ mov(r0, Operand(scope_depth));
6471 __ ldr(r1, MemOperand(r0));
6472 __ add(r1, r1, Operand(1));
6473 __ str(r1, MemOperand(r0));
6474 }
6475
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006476 // Call C built-in.
6477 // r0 = argc, r1 = argv
6478 __ mov(r0, Operand(r4));
6479 __ mov(r1, Operand(r6));
6480
6481 // TODO(1242173): To let the GC traverse the return address of the exit
6482 // frames, we need to know where the return address is. Right now,
6483 // we push it on the stack to be able to find it again, but we never
6484 // restore from it in case of changes, which makes it impossible to
6485 // support moving the C entry code stub. This should be fixed, but currently
6486 // this is OK because the CEntryStub gets generated so early in the V8 boot
6487 // sequence that it is not moving ever.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00006488 masm->add(lr, pc, Operand(4)); // compute return address: (pc + 8) + 4
6489 masm->push(lr);
6490 masm->Jump(r5);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006491
6492 if (always_allocate) {
6493 // It's okay to clobber r2 and r3 here. Don't mess with r0 and r1
6494 // though (contain the result).
6495 __ mov(r2, Operand(scope_depth));
6496 __ ldr(r3, MemOperand(r2));
6497 __ sub(r3, r3, Operand(1));
6498 __ str(r3, MemOperand(r2));
6499 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006500
6501 // check for failure result
6502 Label failure_returned;
6503 ASSERT(((kFailureTag + 1) & kFailureTagMask) == 0);
6504 // Lower 2 bits of r2 are 0 iff r0 has failure tag.
6505 __ add(r2, r0, Operand(1));
6506 __ tst(r2, Operand(kFailureTagMask));
6507 __ b(eq, &failure_returned);
6508
6509 // Exit C frame and return.
6510 // r0:r1: result
6511 // sp: stack pointer
6512 // fp: frame pointer
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006513 __ LeaveExitFrame(mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006514
6515 // check if we should retry or throw exception
6516 Label retry;
6517 __ bind(&failure_returned);
6518 ASSERT(Failure::RETRY_AFTER_GC == 0);
6519 __ tst(r0, Operand(((1 << kFailureTypeTagSize) - 1) << kFailureTagSize));
6520 __ b(eq, &retry);
6521
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006522 // Special handling of out of memory exceptions.
6523 Failure* out_of_memory = Failure::OutOfMemoryException();
6524 __ cmp(r0, Operand(reinterpret_cast<int32_t>(out_of_memory)));
6525 __ b(eq, throw_out_of_memory_exception);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006526
6527 // Retrieve the pending exception and clear the variable.
ager@chromium.org32912102009-01-16 10:38:43 +00006528 __ mov(ip, Operand(ExternalReference::the_hole_value_location()));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006529 __ ldr(r3, MemOperand(ip));
ager@chromium.org32912102009-01-16 10:38:43 +00006530 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006531 __ ldr(r0, MemOperand(ip));
6532 __ str(r3, MemOperand(ip));
6533
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006534 // Special handling of termination exceptions which are uncatchable
6535 // by javascript code.
6536 __ cmp(r0, Operand(Factory::termination_exception()));
6537 __ b(eq, throw_termination_exception);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006538
6539 // Handle normal exception.
6540 __ jmp(throw_normal_exception);
6541
6542 __ bind(&retry); // pass last failure (r0) as parameter (r0) when retrying
6543}
6544
6545
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006546void CEntryStub::Generate(MacroAssembler* masm) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006547 // Called from JavaScript; parameters are on stack as if calling JS function
6548 // r0: number of arguments including receiver
6549 // r1: pointer to builtin function
6550 // fp: frame pointer (restored after C call)
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006551 // sp: stack pointer (restored as callee's sp after C call)
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006552 // cp: current context (C callee-saved)
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006553
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006554 // Result returned in r0 or r0+r1 by default.
6555
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006556 // NOTE: Invocations of builtins may return failure objects
6557 // instead of a proper result. The builtin entry handles
6558 // this by performing a garbage collection and retrying the
6559 // builtin once.
6560
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006561 // Enter the exit frame that transitions from JavaScript to C++.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006562 __ EnterExitFrame(mode_);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006563
6564 // r4: number of arguments (C callee-saved)
6565 // r5: pointer to builtin function (C callee-saved)
6566 // r6: pointer to first argument (C callee-saved)
6567
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006568 Label throw_normal_exception;
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006569 Label throw_termination_exception;
6570 Label throw_out_of_memory_exception;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006571
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00006572 // Call into the runtime system.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006573 GenerateCore(masm,
6574 &throw_normal_exception,
6575 &throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006576 &throw_out_of_memory_exception,
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00006577 false,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006578 false);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006579
6580 // Do space-specific GC and retry runtime call.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006581 GenerateCore(masm,
6582 &throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006583 &throw_termination_exception,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006584 &throw_out_of_memory_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006585 true,
6586 false);
6587
6588 // Do full GC and retry runtime call one final time.
6589 Failure* failure = Failure::InternalError();
6590 __ mov(r0, Operand(reinterpret_cast<int32_t>(failure)));
6591 GenerateCore(masm,
6592 &throw_normal_exception,
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006593 &throw_termination_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006594 &throw_out_of_memory_exception,
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006595 true,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006596 true);
6597
6598 __ bind(&throw_out_of_memory_exception);
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00006599 GenerateThrowUncatchable(masm, OUT_OF_MEMORY);
6600
6601 __ bind(&throw_termination_exception);
6602 GenerateThrowUncatchable(masm, TERMINATION);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006603
6604 __ bind(&throw_normal_exception);
6605 GenerateThrowTOS(masm);
6606}
6607
6608
6609void JSEntryStub::GenerateBody(MacroAssembler* masm, bool is_construct) {
6610 // r0: code entry
6611 // r1: function
6612 // r2: receiver
6613 // r3: argc
6614 // [sp+0]: argv
6615
6616 Label invoke, exit;
6617
6618 // Called from C, so do not pop argc and args on exit (preserve sp)
6619 // No need to save register-passed args
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006620 // Save callee-saved registers (incl. cp and fp), sp, and lr
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006621 __ stm(db_w, sp, kCalleeSaved | lr.bit());
6622
6623 // Get address of argv, see stm above.
6624 // r0: code entry
6625 // r1: function
6626 // r2: receiver
6627 // r3: argc
ager@chromium.org5c838252010-02-19 08:53:10 +00006628 __ ldr(r4, MemOperand(sp, (kNumCalleeSaved + 1) * kPointerSize)); // argv
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006629
6630 // Push a frame with special values setup to mark it as an entry frame.
6631 // r0: code entry
6632 // r1: function
6633 // r2: receiver
6634 // r3: argc
6635 // r4: argv
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006636 __ mov(r8, Operand(-1)); // Push a bad frame pointer to fail if it is used.
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006637 int marker = is_construct ? StackFrame::ENTRY_CONSTRUCT : StackFrame::ENTRY;
6638 __ mov(r7, Operand(Smi::FromInt(marker)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006639 __ mov(r6, Operand(Smi::FromInt(marker)));
6640 __ mov(r5, Operand(ExternalReference(Top::k_c_entry_fp_address)));
6641 __ ldr(r5, MemOperand(r5));
6642 __ stm(db_w, sp, r5.bit() | r6.bit() | r7.bit() | r8.bit());
6643
6644 // Setup frame pointer for the frame to be pushed.
6645 __ add(fp, sp, Operand(-EntryFrameConstants::kCallerFPOffset));
6646
6647 // Call a faked try-block that does the invoke.
6648 __ bl(&invoke);
6649
6650 // Caught exception: Store result (exception) in the pending
6651 // exception field in the JSEnv and return a failure sentinel.
6652 // Coming in here the fp will be invalid because the PushTryHandler below
6653 // sets it to 0 to signal the existence of the JSEntry frame.
ager@chromium.org32912102009-01-16 10:38:43 +00006654 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006655 __ str(r0, MemOperand(ip));
ager@chromium.org3bf7b912008-11-17 09:09:45 +00006656 __ mov(r0, Operand(reinterpret_cast<int32_t>(Failure::Exception())));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006657 __ b(&exit);
6658
6659 // Invoke: Link this frame into the handler chain.
6660 __ bind(&invoke);
6661 // Must preserve r0-r4, r5-r7 are available.
6662 __ PushTryHandler(IN_JS_ENTRY, JS_ENTRY_HANDLER);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006663 // If an exception not caught by another handler occurs, this handler
6664 // returns control to the code after the bl(&invoke) above, which
6665 // restores all kCalleeSaved registers (including cp and fp) to their
6666 // saved values before returning a failure to C.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006667
6668 // Clear any pending exceptions.
6669 __ mov(ip, Operand(ExternalReference::the_hole_value_location()));
6670 __ ldr(r5, MemOperand(ip));
ager@chromium.org32912102009-01-16 10:38:43 +00006671 __ mov(ip, Operand(ExternalReference(Top::k_pending_exception_address)));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006672 __ str(r5, MemOperand(ip));
6673
6674 // Invoke the function by calling through JS entry trampoline builtin.
6675 // Notice that we cannot store a reference to the trampoline code directly in
6676 // this stub, because runtime stubs are not traversed when doing GC.
6677
6678 // Expected registers by Builtins::JSEntryTrampoline
6679 // r0: code entry
6680 // r1: function
6681 // r2: receiver
6682 // r3: argc
6683 // r4: argv
6684 if (is_construct) {
6685 ExternalReference construct_entry(Builtins::JSConstructEntryTrampoline);
6686 __ mov(ip, Operand(construct_entry));
6687 } else {
6688 ExternalReference entry(Builtins::JSEntryTrampoline);
6689 __ mov(ip, Operand(entry));
6690 }
6691 __ ldr(ip, MemOperand(ip)); // deref address
6692
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006693 // Branch and link to JSEntryTrampoline. We don't use the double underscore
6694 // macro for the add instruction because we don't want the coverage tool
6695 // inserting instructions here after we read the pc.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006696 __ mov(lr, Operand(pc));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006697 masm->add(pc, ip, Operand(Code::kHeaderSize - kHeapObjectTag));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006698
6699 // Unlink this frame from the handler chain. When reading the
6700 // address of the next handler, there is no need to use the address
6701 // displacement since the current stack pointer (sp) points directly
6702 // to the stack handler.
6703 __ ldr(r3, MemOperand(sp, StackHandlerConstants::kNextOffset));
6704 __ mov(ip, Operand(ExternalReference(Top::k_handler_address)));
6705 __ str(r3, MemOperand(ip));
6706 // No need to restore registers
6707 __ add(sp, sp, Operand(StackHandlerConstants::kSize));
6708
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006709
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006710 __ bind(&exit); // r0 holds result
6711 // Restore the top frame descriptors from the stack.
6712 __ pop(r3);
6713 __ mov(ip, Operand(ExternalReference(Top::k_c_entry_fp_address)));
6714 __ str(r3, MemOperand(ip));
6715
6716 // Reset the stack to the callee saved registers.
6717 __ add(sp, sp, Operand(-EntryFrameConstants::kCallerFPOffset));
6718
6719 // Restore callee-saved registers and return.
6720#ifdef DEBUG
ager@chromium.org65dad4b2009-04-23 08:48:43 +00006721 if (FLAG_debug_code) {
6722 __ mov(lr, Operand(pc));
6723 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006724#endif
6725 __ ldm(ia_w, sp, kCalleeSaved | pc.bit());
6726}
6727
6728
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006729// This stub performs an instanceof, calling the builtin function if
6730// necessary. Uses r1 for the object, r0 for the function that it may
6731// be an instance of (these are fetched from the stack).
6732void InstanceofStub::Generate(MacroAssembler* masm) {
6733 // Get the object - slow case for smis (we may need to throw an exception
6734 // depending on the rhs).
6735 Label slow, loop, is_instance, is_not_instance;
6736 __ ldr(r0, MemOperand(sp, 1 * kPointerSize));
6737 __ BranchOnSmi(r0, &slow);
6738
6739 // Check that the left hand is a JS object and put map in r3.
6740 __ CompareObjectType(r0, r3, r2, FIRST_JS_OBJECT_TYPE);
6741 __ b(lt, &slow);
6742 __ cmp(r2, Operand(LAST_JS_OBJECT_TYPE));
6743 __ b(gt, &slow);
6744
6745 // Get the prototype of the function (r4 is result, r2 is scratch).
ager@chromium.org5c838252010-02-19 08:53:10 +00006746 __ ldr(r1, MemOperand(sp, 0));
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006747 __ TryGetFunctionPrototype(r1, r4, r2, &slow);
6748
6749 // Check that the function prototype is a JS object.
6750 __ BranchOnSmi(r4, &slow);
6751 __ CompareObjectType(r4, r5, r5, FIRST_JS_OBJECT_TYPE);
6752 __ b(lt, &slow);
6753 __ cmp(r5, Operand(LAST_JS_OBJECT_TYPE));
6754 __ b(gt, &slow);
6755
6756 // Register mapping: r3 is object map and r4 is function prototype.
6757 // Get prototype of object into r2.
6758 __ ldr(r2, FieldMemOperand(r3, Map::kPrototypeOffset));
6759
6760 // Loop through the prototype chain looking for the function prototype.
6761 __ bind(&loop);
6762 __ cmp(r2, Operand(r4));
6763 __ b(eq, &is_instance);
ager@chromium.orgab99eea2009-08-25 07:05:41 +00006764 __ LoadRoot(ip, Heap::kNullValueRootIndex);
6765 __ cmp(r2, ip);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006766 __ b(eq, &is_not_instance);
6767 __ ldr(r2, FieldMemOperand(r2, HeapObject::kMapOffset));
6768 __ ldr(r2, FieldMemOperand(r2, Map::kPrototypeOffset));
6769 __ jmp(&loop);
6770
6771 __ bind(&is_instance);
6772 __ mov(r0, Operand(Smi::FromInt(0)));
6773 __ pop();
6774 __ pop();
6775 __ mov(pc, Operand(lr)); // Return.
6776
6777 __ bind(&is_not_instance);
6778 __ mov(r0, Operand(Smi::FromInt(1)));
6779 __ pop();
6780 __ pop();
6781 __ mov(pc, Operand(lr)); // Return.
6782
6783 // Slow-case. Tail call builtin.
6784 __ bind(&slow);
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006785 __ InvokeBuiltin(Builtins::INSTANCE_OF, JUMP_JS);
6786}
6787
6788
ager@chromium.org7c537e22008-10-16 08:43:32 +00006789void ArgumentsAccessStub::GenerateReadLength(MacroAssembler* masm) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006790 // Check if the calling frame is an arguments adaptor frame.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006791 Label adaptor;
6792 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6793 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006794 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006795 __ b(eq, &adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006796
ager@chromium.org7c537e22008-10-16 08:43:32 +00006797 // Nothing to do: The formal number of parameters has already been
6798 // passed in register r0 by calling function. Just return it.
ager@chromium.org9085a012009-05-11 19:22:57 +00006799 __ Jump(lr);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006800
ager@chromium.org7c537e22008-10-16 08:43:32 +00006801 // Arguments adaptor case: Read the arguments length from the
6802 // adaptor frame and return it.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006803 __ bind(&adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006804 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
ager@chromium.org9085a012009-05-11 19:22:57 +00006805 __ Jump(lr);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006806}
6807
6808
ager@chromium.org7c537e22008-10-16 08:43:32 +00006809void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) {
6810 // The displacement is the offset of the last parameter (if any)
6811 // relative to the frame pointer.
6812 static const int kDisplacement =
6813 StandardFrameConstants::kCallerSPOffset - kPointerSize;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006814
ager@chromium.org7c537e22008-10-16 08:43:32 +00006815 // Check that the key is a smi.
6816 Label slow;
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006817 __ BranchOnNotSmi(r1, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006818
ager@chromium.org7c537e22008-10-16 08:43:32 +00006819 // Check if the calling frame is an arguments adaptor frame.
6820 Label adaptor;
6821 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6822 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006823 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006824 __ b(eq, &adaptor);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006825
ager@chromium.org7c537e22008-10-16 08:43:32 +00006826 // Check index against formal parameters count limit passed in
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00006827 // through register r0. Use unsigned comparison to get negative
ager@chromium.org7c537e22008-10-16 08:43:32 +00006828 // check for free.
6829 __ cmp(r1, r0);
6830 __ b(cs, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006831
ager@chromium.org7c537e22008-10-16 08:43:32 +00006832 // Read the argument from the stack and return it.
6833 __ sub(r3, r0, r1);
6834 __ add(r3, fp, Operand(r3, LSL, kPointerSizeLog2 - kSmiTagSize));
6835 __ ldr(r0, MemOperand(r3, kDisplacement));
ager@chromium.org9085a012009-05-11 19:22:57 +00006836 __ Jump(lr);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006837
6838 // Arguments adaptor case: Check index against actual arguments
6839 // limit found in the arguments adaptor frame. Use unsigned
6840 // comparison to get negative check for free.
6841 __ bind(&adaptor);
6842 __ ldr(r0, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
6843 __ cmp(r1, r0);
6844 __ b(cs, &slow);
6845
6846 // Read the argument from the adaptor frame and return it.
6847 __ sub(r3, r0, r1);
6848 __ add(r3, r2, 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 // Slow-case: Handle non-smi or out-of-bounds access to arguments
6853 // by calling the runtime system.
6854 __ bind(&slow);
6855 __ push(r1);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006856 __ TailCallRuntime(Runtime::kGetArgumentsProperty, 1, 1);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006857}
6858
6859
6860void ArgumentsAccessStub::GenerateNewObject(MacroAssembler* masm) {
ager@chromium.org5c838252010-02-19 08:53:10 +00006861 // sp[0] : number of parameters
6862 // sp[4] : receiver displacement
6863 // sp[8] : function
6864
ager@chromium.org7c537e22008-10-16 08:43:32 +00006865 // Check if the calling frame is an arguments adaptor frame.
ager@chromium.org5c838252010-02-19 08:53:10 +00006866 Label adaptor_frame, try_allocate, runtime;
ager@chromium.org7c537e22008-10-16 08:43:32 +00006867 __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
6868 __ ldr(r3, MemOperand(r2, StandardFrameConstants::kContextOffset));
ager@chromium.org18ad94b2009-09-02 08:22:29 +00006869 __ cmp(r3, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
ager@chromium.org5c838252010-02-19 08:53:10 +00006870 __ b(eq, &adaptor_frame);
6871
6872 // Get the length from the frame.
6873 __ ldr(r1, MemOperand(sp, 0));
6874 __ b(&try_allocate);
ager@chromium.org7c537e22008-10-16 08:43:32 +00006875
6876 // Patch the arguments.length and the parameters pointer.
ager@chromium.org5c838252010-02-19 08:53:10 +00006877 __ bind(&adaptor_frame);
6878 __ ldr(r1, MemOperand(r2, ArgumentsAdaptorFrameConstants::kLengthOffset));
6879 __ str(r1, MemOperand(sp, 0));
6880 __ add(r3, r2, Operand(r1, LSL, kPointerSizeLog2 - kSmiTagSize));
ager@chromium.org7c537e22008-10-16 08:43:32 +00006881 __ add(r3, r3, Operand(StandardFrameConstants::kCallerSPOffset));
6882 __ str(r3, MemOperand(sp, 1 * kPointerSize));
6883
ager@chromium.org5c838252010-02-19 08:53:10 +00006884 // Try the new space allocation. Start out with computing the size
6885 // of the arguments object and the elements array (in words, not
6886 // bytes because AllocateInNewSpace expects words).
6887 Label add_arguments_object;
6888 __ bind(&try_allocate);
6889 __ cmp(r1, Operand(0));
6890 __ b(eq, &add_arguments_object);
6891 __ mov(r1, Operand(r1, LSR, kSmiTagSize));
6892 __ add(r1, r1, Operand(FixedArray::kHeaderSize / kPointerSize));
6893 __ bind(&add_arguments_object);
6894 __ add(r1, r1, Operand(Heap::kArgumentsObjectSize / kPointerSize));
6895
6896 // Do the allocation of both objects in one go.
6897 __ AllocateInNewSpace(r1, r0, r2, r3, &runtime, TAG_OBJECT);
6898
6899 // Get the arguments boilerplate from the current (global) context.
6900 int offset = Context::SlotOffset(Context::ARGUMENTS_BOILERPLATE_INDEX);
6901 __ ldr(r4, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX)));
6902 __ ldr(r4, FieldMemOperand(r4, GlobalObject::kGlobalContextOffset));
6903 __ ldr(r4, MemOperand(r4, offset));
6904
6905 // Copy the JS object part.
6906 for (int i = 0; i < JSObject::kHeaderSize; i += kPointerSize) {
6907 __ ldr(r3, FieldMemOperand(r4, i));
6908 __ str(r3, FieldMemOperand(r0, i));
6909 }
6910
6911 // Setup the callee in-object property.
6912 ASSERT(Heap::arguments_callee_index == 0);
6913 __ ldr(r3, MemOperand(sp, 2 * kPointerSize));
6914 __ str(r3, FieldMemOperand(r0, JSObject::kHeaderSize));
6915
6916 // Get the length (smi tagged) and set that as an in-object property too.
6917 ASSERT(Heap::arguments_length_index == 1);
6918 __ ldr(r1, MemOperand(sp, 0 * kPointerSize));
6919 __ str(r1, FieldMemOperand(r0, JSObject::kHeaderSize + kPointerSize));
6920
6921 // If there are no actual arguments, we're done.
6922 Label done;
6923 __ cmp(r1, Operand(0));
6924 __ b(eq, &done);
6925
6926 // Get the parameters pointer from the stack and untag the length.
6927 __ ldr(r2, MemOperand(sp, 1 * kPointerSize));
6928 __ mov(r1, Operand(r1, LSR, kSmiTagSize));
6929
6930 // Setup the elements pointer in the allocated arguments object and
6931 // initialize the header in the elements fixed array.
6932 __ add(r4, r0, Operand(Heap::kArgumentsObjectSize));
6933 __ str(r4, FieldMemOperand(r0, JSObject::kElementsOffset));
6934 __ LoadRoot(r3, Heap::kFixedArrayMapRootIndex);
6935 __ str(r3, FieldMemOperand(r4, FixedArray::kMapOffset));
6936 __ str(r1, FieldMemOperand(r4, FixedArray::kLengthOffset));
6937
6938 // Copy the fixed array slots.
6939 Label loop;
6940 // Setup r4 to point to the first array slot.
6941 __ add(r4, r4, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
6942 __ bind(&loop);
6943 // Pre-decrement r2 with kPointerSize on each iteration.
6944 // Pre-decrement in order to skip receiver.
6945 __ ldr(r3, MemOperand(r2, kPointerSize, NegPreIndex));
6946 // Post-increment r4 with kPointerSize on each iteration.
6947 __ str(r3, MemOperand(r4, kPointerSize, PostIndex));
6948 __ sub(r1, r1, Operand(1));
6949 __ cmp(r1, Operand(0));
6950 __ b(ne, &loop);
6951
6952 // Return and remove the on-stack parameters.
6953 __ bind(&done);
6954 __ add(sp, sp, Operand(3 * kPointerSize));
6955 __ Ret();
6956
ager@chromium.org7c537e22008-10-16 08:43:32 +00006957 // Do the runtime call to allocate the arguments object.
6958 __ bind(&runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00006959 __ TailCallRuntime(Runtime::kNewArgumentsFast, 3, 1);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006960}
6961
6962
6963void CallFunctionStub::Generate(MacroAssembler* masm) {
6964 Label slow;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00006965
6966 // If the receiver might be a value (string, number or boolean) check for this
6967 // and box it if it is.
6968 if (ReceiverMightBeValue()) {
6969 // Get the receiver from the stack.
6970 // function, receiver [, arguments]
6971 Label receiver_is_value, receiver_is_js_object;
6972 __ ldr(r1, MemOperand(sp, argc_ * kPointerSize));
6973
6974 // Check if receiver is a smi (which is a number value).
6975 __ BranchOnSmi(r1, &receiver_is_value);
6976
6977 // Check if the receiver is a valid JS object.
6978 __ CompareObjectType(r1, r2, r2, FIRST_JS_OBJECT_TYPE);
6979 __ b(ge, &receiver_is_js_object);
6980
6981 // Call the runtime to box the value.
6982 __ bind(&receiver_is_value);
6983 __ EnterInternalFrame();
6984 __ push(r1);
6985 __ InvokeBuiltin(Builtins::TO_OBJECT, CALL_JS);
6986 __ LeaveInternalFrame();
6987 __ str(r0, MemOperand(sp, argc_ * kPointerSize));
6988
6989 __ bind(&receiver_is_js_object);
6990 }
6991
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006992 // Get the function to call from the stack.
6993 // function, receiver [, arguments]
6994 __ ldr(r1, MemOperand(sp, (argc_ + 1) * kPointerSize));
6995
6996 // Check that the function is really a JavaScript function.
6997 // r1: pushed function (to be verified)
ager@chromium.orgeadaf222009-06-16 09:43:10 +00006998 __ BranchOnSmi(r1, &slow);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00006999 // Get the map of the function object.
ager@chromium.orgeadaf222009-06-16 09:43:10 +00007000 __ CompareObjectType(r1, r2, r2, JS_FUNCTION_TYPE);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007001 __ b(ne, &slow);
7002
7003 // Fast-case: Invoke the function now.
7004 // r1: pushed function
7005 ParameterCount actual(argc_);
7006 __ InvokeFunction(r1, actual, JUMP_FUNCTION);
7007
7008 // Slow-case: Non-function called.
7009 __ bind(&slow);
ager@chromium.org5c838252010-02-19 08:53:10 +00007010 // CALL_NON_FUNCTION expects the non-function callee as receiver (instead
7011 // of the original receiver from the call site).
7012 __ str(r1, MemOperand(sp, argc_ * kPointerSize));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007013 __ mov(r0, Operand(argc_)); // Setup the number of arguments.
ager@chromium.org3bf7b912008-11-17 09:09:45 +00007014 __ mov(r2, Operand(0));
7015 __ GetBuiltinEntry(r3, Builtins::CALL_NON_FUNCTION);
7016 __ Jump(Handle<Code>(Builtins::builtin(Builtins::ArgumentsAdaptorTrampoline)),
7017 RelocInfo::CODE_TARGET);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007018}
7019
7020
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00007021// Unfortunately you have to run without snapshots to see most of these
7022// names in the profile since most compare stubs end up in the snapshot.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007023const char* CompareStub::GetName() {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00007024 if (name_ != NULL) return name_;
7025 const int kMaxNameLength = 100;
7026 name_ = Bootstrapper::AllocateAutoDeletedArray(kMaxNameLength);
7027 if (name_ == NULL) return "OOM";
7028
7029 const char* cc_name;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007030 switch (cc_) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00007031 case lt: cc_name = "LT"; break;
7032 case gt: cc_name = "GT"; break;
7033 case le: cc_name = "LE"; break;
7034 case ge: cc_name = "GE"; break;
7035 case eq: cc_name = "EQ"; break;
7036 case ne: cc_name = "NE"; break;
7037 default: cc_name = "UnknownCondition"; break;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007038 }
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00007039
7040 const char* strict_name = "";
7041 if (strict_ && (cc_ == eq || cc_ == ne)) {
7042 strict_name = "_STRICT";
7043 }
7044
7045 const char* never_nan_nan_name = "";
7046 if (never_nan_nan_ && (cc_ == eq || cc_ == ne)) {
7047 never_nan_nan_name = "_NO_NAN";
7048 }
7049
7050 const char* include_number_compare_name = "";
7051 if (!include_number_compare_) {
7052 include_number_compare_name = "_NO_NUMBER";
7053 }
7054
7055 OS::SNPrintF(Vector<char>(name_, kMaxNameLength),
7056 "CompareStub_%s%s%s%s",
7057 cc_name,
7058 strict_name,
7059 never_nan_nan_name,
7060 include_number_compare_name);
7061 return name_;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00007062}
7063
7064
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00007065int CompareStub::MinorKey() {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00007066 // Encode the three parameters in a unique 16 bit value. To avoid duplicate
7067 // stubs the never NaN NaN condition is only taken into account if the
7068 // condition is equals.
7069 ASSERT((static_cast<unsigned>(cc_) >> 28) < (1 << 13));
7070 return ConditionField::encode(static_cast<unsigned>(cc_) >> 28)
7071 | StrictField::encode(strict_)
7072 | NeverNanNanField::encode(cc_ == eq ? never_nan_nan_ : false)
7073 | IncludeNumberCompareField::encode(include_number_compare_);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00007074}
7075
7076
ager@chromium.org5c838252010-02-19 08:53:10 +00007077void StringStubBase::GenerateCopyCharacters(MacroAssembler* masm,
7078 Register dest,
7079 Register src,
7080 Register count,
7081 Register scratch,
7082 bool ascii) {
7083 Label loop;
7084 Label done;
7085 // This loop just copies one character at a time, as it is only used for very
7086 // short strings.
7087 if (!ascii) {
7088 __ add(count, count, Operand(count), SetCC);
7089 } else {
7090 __ cmp(count, Operand(0));
7091 }
7092 __ b(eq, &done);
7093
7094 __ bind(&loop);
7095 __ ldrb(scratch, MemOperand(src, 1, PostIndex));
7096 // Perform sub between load and dependent store to get the load time to
7097 // complete.
7098 __ sub(count, count, Operand(1), SetCC);
7099 __ strb(scratch, MemOperand(dest, 1, PostIndex));
7100 // last iteration.
7101 __ b(gt, &loop);
7102
7103 __ bind(&done);
7104}
7105
7106
7107enum CopyCharactersFlags {
7108 COPY_ASCII = 1,
7109 DEST_ALWAYS_ALIGNED = 2
7110};
7111
7112
7113void StringStubBase::GenerateCopyCharactersLong(MacroAssembler* masm,
7114 Register dest,
7115 Register src,
7116 Register count,
7117 Register scratch1,
7118 Register scratch2,
7119 Register scratch3,
7120 Register scratch4,
7121 Register scratch5,
7122 int flags) {
7123 bool ascii = (flags & COPY_ASCII) != 0;
7124 bool dest_always_aligned = (flags & DEST_ALWAYS_ALIGNED) != 0;
7125
7126 if (dest_always_aligned && FLAG_debug_code) {
7127 // Check that destination is actually word aligned if the flag says
7128 // that it is.
7129 __ tst(dest, Operand(kPointerAlignmentMask));
7130 __ Check(eq, "Destination of copy not aligned.");
7131 }
7132
7133 const int kReadAlignment = 4;
7134 const int kReadAlignmentMask = kReadAlignment - 1;
7135 // Ensure that reading an entire aligned word containing the last character
7136 // of a string will not read outside the allocated area (because we pad up
7137 // to kObjectAlignment).
7138 ASSERT(kObjectAlignment >= kReadAlignment);
7139 // Assumes word reads and writes are little endian.
7140 // Nothing to do for zero characters.
7141 Label done;
7142 if (!ascii) {
7143 __ add(count, count, Operand(count), SetCC);
7144 } else {
7145 __ cmp(count, Operand(0));
7146 }
7147 __ b(eq, &done);
7148
7149 // Assume that you cannot read (or write) unaligned.
7150 Label byte_loop;
7151 // Must copy at least eight bytes, otherwise just do it one byte at a time.
7152 __ cmp(count, Operand(8));
7153 __ add(count, dest, Operand(count));
7154 Register limit = count; // Read until src equals this.
7155 __ b(lt, &byte_loop);
7156
7157 if (!dest_always_aligned) {
7158 // Align dest by byte copying. Copies between zero and three bytes.
7159 __ and_(scratch4, dest, Operand(kReadAlignmentMask), SetCC);
7160 Label dest_aligned;
7161 __ b(eq, &dest_aligned);
7162 __ cmp(scratch4, Operand(2));
7163 __ ldrb(scratch1, MemOperand(src, 1, PostIndex));
7164 __ ldrb(scratch2, MemOperand(src, 1, PostIndex), le);
7165 __ ldrb(scratch3, MemOperand(src, 1, PostIndex), lt);
7166 __ strb(scratch1, MemOperand(dest, 1, PostIndex));
7167 __ strb(scratch2, MemOperand(dest, 1, PostIndex), le);
7168 __ strb(scratch3, MemOperand(dest, 1, PostIndex), lt);
7169 __ bind(&dest_aligned);
7170 }
7171
7172 Label simple_loop;
7173
7174 __ sub(scratch4, dest, Operand(src));
7175 __ and_(scratch4, scratch4, Operand(0x03), SetCC);
7176 __ b(eq, &simple_loop);
7177 // Shift register is number of bits in a source word that
7178 // must be combined with bits in the next source word in order
7179 // to create a destination word.
7180
7181 // Complex loop for src/dst that are not aligned the same way.
7182 {
7183 Label loop;
7184 __ mov(scratch4, Operand(scratch4, LSL, 3));
7185 Register left_shift = scratch4;
7186 __ and_(src, src, Operand(~3)); // Round down to load previous word.
7187 __ ldr(scratch1, MemOperand(src, 4, PostIndex));
7188 // Store the "shift" most significant bits of scratch in the least
7189 // signficant bits (i.e., shift down by (32-shift)).
7190 __ rsb(scratch2, left_shift, Operand(32));
7191 Register right_shift = scratch2;
7192 __ mov(scratch1, Operand(scratch1, LSR, right_shift));
7193
7194 __ bind(&loop);
7195 __ ldr(scratch3, MemOperand(src, 4, PostIndex));
7196 __ sub(scratch5, limit, Operand(dest));
7197 __ orr(scratch1, scratch1, Operand(scratch3, LSL, left_shift));
7198 __ str(scratch1, MemOperand(dest, 4, PostIndex));
7199 __ mov(scratch1, Operand(scratch3, LSR, right_shift));
7200 // Loop if four or more bytes left to copy.
7201 // Compare to eight, because we did the subtract before increasing dst.
7202 __ sub(scratch5, scratch5, Operand(8), SetCC);
7203 __ b(ge, &loop);
7204 }
7205 // There is now between zero and three bytes left to copy (negative that
7206 // number is in scratch5), and between one and three bytes already read into
7207 // scratch1 (eight times that number in scratch4). We may have read past
7208 // the end of the string, but because objects are aligned, we have not read
7209 // past the end of the object.
7210 // Find the minimum of remaining characters to move and preloaded characters
7211 // and write those as bytes.
7212 __ add(scratch5, scratch5, Operand(4), SetCC);
7213 __ b(eq, &done);
7214 __ cmp(scratch4, Operand(scratch5, LSL, 3), ne);
7215 // Move minimum of bytes read and bytes left to copy to scratch4.
7216 __ mov(scratch5, Operand(scratch4, LSR, 3), LeaveCC, lt);
7217 // Between one and three (value in scratch5) characters already read into
7218 // scratch ready to write.
7219 __ cmp(scratch5, Operand(2));
7220 __ strb(scratch1, MemOperand(dest, 1, PostIndex));
7221 __ mov(scratch1, Operand(scratch1, LSR, 8), LeaveCC, ge);
7222 __ strb(scratch1, MemOperand(dest, 1, PostIndex), ge);
7223 __ mov(scratch1, Operand(scratch1, LSR, 8), LeaveCC, gt);
7224 __ strb(scratch1, MemOperand(dest, 1, PostIndex), gt);
7225 // Copy any remaining bytes.
7226 __ b(&byte_loop);
7227
7228 // Simple loop.
7229 // Copy words from src to dst, until less than four bytes left.
7230 // Both src and dest are word aligned.
7231 __ bind(&simple_loop);
7232 {
7233 Label loop;
7234 __ bind(&loop);
7235 __ ldr(scratch1, MemOperand(src, 4, PostIndex));
7236 __ sub(scratch3, limit, Operand(dest));
7237 __ str(scratch1, MemOperand(dest, 4, PostIndex));
7238 // Compare to 8, not 4, because we do the substraction before increasing
7239 // dest.
7240 __ cmp(scratch3, Operand(8));
7241 __ b(ge, &loop);
7242 }
7243
7244 // Copy bytes from src to dst until dst hits limit.
7245 __ bind(&byte_loop);
7246 __ cmp(dest, Operand(limit));
7247 __ ldrb(scratch1, MemOperand(src, 1, PostIndex), lt);
7248 __ b(ge, &done);
7249 __ strb(scratch1, MemOperand(dest, 1, PostIndex));
7250 __ b(&byte_loop);
7251
7252 __ bind(&done);
7253}
7254
7255
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007256void StringStubBase::GenerateTwoCharacterSymbolTableProbe(MacroAssembler* masm,
7257 Register c1,
7258 Register c2,
7259 Register scratch1,
7260 Register scratch2,
7261 Register scratch3,
7262 Register scratch4,
7263 Register scratch5,
7264 Label* not_found) {
7265 // Register scratch3 is the general scratch register in this function.
7266 Register scratch = scratch3;
7267
7268 // Make sure that both characters are not digits as such strings has a
7269 // different hash algorithm. Don't try to look for these in the symbol table.
7270 Label not_array_index;
7271 __ sub(scratch, c1, Operand(static_cast<int>('0')));
7272 __ cmp(scratch, Operand(static_cast<int>('9' - '0')));
7273 __ b(hi, &not_array_index);
7274 __ sub(scratch, c2, Operand(static_cast<int>('0')));
7275 __ cmp(scratch, Operand(static_cast<int>('9' - '0')));
7276
7277 // If check failed combine both characters into single halfword.
7278 // This is required by the contract of the method: code at the
7279 // not_found branch expects this combination in c1 register
7280 __ orr(c1, c1, Operand(c2, LSL, kBitsPerByte), LeaveCC, ls);
7281 __ b(ls, not_found);
7282
7283 __ bind(&not_array_index);
7284 // Calculate the two character string hash.
7285 Register hash = scratch1;
7286 GenerateHashInit(masm, hash, c1);
7287 GenerateHashAddCharacter(masm, hash, c2);
7288 GenerateHashGetHash(masm, hash);
7289
7290 // Collect the two characters in a register.
7291 Register chars = c1;
7292 __ orr(chars, chars, Operand(c2, LSL, kBitsPerByte));
7293
7294 // chars: two character string, char 1 in byte 0 and char 2 in byte 1.
7295 // hash: hash of two character string.
7296
7297 // Load symbol table
7298 // Load address of first element of the symbol table.
7299 Register symbol_table = c2;
7300 __ LoadRoot(symbol_table, Heap::kSymbolTableRootIndex);
7301
7302 // Load undefined value
7303 Register undefined = scratch4;
7304 __ LoadRoot(undefined, Heap::kUndefinedValueRootIndex);
7305
7306 // Calculate capacity mask from the symbol table capacity.
7307 Register mask = scratch2;
7308 __ ldr(mask, FieldMemOperand(symbol_table, SymbolTable::kCapacityOffset));
7309 __ mov(mask, Operand(mask, ASR, 1));
7310 __ sub(mask, mask, Operand(1));
7311
7312 // Calculate untagged address of the first element of the symbol table.
7313 Register first_symbol_table_element = symbol_table;
7314 __ add(first_symbol_table_element, symbol_table,
7315 Operand(SymbolTable::kElementsStartOffset - kHeapObjectTag));
7316
7317 // Registers
7318 // chars: two character string, char 1 in byte 0 and char 2 in byte 1.
7319 // hash: hash of two character string
7320 // mask: capacity mask
7321 // first_symbol_table_element: address of the first element of
7322 // the symbol table
7323 // scratch: -
7324
7325 // Perform a number of probes in the symbol table.
7326 static const int kProbes = 4;
7327 Label found_in_symbol_table;
7328 Label next_probe[kProbes];
7329 for (int i = 0; i < kProbes; i++) {
7330 Register candidate = scratch5; // Scratch register contains candidate.
7331
7332 // Calculate entry in symbol table.
7333 if (i > 0) {
7334 __ add(candidate, hash, Operand(SymbolTable::GetProbeOffset(i)));
7335 } else {
7336 __ mov(candidate, hash);
7337 }
7338
7339 __ and_(candidate, candidate, Operand(mask));
7340
7341 // Load the entry from the symble table.
7342 ASSERT_EQ(1, SymbolTable::kEntrySize);
7343 __ ldr(candidate,
7344 MemOperand(first_symbol_table_element,
7345 candidate,
7346 LSL,
7347 kPointerSizeLog2));
7348
7349 // If entry is undefined no string with this hash can be found.
7350 __ cmp(candidate, undefined);
7351 __ b(eq, not_found);
7352
7353 // If length is not 2 the string is not a candidate.
7354 __ ldr(scratch, FieldMemOperand(candidate, String::kLengthOffset));
7355 __ cmp(scratch, Operand(2));
7356 __ b(ne, &next_probe[i]);
7357
7358 // Check that the candidate is a non-external ascii string.
7359 __ ldr(scratch, FieldMemOperand(candidate, HeapObject::kMapOffset));
7360 __ ldrb(scratch, FieldMemOperand(scratch, Map::kInstanceTypeOffset));
7361 __ JumpIfInstanceTypeIsNotSequentialAscii(scratch, scratch,
7362 &next_probe[i]);
7363
7364 // Check if the two characters match.
7365 // Assumes that word load is little endian.
7366 __ ldrh(scratch, FieldMemOperand(candidate, SeqAsciiString::kHeaderSize));
7367 __ cmp(chars, scratch);
7368 __ b(eq, &found_in_symbol_table);
7369 __ bind(&next_probe[i]);
7370 }
7371
7372 // No matching 2 character string found by probing.
7373 __ jmp(not_found);
7374
7375 // Scratch register contains result when we fall through to here.
7376 Register result = scratch;
7377 __ bind(&found_in_symbol_table);
7378 if (!result.is(r0)) {
7379 __ mov(r0, result);
7380 }
7381}
7382
7383
7384void StringStubBase::GenerateHashInit(MacroAssembler* masm,
7385 Register hash,
7386 Register character) {
7387 // hash = character + (character << 10);
7388 __ add(hash, character, Operand(character, LSL, 10));
7389 // hash ^= hash >> 6;
7390 __ eor(hash, hash, Operand(hash, ASR, 6));
7391}
7392
7393
7394void StringStubBase::GenerateHashAddCharacter(MacroAssembler* masm,
7395 Register hash,
7396 Register character) {
7397 // hash += character;
7398 __ add(hash, hash, Operand(character));
7399 // hash += hash << 10;
7400 __ add(hash, hash, Operand(hash, LSL, 10));
7401 // hash ^= hash >> 6;
7402 __ eor(hash, hash, Operand(hash, ASR, 6));
7403}
7404
7405
7406void StringStubBase::GenerateHashGetHash(MacroAssembler* masm,
7407 Register hash) {
7408 // hash += hash << 3;
7409 __ add(hash, hash, Operand(hash, LSL, 3));
7410 // hash ^= hash >> 11;
7411 __ eor(hash, hash, Operand(hash, ASR, 11));
7412 // hash += hash << 15;
7413 __ add(hash, hash, Operand(hash, LSL, 15), SetCC);
7414
7415 // if (hash == 0) hash = 27;
7416 __ mov(hash, Operand(27), LeaveCC, nz);
7417}
7418
7419
ager@chromium.org5c838252010-02-19 08:53:10 +00007420void SubStringStub::Generate(MacroAssembler* masm) {
7421 Label runtime;
7422
7423 // Stack frame on entry.
7424 // lr: return address
7425 // sp[0]: to
7426 // sp[4]: from
7427 // sp[8]: string
7428
7429 // This stub is called from the native-call %_SubString(...), so
7430 // nothing can be assumed about the arguments. It is tested that:
7431 // "string" is a sequential string,
7432 // both "from" and "to" are smis, and
7433 // 0 <= from <= to <= string.length.
7434 // If any of these assumptions fail, we call the runtime system.
7435
7436 static const int kToOffset = 0 * kPointerSize;
7437 static const int kFromOffset = 1 * kPointerSize;
7438 static const int kStringOffset = 2 * kPointerSize;
7439
7440
7441 // Check bounds and smi-ness.
7442 __ ldr(r7, MemOperand(sp, kToOffset));
7443 __ ldr(r6, MemOperand(sp, kFromOffset));
7444 ASSERT_EQ(0, kSmiTag);
7445 ASSERT_EQ(1, kSmiTagSize + kSmiShiftSize);
7446 // I.e., arithmetic shift right by one un-smi-tags.
7447 __ mov(r2, Operand(r7, ASR, 1), SetCC);
7448 __ mov(r3, Operand(r6, ASR, 1), SetCC, cc);
7449 // If either r2 or r6 had the smi tag bit set, then carry is set now.
7450 __ b(cs, &runtime); // Either "from" or "to" is not a smi.
7451 __ b(mi, &runtime); // From is negative.
7452
7453 __ sub(r2, r2, Operand(r3), SetCC);
7454 __ b(mi, &runtime); // Fail if from > to.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007455 // Special handling of sub-strings of length 1 and 2. One character strings
7456 // are handled in the runtime system (looked up in the single character
7457 // cache). Two character strings are looked for in the symbol cache.
ager@chromium.org5c838252010-02-19 08:53:10 +00007458 __ cmp(r2, Operand(2));
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007459 __ b(lt, &runtime);
ager@chromium.org5c838252010-02-19 08:53:10 +00007460
7461 // r2: length
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007462 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007463 // r6: from (smi)
7464 // r7: to (smi)
7465
7466 // Make sure first argument is a sequential (or flat) string.
7467 __ ldr(r5, MemOperand(sp, kStringOffset));
7468 ASSERT_EQ(0, kSmiTag);
7469 __ tst(r5, Operand(kSmiTagMask));
7470 __ b(eq, &runtime);
7471 Condition is_string = masm->IsObjectStringType(r5, r1);
7472 __ b(NegateCondition(is_string), &runtime);
7473
7474 // r1: instance type
7475 // r2: length
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007476 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007477 // r5: string
7478 // r6: from (smi)
7479 // r7: to (smi)
7480 Label seq_string;
7481 __ and_(r4, r1, Operand(kStringRepresentationMask));
7482 ASSERT(kSeqStringTag < kConsStringTag);
7483 ASSERT(kExternalStringTag > kConsStringTag);
7484 __ cmp(r4, Operand(kConsStringTag));
7485 __ b(gt, &runtime); // External strings go to runtime.
7486 __ b(lt, &seq_string); // Sequential strings are handled directly.
7487
7488 // Cons string. Try to recurse (once) on the first substring.
7489 // (This adds a little more generality than necessary to handle flattened
7490 // cons strings, but not much).
7491 __ ldr(r5, FieldMemOperand(r5, ConsString::kFirstOffset));
7492 __ ldr(r4, FieldMemOperand(r5, HeapObject::kMapOffset));
7493 __ ldrb(r1, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7494 __ tst(r1, Operand(kStringRepresentationMask));
7495 ASSERT_EQ(0, kSeqStringTag);
7496 __ b(ne, &runtime); // Cons and External strings go to runtime.
7497
7498 // Definitly a sequential string.
7499 __ bind(&seq_string);
7500
7501 // r1: instance type.
7502 // r2: length
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007503 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007504 // r5: string
7505 // r6: from (smi)
7506 // r7: to (smi)
7507 __ ldr(r4, FieldMemOperand(r5, String::kLengthOffset));
7508 __ cmp(r4, Operand(r7, ASR, 1));
7509 __ b(lt, &runtime); // Fail if to > length.
7510
7511 // r1: instance type.
7512 // r2: result string length.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007513 // r3: from index (untaged smi)
ager@chromium.org5c838252010-02-19 08:53:10 +00007514 // r5: string.
7515 // r6: from offset (smi)
7516 // Check for flat ascii string.
7517 Label non_ascii_flat;
7518 __ tst(r1, Operand(kStringEncodingMask));
7519 ASSERT_EQ(0, kTwoByteStringTag);
7520 __ b(eq, &non_ascii_flat);
7521
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007522 Label result_longer_than_two;
7523 __ cmp(r2, Operand(2));
7524 __ b(gt, &result_longer_than_two);
7525
7526 // Sub string of length 2 requested.
7527 // Get the two characters forming the sub string.
7528 __ add(r5, r5, Operand(r3));
7529 __ ldrb(r3, FieldMemOperand(r5, SeqAsciiString::kHeaderSize));
7530 __ ldrb(r4, FieldMemOperand(r5, SeqAsciiString::kHeaderSize + 1));
7531
7532 // Try to lookup two character string in symbol table.
7533 Label make_two_character_string;
7534 GenerateTwoCharacterSymbolTableProbe(masm, r3, r4, r1, r5, r6, r7, r9,
7535 &make_two_character_string);
7536 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7537 __ add(sp, sp, Operand(3 * kPointerSize));
7538 __ Ret();
7539
7540 // r2: result string length.
7541 // r3: two characters combined into halfword in little endian byte order.
7542 __ bind(&make_two_character_string);
7543 __ AllocateAsciiString(r0, r2, r4, r5, r9, &runtime);
7544 __ strh(r3, FieldMemOperand(r0, SeqAsciiString::kHeaderSize));
7545 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7546 __ add(sp, sp, Operand(3 * kPointerSize));
7547 __ Ret();
7548
7549 __ bind(&result_longer_than_two);
7550
ager@chromium.org5c838252010-02-19 08:53:10 +00007551 // Allocate the result.
7552 __ AllocateAsciiString(r0, r2, r3, r4, r1, &runtime);
7553
7554 // r0: result string.
7555 // r2: result string length.
7556 // r5: string.
7557 // r6: from offset (smi)
7558 // Locate first character of result.
7559 __ add(r1, r0, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7560 // Locate 'from' character of string.
7561 __ add(r5, r5, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7562 __ add(r5, r5, Operand(r6, ASR, 1));
7563
7564 // r0: result string.
7565 // r1: first character of result string.
7566 // r2: result string length.
7567 // r5: first character of sub string to copy.
7568 ASSERT_EQ(0, SeqAsciiString::kHeaderSize & kObjectAlignmentMask);
7569 GenerateCopyCharactersLong(masm, r1, r5, r2, r3, r4, r6, r7, r9,
7570 COPY_ASCII | DEST_ALWAYS_ALIGNED);
7571 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7572 __ add(sp, sp, Operand(3 * kPointerSize));
7573 __ Ret();
7574
7575 __ bind(&non_ascii_flat);
7576 // r2: result string length.
7577 // r5: string.
7578 // r6: from offset (smi)
7579 // Check for flat two byte string.
7580
7581 // Allocate the result.
7582 __ AllocateTwoByteString(r0, r2, r1, r3, r4, &runtime);
7583
7584 // r0: result string.
7585 // r2: result string length.
7586 // r5: string.
7587 // Locate first character of result.
7588 __ add(r1, r0, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7589 // Locate 'from' character of string.
7590 __ add(r5, r5, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7591 // As "from" is a smi it is 2 times the value which matches the size of a two
7592 // byte character.
7593 __ add(r5, r5, Operand(r6));
7594
7595 // r0: result string.
7596 // r1: first character of result.
7597 // r2: result length.
7598 // r5: first character of string to copy.
7599 ASSERT_EQ(0, SeqTwoByteString::kHeaderSize & kObjectAlignmentMask);
7600 GenerateCopyCharactersLong(masm, r1, r5, r2, r3, r4, r6, r7, r9,
7601 DEST_ALWAYS_ALIGNED);
7602 __ IncrementCounter(&Counters::sub_string_native, 1, r3, r4);
7603 __ add(sp, sp, Operand(3 * kPointerSize));
7604 __ Ret();
7605
7606 // Just jump to runtime to create the sub string.
7607 __ bind(&runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007608 __ TailCallRuntime(Runtime::kSubString, 3, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00007609}
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007610
7611
7612void StringCompareStub::GenerateCompareFlatAsciiStrings(MacroAssembler* masm,
7613 Register left,
7614 Register right,
7615 Register scratch1,
7616 Register scratch2,
7617 Register scratch3,
7618 Register scratch4) {
7619 Label compare_lengths;
7620 // Find minimum length and length difference.
7621 __ ldr(scratch1, FieldMemOperand(left, String::kLengthOffset));
7622 __ ldr(scratch2, FieldMemOperand(right, String::kLengthOffset));
7623 __ sub(scratch3, scratch1, Operand(scratch2), SetCC);
7624 Register length_delta = scratch3;
7625 __ mov(scratch1, scratch2, LeaveCC, gt);
7626 Register min_length = scratch1;
7627 __ tst(min_length, Operand(min_length));
7628 __ b(eq, &compare_lengths);
7629
7630 // Setup registers so that we only need to increment one register
7631 // in the loop.
7632 __ add(scratch2, min_length,
7633 Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7634 __ add(left, left, Operand(scratch2));
7635 __ add(right, right, Operand(scratch2));
7636 // Registers left and right points to the min_length character of strings.
7637 __ rsb(min_length, min_length, Operand(-1));
7638 Register index = min_length;
7639 // Index starts at -min_length.
7640
7641 {
7642 // Compare loop.
7643 Label loop;
7644 __ bind(&loop);
7645 // Compare characters.
7646 __ add(index, index, Operand(1), SetCC);
7647 __ ldrb(scratch2, MemOperand(left, index), ne);
7648 __ ldrb(scratch4, MemOperand(right, index), ne);
7649 // Skip to compare lengths with eq condition true.
7650 __ b(eq, &compare_lengths);
7651 __ cmp(scratch2, scratch4);
7652 __ b(eq, &loop);
7653 // Fallthrough with eq condition false.
7654 }
7655 // Compare lengths - strings up to min-length are equal.
7656 __ bind(&compare_lengths);
7657 ASSERT(Smi::FromInt(EQUAL) == static_cast<Smi*>(0));
7658 // Use zero length_delta as result.
7659 __ mov(r0, Operand(length_delta), SetCC, eq);
7660 // Fall through to here if characters compare not-equal.
7661 __ mov(r0, Operand(Smi::FromInt(GREATER)), LeaveCC, gt);
7662 __ mov(r0, Operand(Smi::FromInt(LESS)), LeaveCC, lt);
7663 __ Ret();
7664}
7665
7666
7667void StringCompareStub::Generate(MacroAssembler* masm) {
7668 Label runtime;
7669
7670 // Stack frame on entry.
ager@chromium.org5c838252010-02-19 08:53:10 +00007671 // sp[0]: right string
7672 // sp[4]: left string
7673 __ ldr(r0, MemOperand(sp, 1 * kPointerSize)); // left
7674 __ ldr(r1, MemOperand(sp, 0 * kPointerSize)); // right
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007675
7676 Label not_same;
7677 __ cmp(r0, r1);
7678 __ b(ne, &not_same);
7679 ASSERT_EQ(0, EQUAL);
7680 ASSERT_EQ(0, kSmiTag);
7681 __ mov(r0, Operand(Smi::FromInt(EQUAL)));
7682 __ IncrementCounter(&Counters::string_compare_native, 1, r1, r2);
7683 __ add(sp, sp, Operand(2 * kPointerSize));
7684 __ Ret();
7685
7686 __ bind(&not_same);
7687
7688 // Check that both objects are sequential ascii strings.
7689 __ JumpIfNotBothSequentialAsciiStrings(r0, r1, r2, r3, &runtime);
7690
7691 // Compare flat ascii strings natively. Remove arguments from stack first.
7692 __ IncrementCounter(&Counters::string_compare_native, 1, r2, r3);
7693 __ add(sp, sp, Operand(2 * kPointerSize));
7694 GenerateCompareFlatAsciiStrings(masm, r0, r1, r2, r3, r4, r5);
7695
7696 // Call the runtime; it returns -1 (less), 0 (equal), or 1 (greater)
7697 // tagged as a small integer.
7698 __ bind(&runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007699 __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00007700}
7701
7702
ager@chromium.org5c838252010-02-19 08:53:10 +00007703void StringAddStub::Generate(MacroAssembler* masm) {
7704 Label string_add_runtime;
7705 // Stack on entry:
7706 // sp[0]: second argument.
7707 // sp[4]: first argument.
7708
7709 // Load the two arguments.
7710 __ ldr(r0, MemOperand(sp, 1 * kPointerSize)); // First argument.
7711 __ ldr(r1, MemOperand(sp, 0 * kPointerSize)); // Second argument.
7712
7713 // Make sure that both arguments are strings if not known in advance.
7714 if (string_check_) {
7715 ASSERT_EQ(0, kSmiTag);
7716 __ JumpIfEitherSmi(r0, r1, &string_add_runtime);
7717 // Load instance types.
7718 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7719 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7720 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7721 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7722 ASSERT_EQ(0, kStringTag);
7723 // If either is not a string, go to runtime.
7724 __ tst(r4, Operand(kIsNotStringMask));
7725 __ tst(r5, Operand(kIsNotStringMask), eq);
7726 __ b(ne, &string_add_runtime);
7727 }
7728
7729 // Both arguments are strings.
7730 // r0: first string
7731 // r1: second string
7732 // r4: first string instance type (if string_check_)
7733 // r5: second string instance type (if string_check_)
7734 {
7735 Label strings_not_empty;
7736 // Check if either of the strings are empty. In that case return the other.
7737 __ ldr(r2, FieldMemOperand(r0, String::kLengthOffset));
7738 __ ldr(r3, FieldMemOperand(r1, String::kLengthOffset));
7739 __ cmp(r2, Operand(0)); // Test if first string is empty.
7740 __ mov(r0, Operand(r1), LeaveCC, eq); // If first is empty, return second.
7741 __ cmp(r3, Operand(0), ne); // Else test if second string is empty.
7742 __ b(ne, &strings_not_empty); // If either string was empty, return r0.
7743
7744 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7745 __ add(sp, sp, Operand(2 * kPointerSize));
7746 __ Ret();
7747
7748 __ bind(&strings_not_empty);
7749 }
7750
7751 // Both strings are non-empty.
7752 // r0: first string
7753 // r1: second string
7754 // r2: length of first string
7755 // r3: length of second string
7756 // r4: first string instance type (if string_check_)
7757 // r5: second string instance type (if string_check_)
7758 // Look at the length of the result of adding the two strings.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007759 Label string_add_flat_result, longer_than_two;
ager@chromium.org5c838252010-02-19 08:53:10 +00007760 // Adding two lengths can't overflow.
7761 ASSERT(String::kMaxLength * 2 > String::kMaxLength);
7762 __ add(r6, r2, Operand(r3));
7763 // Use the runtime system when adding two one character strings, as it
7764 // contains optimizations for this specific case using the symbol table.
7765 __ cmp(r6, Operand(2));
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007766 __ b(ne, &longer_than_two);
7767
7768 // Check that both strings are non-external ascii strings.
7769 if (!string_check_) {
7770 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7771 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7772 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7773 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7774 }
7775 __ JumpIfBothInstanceTypesAreNotSequentialAscii(r4, r5, r6, r7,
7776 &string_add_runtime);
7777
7778 // Get the two characters forming the sub string.
7779 __ ldrb(r2, FieldMemOperand(r0, SeqAsciiString::kHeaderSize));
7780 __ ldrb(r3, FieldMemOperand(r1, SeqAsciiString::kHeaderSize));
7781
7782 // Try to lookup two character string in symbol table. If it is not found
7783 // just allocate a new one.
7784 Label make_two_character_string;
7785 GenerateTwoCharacterSymbolTableProbe(masm, r2, r3, r6, r7, r4, r5, r9,
7786 &make_two_character_string);
7787 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7788 __ add(sp, sp, Operand(2 * kPointerSize));
7789 __ Ret();
7790
7791 __ bind(&make_two_character_string);
7792 // Resulting string has length 2 and first chars of two strings
7793 // are combined into single halfword in r2 register.
7794 // So we can fill resulting string without two loops by a single
7795 // halfword store instruction (which assumes that processor is
7796 // in a little endian mode)
7797 __ mov(r6, Operand(2));
7798 __ AllocateAsciiString(r0, r6, r4, r5, r9, &string_add_runtime);
7799 __ strh(r2, FieldMemOperand(r0, SeqAsciiString::kHeaderSize));
7800 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7801 __ add(sp, sp, Operand(2 * kPointerSize));
7802 __ Ret();
7803
7804 __ bind(&longer_than_two);
ager@chromium.org5c838252010-02-19 08:53:10 +00007805 // Check if resulting string will be flat.
7806 __ cmp(r6, Operand(String::kMinNonFlatLength));
7807 __ b(lt, &string_add_flat_result);
7808 // Handle exceptionally long strings in the runtime system.
7809 ASSERT((String::kMaxLength & 0x80000000) == 0);
7810 ASSERT(IsPowerOf2(String::kMaxLength + 1));
7811 // kMaxLength + 1 is representable as shifted literal, kMaxLength is not.
7812 __ cmp(r6, Operand(String::kMaxLength + 1));
7813 __ b(hs, &string_add_runtime);
7814
7815 // If result is not supposed to be flat, allocate a cons string object.
7816 // If both strings are ascii the result is an ascii cons string.
7817 if (!string_check_) {
7818 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7819 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7820 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7821 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7822 }
7823 Label non_ascii, allocated;
7824 ASSERT_EQ(0, kTwoByteStringTag);
7825 __ tst(r4, Operand(kStringEncodingMask));
7826 __ tst(r5, Operand(kStringEncodingMask), ne);
7827 __ b(eq, &non_ascii);
7828
7829 // Allocate an ASCII cons string.
7830 __ AllocateAsciiConsString(r7, r6, r4, r5, &string_add_runtime);
7831 __ bind(&allocated);
7832 // Fill the fields of the cons string.
7833 __ str(r0, FieldMemOperand(r7, ConsString::kFirstOffset));
7834 __ str(r1, FieldMemOperand(r7, ConsString::kSecondOffset));
7835 __ mov(r0, Operand(r7));
7836 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7837 __ add(sp, sp, Operand(2 * kPointerSize));
7838 __ Ret();
7839
7840 __ bind(&non_ascii);
7841 // Allocate a two byte cons string.
7842 __ AllocateTwoByteConsString(r7, r6, r4, r5, &string_add_runtime);
7843 __ jmp(&allocated);
7844
7845 // Handle creating a flat result. First check that both strings are
7846 // sequential and that they have the same encoding.
7847 // r0: first string
7848 // r1: second string
7849 // r2: length of first string
7850 // r3: length of second string
7851 // r4: first string instance type (if string_check_)
7852 // r5: second string instance type (if string_check_)
7853 // r6: sum of lengths.
7854 __ bind(&string_add_flat_result);
7855 if (!string_check_) {
7856 __ ldr(r4, FieldMemOperand(r0, HeapObject::kMapOffset));
7857 __ ldr(r5, FieldMemOperand(r1, HeapObject::kMapOffset));
7858 __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
7859 __ ldrb(r5, FieldMemOperand(r5, Map::kInstanceTypeOffset));
7860 }
7861 // Check that both strings are sequential.
7862 ASSERT_EQ(0, kSeqStringTag);
7863 __ tst(r4, Operand(kStringRepresentationMask));
7864 __ tst(r5, Operand(kStringRepresentationMask), eq);
7865 __ b(ne, &string_add_runtime);
7866 // Now check if both strings have the same encoding (ASCII/Two-byte).
7867 // r0: first string.
7868 // r1: second string.
7869 // r2: length of first string.
7870 // r3: length of second string.
7871 // r6: sum of lengths..
7872 Label non_ascii_string_add_flat_result;
7873 ASSERT(IsPowerOf2(kStringEncodingMask)); // Just one bit to test.
7874 __ eor(r7, r4, Operand(r5));
7875 __ tst(r7, Operand(kStringEncodingMask));
7876 __ b(ne, &string_add_runtime);
7877 // And see if it's ASCII or two-byte.
7878 __ tst(r4, Operand(kStringEncodingMask));
7879 __ b(eq, &non_ascii_string_add_flat_result);
7880
7881 // Both strings are sequential ASCII strings. We also know that they are
7882 // short (since the sum of the lengths is less than kMinNonFlatLength).
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007883 // r6: length of resulting flat string
ager@chromium.org5c838252010-02-19 08:53:10 +00007884 __ AllocateAsciiString(r7, r6, r4, r5, r9, &string_add_runtime);
7885 // Locate first character of result.
7886 __ add(r6, r7, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7887 // Locate first character of first argument.
7888 __ add(r0, r0, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7889 // r0: first character of first string.
7890 // r1: second string.
7891 // r2: length of first string.
7892 // r3: length of second string.
7893 // r6: first character of result.
7894 // r7: result string.
7895 GenerateCopyCharacters(masm, r6, r0, r2, r4, true);
7896
7897 // Load second argument and locate first character.
7898 __ add(r1, r1, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag));
7899 // r1: first character of second string.
7900 // r3: length of second string.
7901 // r6: next character of result.
7902 // r7: result string.
7903 GenerateCopyCharacters(masm, r6, r1, r3, r4, true);
7904 __ mov(r0, Operand(r7));
7905 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7906 __ add(sp, sp, Operand(2 * kPointerSize));
7907 __ Ret();
7908
7909 __ bind(&non_ascii_string_add_flat_result);
7910 // Both strings are sequential two byte strings.
7911 // r0: first string.
7912 // r1: second string.
7913 // r2: length of first string.
7914 // r3: length of second string.
7915 // r6: sum of length of strings.
7916 __ AllocateTwoByteString(r7, r6, r4, r5, r9, &string_add_runtime);
7917 // r0: first string.
7918 // r1: second string.
7919 // r2: length of first string.
7920 // r3: length of second string.
7921 // r7: result string.
7922
7923 // Locate first character of result.
7924 __ add(r6, r7, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7925 // Locate first character of first argument.
7926 __ add(r0, r0, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7927
7928 // r0: first character of first string.
7929 // r1: second string.
7930 // r2: length of first string.
7931 // r3: length of second string.
7932 // r6: first character of result.
7933 // r7: result string.
7934 GenerateCopyCharacters(masm, r6, r0, r2, r4, false);
7935
7936 // Locate first character of second argument.
7937 __ add(r1, r1, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
7938
7939 // r1: first character of second string.
7940 // r3: length of second string.
7941 // r6: next character of result (after copy of first string).
7942 // r7: result string.
7943 GenerateCopyCharacters(masm, r6, r1, r3, r4, false);
7944
7945 __ mov(r0, Operand(r7));
7946 __ IncrementCounter(&Counters::string_add_native, 1, r2, r3);
7947 __ add(sp, sp, Operand(2 * kPointerSize));
7948 __ Ret();
7949
7950 // Just jump to runtime to add the two strings.
7951 __ bind(&string_add_runtime);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00007952 __ TailCallRuntime(Runtime::kStringAdd, 2, 1);
ager@chromium.org5c838252010-02-19 08:53:10 +00007953}
7954
7955
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007956#undef __
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007957
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00007958} } // namespace v8::internal