blob: e822588e209b23b5bb775b6b9c2f2267030a31d1 [file] [log] [blame]
karlklose@chromium.org44bc7082011-04-11 12:33:05 +00001// Copyright 2011 the V8 project authors. All rights reserved.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +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
karlklose@chromium.org44bc7082011-04-11 12:33:05 +000030#include "codegen.h"
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000031#include "compiler.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000032#include "debug.h"
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000033#include "full-codegen.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000034#include "liveedit.h"
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +000035#include "macro-assembler.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000036#include "prettyprinter.h"
sgjesse@chromium.org833cdd72010-02-26 10:06:16 +000037#include "scopes.h"
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +000038#include "scopeinfo.h"
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000039#include "stub-cache.h"
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000040
41namespace v8 {
42namespace internal {
43
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +000044void BreakableStatementChecker::Check(Statement* stmt) {
45 Visit(stmt);
46}
47
48
49void BreakableStatementChecker::Check(Expression* expr) {
50 Visit(expr);
51}
52
53
54void BreakableStatementChecker::VisitDeclaration(Declaration* decl) {
55}
56
57
58void BreakableStatementChecker::VisitBlock(Block* stmt) {
59}
60
61
62void BreakableStatementChecker::VisitExpressionStatement(
63 ExpressionStatement* stmt) {
64 // Check if expression is breakable.
65 Visit(stmt->expression());
66}
67
68
69void BreakableStatementChecker::VisitEmptyStatement(EmptyStatement* stmt) {
70}
71
72
73void BreakableStatementChecker::VisitIfStatement(IfStatement* stmt) {
74 // If the condition is breakable the if statement is breakable.
75 Visit(stmt->condition());
76}
77
78
79void BreakableStatementChecker::VisitContinueStatement(
80 ContinueStatement* stmt) {
81}
82
83
84void BreakableStatementChecker::VisitBreakStatement(BreakStatement* stmt) {
85}
86
87
88void BreakableStatementChecker::VisitReturnStatement(ReturnStatement* stmt) {
89 // Return is breakable if the expression is.
90 Visit(stmt->expression());
91}
92
93
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +000094void BreakableStatementChecker::VisitWithStatement(WithStatement* stmt) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +000095 Visit(stmt->expression());
96}
97
98
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +000099void BreakableStatementChecker::VisitSwitchStatement(SwitchStatement* stmt) {
100 // Switch statements breakable if the tag expression is.
101 Visit(stmt->tag());
102}
103
104
105void BreakableStatementChecker::VisitDoWhileStatement(DoWhileStatement* stmt) {
106 // Mark do while as breakable to avoid adding a break slot in front of it.
107 is_breakable_ = true;
108}
109
110
111void BreakableStatementChecker::VisitWhileStatement(WhileStatement* stmt) {
112 // Mark while statements breakable if the condition expression is.
113 Visit(stmt->cond());
114}
115
116
117void BreakableStatementChecker::VisitForStatement(ForStatement* stmt) {
118 // Mark for statements breakable if the condition expression is.
119 if (stmt->cond() != NULL) {
120 Visit(stmt->cond());
121 }
122}
123
124
125void BreakableStatementChecker::VisitForInStatement(ForInStatement* stmt) {
126 // Mark for in statements breakable if the enumerable expression is.
127 Visit(stmt->enumerable());
128}
129
130
131void BreakableStatementChecker::VisitTryCatchStatement(
132 TryCatchStatement* stmt) {
133 // Mark try catch as breakable to avoid adding a break slot in front of it.
134 is_breakable_ = true;
135}
136
137
138void BreakableStatementChecker::VisitTryFinallyStatement(
139 TryFinallyStatement* stmt) {
140 // Mark try finally as breakable to avoid adding a break slot in front of it.
141 is_breakable_ = true;
142}
143
144
145void BreakableStatementChecker::VisitDebuggerStatement(
146 DebuggerStatement* stmt) {
147 // The debugger statement is breakable.
148 is_breakable_ = true;
149}
150
151
152void BreakableStatementChecker::VisitFunctionLiteral(FunctionLiteral* expr) {
153}
154
155
156void BreakableStatementChecker::VisitSharedFunctionInfoLiteral(
157 SharedFunctionInfoLiteral* expr) {
158}
159
160
161void BreakableStatementChecker::VisitConditional(Conditional* expr) {
162}
163
164
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000165void BreakableStatementChecker::VisitVariableProxy(VariableProxy* expr) {
166}
167
168
169void BreakableStatementChecker::VisitLiteral(Literal* expr) {
170}
171
172
173void BreakableStatementChecker::VisitRegExpLiteral(RegExpLiteral* expr) {
174}
175
176
177void BreakableStatementChecker::VisitObjectLiteral(ObjectLiteral* expr) {
178}
179
180
181void BreakableStatementChecker::VisitArrayLiteral(ArrayLiteral* expr) {
182}
183
184
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000185void BreakableStatementChecker::VisitAssignment(Assignment* expr) {
186 // If assigning to a property (including a global property) the assignment is
187 // breakable.
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000188 VariableProxy* proxy = expr->target()->AsVariableProxy();
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000189 Property* prop = expr->target()->AsProperty();
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000190 if (prop != NULL || (proxy != NULL && proxy->var()->IsUnallocated())) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000191 is_breakable_ = true;
192 return;
193 }
194
195 // Otherwise the assignment is breakable if the assigned value is.
196 Visit(expr->value());
197}
198
199
200void BreakableStatementChecker::VisitThrow(Throw* expr) {
201 // Throw is breakable if the expression is.
202 Visit(expr->exception());
203}
204
205
206void BreakableStatementChecker::VisitProperty(Property* expr) {
207 // Property load is breakable.
208 is_breakable_ = true;
209}
210
211
212void BreakableStatementChecker::VisitCall(Call* expr) {
213 // Function calls both through IC and call stub are breakable.
214 is_breakable_ = true;
215}
216
217
218void BreakableStatementChecker::VisitCallNew(CallNew* expr) {
219 // Function calls through new are breakable.
220 is_breakable_ = true;
221}
222
223
224void BreakableStatementChecker::VisitCallRuntime(CallRuntime* expr) {
225}
226
227
228void BreakableStatementChecker::VisitUnaryOperation(UnaryOperation* expr) {
229 Visit(expr->expression());
230}
231
232
233void BreakableStatementChecker::VisitCountOperation(CountOperation* expr) {
234 Visit(expr->expression());
235}
236
237
238void BreakableStatementChecker::VisitBinaryOperation(BinaryOperation* expr) {
239 Visit(expr->left());
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +0000240 if (expr->op() != Token::AND &&
241 expr->op() != Token::OR) {
242 Visit(expr->right());
243 }
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000244}
245
246
247void BreakableStatementChecker::VisitCompareOperation(CompareOperation* expr) {
248 Visit(expr->left());
249 Visit(expr->right());
250}
251
252
253void BreakableStatementChecker::VisitThisFunction(ThisFunction* expr) {
254}
255
256
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000257#define __ ACCESS_MASM(masm())
258
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000259bool FullCodeGenerator::MakeCode(CompilationInfo* info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000260 Isolate* isolate = info->isolate();
ager@chromium.org5c838252010-02-19 08:53:10 +0000261 Handle<Script> script = info->script();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000262 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
263 int len = String::cast(script->source())->length();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000264 isolate->counters()->total_full_codegen_source_size()->Increment(len);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000265 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000266 if (FLAG_trace_codegen) {
267 PrintF("Full Compiler - ");
268 }
ager@chromium.org5c838252010-02-19 08:53:10 +0000269 CodeGenerator::MakeCodePrologue(info);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000270 const int kInitialBufferSize = 4 * KB;
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000271 MacroAssembler masm(info->isolate(), NULL, kInitialBufferSize);
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000272#ifdef ENABLE_GDB_JIT_INTERFACE
273 masm.positions_recorder()->StartGDBJITLineInfoRecording();
274#endif
ager@chromium.org5c838252010-02-19 08:53:10 +0000275
276 FullCodeGenerator cgen(&masm);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000277 cgen.Generate(info);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000278 if (cgen.HasStackOverflow()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000279 ASSERT(!isolate->has_pending_exception());
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000280 return false;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000281 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000282 unsigned table_offset = cgen.EmitStackCheckTable();
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000283
lrn@chromium.org34e60782011-09-15 07:25:40 +0000284 Code::Flags flags = Code::ComputeFlags(Code::FUNCTION);
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000285 Handle<Code> code = CodeGenerator::MakeCodeEpilogue(&masm, flags, info);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000286 code->set_optimizable(info->IsOptimizable());
287 cgen.PopulateDeoptimizationData(code);
288 code->set_has_deoptimization_support(info->HasDeoptimizationSupport());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000289#ifdef ENABLE_DEBUGGER_SUPPORT
lrn@chromium.org34e60782011-09-15 07:25:40 +0000290 code->set_has_debug_break_slots(
291 info->isolate()->debugger()->IsDebuggerActive());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000292#endif // ENABLE_DEBUGGER_SUPPORT
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000293 code->set_allow_osr_at_loop_nesting_level(0);
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000294 code->set_stack_check_table_offset(table_offset);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000295 CodeGenerator::PrintCode(code, info);
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000296 info->SetCode(code); // may be an empty handle.
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000297#ifdef ENABLE_GDB_JIT_INTERFACE
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000298 if (FLAG_gdbjit && !code.is_null()) {
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000299 GDBJITLineInfo* lineinfo =
300 masm.positions_recorder()->DetachGDBJITLineInfo();
301
302 GDBJIT(RegisterDetailedLineInfo(*code, lineinfo));
303 }
304#endif
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000305 return !code.is_null();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000306}
307
308
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000309unsigned FullCodeGenerator::EmitStackCheckTable() {
310 // The stack check table consists of a length (in number of entries)
311 // field, and then a sequence of entries. Each entry is a pair of AST id
312 // and code-relative pc offset.
313 masm()->Align(kIntSize);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000314 unsigned offset = masm()->pc_offset();
315 unsigned length = stack_checks_.length();
316 __ dd(length);
317 for (unsigned i = 0; i < length; ++i) {
318 __ dd(stack_checks_[i].id);
319 __ dd(stack_checks_[i].pc_and_state);
320 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000321 return offset;
322}
323
324
325void FullCodeGenerator::PopulateDeoptimizationData(Handle<Code> code) {
326 // Fill in the deoptimization information.
327 ASSERT(info_->HasDeoptimizationSupport() || bailout_entries_.is_empty());
328 if (!info_->HasDeoptimizationSupport()) return;
329 int length = bailout_entries_.length();
330 Handle<DeoptimizationOutputData> data =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000331 isolate()->factory()->
332 NewDeoptimizationOutputData(length, TENURED);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000333 for (int i = 0; i < length; i++) {
334 data->SetAstId(i, Smi::FromInt(bailout_entries_[i].id));
335 data->SetPcAndState(i, Smi::FromInt(bailout_entries_[i].pc_and_state));
336 }
337 code->set_deoptimization_data(*data);
338}
339
340
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000341void FullCodeGenerator::PrepareForBailout(Expression* node, State state) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000342 PrepareForBailoutForId(node->id(), state);
343}
344
345
346void FullCodeGenerator::RecordJSReturnSite(Call* call) {
347 // We record the offset of the function return so we can rebuild the frame
348 // if the function was inlined, i.e., this is the return address in the
349 // inlined function's frame.
350 //
351 // The state is ignored. We defensively set it to TOS_REG, which is the
352 // real state of the unoptimized code at the return site.
353 PrepareForBailoutForId(call->ReturnId(), TOS_REG);
354#ifdef DEBUG
355 // In debug builds, mark the return so we can verify that this function
356 // was called.
357 ASSERT(!call->return_is_recorded_);
358 call->return_is_recorded_ = true;
359#endif
360}
361
362
363void FullCodeGenerator::PrepareForBailoutForId(int id, State state) {
364 // There's no need to prepare this code for bailouts from already optimized
365 // code or code that can't be optimized.
366 if (!FLAG_deopt || !info_->HasDeoptimizationSupport()) return;
367 unsigned pc_and_state =
368 StateField::encode(state) | PcField::encode(masm_->pc_offset());
369 BailoutEntry entry = { id, pc_and_state };
370#ifdef DEBUG
371 // Assert that we don't have multiple bailout entries for the same node.
372 for (int i = 0; i < bailout_entries_.length(); i++) {
373 if (bailout_entries_.at(i).id == entry.id) {
374 AstPrinter printer;
375 PrintF("%s", printer.PrintProgram(info_->function()));
376 UNREACHABLE();
377 }
378 }
379#endif // DEBUG
380 bailout_entries_.Add(entry);
381}
382
383
384void FullCodeGenerator::RecordStackCheck(int ast_id) {
385 // The pc offset does not need to be encoded and packed together with a
386 // state.
387 BailoutEntry entry = { ast_id, masm_->pc_offset() };
388 stack_checks_.Add(entry);
389}
390
391
ricow@chromium.org65fae842010-08-25 15:26:24 +0000392bool FullCodeGenerator::ShouldInlineSmiCase(Token::Value op) {
ricow@chromium.org65fae842010-08-25 15:26:24 +0000393 // Inline smi case inside loops, but not division and modulo which
394 // are too complicated and take up too much space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000395 if (op == Token::DIV ||op == Token::MOD) return false;
396 if (FLAG_always_inline_smi_code) return true;
397 return loop_depth_ > 0;
ricow@chromium.org65fae842010-08-25 15:26:24 +0000398}
399
400
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000401void FullCodeGenerator::EffectContext::Plug(Register reg) const {
402}
403
404
405void FullCodeGenerator::AccumulatorValueContext::Plug(Register reg) const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000406 __ Move(result_register(), reg);
407}
408
409
410void FullCodeGenerator::StackValueContext::Plug(Register reg) const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000411 __ push(reg);
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000412 codegen()->increment_stack_height();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000413}
414
415
416void FullCodeGenerator::TestContext::Plug(Register reg) const {
417 // For simplicity we always test the accumulator register.
418 __ Move(result_register(), reg);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000419 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000420 codegen()->DoTest(this);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000421}
422
423
424void FullCodeGenerator::EffectContext::PlugTOS() const {
425 __ Drop(1);
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000426 codegen()->decrement_stack_height();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000427}
428
429
430void FullCodeGenerator::AccumulatorValueContext::PlugTOS() const {
431 __ pop(result_register());
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000432 codegen()->decrement_stack_height();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000433}
434
435
436void FullCodeGenerator::StackValueContext::PlugTOS() const {
437}
438
439
440void FullCodeGenerator::TestContext::PlugTOS() const {
441 // For simplicity we always test the accumulator register.
442 __ pop(result_register());
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000443 codegen()->decrement_stack_height();
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000444 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000445 codegen()->DoTest(this);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000446}
447
448
449void FullCodeGenerator::EffectContext::PrepareTest(
450 Label* materialize_true,
451 Label* materialize_false,
452 Label** if_true,
453 Label** if_false,
454 Label** fall_through) const {
455 // In an effect context, the true and the false case branch to the
456 // same label.
457 *if_true = *if_false = *fall_through = materialize_true;
458}
459
460
461void FullCodeGenerator::AccumulatorValueContext::PrepareTest(
462 Label* materialize_true,
463 Label* materialize_false,
464 Label** if_true,
465 Label** if_false,
466 Label** fall_through) const {
467 *if_true = *fall_through = materialize_true;
468 *if_false = materialize_false;
469}
470
471
472void FullCodeGenerator::StackValueContext::PrepareTest(
473 Label* materialize_true,
474 Label* materialize_false,
475 Label** if_true,
476 Label** if_false,
477 Label** fall_through) const {
478 *if_true = *fall_through = materialize_true;
479 *if_false = materialize_false;
480}
481
482
483void FullCodeGenerator::TestContext::PrepareTest(
484 Label* materialize_true,
485 Label* materialize_false,
486 Label** if_true,
487 Label** if_false,
488 Label** fall_through) const {
489 *if_true = true_label_;
490 *if_false = false_label_;
491 *fall_through = fall_through_;
ricow@chromium.org65fae842010-08-25 15:26:24 +0000492}
493
494
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000495void FullCodeGenerator::DoTest(const TestContext* context) {
496 DoTest(context->condition(),
497 context->true_label(),
498 context->false_label(),
499 context->fall_through());
500}
501
502
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000503void FullCodeGenerator::VisitDeclarations(
504 ZoneList<Declaration*>* declarations) {
505 int length = declarations->length();
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000506 int global_count = 0;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000507 for (int i = 0; i < length; i++) {
508 Declaration* decl = declarations->at(i);
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000509 EmitDeclaration(decl->proxy(), decl->mode(), decl->fun(), &global_count);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000510 }
511
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000512 // Batch declare global functions and variables.
513 if (global_count > 0) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000514 Handle<FixedArray> array =
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000515 isolate()->factory()->NewFixedArray(2 * global_count, TENURED);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000516 for (int j = 0, i = 0; i < length; i++) {
517 Declaration* decl = declarations->at(i);
518 Variable* var = decl->proxy()->var();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000519
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000520 if (var->IsUnallocated()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000521 array->set(j++, *(var->name()));
522 if (decl->fun() == NULL) {
523 if (var->mode() == Variable::CONST) {
524 // In case this is const property use the hole.
525 array->set_the_hole(j++);
526 } else {
527 array->set_undefined(j++);
528 }
529 } else {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000530 Handle<SharedFunctionInfo> function =
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000531 Compiler::BuildFunctionInfo(decl->fun(), script());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000532 // Check for stack-overflow exception.
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000533 if (function.is_null()) {
534 SetStackOverflow();
535 return;
536 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000537 array->set(j++, *function);
538 }
539 }
540 }
541 // Invoke the platform-dependent code generator to do the actual
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000542 // declaration the global functions and variables.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000543 DeclareGlobals(array);
544 }
545}
546
547
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000548int FullCodeGenerator::DeclareGlobalsFlags() {
549 int flags = 0;
550 if (is_eval()) flags |= kDeclareGlobalsEvalFlag;
551 if (is_strict_mode()) flags |= kDeclareGlobalsStrictModeFlag;
552 if (is_native()) flags |= kDeclareGlobalsNativeFlag;
553 return flags;
554}
555
556
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000557void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000558 CodeGenerator::RecordPositions(masm_, fun->start_position());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000559}
560
561
562void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000563 CodeGenerator::RecordPositions(masm_, fun->end_position() - 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000564}
565
566
567void FullCodeGenerator::SetStatementPosition(Statement* stmt) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000568#ifdef ENABLE_DEBUGGER_SUPPORT
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000569 if (!isolate()->debugger()->IsDebuggerActive()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000570 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000571 } else {
572 // Check if the statement will be breakable without adding a debug break
573 // slot.
574 BreakableStatementChecker checker;
575 checker.Check(stmt);
576 // Record the statement position right here if the statement is not
577 // breakable. For breakable statements the actual recording of the
578 // position will be postponed to the breakable code (typically an IC).
579 bool position_recorded = CodeGenerator::RecordPositions(
580 masm_, stmt->statement_pos(), !checker.is_breakable());
581 // If the position recording did record a new position generate a debug
582 // break slot to make the statement breakable.
583 if (position_recorded) {
584 Debug::GenerateSlot(masm_);
585 }
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000586 }
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000587#else
588 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
589#endif
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000590}
591
592
593void FullCodeGenerator::SetExpressionPosition(Expression* expr, int pos) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000594#ifdef ENABLE_DEBUGGER_SUPPORT
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000595 if (!isolate()->debugger()->IsDebuggerActive()) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000596 CodeGenerator::RecordPositions(masm_, pos);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000597 } else {
598 // Check if the expression will be breakable without adding a debug break
599 // slot.
600 BreakableStatementChecker checker;
601 checker.Check(expr);
602 // Record a statement position right here if the expression is not
603 // breakable. For breakable expressions the actual recording of the
604 // position will be postponed to the breakable code (typically an IC).
605 // NOTE this will record a statement position for something which might
606 // not be a statement. As stepping in the debugger will only stop at
607 // statement positions this is used for e.g. the condition expression of
608 // a do while loop.
609 bool position_recorded = CodeGenerator::RecordPositions(
610 masm_, pos, !checker.is_breakable());
611 // If the position recording did record a new position generate a debug
612 // break slot to make the statement breakable.
613 if (position_recorded) {
614 Debug::GenerateSlot(masm_);
615 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000616 }
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000617#else
618 CodeGenerator::RecordPositions(masm_, pos);
619#endif
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000620}
621
622
623void FullCodeGenerator::SetStatementPosition(int pos) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000624 CodeGenerator::RecordPositions(masm_, pos);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000625}
626
627
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000628void FullCodeGenerator::SetSourcePosition(int pos) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000629 if (pos != RelocInfo::kNoPosition) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000630 masm_->positions_recorder()->RecordPosition(pos);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000631 }
632}
633
634
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000635// Lookup table for code generators for special runtime calls which are
636// generated inline.
637#define INLINE_FUNCTION_GENERATOR_ADDRESS(Name, argc, ressize) \
638 &FullCodeGenerator::Emit##Name,
erik.corry@gmail.com145eff52010-08-23 11:36:18 +0000639
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000640const FullCodeGenerator::InlineFunctionGenerator
641 FullCodeGenerator::kInlineFunctionGenerators[] = {
642 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
643 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
644 };
645#undef INLINE_FUNCTION_GENERATOR_ADDRESS
646
647
648FullCodeGenerator::InlineFunctionGenerator
649 FullCodeGenerator::FindInlineFunctionGenerator(Runtime::FunctionId id) {
whesse@chromium.org023421e2010-12-21 12:19:12 +0000650 int lookup_index =
651 static_cast<int>(id) - static_cast<int>(Runtime::kFirstInlineFunction);
652 ASSERT(lookup_index >= 0);
653 ASSERT(static_cast<size_t>(lookup_index) <
654 ARRAY_SIZE(kInlineFunctionGenerators));
655 return kInlineFunctionGenerators[lookup_index];
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000656}
657
658
659void FullCodeGenerator::EmitInlineRuntimeCall(CallRuntime* node) {
660 ZoneList<Expression*>* args = node->arguments();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000661 const Runtime::Function* function = node->function();
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000662 ASSERT(function != NULL);
663 ASSERT(function->intrinsic_type == Runtime::INLINE);
664 InlineFunctionGenerator generator =
665 FindInlineFunctionGenerator(function->function_id);
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000666 ((*this).*(generator))(args);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000667}
668
669
670void FullCodeGenerator::VisitBinaryOperation(BinaryOperation* expr) {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000671 switch (expr->op()) {
ricow@chromium.org65fae842010-08-25 15:26:24 +0000672 case Token::COMMA:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000673 return VisitComma(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000674 case Token::OR:
675 case Token::AND:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000676 return VisitLogicalExpression(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000677 default:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000678 return VisitArithmeticExpression(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000679 }
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000680}
681
682
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000683void FullCodeGenerator::VisitComma(BinaryOperation* expr) {
684 Comment cmnt(masm_, "[ Comma");
685 VisitForEffect(expr->left());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000686 if (context()->IsTest()) ForwardBailoutToChild(expr);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000687 VisitInCurrentContext(expr->right());
688}
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000689
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000690
691void FullCodeGenerator::VisitLogicalExpression(BinaryOperation* expr) {
692 bool is_logical_and = expr->op() == Token::AND;
693 Comment cmnt(masm_, is_logical_and ? "[ Logical AND" : "[ Logical OR");
694 Expression* left = expr->left();
695 Expression* right = expr->right();
696 int right_id = expr->RightId();
697 Label done;
698
699 if (context()->IsTest()) {
700 Label eval_right;
701 const TestContext* test = TestContext::cast(context());
702 if (is_logical_and) {
703 VisitForControl(left, &eval_right, test->false_label(), &eval_right);
704 } else {
705 VisitForControl(left, test->true_label(), &eval_right, &eval_right);
706 }
707 PrepareForBailoutForId(right_id, NO_REGISTERS);
708 __ bind(&eval_right);
709 ForwardBailoutToChild(expr);
710
711 } else if (context()->IsAccumulatorValue()) {
712 VisitForAccumulatorValue(left);
713 // We want the value in the accumulator for the test, and on the stack in
714 // case we need it.
715 __ push(result_register());
716 Label discard, restore;
717 PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
718 if (is_logical_and) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000719 DoTest(left, &discard, &restore, &restore);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000720 } else {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000721 DoTest(left, &restore, &discard, &restore);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000722 }
723 __ bind(&restore);
724 __ pop(result_register());
725 __ jmp(&done);
726 __ bind(&discard);
727 __ Drop(1);
728 PrepareForBailoutForId(right_id, NO_REGISTERS);
729
730 } else if (context()->IsStackValue()) {
731 VisitForAccumulatorValue(left);
732 // We want the value in the accumulator for the test, and on the stack in
733 // case we need it.
734 __ push(result_register());
735 Label discard;
736 PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
737 if (is_logical_and) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000738 DoTest(left, &discard, &done, &discard);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000739 } else {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000740 DoTest(left, &done, &discard, &discard);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000741 }
742 __ bind(&discard);
743 __ Drop(1);
744 PrepareForBailoutForId(right_id, NO_REGISTERS);
745
746 } else {
747 ASSERT(context()->IsEffect());
748 Label eval_right;
749 if (is_logical_and) {
750 VisitForControl(left, &eval_right, &done, &eval_right);
751 } else {
752 VisitForControl(left, &done, &eval_right, &eval_right);
753 }
754 PrepareForBailoutForId(right_id, NO_REGISTERS);
755 __ bind(&eval_right);
756 }
757
758 VisitInCurrentContext(right);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000759 __ bind(&done);
760}
761
762
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000763void FullCodeGenerator::VisitArithmeticExpression(BinaryOperation* expr) {
764 Token::Value op = expr->op();
765 Comment cmnt(masm_, "[ ArithmeticExpression");
766 Expression* left = expr->left();
767 Expression* right = expr->right();
768 OverwriteMode mode =
769 left->ResultOverwriteAllowed()
770 ? OVERWRITE_LEFT
771 : (right->ResultOverwriteAllowed() ? OVERWRITE_RIGHT : NO_OVERWRITE);
772
773 VisitForStackValue(left);
774 VisitForAccumulatorValue(right);
775
776 SetSourcePosition(expr->position());
777 if (ShouldInlineSmiCase(op)) {
778 EmitInlineSmiBinaryOp(expr, op, mode, left, right);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000779 } else {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000780 EmitBinaryOp(expr, op, mode);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000781 }
782}
783
784
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000785void FullCodeGenerator::ForwardBailoutToChild(Expression* expr) {
786 if (!info_->HasDeoptimizationSupport()) return;
787 ASSERT(context()->IsTest());
788 ASSERT(expr == forward_bailout_stack_->expr());
789 forward_bailout_pending_ = forward_bailout_stack_;
790}
791
792
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000793void FullCodeGenerator::VisitInCurrentContext(Expression* expr) {
794 if (context()->IsTest()) {
795 ForwardBailoutStack stack(expr, forward_bailout_pending_);
796 ForwardBailoutStack* saved = forward_bailout_stack_;
797 forward_bailout_pending_ = NULL;
798 forward_bailout_stack_ = &stack;
799 Visit(expr);
800 forward_bailout_stack_ = saved;
801 } else {
802 ASSERT(forward_bailout_pending_ == NULL);
803 Visit(expr);
804 State state = context()->IsAccumulatorValue() ? TOS_REG : NO_REGISTERS;
805 PrepareForBailout(expr, state);
806 // Forwarding bailouts to children is a one shot operation. It should have
807 // been processed at this point.
808 ASSERT(forward_bailout_pending_ == NULL);
809 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000810}
811
812
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000813void FullCodeGenerator::VisitBlock(Block* stmt) {
814 Comment cmnt(masm_, "[ Block");
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000815 NestedBlock nested_block(this, stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000816 SetStatementPosition(stmt);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000817
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000818 Scope* saved_scope = scope();
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000819 // Push a block context when entering a block with block scoped variables.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000820 if (stmt->block_scope() != NULL) {
821 { Comment cmnt(masm_, "[ Extend block context");
822 scope_ = stmt->block_scope();
823 __ Push(scope_->GetSerializedScopeInfo());
824 PushFunctionArgumentForContextAllocation();
825 __ CallRuntime(Runtime::kPushBlockContext, 2);
826 StoreToFrameField(StandardFrameConstants::kContextOffset,
827 context_register());
828 }
829 { Comment cmnt(masm_, "[ Declarations");
830 VisitDeclarations(scope_->declarations());
831 }
832 }
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +0000833 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000834 VisitStatements(stmt->statements());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000835 scope_ = saved_scope;
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000836 __ bind(nested_block.break_label());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000837 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000838
839 // Pop block context if necessary.
840 if (stmt->block_scope() != NULL) {
841 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
842 // Update local stack frame context field.
843 StoreToFrameField(StandardFrameConstants::kContextOffset,
844 context_register());
845 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000846}
847
848
849void FullCodeGenerator::VisitExpressionStatement(ExpressionStatement* stmt) {
850 Comment cmnt(masm_, "[ ExpressionStatement");
851 SetStatementPosition(stmt);
852 VisitForEffect(stmt->expression());
853}
854
855
856void FullCodeGenerator::VisitEmptyStatement(EmptyStatement* stmt) {
857 Comment cmnt(masm_, "[ EmptyStatement");
858 SetStatementPosition(stmt);
859}
860
861
862void FullCodeGenerator::VisitIfStatement(IfStatement* stmt) {
863 Comment cmnt(masm_, "[ IfStatement");
864 SetStatementPosition(stmt);
865 Label then_part, else_part, done;
866
ricow@chromium.org65fae842010-08-25 15:26:24 +0000867 if (stmt->HasElseStatement()) {
868 VisitForControl(stmt->condition(), &then_part, &else_part, &then_part);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000869 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000870 __ bind(&then_part);
871 Visit(stmt->then_statement());
872 __ jmp(&done);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000873
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000874 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000875 __ bind(&else_part);
876 Visit(stmt->else_statement());
877 } else {
878 VisitForControl(stmt->condition(), &then_part, &done, &then_part);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000879 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000880 __ bind(&then_part);
881 Visit(stmt->then_statement());
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000882
883 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000884 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000885 __ bind(&done);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000886 PrepareForBailoutForId(stmt->IfId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000887}
888
889
890void FullCodeGenerator::VisitContinueStatement(ContinueStatement* stmt) {
891 Comment cmnt(masm_, "[ ContinueStatement");
892 SetStatementPosition(stmt);
893 NestedStatement* current = nesting_stack_;
894 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000895 int context_length = 0;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000896 // When continuing, we clobber the unpredictable value in the accumulator
897 // with one that's safe for GC. If we hit an exit from the try block of
898 // try...finally on our way out, we will unconditionally preserve the
899 // accumulator on the stack.
900 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000901 while (!current->IsContinueTarget(stmt->target())) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000902 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000903 }
904 __ Drop(stack_depth);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000905 if (context_length > 0) {
906 while (context_length > 0) {
907 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
908 --context_length;
909 }
910 StoreToFrameField(StandardFrameConstants::kContextOffset,
911 context_register());
912 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000913
rossberg@chromium.org28a37082011-08-22 11:03:23 +0000914 __ jmp(current->AsIteration()->continue_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000915}
916
917
918void FullCodeGenerator::VisitBreakStatement(BreakStatement* stmt) {
919 Comment cmnt(masm_, "[ BreakStatement");
920 SetStatementPosition(stmt);
921 NestedStatement* current = nesting_stack_;
922 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000923 int context_length = 0;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000924 // When breaking, we clobber the unpredictable value in the accumulator
925 // with one that's safe for GC. If we hit an exit from the try block of
926 // try...finally on our way out, we will unconditionally preserve the
927 // accumulator on the stack.
928 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000929 while (!current->IsBreakTarget(stmt->target())) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000930 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000931 }
932 __ Drop(stack_depth);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000933 if (context_length > 0) {
934 while (context_length > 0) {
935 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
936 --context_length;
937 }
938 StoreToFrameField(StandardFrameConstants::kContextOffset,
939 context_register());
940 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000941
rossberg@chromium.org28a37082011-08-22 11:03:23 +0000942 __ jmp(current->AsBreakable()->break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000943}
944
945
946void FullCodeGenerator::VisitReturnStatement(ReturnStatement* stmt) {
947 Comment cmnt(masm_, "[ ReturnStatement");
948 SetStatementPosition(stmt);
949 Expression* expr = stmt->expression();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000950 VisitForAccumulatorValue(expr);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000951
952 // Exit all nested statements.
953 NestedStatement* current = nesting_stack_;
954 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000955 int context_length = 0;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000956 while (current != NULL) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000957 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000958 }
959 __ Drop(stack_depth);
960
ager@chromium.org2cc82ae2010-06-14 07:35:38 +0000961 EmitReturnSequence();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000962}
963
964
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000965void FullCodeGenerator::VisitWithStatement(WithStatement* stmt) {
966 Comment cmnt(masm_, "[ WithStatement");
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000967 SetStatementPosition(stmt);
968
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000969 VisitForStackValue(stmt->expression());
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000970 PushFunctionArgumentForContextAllocation();
971 __ CallRuntime(Runtime::kPushWithContext, 2);
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000972 decrement_stack_height();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000973 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000974
975 { WithOrCatch body(this);
976 Visit(stmt->statement());
977 }
978
979 // Pop context.
980 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
981 // Update local stack frame context field.
982 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000983}
984
985
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000986void FullCodeGenerator::VisitDoWhileStatement(DoWhileStatement* stmt) {
987 Comment cmnt(masm_, "[ DoWhileStatement");
988 SetStatementPosition(stmt);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000989 Label body, stack_check;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000990
991 Iteration loop_statement(this, stmt);
992 increment_loop_depth();
993
994 __ bind(&body);
995 Visit(stmt->body());
996
ricow@chromium.org65fae842010-08-25 15:26:24 +0000997 // Record the position of the do while condition and make sure it is
998 // possible to break on the condition.
rossberg@chromium.org28a37082011-08-22 11:03:23 +0000999 __ bind(loop_statement.continue_label());
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001000 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001001 SetExpressionPosition(stmt->cond(), stmt->condition_position());
ricow@chromium.org65fae842010-08-25 15:26:24 +00001002 VisitForControl(stmt->cond(),
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001003 &stack_check,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001004 loop_statement.break_label(),
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001005 &stack_check);
1006
1007 // Check stack before looping.
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001008 PrepareForBailoutForId(stmt->BackEdgeId(), NO_REGISTERS);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001009 __ bind(&stack_check);
1010 EmitStackCheck(stmt);
1011 __ jmp(&body);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001012
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001013 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001014 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001015 decrement_loop_depth();
1016}
1017
1018
1019void FullCodeGenerator::VisitWhileStatement(WhileStatement* stmt) {
1020 Comment cmnt(masm_, "[ WhileStatement");
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001021 Label test, body;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001022
1023 Iteration loop_statement(this, stmt);
1024 increment_loop_depth();
1025
1026 // Emit the test at the bottom of the loop.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001027 __ jmp(&test);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001028
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001029 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001030 __ bind(&body);
1031 Visit(stmt->body());
ricow@chromium.org65fae842010-08-25 15:26:24 +00001032
1033 // Emit the statement position here as this is where the while
1034 // statement code starts.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001035 __ bind(loop_statement.continue_label());
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001036 SetStatementPosition(stmt);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001037
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001038 // Check stack before looping.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001039 EmitStackCheck(stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001040
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001041 __ bind(&test);
ricow@chromium.org65fae842010-08-25 15:26:24 +00001042 VisitForControl(stmt->cond(),
1043 &body,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001044 loop_statement.break_label(),
1045 loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001046
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001047 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001048 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001049 decrement_loop_depth();
1050}
1051
1052
1053void FullCodeGenerator::VisitForStatement(ForStatement* stmt) {
1054 Comment cmnt(masm_, "[ ForStatement");
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001055 Label test, body;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001056
1057 Iteration loop_statement(this, stmt);
1058 if (stmt->init() != NULL) {
1059 Visit(stmt->init());
1060 }
1061
1062 increment_loop_depth();
1063 // Emit the test at the bottom of the loop (even if empty).
1064 __ jmp(&test);
1065
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001066 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001067 __ bind(&body);
1068 Visit(stmt->body());
1069
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001070 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001071 __ bind(loop_statement.continue_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001072 SetStatementPosition(stmt);
1073 if (stmt->next() != NULL) {
1074 Visit(stmt->next());
1075 }
1076
ricow@chromium.org65fae842010-08-25 15:26:24 +00001077 // Emit the statement position here as this is where the for
1078 // statement code starts.
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001079 SetStatementPosition(stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001080
1081 // Check stack before looping.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001082 EmitStackCheck(stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001083
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001084 __ bind(&test);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001085 if (stmt->cond() != NULL) {
ricow@chromium.org65fae842010-08-25 15:26:24 +00001086 VisitForControl(stmt->cond(),
1087 &body,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001088 loop_statement.break_label(),
1089 loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001090 } else {
1091 __ jmp(&body);
1092 }
1093
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001094 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001095 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001096 decrement_loop_depth();
1097}
1098
1099
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001100void FullCodeGenerator::VisitTryCatchStatement(TryCatchStatement* stmt) {
1101 Comment cmnt(masm_, "[ TryCatchStatement");
1102 SetStatementPosition(stmt);
1103 // The try block adds a handler to the exception handler chain
1104 // before entering, and removes it again when exiting normally.
1105 // If an exception is thrown during execution of the try block,
1106 // control is passed to the handler, which also consumes the handler.
1107 // At this point, the exception is in a register, and store it in
1108 // the temporary local variable (prints as ".catch-var") before
1109 // executing the catch block. The catch block has been rewritten
1110 // to introduce a new scope to bind the catch variable and to remove
1111 // that scope again afterwards.
1112
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001113 Label try_handler_setup, done;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001114 __ Call(&try_handler_setup);
1115 // Try handler code, exception in result register.
1116
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001117 // Extend the context before executing the catch block.
1118 { Comment cmnt(masm_, "[ Extend catch context");
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001119 __ Push(stmt->variable()->name());
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001120 __ push(result_register());
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00001121 PushFunctionArgumentForContextAllocation();
1122 __ CallRuntime(Runtime::kPushCatchContext, 3);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001123 StoreToFrameField(StandardFrameConstants::kContextOffset,
1124 context_register());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001125 }
1126
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001127 Scope* saved_scope = scope();
1128 scope_ = stmt->scope();
1129 ASSERT(scope_->declarations()->is_empty());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001130 { WithOrCatch body(this);
1131 Visit(stmt->catch_block());
1132 }
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001133 // Restore the context.
1134 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1135 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001136 scope_ = saved_scope;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001137 __ jmp(&done);
1138
1139 // Try block code. Sets up the exception handler chain.
1140 __ bind(&try_handler_setup);
1141 {
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001142 const int delta = StackHandlerConstants::kSize / kPointerSize;
1143 TryCatch try_block(this);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001144 __ PushTryHandler(IN_JAVASCRIPT, TRY_CATCH_HANDLER);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001145 increment_stack_height(delta);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001146 Visit(stmt->try_block());
1147 __ PopTryHandler();
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001148 decrement_stack_height(delta);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001149 }
1150 __ bind(&done);
1151}
1152
1153
1154void FullCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
1155 Comment cmnt(masm_, "[ TryFinallyStatement");
1156 SetStatementPosition(stmt);
1157 // Try finally is compiled by setting up a try-handler on the stack while
1158 // executing the try body, and removing it again afterwards.
1159 //
1160 // The try-finally construct can enter the finally block in three ways:
1161 // 1. By exiting the try-block normally. This removes the try-handler and
1162 // calls the finally block code before continuing.
1163 // 2. By exiting the try-block with a function-local control flow transfer
1164 // (break/continue/return). The site of the, e.g., break removes the
1165 // try handler and calls the finally block code before continuing
1166 // its outward control transfer.
1167 // 3. by exiting the try-block with a thrown exception.
1168 // This can happen in nested function calls. It traverses the try-handler
1169 // chain and consumes the try-handler entry before jumping to the
1170 // handler code. The handler code then calls the finally-block before
1171 // rethrowing the exception.
1172 //
1173 // The finally block must assume a return address on top of the stack
1174 // (or in the link register on ARM chips) and a value (return value or
1175 // exception) in the result register (rax/eax/r0), both of which must
1176 // be preserved. The return address isn't GC-safe, so it should be
1177 // cooked before GC.
1178 Label finally_entry;
1179 Label try_handler_setup;
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001180 const int original_stack_height = stack_height();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001181
1182 // Setup the try-handler chain. Use a call to
1183 // Jump to try-handler setup and try-block code. Use call to put try-handler
1184 // address on stack.
1185 __ Call(&try_handler_setup);
1186 // Try handler code. Return address of call is pushed on handler stack.
1187 {
1188 // This code is only executed during stack-handler traversal when an
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001189 // exception is thrown. The exception is in the result register, which
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001190 // is retained by the finally block.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001191 // Call the finally block and then rethrow the exception if it returns.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001192 __ Call(&finally_entry);
1193 __ push(result_register());
1194 __ CallRuntime(Runtime::kReThrow, 1);
1195 }
1196
1197 __ bind(&finally_entry);
1198 {
1199 // Finally block implementation.
1200 Finally finally_block(this);
1201 EnterFinallyBlock();
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001202 set_stack_height(original_stack_height + Finally::kElementCount);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001203 Visit(stmt->finally_block());
1204 ExitFinallyBlock(); // Return to the calling code.
1205 }
1206
1207 __ bind(&try_handler_setup);
1208 {
1209 // Setup try handler (stack pointer registers).
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001210 const int delta = StackHandlerConstants::kSize / kPointerSize;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001211 TryFinally try_block(this, &finally_entry);
1212 __ PushTryHandler(IN_JAVASCRIPT, TRY_FINALLY_HANDLER);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001213 set_stack_height(original_stack_height + delta);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001214 Visit(stmt->try_block());
1215 __ PopTryHandler();
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001216 set_stack_height(original_stack_height);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001217 }
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001218 // Execute the finally block on the way out. Clobber the unpredictable
1219 // value in the accumulator with one that's safe for GC. The finally
1220 // block will unconditionally preserve the accumulator on the stack.
1221 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001222 __ Call(&finally_entry);
1223}
1224
1225
1226void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) {
1227#ifdef ENABLE_DEBUGGER_SUPPORT
1228 Comment cmnt(masm_, "[ DebuggerStatement");
1229 SetStatementPosition(stmt);
1230
ager@chromium.org5c838252010-02-19 08:53:10 +00001231 __ DebugBreak();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001232 // Ignore the return value.
1233#endif
1234}
1235
1236
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001237void FullCodeGenerator::VisitConditional(Conditional* expr) {
1238 Comment cmnt(masm_, "[ Conditional");
1239 Label true_case, false_case, done;
ricow@chromium.org65fae842010-08-25 15:26:24 +00001240 VisitForControl(expr->condition(), &true_case, &false_case, &true_case);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001241
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001242 PrepareForBailoutForId(expr->ThenId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001243 __ bind(&true_case);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001244 SetExpressionPosition(expr->then_expression(),
1245 expr->then_expression_position());
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001246 int start_stack_height = stack_height();
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001247 if (context()->IsTest()) {
1248 const TestContext* for_test = TestContext::cast(context());
1249 VisitForControl(expr->then_expression(),
1250 for_test->true_label(),
1251 for_test->false_label(),
1252 NULL);
1253 } else {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +00001254 VisitInCurrentContext(expr->then_expression());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001255 __ jmp(&done);
1256 }
1257
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001258 PrepareForBailoutForId(expr->ElseId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001259 __ bind(&false_case);
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001260 set_stack_height(start_stack_height);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001261 if (context()->IsTest()) ForwardBailoutToChild(expr);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001262 SetExpressionPosition(expr->else_expression(),
1263 expr->else_expression_position());
ricow@chromium.orgd2be9012011-06-01 06:00:58 +00001264 VisitInCurrentContext(expr->else_expression());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001265 // If control flow falls through Visit, merge it with true case here.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001266 if (!context()->IsTest()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001267 __ bind(&done);
1268 }
1269}
1270
1271
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001272void FullCodeGenerator::VisitLiteral(Literal* expr) {
1273 Comment cmnt(masm_, "[ Literal");
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001274 context()->Plug(expr->handle());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001275}
1276
1277
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001278void FullCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) {
1279 Comment cmnt(masm_, "[ FunctionLiteral");
1280
1281 // Build the function boilerplate and instantiate it.
1282 Handle<SharedFunctionInfo> function_info =
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001283 Compiler::BuildFunctionInfo(expr, script());
1284 if (function_info.is_null()) {
1285 SetStackOverflow();
1286 return;
1287 }
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00001288 EmitNewClosure(function_info, expr->pretenure());
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001289}
1290
1291
1292void FullCodeGenerator::VisitSharedFunctionInfoLiteral(
1293 SharedFunctionInfoLiteral* expr) {
1294 Comment cmnt(masm_, "[ SharedFunctionInfoLiteral");
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00001295 EmitNewClosure(expr->shared_function_info(), false);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001296}
1297
1298
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001299void FullCodeGenerator::VisitThrow(Throw* expr) {
1300 Comment cmnt(masm_, "[ Throw");
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001301 // Throw has no effect on the stack height or the current expression context.
1302 // Usually the expression context is null, because throw is a statement.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001303 VisitForStackValue(expr->exception());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001304 __ CallRuntime(Runtime::kThrow, 1);
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001305 decrement_stack_height();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001306 // Never returns here.
1307}
1308
1309
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001310FullCodeGenerator::NestedStatement* FullCodeGenerator::TryCatch::Exit(
1311 int* stack_depth,
1312 int* context_length) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001313 // The macros used here must preserve the result register.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001314 __ Drop(*stack_depth);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001315 __ PopTryHandler();
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001316 *stack_depth = 0;
1317 return previous_;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001318}
1319
ricow@chromium.org65fae842010-08-25 15:26:24 +00001320
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001321bool FullCodeGenerator::TryLiteralCompare(CompareOperation* expr) {
1322 Expression *sub_expr;
ager@chromium.org04921a82011-06-27 13:21:41 +00001323 Handle<String> check;
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001324 if (expr->IsLiteralCompareTypeof(&sub_expr, &check)) {
1325 EmitLiteralCompareTypeof(sub_expr, check);
ager@chromium.org04921a82011-06-27 13:21:41 +00001326 return true;
1327 }
1328
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001329 if (expr->IsLiteralCompareUndefined(&sub_expr)) {
1330 EmitLiteralCompareNil(expr, sub_expr, kUndefinedValue);
1331 return true;
1332 }
1333
1334 if (expr->IsLiteralCompareNull(&sub_expr)) {
1335 EmitLiteralCompareNil(expr, sub_expr, kNullValue);
ager@chromium.org04921a82011-06-27 13:21:41 +00001336 return true;
1337 }
1338
1339 return false;
1340}
1341
1342
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001343#undef __
1344
1345
1346} } // namespace v8::internal