blob: 807387413299303de1759c19b1b0f9c59c6d94fa [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
ricow@chromium.org65fae842010-08-25 15:26:24 +0000247void BreakableStatementChecker::VisitCompareToNull(CompareToNull* expr) {
248 Visit(expr->expression());
249}
250
251
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000252void BreakableStatementChecker::VisitCompareOperation(CompareOperation* expr) {
253 Visit(expr->left());
254 Visit(expr->right());
255}
256
257
258void BreakableStatementChecker::VisitThisFunction(ThisFunction* expr) {
259}
260
261
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000262#define __ ACCESS_MASM(masm())
263
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000264bool FullCodeGenerator::MakeCode(CompilationInfo* info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000265 Isolate* isolate = info->isolate();
ager@chromium.org5c838252010-02-19 08:53:10 +0000266 Handle<Script> script = info->script();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000267 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
268 int len = String::cast(script->source())->length();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000269 isolate->counters()->total_full_codegen_source_size()->Increment(len);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000270 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000271 if (FLAG_trace_codegen) {
272 PrintF("Full Compiler - ");
273 }
ager@chromium.org5c838252010-02-19 08:53:10 +0000274 CodeGenerator::MakeCodePrologue(info);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000275 const int kInitialBufferSize = 4 * KB;
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000276 MacroAssembler masm(info->isolate(), NULL, kInitialBufferSize);
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000277#ifdef ENABLE_GDB_JIT_INTERFACE
278 masm.positions_recorder()->StartGDBJITLineInfoRecording();
279#endif
ager@chromium.org5c838252010-02-19 08:53:10 +0000280
281 FullCodeGenerator cgen(&masm);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000282 cgen.Generate(info);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000283 if (cgen.HasStackOverflow()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000284 ASSERT(!isolate->has_pending_exception());
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000285 return false;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000286 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000287 unsigned table_offset = cgen.EmitStackCheckTable();
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000288
lrn@chromium.org34e60782011-09-15 07:25:40 +0000289 Code::Flags flags = Code::ComputeFlags(Code::FUNCTION);
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000290 Handle<Code> code = CodeGenerator::MakeCodeEpilogue(&masm, flags, info);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000291 code->set_optimizable(info->IsOptimizable());
292 cgen.PopulateDeoptimizationData(code);
293 code->set_has_deoptimization_support(info->HasDeoptimizationSupport());
lrn@chromium.org34e60782011-09-15 07:25:40 +0000294 code->set_has_debug_break_slots(
295 info->isolate()->debugger()->IsDebuggerActive());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000296 code->set_allow_osr_at_loop_nesting_level(0);
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000297 code->set_stack_check_table_offset(table_offset);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000298 CodeGenerator::PrintCode(code, info);
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000299 info->SetCode(code); // may be an empty handle.
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000300#ifdef ENABLE_GDB_JIT_INTERFACE
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000301 if (FLAG_gdbjit && !code.is_null()) {
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000302 GDBJITLineInfo* lineinfo =
303 masm.positions_recorder()->DetachGDBJITLineInfo();
304
305 GDBJIT(RegisterDetailedLineInfo(*code, lineinfo));
306 }
307#endif
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000308 return !code.is_null();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000309}
310
311
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000312unsigned FullCodeGenerator::EmitStackCheckTable() {
313 // The stack check table consists of a length (in number of entries)
314 // field, and then a sequence of entries. Each entry is a pair of AST id
315 // and code-relative pc offset.
316 masm()->Align(kIntSize);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000317 unsigned offset = masm()->pc_offset();
318 unsigned length = stack_checks_.length();
319 __ dd(length);
320 for (unsigned i = 0; i < length; ++i) {
321 __ dd(stack_checks_[i].id);
322 __ dd(stack_checks_[i].pc_and_state);
323 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000324 return offset;
325}
326
327
328void FullCodeGenerator::PopulateDeoptimizationData(Handle<Code> code) {
329 // Fill in the deoptimization information.
330 ASSERT(info_->HasDeoptimizationSupport() || bailout_entries_.is_empty());
331 if (!info_->HasDeoptimizationSupport()) return;
332 int length = bailout_entries_.length();
333 Handle<DeoptimizationOutputData> data =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000334 isolate()->factory()->
335 NewDeoptimizationOutputData(length, TENURED);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000336 for (int i = 0; i < length; i++) {
337 data->SetAstId(i, Smi::FromInt(bailout_entries_[i].id));
338 data->SetPcAndState(i, Smi::FromInt(bailout_entries_[i].pc_and_state));
339 }
340 code->set_deoptimization_data(*data);
341}
342
343
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000344void FullCodeGenerator::PrepareForBailout(Expression* node, State state) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000345 PrepareForBailoutForId(node->id(), state);
346}
347
348
349void FullCodeGenerator::RecordJSReturnSite(Call* call) {
350 // We record the offset of the function return so we can rebuild the frame
351 // if the function was inlined, i.e., this is the return address in the
352 // inlined function's frame.
353 //
354 // The state is ignored. We defensively set it to TOS_REG, which is the
355 // real state of the unoptimized code at the return site.
356 PrepareForBailoutForId(call->ReturnId(), TOS_REG);
357#ifdef DEBUG
358 // In debug builds, mark the return so we can verify that this function
359 // was called.
360 ASSERT(!call->return_is_recorded_);
361 call->return_is_recorded_ = true;
362#endif
363}
364
365
366void FullCodeGenerator::PrepareForBailoutForId(int id, State state) {
367 // There's no need to prepare this code for bailouts from already optimized
368 // code or code that can't be optimized.
369 if (!FLAG_deopt || !info_->HasDeoptimizationSupport()) return;
370 unsigned pc_and_state =
371 StateField::encode(state) | PcField::encode(masm_->pc_offset());
372 BailoutEntry entry = { id, pc_and_state };
373#ifdef DEBUG
374 // Assert that we don't have multiple bailout entries for the same node.
375 for (int i = 0; i < bailout_entries_.length(); i++) {
376 if (bailout_entries_.at(i).id == entry.id) {
377 AstPrinter printer;
378 PrintF("%s", printer.PrintProgram(info_->function()));
379 UNREACHABLE();
380 }
381 }
382#endif // DEBUG
383 bailout_entries_.Add(entry);
384}
385
386
387void FullCodeGenerator::RecordStackCheck(int ast_id) {
388 // The pc offset does not need to be encoded and packed together with a
389 // state.
390 BailoutEntry entry = { ast_id, masm_->pc_offset() };
391 stack_checks_.Add(entry);
392}
393
394
ricow@chromium.org65fae842010-08-25 15:26:24 +0000395bool FullCodeGenerator::ShouldInlineSmiCase(Token::Value op) {
ricow@chromium.org65fae842010-08-25 15:26:24 +0000396 // Inline smi case inside loops, but not division and modulo which
397 // are too complicated and take up too much space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000398 if (op == Token::DIV ||op == Token::MOD) return false;
399 if (FLAG_always_inline_smi_code) return true;
400 return loop_depth_ > 0;
ricow@chromium.org65fae842010-08-25 15:26:24 +0000401}
402
403
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000404void FullCodeGenerator::EffectContext::Plug(Register reg) const {
405}
406
407
408void FullCodeGenerator::AccumulatorValueContext::Plug(Register reg) const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000409 __ Move(result_register(), reg);
410}
411
412
413void FullCodeGenerator::StackValueContext::Plug(Register reg) const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000414 __ push(reg);
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000415 codegen()->increment_stack_height();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000416}
417
418
419void FullCodeGenerator::TestContext::Plug(Register reg) const {
420 // For simplicity we always test the accumulator register.
421 __ Move(result_register(), reg);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000422 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000423 codegen()->DoTest(this);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000424}
425
426
427void FullCodeGenerator::EffectContext::PlugTOS() const {
428 __ Drop(1);
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000429 codegen()->decrement_stack_height();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000430}
431
432
433void FullCodeGenerator::AccumulatorValueContext::PlugTOS() const {
434 __ pop(result_register());
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000435 codegen()->decrement_stack_height();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000436}
437
438
439void FullCodeGenerator::StackValueContext::PlugTOS() const {
440}
441
442
443void FullCodeGenerator::TestContext::PlugTOS() const {
444 // For simplicity we always test the accumulator register.
445 __ pop(result_register());
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000446 codegen()->decrement_stack_height();
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000447 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000448 codegen()->DoTest(this);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000449}
450
451
452void FullCodeGenerator::EffectContext::PrepareTest(
453 Label* materialize_true,
454 Label* materialize_false,
455 Label** if_true,
456 Label** if_false,
457 Label** fall_through) const {
458 // In an effect context, the true and the false case branch to the
459 // same label.
460 *if_true = *if_false = *fall_through = materialize_true;
461}
462
463
464void FullCodeGenerator::AccumulatorValueContext::PrepareTest(
465 Label* materialize_true,
466 Label* materialize_false,
467 Label** if_true,
468 Label** if_false,
469 Label** fall_through) const {
470 *if_true = *fall_through = materialize_true;
471 *if_false = materialize_false;
472}
473
474
475void FullCodeGenerator::StackValueContext::PrepareTest(
476 Label* materialize_true,
477 Label* materialize_false,
478 Label** if_true,
479 Label** if_false,
480 Label** fall_through) const {
481 *if_true = *fall_through = materialize_true;
482 *if_false = materialize_false;
483}
484
485
486void FullCodeGenerator::TestContext::PrepareTest(
487 Label* materialize_true,
488 Label* materialize_false,
489 Label** if_true,
490 Label** if_false,
491 Label** fall_through) const {
492 *if_true = true_label_;
493 *if_false = false_label_;
494 *fall_through = fall_through_;
ricow@chromium.org65fae842010-08-25 15:26:24 +0000495}
496
497
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000498void FullCodeGenerator::DoTest(const TestContext* context) {
499 DoTest(context->condition(),
500 context->true_label(),
501 context->false_label(),
502 context->fall_through());
503}
504
505
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000506void FullCodeGenerator::VisitDeclarations(
507 ZoneList<Declaration*>* declarations) {
508 int length = declarations->length();
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000509 int global_count = 0;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000510 for (int i = 0; i < length; i++) {
511 Declaration* decl = declarations->at(i);
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000512 EmitDeclaration(decl->proxy(), decl->mode(), decl->fun(), &global_count);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000513 }
514
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000515 // Batch declare global functions and variables.
516 if (global_count > 0) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000517 Handle<FixedArray> array =
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000518 isolate()->factory()->NewFixedArray(2 * global_count, TENURED);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000519 for (int j = 0, i = 0; i < length; i++) {
520 Declaration* decl = declarations->at(i);
521 Variable* var = decl->proxy()->var();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000522
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000523 if (var->IsUnallocated()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000524 array->set(j++, *(var->name()));
525 if (decl->fun() == NULL) {
526 if (var->mode() == Variable::CONST) {
527 // In case this is const property use the hole.
528 array->set_the_hole(j++);
529 } else {
530 array->set_undefined(j++);
531 }
532 } else {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000533 Handle<SharedFunctionInfo> function =
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000534 Compiler::BuildFunctionInfo(decl->fun(), script());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000535 // Check for stack-overflow exception.
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000536 if (function.is_null()) {
537 SetStackOverflow();
538 return;
539 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000540 array->set(j++, *function);
541 }
542 }
543 }
544 // Invoke the platform-dependent code generator to do the actual
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000545 // declaration the global functions and variables.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000546 DeclareGlobals(array);
547 }
548}
549
550
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000551int FullCodeGenerator::DeclareGlobalsFlags() {
552 int flags = 0;
553 if (is_eval()) flags |= kDeclareGlobalsEvalFlag;
554 if (is_strict_mode()) flags |= kDeclareGlobalsStrictModeFlag;
555 if (is_native()) flags |= kDeclareGlobalsNativeFlag;
556 return flags;
557}
558
559
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000560void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000561 CodeGenerator::RecordPositions(masm_, fun->start_position());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000562}
563
564
565void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000566 CodeGenerator::RecordPositions(masm_, fun->end_position() - 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000567}
568
569
570void FullCodeGenerator::SetStatementPosition(Statement* stmt) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000571#ifdef ENABLE_DEBUGGER_SUPPORT
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000572 if (!isolate()->debugger()->IsDebuggerActive()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000573 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000574 } else {
575 // Check if the statement will be breakable without adding a debug break
576 // slot.
577 BreakableStatementChecker checker;
578 checker.Check(stmt);
579 // Record the statement position right here if the statement is not
580 // breakable. For breakable statements the actual recording of the
581 // position will be postponed to the breakable code (typically an IC).
582 bool position_recorded = CodeGenerator::RecordPositions(
583 masm_, stmt->statement_pos(), !checker.is_breakable());
584 // If the position recording did record a new position generate a debug
585 // break slot to make the statement breakable.
586 if (position_recorded) {
587 Debug::GenerateSlot(masm_);
588 }
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000589 }
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000590#else
591 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
592#endif
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000593}
594
595
596void FullCodeGenerator::SetExpressionPosition(Expression* expr, int pos) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000597#ifdef ENABLE_DEBUGGER_SUPPORT
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000598 if (!isolate()->debugger()->IsDebuggerActive()) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000599 CodeGenerator::RecordPositions(masm_, pos);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000600 } else {
601 // Check if the expression will be breakable without adding a debug break
602 // slot.
603 BreakableStatementChecker checker;
604 checker.Check(expr);
605 // Record a statement position right here if the expression is not
606 // breakable. For breakable expressions the actual recording of the
607 // position will be postponed to the breakable code (typically an IC).
608 // NOTE this will record a statement position for something which might
609 // not be a statement. As stepping in the debugger will only stop at
610 // statement positions this is used for e.g. the condition expression of
611 // a do while loop.
612 bool position_recorded = CodeGenerator::RecordPositions(
613 masm_, pos, !checker.is_breakable());
614 // If the position recording did record a new position generate a debug
615 // break slot to make the statement breakable.
616 if (position_recorded) {
617 Debug::GenerateSlot(masm_);
618 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000619 }
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000620#else
621 CodeGenerator::RecordPositions(masm_, pos);
622#endif
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000623}
624
625
626void FullCodeGenerator::SetStatementPosition(int pos) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000627 CodeGenerator::RecordPositions(masm_, pos);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000628}
629
630
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000631void FullCodeGenerator::SetSourcePosition(int pos) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000632 if (pos != RelocInfo::kNoPosition) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000633 masm_->positions_recorder()->RecordPosition(pos);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000634 }
635}
636
637
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000638// Lookup table for code generators for special runtime calls which are
639// generated inline.
640#define INLINE_FUNCTION_GENERATOR_ADDRESS(Name, argc, ressize) \
641 &FullCodeGenerator::Emit##Name,
erik.corry@gmail.com145eff52010-08-23 11:36:18 +0000642
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000643const FullCodeGenerator::InlineFunctionGenerator
644 FullCodeGenerator::kInlineFunctionGenerators[] = {
645 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
646 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
647 };
648#undef INLINE_FUNCTION_GENERATOR_ADDRESS
649
650
651FullCodeGenerator::InlineFunctionGenerator
652 FullCodeGenerator::FindInlineFunctionGenerator(Runtime::FunctionId id) {
whesse@chromium.org023421e2010-12-21 12:19:12 +0000653 int lookup_index =
654 static_cast<int>(id) - static_cast<int>(Runtime::kFirstInlineFunction);
655 ASSERT(lookup_index >= 0);
656 ASSERT(static_cast<size_t>(lookup_index) <
657 ARRAY_SIZE(kInlineFunctionGenerators));
658 return kInlineFunctionGenerators[lookup_index];
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000659}
660
661
662void FullCodeGenerator::EmitInlineRuntimeCall(CallRuntime* node) {
663 ZoneList<Expression*>* args = node->arguments();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000664 const Runtime::Function* function = node->function();
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000665 ASSERT(function != NULL);
666 ASSERT(function->intrinsic_type == Runtime::INLINE);
667 InlineFunctionGenerator generator =
668 FindInlineFunctionGenerator(function->function_id);
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000669 ((*this).*(generator))(args);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000670}
671
672
673void FullCodeGenerator::VisitBinaryOperation(BinaryOperation* expr) {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000674 switch (expr->op()) {
ricow@chromium.org65fae842010-08-25 15:26:24 +0000675 case Token::COMMA:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000676 return VisitComma(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000677 case Token::OR:
678 case Token::AND:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000679 return VisitLogicalExpression(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000680 default:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000681 return VisitArithmeticExpression(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000682 }
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000683}
684
685
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000686void FullCodeGenerator::VisitComma(BinaryOperation* expr) {
687 Comment cmnt(masm_, "[ Comma");
688 VisitForEffect(expr->left());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000689 if (context()->IsTest()) ForwardBailoutToChild(expr);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000690 VisitInCurrentContext(expr->right());
691}
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000692
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000693
694void FullCodeGenerator::VisitLogicalExpression(BinaryOperation* expr) {
695 bool is_logical_and = expr->op() == Token::AND;
696 Comment cmnt(masm_, is_logical_and ? "[ Logical AND" : "[ Logical OR");
697 Expression* left = expr->left();
698 Expression* right = expr->right();
699 int right_id = expr->RightId();
700 Label done;
701
702 if (context()->IsTest()) {
703 Label eval_right;
704 const TestContext* test = TestContext::cast(context());
705 if (is_logical_and) {
706 VisitForControl(left, &eval_right, test->false_label(), &eval_right);
707 } else {
708 VisitForControl(left, test->true_label(), &eval_right, &eval_right);
709 }
710 PrepareForBailoutForId(right_id, NO_REGISTERS);
711 __ bind(&eval_right);
712 ForwardBailoutToChild(expr);
713
714 } else if (context()->IsAccumulatorValue()) {
715 VisitForAccumulatorValue(left);
716 // We want the value in the accumulator for the test, and on the stack in
717 // case we need it.
718 __ push(result_register());
719 Label discard, restore;
720 PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
721 if (is_logical_and) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000722 DoTest(left, &discard, &restore, &restore);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000723 } else {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000724 DoTest(left, &restore, &discard, &restore);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000725 }
726 __ bind(&restore);
727 __ pop(result_register());
728 __ jmp(&done);
729 __ bind(&discard);
730 __ Drop(1);
731 PrepareForBailoutForId(right_id, NO_REGISTERS);
732
733 } else if (context()->IsStackValue()) {
734 VisitForAccumulatorValue(left);
735 // We want the value in the accumulator for the test, and on the stack in
736 // case we need it.
737 __ push(result_register());
738 Label discard;
739 PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
740 if (is_logical_and) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000741 DoTest(left, &discard, &done, &discard);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000742 } else {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000743 DoTest(left, &done, &discard, &discard);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000744 }
745 __ bind(&discard);
746 __ Drop(1);
747 PrepareForBailoutForId(right_id, NO_REGISTERS);
748
749 } else {
750 ASSERT(context()->IsEffect());
751 Label eval_right;
752 if (is_logical_and) {
753 VisitForControl(left, &eval_right, &done, &eval_right);
754 } else {
755 VisitForControl(left, &done, &eval_right, &eval_right);
756 }
757 PrepareForBailoutForId(right_id, NO_REGISTERS);
758 __ bind(&eval_right);
759 }
760
761 VisitInCurrentContext(right);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000762 __ bind(&done);
763}
764
765
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000766void FullCodeGenerator::VisitArithmeticExpression(BinaryOperation* expr) {
767 Token::Value op = expr->op();
768 Comment cmnt(masm_, "[ ArithmeticExpression");
769 Expression* left = expr->left();
770 Expression* right = expr->right();
771 OverwriteMode mode =
772 left->ResultOverwriteAllowed()
773 ? OVERWRITE_LEFT
774 : (right->ResultOverwriteAllowed() ? OVERWRITE_RIGHT : NO_OVERWRITE);
775
776 VisitForStackValue(left);
777 VisitForAccumulatorValue(right);
778
779 SetSourcePosition(expr->position());
780 if (ShouldInlineSmiCase(op)) {
781 EmitInlineSmiBinaryOp(expr, op, mode, left, right);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000782 } else {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000783 EmitBinaryOp(expr, op, mode);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000784 }
785}
786
787
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000788void FullCodeGenerator::ForwardBailoutToChild(Expression* expr) {
789 if (!info_->HasDeoptimizationSupport()) return;
790 ASSERT(context()->IsTest());
791 ASSERT(expr == forward_bailout_stack_->expr());
792 forward_bailout_pending_ = forward_bailout_stack_;
793}
794
795
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000796void FullCodeGenerator::VisitInCurrentContext(Expression* expr) {
797 if (context()->IsTest()) {
798 ForwardBailoutStack stack(expr, forward_bailout_pending_);
799 ForwardBailoutStack* saved = forward_bailout_stack_;
800 forward_bailout_pending_ = NULL;
801 forward_bailout_stack_ = &stack;
802 Visit(expr);
803 forward_bailout_stack_ = saved;
804 } else {
805 ASSERT(forward_bailout_pending_ == NULL);
806 Visit(expr);
807 State state = context()->IsAccumulatorValue() ? TOS_REG : NO_REGISTERS;
808 PrepareForBailout(expr, state);
809 // Forwarding bailouts to children is a one shot operation. It should have
810 // been processed at this point.
811 ASSERT(forward_bailout_pending_ == NULL);
812 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000813}
814
815
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000816void FullCodeGenerator::VisitBlock(Block* stmt) {
817 Comment cmnt(masm_, "[ Block");
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000818 NestedBlock nested_block(this, stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000819 SetStatementPosition(stmt);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000820
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000821 Scope* saved_scope = scope();
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000822 // Push a block context when entering a block with block scoped variables.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000823 if (stmt->block_scope() != NULL) {
824 { Comment cmnt(masm_, "[ Extend block context");
825 scope_ = stmt->block_scope();
826 __ Push(scope_->GetSerializedScopeInfo());
827 PushFunctionArgumentForContextAllocation();
828 __ CallRuntime(Runtime::kPushBlockContext, 2);
829 StoreToFrameField(StandardFrameConstants::kContextOffset,
830 context_register());
831 }
832 { Comment cmnt(masm_, "[ Declarations");
833 VisitDeclarations(scope_->declarations());
834 }
835 }
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +0000836 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000837 VisitStatements(stmt->statements());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000838 scope_ = saved_scope;
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000839 __ bind(nested_block.break_label());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000840 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000841
842 // Pop block context if necessary.
843 if (stmt->block_scope() != NULL) {
844 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
845 // Update local stack frame context field.
846 StoreToFrameField(StandardFrameConstants::kContextOffset,
847 context_register());
848 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000849}
850
851
852void FullCodeGenerator::VisitExpressionStatement(ExpressionStatement* stmt) {
853 Comment cmnt(masm_, "[ ExpressionStatement");
854 SetStatementPosition(stmt);
855 VisitForEffect(stmt->expression());
856}
857
858
859void FullCodeGenerator::VisitEmptyStatement(EmptyStatement* stmt) {
860 Comment cmnt(masm_, "[ EmptyStatement");
861 SetStatementPosition(stmt);
862}
863
864
865void FullCodeGenerator::VisitIfStatement(IfStatement* stmt) {
866 Comment cmnt(masm_, "[ IfStatement");
867 SetStatementPosition(stmt);
868 Label then_part, else_part, done;
869
ricow@chromium.org65fae842010-08-25 15:26:24 +0000870 if (stmt->HasElseStatement()) {
871 VisitForControl(stmt->condition(), &then_part, &else_part, &then_part);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000872 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000873 __ bind(&then_part);
874 Visit(stmt->then_statement());
875 __ jmp(&done);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000876
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000877 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000878 __ bind(&else_part);
879 Visit(stmt->else_statement());
880 } else {
881 VisitForControl(stmt->condition(), &then_part, &done, &then_part);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000882 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000883 __ bind(&then_part);
884 Visit(stmt->then_statement());
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000885
886 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000887 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000888 __ bind(&done);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000889 PrepareForBailoutForId(stmt->IfId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000890}
891
892
893void FullCodeGenerator::VisitContinueStatement(ContinueStatement* stmt) {
894 Comment cmnt(masm_, "[ ContinueStatement");
895 SetStatementPosition(stmt);
896 NestedStatement* current = nesting_stack_;
897 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000898 int context_length = 0;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000899 // When continuing, we clobber the unpredictable value in the accumulator
900 // with one that's safe for GC. If we hit an exit from the try block of
901 // try...finally on our way out, we will unconditionally preserve the
902 // accumulator on the stack.
903 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000904 while (!current->IsContinueTarget(stmt->target())) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000905 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000906 }
907 __ Drop(stack_depth);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000908 if (context_length > 0) {
909 while (context_length > 0) {
910 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
911 --context_length;
912 }
913 StoreToFrameField(StandardFrameConstants::kContextOffset,
914 context_register());
915 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000916
rossberg@chromium.org28a37082011-08-22 11:03:23 +0000917 __ jmp(current->AsIteration()->continue_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000918}
919
920
921void FullCodeGenerator::VisitBreakStatement(BreakStatement* stmt) {
922 Comment cmnt(masm_, "[ BreakStatement");
923 SetStatementPosition(stmt);
924 NestedStatement* current = nesting_stack_;
925 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000926 int context_length = 0;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000927 // When breaking, we clobber the unpredictable value in the accumulator
928 // with one that's safe for GC. If we hit an exit from the try block of
929 // try...finally on our way out, we will unconditionally preserve the
930 // accumulator on the stack.
931 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000932 while (!current->IsBreakTarget(stmt->target())) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000933 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000934 }
935 __ Drop(stack_depth);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000936 if (context_length > 0) {
937 while (context_length > 0) {
938 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
939 --context_length;
940 }
941 StoreToFrameField(StandardFrameConstants::kContextOffset,
942 context_register());
943 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000944
rossberg@chromium.org28a37082011-08-22 11:03:23 +0000945 __ jmp(current->AsBreakable()->break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000946}
947
948
949void FullCodeGenerator::VisitReturnStatement(ReturnStatement* stmt) {
950 Comment cmnt(masm_, "[ ReturnStatement");
951 SetStatementPosition(stmt);
952 Expression* expr = stmt->expression();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000953 VisitForAccumulatorValue(expr);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000954
955 // Exit all nested statements.
956 NestedStatement* current = nesting_stack_;
957 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000958 int context_length = 0;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000959 while (current != NULL) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000960 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000961 }
962 __ Drop(stack_depth);
963
ager@chromium.org2cc82ae2010-06-14 07:35:38 +0000964 EmitReturnSequence();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000965}
966
967
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000968void FullCodeGenerator::VisitWithStatement(WithStatement* stmt) {
969 Comment cmnt(masm_, "[ WithStatement");
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000970 SetStatementPosition(stmt);
971
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000972 VisitForStackValue(stmt->expression());
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000973 PushFunctionArgumentForContextAllocation();
974 __ CallRuntime(Runtime::kPushWithContext, 2);
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000975 decrement_stack_height();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000976 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000977
978 { WithOrCatch body(this);
979 Visit(stmt->statement());
980 }
981
982 // Pop context.
983 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
984 // Update local stack frame context field.
985 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000986}
987
988
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000989void FullCodeGenerator::VisitDoWhileStatement(DoWhileStatement* stmt) {
990 Comment cmnt(masm_, "[ DoWhileStatement");
991 SetStatementPosition(stmt);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000992 Label body, stack_check;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000993
994 Iteration loop_statement(this, stmt);
995 increment_loop_depth();
996
997 __ bind(&body);
998 Visit(stmt->body());
999
ricow@chromium.org65fae842010-08-25 15:26:24 +00001000 // Record the position of the do while condition and make sure it is
1001 // possible to break on the condition.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001002 __ bind(loop_statement.continue_label());
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001003 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001004 SetExpressionPosition(stmt->cond(), stmt->condition_position());
ricow@chromium.org65fae842010-08-25 15:26:24 +00001005 VisitForControl(stmt->cond(),
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001006 &stack_check,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001007 loop_statement.break_label(),
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001008 &stack_check);
1009
1010 // Check stack before looping.
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001011 PrepareForBailoutForId(stmt->BackEdgeId(), NO_REGISTERS);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001012 __ bind(&stack_check);
1013 EmitStackCheck(stmt);
1014 __ jmp(&body);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001015
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001016 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001017 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001018 decrement_loop_depth();
1019}
1020
1021
1022void FullCodeGenerator::VisitWhileStatement(WhileStatement* stmt) {
1023 Comment cmnt(masm_, "[ WhileStatement");
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001024 Label test, body;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001025
1026 Iteration loop_statement(this, stmt);
1027 increment_loop_depth();
1028
1029 // Emit the test at the bottom of the loop.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001030 __ jmp(&test);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001031
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001032 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001033 __ bind(&body);
1034 Visit(stmt->body());
ricow@chromium.org65fae842010-08-25 15:26:24 +00001035
1036 // Emit the statement position here as this is where the while
1037 // statement code starts.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001038 __ bind(loop_statement.continue_label());
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001039 SetStatementPosition(stmt);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001040
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001041 // Check stack before looping.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001042 EmitStackCheck(stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001043
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001044 __ bind(&test);
ricow@chromium.org65fae842010-08-25 15:26:24 +00001045 VisitForControl(stmt->cond(),
1046 &body,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001047 loop_statement.break_label(),
1048 loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001049
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001050 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001051 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001052 decrement_loop_depth();
1053}
1054
1055
1056void FullCodeGenerator::VisitForStatement(ForStatement* stmt) {
1057 Comment cmnt(masm_, "[ ForStatement");
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001058 Label test, body;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001059
1060 Iteration loop_statement(this, stmt);
1061 if (stmt->init() != NULL) {
1062 Visit(stmt->init());
1063 }
1064
1065 increment_loop_depth();
1066 // Emit the test at the bottom of the loop (even if empty).
1067 __ jmp(&test);
1068
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001069 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001070 __ bind(&body);
1071 Visit(stmt->body());
1072
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001073 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001074 __ bind(loop_statement.continue_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001075 SetStatementPosition(stmt);
1076 if (stmt->next() != NULL) {
1077 Visit(stmt->next());
1078 }
1079
ricow@chromium.org65fae842010-08-25 15:26:24 +00001080 // Emit the statement position here as this is where the for
1081 // statement code starts.
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001082 SetStatementPosition(stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001083
1084 // Check stack before looping.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001085 EmitStackCheck(stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001086
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001087 __ bind(&test);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001088 if (stmt->cond() != NULL) {
ricow@chromium.org65fae842010-08-25 15:26:24 +00001089 VisitForControl(stmt->cond(),
1090 &body,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001091 loop_statement.break_label(),
1092 loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001093 } else {
1094 __ jmp(&body);
1095 }
1096
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001097 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001098 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001099 decrement_loop_depth();
1100}
1101
1102
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001103void FullCodeGenerator::VisitTryCatchStatement(TryCatchStatement* stmt) {
1104 Comment cmnt(masm_, "[ TryCatchStatement");
1105 SetStatementPosition(stmt);
1106 // The try block adds a handler to the exception handler chain
1107 // before entering, and removes it again when exiting normally.
1108 // If an exception is thrown during execution of the try block,
1109 // control is passed to the handler, which also consumes the handler.
1110 // At this point, the exception is in a register, and store it in
1111 // the temporary local variable (prints as ".catch-var") before
1112 // executing the catch block. The catch block has been rewritten
1113 // to introduce a new scope to bind the catch variable and to remove
1114 // that scope again afterwards.
1115
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001116 Label try_handler_setup, done;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001117 __ Call(&try_handler_setup);
1118 // Try handler code, exception in result register.
1119
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001120 // Extend the context before executing the catch block.
1121 { Comment cmnt(masm_, "[ Extend catch context");
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001122 __ Push(stmt->variable()->name());
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001123 __ push(result_register());
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00001124 PushFunctionArgumentForContextAllocation();
1125 __ CallRuntime(Runtime::kPushCatchContext, 3);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001126 StoreToFrameField(StandardFrameConstants::kContextOffset,
1127 context_register());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001128 }
1129
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001130 Scope* saved_scope = scope();
1131 scope_ = stmt->scope();
1132 ASSERT(scope_->declarations()->is_empty());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001133 { WithOrCatch body(this);
1134 Visit(stmt->catch_block());
1135 }
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001136 // Restore the context.
1137 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1138 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001139 scope_ = saved_scope;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001140 __ jmp(&done);
1141
1142 // Try block code. Sets up the exception handler chain.
1143 __ bind(&try_handler_setup);
1144 {
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001145 const int delta = StackHandlerConstants::kSize / kPointerSize;
1146 TryCatch try_block(this);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001147 __ PushTryHandler(IN_JAVASCRIPT, TRY_CATCH_HANDLER);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001148 increment_stack_height(delta);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001149 Visit(stmt->try_block());
1150 __ PopTryHandler();
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001151 decrement_stack_height(delta);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001152 }
1153 __ bind(&done);
1154}
1155
1156
1157void FullCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
1158 Comment cmnt(masm_, "[ TryFinallyStatement");
1159 SetStatementPosition(stmt);
1160 // Try finally is compiled by setting up a try-handler on the stack while
1161 // executing the try body, and removing it again afterwards.
1162 //
1163 // The try-finally construct can enter the finally block in three ways:
1164 // 1. By exiting the try-block normally. This removes the try-handler and
1165 // calls the finally block code before continuing.
1166 // 2. By exiting the try-block with a function-local control flow transfer
1167 // (break/continue/return). The site of the, e.g., break removes the
1168 // try handler and calls the finally block code before continuing
1169 // its outward control transfer.
1170 // 3. by exiting the try-block with a thrown exception.
1171 // This can happen in nested function calls. It traverses the try-handler
1172 // chain and consumes the try-handler entry before jumping to the
1173 // handler code. The handler code then calls the finally-block before
1174 // rethrowing the exception.
1175 //
1176 // The finally block must assume a return address on top of the stack
1177 // (or in the link register on ARM chips) and a value (return value or
1178 // exception) in the result register (rax/eax/r0), both of which must
1179 // be preserved. The return address isn't GC-safe, so it should be
1180 // cooked before GC.
1181 Label finally_entry;
1182 Label try_handler_setup;
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001183 const int original_stack_height = stack_height();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001184
1185 // Setup the try-handler chain. Use a call to
1186 // Jump to try-handler setup and try-block code. Use call to put try-handler
1187 // address on stack.
1188 __ Call(&try_handler_setup);
1189 // Try handler code. Return address of call is pushed on handler stack.
1190 {
1191 // This code is only executed during stack-handler traversal when an
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001192 // exception is thrown. The exception is in the result register, which
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001193 // is retained by the finally block.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001194 // Call the finally block and then rethrow the exception if it returns.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001195 __ Call(&finally_entry);
1196 __ push(result_register());
1197 __ CallRuntime(Runtime::kReThrow, 1);
1198 }
1199
1200 __ bind(&finally_entry);
1201 {
1202 // Finally block implementation.
1203 Finally finally_block(this);
1204 EnterFinallyBlock();
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001205 set_stack_height(original_stack_height + Finally::kElementCount);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001206 Visit(stmt->finally_block());
1207 ExitFinallyBlock(); // Return to the calling code.
1208 }
1209
1210 __ bind(&try_handler_setup);
1211 {
1212 // Setup try handler (stack pointer registers).
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001213 const int delta = StackHandlerConstants::kSize / kPointerSize;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001214 TryFinally try_block(this, &finally_entry);
1215 __ PushTryHandler(IN_JAVASCRIPT, TRY_FINALLY_HANDLER);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001216 set_stack_height(original_stack_height + delta);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001217 Visit(stmt->try_block());
1218 __ PopTryHandler();
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001219 set_stack_height(original_stack_height);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001220 }
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001221 // Execute the finally block on the way out. Clobber the unpredictable
1222 // value in the accumulator with one that's safe for GC. The finally
1223 // block will unconditionally preserve the accumulator on the stack.
1224 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001225 __ Call(&finally_entry);
1226}
1227
1228
1229void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) {
1230#ifdef ENABLE_DEBUGGER_SUPPORT
1231 Comment cmnt(masm_, "[ DebuggerStatement");
1232 SetStatementPosition(stmt);
1233
ager@chromium.org5c838252010-02-19 08:53:10 +00001234 __ DebugBreak();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001235 // Ignore the return value.
1236#endif
1237}
1238
1239
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001240void FullCodeGenerator::VisitConditional(Conditional* expr) {
1241 Comment cmnt(masm_, "[ Conditional");
1242 Label true_case, false_case, done;
ricow@chromium.org65fae842010-08-25 15:26:24 +00001243 VisitForControl(expr->condition(), &true_case, &false_case, &true_case);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001244
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001245 PrepareForBailoutForId(expr->ThenId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001246 __ bind(&true_case);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001247 SetExpressionPosition(expr->then_expression(),
1248 expr->then_expression_position());
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001249 int start_stack_height = stack_height();
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001250 if (context()->IsTest()) {
1251 const TestContext* for_test = TestContext::cast(context());
1252 VisitForControl(expr->then_expression(),
1253 for_test->true_label(),
1254 for_test->false_label(),
1255 NULL);
1256 } else {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +00001257 VisitInCurrentContext(expr->then_expression());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001258 __ jmp(&done);
1259 }
1260
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001261 PrepareForBailoutForId(expr->ElseId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001262 __ bind(&false_case);
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001263 set_stack_height(start_stack_height);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001264 if (context()->IsTest()) ForwardBailoutToChild(expr);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001265 SetExpressionPosition(expr->else_expression(),
1266 expr->else_expression_position());
ricow@chromium.orgd2be9012011-06-01 06:00:58 +00001267 VisitInCurrentContext(expr->else_expression());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001268 // If control flow falls through Visit, merge it with true case here.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001269 if (!context()->IsTest()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001270 __ bind(&done);
1271 }
1272}
1273
1274
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001275void FullCodeGenerator::VisitLiteral(Literal* expr) {
1276 Comment cmnt(masm_, "[ Literal");
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001277 context()->Plug(expr->handle());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001278}
1279
1280
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001281void FullCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) {
1282 Comment cmnt(masm_, "[ FunctionLiteral");
1283
1284 // Build the function boilerplate and instantiate it.
1285 Handle<SharedFunctionInfo> function_info =
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001286 Compiler::BuildFunctionInfo(expr, script());
1287 if (function_info.is_null()) {
1288 SetStackOverflow();
1289 return;
1290 }
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00001291 EmitNewClosure(function_info, expr->pretenure());
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001292}
1293
1294
1295void FullCodeGenerator::VisitSharedFunctionInfoLiteral(
1296 SharedFunctionInfoLiteral* expr) {
1297 Comment cmnt(masm_, "[ SharedFunctionInfoLiteral");
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00001298 EmitNewClosure(expr->shared_function_info(), false);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001299}
1300
1301
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001302void FullCodeGenerator::VisitThrow(Throw* expr) {
1303 Comment cmnt(masm_, "[ Throw");
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001304 // Throw has no effect on the stack height or the current expression context.
1305 // Usually the expression context is null, because throw is a statement.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001306 VisitForStackValue(expr->exception());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001307 __ CallRuntime(Runtime::kThrow, 1);
vegorov@chromium.org7943d462011-08-01 11:41:52 +00001308 decrement_stack_height();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001309 // Never returns here.
1310}
1311
1312
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001313FullCodeGenerator::NestedStatement* FullCodeGenerator::TryCatch::Exit(
1314 int* stack_depth,
1315 int* context_length) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001316 // The macros used here must preserve the result register.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001317 __ Drop(*stack_depth);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001318 __ PopTryHandler();
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001319 *stack_depth = 0;
1320 return previous_;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001321}
1322
ricow@chromium.org65fae842010-08-25 15:26:24 +00001323
ager@chromium.org04921a82011-06-27 13:21:41 +00001324bool FullCodeGenerator::TryLiteralCompare(CompareOperation* compare,
1325 Label* if_true,
1326 Label* if_false,
1327 Label* fall_through) {
1328 Expression *expr;
1329 Handle<String> check;
1330 if (compare->IsLiteralCompareTypeof(&expr, &check)) {
1331 EmitLiteralCompareTypeof(expr, check, if_true, if_false, fall_through);
1332 return true;
1333 }
1334
1335 if (compare->IsLiteralCompareUndefined(&expr)) {
1336 EmitLiteralCompareUndefined(expr, if_true, if_false, fall_through);
1337 return true;
1338 }
1339
1340 return false;
1341}
1342
1343
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001344#undef __
1345
1346
1347} } // namespace v8::internal