blob: de32be12ec8cd2c5901850d756d8eff582d1c83f [file] [log] [blame]
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +00001// Copyright 2012 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
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000054void BreakableStatementChecker::VisitVariableDeclaration(
55 VariableDeclaration* decl) {
56}
57
ulan@chromium.org812308e2012-02-29 15:58:45 +000058void BreakableStatementChecker::VisitFunctionDeclaration(
59 FunctionDeclaration* decl) {
60}
61
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000062void BreakableStatementChecker::VisitModuleDeclaration(
63 ModuleDeclaration* decl) {
64}
65
ulan@chromium.org812308e2012-02-29 15:58:45 +000066void BreakableStatementChecker::VisitImportDeclaration(
67 ImportDeclaration* decl) {
68}
69
70void BreakableStatementChecker::VisitExportDeclaration(
71 ExportDeclaration* decl) {
72}
73
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000074
75void BreakableStatementChecker::VisitModuleLiteral(ModuleLiteral* module) {
76}
77
78void BreakableStatementChecker::VisitModuleVariable(ModuleVariable* module) {
79}
80
81void BreakableStatementChecker::VisitModulePath(ModulePath* module) {
82}
83
84void BreakableStatementChecker::VisitModuleUrl(ModuleUrl* module) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +000085}
86
87
88void BreakableStatementChecker::VisitBlock(Block* stmt) {
89}
90
91
92void BreakableStatementChecker::VisitExpressionStatement(
93 ExpressionStatement* stmt) {
94 // Check if expression is breakable.
95 Visit(stmt->expression());
96}
97
98
99void BreakableStatementChecker::VisitEmptyStatement(EmptyStatement* stmt) {
100}
101
102
103void BreakableStatementChecker::VisitIfStatement(IfStatement* stmt) {
104 // If the condition is breakable the if statement is breakable.
105 Visit(stmt->condition());
106}
107
108
109void BreakableStatementChecker::VisitContinueStatement(
110 ContinueStatement* stmt) {
111}
112
113
114void BreakableStatementChecker::VisitBreakStatement(BreakStatement* stmt) {
115}
116
117
118void BreakableStatementChecker::VisitReturnStatement(ReturnStatement* stmt) {
119 // Return is breakable if the expression is.
120 Visit(stmt->expression());
121}
122
123
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000124void BreakableStatementChecker::VisitWithStatement(WithStatement* stmt) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000125 Visit(stmt->expression());
126}
127
128
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000129void BreakableStatementChecker::VisitSwitchStatement(SwitchStatement* stmt) {
130 // Switch statements breakable if the tag expression is.
131 Visit(stmt->tag());
132}
133
134
135void BreakableStatementChecker::VisitDoWhileStatement(DoWhileStatement* stmt) {
136 // Mark do while as breakable to avoid adding a break slot in front of it.
137 is_breakable_ = true;
138}
139
140
141void BreakableStatementChecker::VisitWhileStatement(WhileStatement* stmt) {
142 // Mark while statements breakable if the condition expression is.
143 Visit(stmt->cond());
144}
145
146
147void BreakableStatementChecker::VisitForStatement(ForStatement* stmt) {
148 // Mark for statements breakable if the condition expression is.
149 if (stmt->cond() != NULL) {
150 Visit(stmt->cond());
151 }
152}
153
154
155void BreakableStatementChecker::VisitForInStatement(ForInStatement* stmt) {
156 // Mark for in statements breakable if the enumerable expression is.
157 Visit(stmt->enumerable());
158}
159
160
161void BreakableStatementChecker::VisitTryCatchStatement(
162 TryCatchStatement* stmt) {
163 // Mark try catch as breakable to avoid adding a break slot in front of it.
164 is_breakable_ = true;
165}
166
167
168void BreakableStatementChecker::VisitTryFinallyStatement(
169 TryFinallyStatement* stmt) {
170 // Mark try finally as breakable to avoid adding a break slot in front of it.
171 is_breakable_ = true;
172}
173
174
175void BreakableStatementChecker::VisitDebuggerStatement(
176 DebuggerStatement* stmt) {
177 // The debugger statement is breakable.
178 is_breakable_ = true;
179}
180
181
182void BreakableStatementChecker::VisitFunctionLiteral(FunctionLiteral* expr) {
183}
184
185
186void BreakableStatementChecker::VisitSharedFunctionInfoLiteral(
187 SharedFunctionInfoLiteral* expr) {
188}
189
190
191void BreakableStatementChecker::VisitConditional(Conditional* expr) {
192}
193
194
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000195void BreakableStatementChecker::VisitVariableProxy(VariableProxy* expr) {
196}
197
198
199void BreakableStatementChecker::VisitLiteral(Literal* expr) {
200}
201
202
203void BreakableStatementChecker::VisitRegExpLiteral(RegExpLiteral* expr) {
204}
205
206
207void BreakableStatementChecker::VisitObjectLiteral(ObjectLiteral* expr) {
208}
209
210
211void BreakableStatementChecker::VisitArrayLiteral(ArrayLiteral* expr) {
212}
213
214
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000215void BreakableStatementChecker::VisitAssignment(Assignment* expr) {
216 // If assigning to a property (including a global property) the assignment is
217 // breakable.
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000218 VariableProxy* proxy = expr->target()->AsVariableProxy();
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000219 Property* prop = expr->target()->AsProperty();
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000220 if (prop != NULL || (proxy != NULL && proxy->var()->IsUnallocated())) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000221 is_breakable_ = true;
222 return;
223 }
224
225 // Otherwise the assignment is breakable if the assigned value is.
226 Visit(expr->value());
227}
228
229
230void BreakableStatementChecker::VisitThrow(Throw* expr) {
231 // Throw is breakable if the expression is.
232 Visit(expr->exception());
233}
234
235
236void BreakableStatementChecker::VisitProperty(Property* expr) {
237 // Property load is breakable.
238 is_breakable_ = true;
239}
240
241
242void BreakableStatementChecker::VisitCall(Call* expr) {
243 // Function calls both through IC and call stub are breakable.
244 is_breakable_ = true;
245}
246
247
248void BreakableStatementChecker::VisitCallNew(CallNew* expr) {
249 // Function calls through new are breakable.
250 is_breakable_ = true;
251}
252
253
254void BreakableStatementChecker::VisitCallRuntime(CallRuntime* expr) {
255}
256
257
258void BreakableStatementChecker::VisitUnaryOperation(UnaryOperation* expr) {
259 Visit(expr->expression());
260}
261
262
263void BreakableStatementChecker::VisitCountOperation(CountOperation* expr) {
264 Visit(expr->expression());
265}
266
267
268void BreakableStatementChecker::VisitBinaryOperation(BinaryOperation* expr) {
269 Visit(expr->left());
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +0000270 if (expr->op() != Token::AND &&
271 expr->op() != Token::OR) {
272 Visit(expr->right());
273 }
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000274}
275
276
277void BreakableStatementChecker::VisitCompareOperation(CompareOperation* expr) {
278 Visit(expr->left());
279 Visit(expr->right());
280}
281
282
283void BreakableStatementChecker::VisitThisFunction(ThisFunction* expr) {
284}
285
286
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000287#define __ ACCESS_MASM(masm())
288
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000289bool FullCodeGenerator::MakeCode(CompilationInfo* info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000290 Isolate* isolate = info->isolate();
ager@chromium.org5c838252010-02-19 08:53:10 +0000291 Handle<Script> script = info->script();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000292 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
293 int len = String::cast(script->source())->length();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000294 isolate->counters()->total_full_codegen_source_size()->Increment(len);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000295 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000296 if (FLAG_trace_codegen) {
297 PrintF("Full Compiler - ");
298 }
ager@chromium.org5c838252010-02-19 08:53:10 +0000299 CodeGenerator::MakeCodePrologue(info);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000300 const int kInitialBufferSize = 4 * KB;
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000301 MacroAssembler masm(info->isolate(), NULL, kInitialBufferSize);
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000302#ifdef ENABLE_GDB_JIT_INTERFACE
303 masm.positions_recorder()->StartGDBJITLineInfoRecording();
304#endif
ager@chromium.org5c838252010-02-19 08:53:10 +0000305
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000306 FullCodeGenerator cgen(&masm, info);
yangguo@chromium.org56454712012-02-16 15:33:53 +0000307 cgen.Generate();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000308 if (cgen.HasStackOverflow()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000309 ASSERT(!isolate->has_pending_exception());
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000310 return false;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000311 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000312 unsigned table_offset = cgen.EmitStackCheckTable();
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000313
lrn@chromium.org34e60782011-09-15 07:25:40 +0000314 Code::Flags flags = Code::ComputeFlags(Code::FUNCTION);
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000315 Handle<Code> code = CodeGenerator::MakeCodeEpilogue(&masm, flags, info);
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000316 code->set_optimizable(info->IsOptimizable() &&
ulan@chromium.orgd6899c32012-05-18 14:12:25 +0000317 !info->function()->flags()->Contains(kDontOptimize) &&
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000318 info->function()->scope()->AllowsLazyCompilation());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000319 cgen.PopulateDeoptimizationData(code);
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000320 cgen.PopulateTypeFeedbackInfo(code);
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000321 cgen.PopulateTypeFeedbackCells(code);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000322 code->set_has_deoptimization_support(info->HasDeoptimizationSupport());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +0000323 code->set_handler_table(*cgen.handler_table());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000324#ifdef ENABLE_DEBUGGER_SUPPORT
lrn@chromium.org34e60782011-09-15 07:25:40 +0000325 code->set_has_debug_break_slots(
326 info->isolate()->debugger()->IsDebuggerActive());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000327 code->set_compiled_optimizable(info->IsOptimizable());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000328#endif // ENABLE_DEBUGGER_SUPPORT
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000329 code->set_allow_osr_at_loop_nesting_level(0);
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000330 code->set_profiler_ticks(0);
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000331 code->set_stack_check_table_offset(table_offset);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000332 CodeGenerator::PrintCode(code, info);
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000333 info->SetCode(code); // May be an empty handle.
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000334#ifdef ENABLE_GDB_JIT_INTERFACE
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000335 if (FLAG_gdbjit && !code.is_null()) {
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000336 GDBJITLineInfo* lineinfo =
337 masm.positions_recorder()->DetachGDBJITLineInfo();
338
339 GDBJIT(RegisterDetailedLineInfo(*code, lineinfo));
340 }
341#endif
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000342 return !code.is_null();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000343}
344
345
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000346unsigned FullCodeGenerator::EmitStackCheckTable() {
347 // The stack check table consists of a length (in number of entries)
348 // field, and then a sequence of entries. Each entry is a pair of AST id
349 // and code-relative pc offset.
350 masm()->Align(kIntSize);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000351 unsigned offset = masm()->pc_offset();
352 unsigned length = stack_checks_.length();
353 __ dd(length);
354 for (unsigned i = 0; i < length; ++i) {
355 __ dd(stack_checks_[i].id);
356 __ dd(stack_checks_[i].pc_and_state);
357 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000358 return offset;
359}
360
361
362void FullCodeGenerator::PopulateDeoptimizationData(Handle<Code> code) {
363 // Fill in the deoptimization information.
364 ASSERT(info_->HasDeoptimizationSupport() || bailout_entries_.is_empty());
365 if (!info_->HasDeoptimizationSupport()) return;
366 int length = bailout_entries_.length();
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000367 Handle<DeoptimizationOutputData> data = isolate()->factory()->
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000368 NewDeoptimizationOutputData(length, TENURED);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000369 for (int i = 0; i < length; i++) {
370 data->SetAstId(i, Smi::FromInt(bailout_entries_[i].id));
371 data->SetPcAndState(i, Smi::FromInt(bailout_entries_[i].pc_and_state));
372 }
373 code->set_deoptimization_data(*data);
374}
375
376
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000377void FullCodeGenerator::PopulateTypeFeedbackInfo(Handle<Code> code) {
378 Handle<TypeFeedbackInfo> info = isolate()->factory()->NewTypeFeedbackInfo();
379 info->set_ic_total_count(ic_total_count_);
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +0000380 ASSERT(!isolate()->heap()->InNewSpace(*info));
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000381 code->set_type_feedback_info(*info);
382}
383
384
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000385void FullCodeGenerator::PopulateTypeFeedbackCells(Handle<Code> code) {
386 if (type_feedback_cells_.is_empty()) return;
387 int length = type_feedback_cells_.length();
388 int array_size = TypeFeedbackCells::LengthOfFixedArray(length);
389 Handle<TypeFeedbackCells> cache = Handle<TypeFeedbackCells>::cast(
390 isolate()->factory()->NewFixedArray(array_size, TENURED));
391 for (int i = 0; i < length; i++) {
392 cache->SetAstId(i, Smi::FromInt(type_feedback_cells_[i].ast_id));
393 cache->SetCell(i, *type_feedback_cells_[i].cell);
394 }
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000395 TypeFeedbackInfo::cast(code->type_feedback_info())->set_type_feedback_cells(
396 *cache);
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000397}
398
399
400
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000401void FullCodeGenerator::PrepareForBailout(Expression* node, State state) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000402 PrepareForBailoutForId(node->id(), state);
403}
404
405
406void FullCodeGenerator::RecordJSReturnSite(Call* call) {
407 // We record the offset of the function return so we can rebuild the frame
408 // if the function was inlined, i.e., this is the return address in the
409 // inlined function's frame.
410 //
411 // The state is ignored. We defensively set it to TOS_REG, which is the
412 // real state of the unoptimized code at the return site.
413 PrepareForBailoutForId(call->ReturnId(), TOS_REG);
414#ifdef DEBUG
415 // In debug builds, mark the return so we can verify that this function
416 // was called.
417 ASSERT(!call->return_is_recorded_);
418 call->return_is_recorded_ = true;
419#endif
420}
421
422
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +0000423void FullCodeGenerator::PrepareForBailoutForId(unsigned id, State state) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000424 // There's no need to prepare this code for bailouts from already optimized
425 // code or code that can't be optimized.
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000426 if (!info_->HasDeoptimizationSupport()) return;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000427 unsigned pc_and_state =
428 StateField::encode(state) | PcField::encode(masm_->pc_offset());
yangguo@chromium.org56454712012-02-16 15:33:53 +0000429 ASSERT(Smi::IsValid(pc_and_state));
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000430 BailoutEntry entry = { id, pc_and_state };
431#ifdef DEBUG
yangguo@chromium.org659ceec2012-01-26 07:37:54 +0000432 if (FLAG_enable_slow_asserts) {
433 // Assert that we don't have multiple bailout entries for the same node.
434 for (int i = 0; i < bailout_entries_.length(); i++) {
435 if (bailout_entries_.at(i).id == entry.id) {
436 AstPrinter printer;
437 PrintF("%s", printer.PrintProgram(info_->function()));
438 UNREACHABLE();
439 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000440 }
441 }
442#endif // DEBUG
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000443 bailout_entries_.Add(entry, zone());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000444}
445
446
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000447void FullCodeGenerator::RecordTypeFeedbackCell(
448 unsigned id, Handle<JSGlobalPropertyCell> cell) {
449 TypeFeedbackCellEntry entry = { id, cell };
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000450 type_feedback_cells_.Add(entry, zone());
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000451}
452
453
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +0000454void FullCodeGenerator::RecordStackCheck(unsigned ast_id) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000455 // The pc offset does not need to be encoded and packed together with a
456 // state.
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +0000457 ASSERT(masm_->pc_offset() > 0);
458 BailoutEntry entry = { ast_id, static_cast<unsigned>(masm_->pc_offset()) };
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000459 stack_checks_.Add(entry, zone());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000460}
461
462
ricow@chromium.org65fae842010-08-25 15:26:24 +0000463bool FullCodeGenerator::ShouldInlineSmiCase(Token::Value op) {
ricow@chromium.org65fae842010-08-25 15:26:24 +0000464 // Inline smi case inside loops, but not division and modulo which
465 // are too complicated and take up too much space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000466 if (op == Token::DIV ||op == Token::MOD) return false;
467 if (FLAG_always_inline_smi_code) return true;
468 return loop_depth_ > 0;
ricow@chromium.org65fae842010-08-25 15:26:24 +0000469}
470
471
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000472void FullCodeGenerator::EffectContext::Plug(Register reg) const {
473}
474
475
476void FullCodeGenerator::AccumulatorValueContext::Plug(Register reg) const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000477 __ Move(result_register(), reg);
478}
479
480
481void FullCodeGenerator::StackValueContext::Plug(Register reg) const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000482 __ push(reg);
483}
484
485
486void FullCodeGenerator::TestContext::Plug(Register reg) const {
487 // For simplicity we always test the accumulator register.
488 __ Move(result_register(), reg);
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000489 codegen()->PrepareForBailoutBeforeSplit(condition(), false, NULL, NULL);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000490 codegen()->DoTest(this);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000491}
492
493
494void FullCodeGenerator::EffectContext::PlugTOS() const {
495 __ Drop(1);
496}
497
498
499void FullCodeGenerator::AccumulatorValueContext::PlugTOS() const {
500 __ pop(result_register());
501}
502
503
504void FullCodeGenerator::StackValueContext::PlugTOS() const {
505}
506
507
508void FullCodeGenerator::TestContext::PlugTOS() const {
509 // For simplicity we always test the accumulator register.
510 __ pop(result_register());
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000511 codegen()->PrepareForBailoutBeforeSplit(condition(), false, NULL, NULL);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000512 codegen()->DoTest(this);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000513}
514
515
516void FullCodeGenerator::EffectContext::PrepareTest(
517 Label* materialize_true,
518 Label* materialize_false,
519 Label** if_true,
520 Label** if_false,
521 Label** fall_through) const {
522 // In an effect context, the true and the false case branch to the
523 // same label.
524 *if_true = *if_false = *fall_through = materialize_true;
525}
526
527
528void FullCodeGenerator::AccumulatorValueContext::PrepareTest(
529 Label* materialize_true,
530 Label* materialize_false,
531 Label** if_true,
532 Label** if_false,
533 Label** fall_through) const {
534 *if_true = *fall_through = materialize_true;
535 *if_false = materialize_false;
536}
537
538
539void FullCodeGenerator::StackValueContext::PrepareTest(
540 Label* materialize_true,
541 Label* materialize_false,
542 Label** if_true,
543 Label** if_false,
544 Label** fall_through) const {
545 *if_true = *fall_through = materialize_true;
546 *if_false = materialize_false;
547}
548
549
550void FullCodeGenerator::TestContext::PrepareTest(
551 Label* materialize_true,
552 Label* materialize_false,
553 Label** if_true,
554 Label** if_false,
555 Label** fall_through) const {
556 *if_true = true_label_;
557 *if_false = false_label_;
558 *fall_through = fall_through_;
ricow@chromium.org65fae842010-08-25 15:26:24 +0000559}
560
561
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000562void FullCodeGenerator::DoTest(const TestContext* context) {
563 DoTest(context->condition(),
564 context->true_label(),
565 context->false_label(),
566 context->fall_through());
567}
568
569
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000570void FullCodeGenerator::VisitDeclarations(
571 ZoneList<Declaration*>* declarations) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000572 ZoneList<Handle<Object> >* saved_globals = globals_;
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000573 ZoneList<Handle<Object> > inner_globals(10, zone());
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000574 globals_ = &inner_globals;
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000575
576 AstVisitor::VisitDeclarations(declarations);
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000577 if (!globals_->is_empty()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000578 // Invoke the platform-dependent code generator to do the actual
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000579 // declaration the global functions and variables.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000580 Handle<FixedArray> array =
581 isolate()->factory()->NewFixedArray(globals_->length(), TENURED);
582 for (int i = 0; i < globals_->length(); ++i)
583 array->set(i, *globals_->at(i));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000584 DeclareGlobals(array);
585 }
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000586
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000587 globals_ = saved_globals;
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000588}
589
590
591void FullCodeGenerator::VisitModuleLiteral(ModuleLiteral* module) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000592 // Allocate a module context statically.
593 Block* block = module->body();
594 Scope* saved_scope = scope();
595 scope_ = block->scope();
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000596 Interface* interface = module->interface();
597 Handle<JSModule> instance = interface->Instance();
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000598
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000599 Comment cmnt(masm_, "[ ModuleLiteral");
600 SetStatementPosition(block);
601
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000602 // Set up module context.
603 __ Push(instance);
604 __ CallRuntime(Runtime::kPushModuleContext, 1);
605 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000606
607 {
608 Comment cmnt(masm_, "[ Declarations");
609 VisitDeclarations(scope_->declarations());
610 }
611
612 scope_ = saved_scope;
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000613 // Pop module context.
614 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
615 // Update local stack frame context field.
616 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000617}
618
619
620void FullCodeGenerator::VisitModuleVariable(ModuleVariable* module) {
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000621 // Nothing to do.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000622 // The instance object is resolved statically through the module's interface.
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000623}
624
625
626void FullCodeGenerator::VisitModulePath(ModulePath* module) {
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000627 // Nothing to do.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000628 // The instance object is resolved statically through the module's interface.
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000629}
630
631
632void FullCodeGenerator::VisitModuleUrl(ModuleUrl* decl) {
633 // TODO(rossberg)
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000634}
635
636
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000637int FullCodeGenerator::DeclareGlobalsFlags() {
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000638 ASSERT(DeclareGlobalsLanguageMode::is_valid(language_mode()));
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000639 return DeclareGlobalsEvalFlag::encode(is_eval()) |
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000640 DeclareGlobalsNativeFlag::encode(is_native()) |
641 DeclareGlobalsLanguageMode::encode(language_mode());
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000642}
643
644
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000645void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000646 CodeGenerator::RecordPositions(masm_, fun->start_position());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000647}
648
649
650void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000651 CodeGenerator::RecordPositions(masm_, fun->end_position() - 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000652}
653
654
655void FullCodeGenerator::SetStatementPosition(Statement* stmt) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000656#ifdef ENABLE_DEBUGGER_SUPPORT
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000657 if (!isolate()->debugger()->IsDebuggerActive()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000658 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000659 } else {
660 // Check if the statement will be breakable without adding a debug break
661 // slot.
662 BreakableStatementChecker checker;
663 checker.Check(stmt);
664 // Record the statement position right here if the statement is not
665 // breakable. For breakable statements the actual recording of the
666 // position will be postponed to the breakable code (typically an IC).
667 bool position_recorded = CodeGenerator::RecordPositions(
668 masm_, stmt->statement_pos(), !checker.is_breakable());
669 // If the position recording did record a new position generate a debug
670 // break slot to make the statement breakable.
671 if (position_recorded) {
672 Debug::GenerateSlot(masm_);
673 }
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000674 }
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000675#else
676 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
677#endif
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000678}
679
680
681void FullCodeGenerator::SetExpressionPosition(Expression* expr, int pos) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000682#ifdef ENABLE_DEBUGGER_SUPPORT
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000683 if (!isolate()->debugger()->IsDebuggerActive()) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000684 CodeGenerator::RecordPositions(masm_, pos);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000685 } else {
686 // Check if the expression will be breakable without adding a debug break
687 // slot.
688 BreakableStatementChecker checker;
689 checker.Check(expr);
690 // Record a statement position right here if the expression is not
691 // breakable. For breakable expressions the actual recording of the
692 // position will be postponed to the breakable code (typically an IC).
693 // NOTE this will record a statement position for something which might
694 // not be a statement. As stepping in the debugger will only stop at
695 // statement positions this is used for e.g. the condition expression of
696 // a do while loop.
697 bool position_recorded = CodeGenerator::RecordPositions(
698 masm_, pos, !checker.is_breakable());
699 // If the position recording did record a new position generate a debug
700 // break slot to make the statement breakable.
701 if (position_recorded) {
702 Debug::GenerateSlot(masm_);
703 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000704 }
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000705#else
706 CodeGenerator::RecordPositions(masm_, pos);
707#endif
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000708}
709
710
711void FullCodeGenerator::SetStatementPosition(int pos) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000712 CodeGenerator::RecordPositions(masm_, pos);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000713}
714
715
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000716void FullCodeGenerator::SetSourcePosition(int pos) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000717 if (pos != RelocInfo::kNoPosition) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000718 masm_->positions_recorder()->RecordPosition(pos);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000719 }
720}
721
722
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000723// Lookup table for code generators for special runtime calls which are
724// generated inline.
725#define INLINE_FUNCTION_GENERATOR_ADDRESS(Name, argc, ressize) \
726 &FullCodeGenerator::Emit##Name,
erik.corry@gmail.com145eff52010-08-23 11:36:18 +0000727
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000728const FullCodeGenerator::InlineFunctionGenerator
729 FullCodeGenerator::kInlineFunctionGenerators[] = {
730 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
731 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
732 };
733#undef INLINE_FUNCTION_GENERATOR_ADDRESS
734
735
736FullCodeGenerator::InlineFunctionGenerator
737 FullCodeGenerator::FindInlineFunctionGenerator(Runtime::FunctionId id) {
whesse@chromium.org023421e2010-12-21 12:19:12 +0000738 int lookup_index =
739 static_cast<int>(id) - static_cast<int>(Runtime::kFirstInlineFunction);
740 ASSERT(lookup_index >= 0);
741 ASSERT(static_cast<size_t>(lookup_index) <
742 ARRAY_SIZE(kInlineFunctionGenerators));
743 return kInlineFunctionGenerators[lookup_index];
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000744}
745
746
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000747void FullCodeGenerator::EmitInlineRuntimeCall(CallRuntime* expr) {
748 const Runtime::Function* function = expr->function();
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000749 ASSERT(function != NULL);
750 ASSERT(function->intrinsic_type == Runtime::INLINE);
751 InlineFunctionGenerator generator =
752 FindInlineFunctionGenerator(function->function_id);
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000753 ((*this).*(generator))(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000754}
755
756
757void FullCodeGenerator::VisitBinaryOperation(BinaryOperation* expr) {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000758 switch (expr->op()) {
ricow@chromium.org65fae842010-08-25 15:26:24 +0000759 case Token::COMMA:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000760 return VisitComma(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000761 case Token::OR:
762 case Token::AND:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000763 return VisitLogicalExpression(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000764 default:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000765 return VisitArithmeticExpression(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000766 }
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000767}
768
769
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000770void FullCodeGenerator::VisitInDuplicateContext(Expression* expr) {
771 if (context()->IsEffect()) {
772 VisitForEffect(expr);
773 } else if (context()->IsAccumulatorValue()) {
774 VisitForAccumulatorValue(expr);
775 } else if (context()->IsStackValue()) {
776 VisitForStackValue(expr);
777 } else if (context()->IsTest()) {
778 const TestContext* test = TestContext::cast(context());
779 VisitForControl(expr, test->true_label(), test->false_label(),
780 test->fall_through());
781 }
782}
783
784
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000785void FullCodeGenerator::VisitComma(BinaryOperation* expr) {
786 Comment cmnt(masm_, "[ Comma");
787 VisitForEffect(expr->left());
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000788 VisitInDuplicateContext(expr->right());
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000789}
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000790
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000791
792void FullCodeGenerator::VisitLogicalExpression(BinaryOperation* expr) {
793 bool is_logical_and = expr->op() == Token::AND;
794 Comment cmnt(masm_, is_logical_and ? "[ Logical AND" : "[ Logical OR");
795 Expression* left = expr->left();
796 Expression* right = expr->right();
797 int right_id = expr->RightId();
798 Label done;
799
800 if (context()->IsTest()) {
801 Label eval_right;
802 const TestContext* test = TestContext::cast(context());
803 if (is_logical_and) {
804 VisitForControl(left, &eval_right, test->false_label(), &eval_right);
805 } else {
806 VisitForControl(left, test->true_label(), &eval_right, &eval_right);
807 }
808 PrepareForBailoutForId(right_id, NO_REGISTERS);
809 __ bind(&eval_right);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000810
811 } else if (context()->IsAccumulatorValue()) {
812 VisitForAccumulatorValue(left);
813 // We want the value in the accumulator for the test, and on the stack in
814 // case we need it.
815 __ push(result_register());
816 Label discard, restore;
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000817 if (is_logical_and) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000818 DoTest(left, &discard, &restore, &restore);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000819 } else {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000820 DoTest(left, &restore, &discard, &restore);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000821 }
822 __ bind(&restore);
823 __ pop(result_register());
824 __ jmp(&done);
825 __ bind(&discard);
826 __ Drop(1);
827 PrepareForBailoutForId(right_id, NO_REGISTERS);
828
829 } else if (context()->IsStackValue()) {
830 VisitForAccumulatorValue(left);
831 // We want the value in the accumulator for the test, and on the stack in
832 // case we need it.
833 __ push(result_register());
834 Label discard;
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000835 if (is_logical_and) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000836 DoTest(left, &discard, &done, &discard);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000837 } else {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000838 DoTest(left, &done, &discard, &discard);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000839 }
840 __ bind(&discard);
841 __ Drop(1);
842 PrepareForBailoutForId(right_id, NO_REGISTERS);
843
844 } else {
845 ASSERT(context()->IsEffect());
846 Label eval_right;
847 if (is_logical_and) {
848 VisitForControl(left, &eval_right, &done, &eval_right);
849 } else {
850 VisitForControl(left, &done, &eval_right, &eval_right);
851 }
852 PrepareForBailoutForId(right_id, NO_REGISTERS);
853 __ bind(&eval_right);
854 }
855
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000856 VisitInDuplicateContext(right);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000857 __ bind(&done);
858}
859
860
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000861void FullCodeGenerator::VisitArithmeticExpression(BinaryOperation* expr) {
862 Token::Value op = expr->op();
863 Comment cmnt(masm_, "[ ArithmeticExpression");
864 Expression* left = expr->left();
865 Expression* right = expr->right();
866 OverwriteMode mode =
867 left->ResultOverwriteAllowed()
868 ? OVERWRITE_LEFT
869 : (right->ResultOverwriteAllowed() ? OVERWRITE_RIGHT : NO_OVERWRITE);
870
871 VisitForStackValue(left);
872 VisitForAccumulatorValue(right);
873
874 SetSourcePosition(expr->position());
875 if (ShouldInlineSmiCase(op)) {
876 EmitInlineSmiBinaryOp(expr, op, mode, left, right);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000877 } else {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000878 EmitBinaryOp(expr, op, mode);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000879 }
880}
881
882
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000883void FullCodeGenerator::VisitBlock(Block* stmt) {
884 Comment cmnt(masm_, "[ Block");
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000885 NestedBlock nested_block(this, stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000886 SetStatementPosition(stmt);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000887
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000888 Scope* saved_scope = scope();
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000889 // Push a block context when entering a block with block scoped variables.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000890 if (stmt->scope() != NULL) {
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000891 scope_ = stmt->scope();
892 if (scope_->is_module_scope()) {
893 // If this block is a module body, then we have already allocated and
894 // initialized the declarations earlier. Just push the context.
895 ASSERT(!scope_->interface()->Instance().is_null());
896 __ Push(scope_->interface()->Instance());
897 __ CallRuntime(Runtime::kPushModuleContext, 1);
898 StoreToFrameField(
899 StandardFrameConstants::kContextOffset, context_register());
900 } else {
901 { Comment cmnt(masm_, "[ Extend block context");
902 Handle<ScopeInfo> scope_info = scope_->GetScopeInfo();
903 int heap_slots =
904 scope_info->ContextLength() - Context::MIN_CONTEXT_SLOTS;
905 __ Push(scope_info);
906 PushFunctionArgumentForContextAllocation();
907 if (heap_slots <= FastNewBlockContextStub::kMaximumSlots) {
908 FastNewBlockContextStub stub(heap_slots);
909 __ CallStub(&stub);
910 } else {
911 __ CallRuntime(Runtime::kPushBlockContext, 2);
912 }
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000913
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000914 // Replace the context stored in the frame.
915 StoreToFrameField(StandardFrameConstants::kContextOffset,
916 context_register());
917 }
918 { Comment cmnt(masm_, "[ Declarations");
919 VisitDeclarations(scope_->declarations());
920 }
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000921 }
922 }
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +0000923 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000924 VisitStatements(stmt->statements());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000925 scope_ = saved_scope;
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000926 __ bind(nested_block.break_label());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000927 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000928
929 // Pop block context if necessary.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000930 if (stmt->scope() != NULL) {
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000931 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
932 // Update local stack frame context field.
933 StoreToFrameField(StandardFrameConstants::kContextOffset,
934 context_register());
935 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000936}
937
938
939void FullCodeGenerator::VisitExpressionStatement(ExpressionStatement* stmt) {
940 Comment cmnt(masm_, "[ ExpressionStatement");
941 SetStatementPosition(stmt);
942 VisitForEffect(stmt->expression());
943}
944
945
946void FullCodeGenerator::VisitEmptyStatement(EmptyStatement* stmt) {
947 Comment cmnt(masm_, "[ EmptyStatement");
948 SetStatementPosition(stmt);
949}
950
951
952void FullCodeGenerator::VisitIfStatement(IfStatement* stmt) {
953 Comment cmnt(masm_, "[ IfStatement");
954 SetStatementPosition(stmt);
955 Label then_part, else_part, done;
956
ricow@chromium.org65fae842010-08-25 15:26:24 +0000957 if (stmt->HasElseStatement()) {
958 VisitForControl(stmt->condition(), &then_part, &else_part, &then_part);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000959 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000960 __ bind(&then_part);
961 Visit(stmt->then_statement());
962 __ jmp(&done);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000963
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000964 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000965 __ bind(&else_part);
966 Visit(stmt->else_statement());
967 } else {
968 VisitForControl(stmt->condition(), &then_part, &done, &then_part);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000969 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000970 __ bind(&then_part);
971 Visit(stmt->then_statement());
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000972
973 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000974 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000975 __ bind(&done);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000976 PrepareForBailoutForId(stmt->IfId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000977}
978
979
980void FullCodeGenerator::VisitContinueStatement(ContinueStatement* stmt) {
981 Comment cmnt(masm_, "[ ContinueStatement");
982 SetStatementPosition(stmt);
983 NestedStatement* current = nesting_stack_;
984 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000985 int context_length = 0;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000986 // When continuing, we clobber the unpredictable value in the accumulator
987 // with one that's safe for GC. If we hit an exit from the try block of
988 // try...finally on our way out, we will unconditionally preserve the
989 // accumulator on the stack.
990 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000991 while (!current->IsContinueTarget(stmt->target())) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000992 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000993 }
994 __ Drop(stack_depth);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000995 if (context_length > 0) {
996 while (context_length > 0) {
997 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
998 --context_length;
999 }
1000 StoreToFrameField(StandardFrameConstants::kContextOffset,
1001 context_register());
1002 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001003
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001004 __ jmp(current->AsIteration()->continue_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001005}
1006
1007
1008void FullCodeGenerator::VisitBreakStatement(BreakStatement* stmt) {
1009 Comment cmnt(masm_, "[ BreakStatement");
1010 SetStatementPosition(stmt);
1011 NestedStatement* current = nesting_stack_;
1012 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001013 int context_length = 0;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001014 // When breaking, we clobber the unpredictable value in the accumulator
1015 // with one that's safe for GC. If we hit an exit from the try block of
1016 // try...finally on our way out, we will unconditionally preserve the
1017 // accumulator on the stack.
1018 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001019 while (!current->IsBreakTarget(stmt->target())) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001020 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001021 }
1022 __ Drop(stack_depth);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001023 if (context_length > 0) {
1024 while (context_length > 0) {
1025 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1026 --context_length;
1027 }
1028 StoreToFrameField(StandardFrameConstants::kContextOffset,
1029 context_register());
1030 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001031
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001032 __ jmp(current->AsBreakable()->break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001033}
1034
1035
1036void FullCodeGenerator::VisitReturnStatement(ReturnStatement* stmt) {
1037 Comment cmnt(masm_, "[ ReturnStatement");
1038 SetStatementPosition(stmt);
1039 Expression* expr = stmt->expression();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001040 VisitForAccumulatorValue(expr);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001041
1042 // Exit all nested statements.
1043 NestedStatement* current = nesting_stack_;
1044 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001045 int context_length = 0;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001046 while (current != NULL) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001047 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001048 }
1049 __ Drop(stack_depth);
1050
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00001051 EmitReturnSequence();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001052}
1053
1054
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001055void FullCodeGenerator::VisitWithStatement(WithStatement* stmt) {
1056 Comment cmnt(masm_, "[ WithStatement");
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001057 SetStatementPosition(stmt);
1058
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001059 VisitForStackValue(stmt->expression());
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00001060 PushFunctionArgumentForContextAllocation();
1061 __ CallRuntime(Runtime::kPushWithContext, 2);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001062 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001063
1064 { WithOrCatch body(this);
1065 Visit(stmt->statement());
1066 }
1067
1068 // Pop context.
1069 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1070 // Update local stack frame context field.
1071 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001072}
1073
1074
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001075void FullCodeGenerator::VisitDoWhileStatement(DoWhileStatement* stmt) {
1076 Comment cmnt(masm_, "[ DoWhileStatement");
1077 SetStatementPosition(stmt);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001078 Label body, stack_check;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001079
1080 Iteration loop_statement(this, stmt);
1081 increment_loop_depth();
1082
1083 __ bind(&body);
1084 Visit(stmt->body());
1085
ricow@chromium.org65fae842010-08-25 15:26:24 +00001086 // Record the position of the do while condition and make sure it is
1087 // possible to break on the condition.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001088 __ bind(loop_statement.continue_label());
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001089 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001090 SetExpressionPosition(stmt->cond(), stmt->condition_position());
ricow@chromium.org65fae842010-08-25 15:26:24 +00001091 VisitForControl(stmt->cond(),
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001092 &stack_check,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001093 loop_statement.break_label(),
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001094 &stack_check);
1095
1096 // Check stack before looping.
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001097 PrepareForBailoutForId(stmt->BackEdgeId(), NO_REGISTERS);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001098 __ bind(&stack_check);
yangguo@chromium.org56454712012-02-16 15:33:53 +00001099 EmitStackCheck(stmt, &body);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001100 __ jmp(&body);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001101
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001102 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001103 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001104 decrement_loop_depth();
1105}
1106
1107
1108void FullCodeGenerator::VisitWhileStatement(WhileStatement* stmt) {
1109 Comment cmnt(masm_, "[ WhileStatement");
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001110 Label test, body;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001111
1112 Iteration loop_statement(this, stmt);
1113 increment_loop_depth();
1114
1115 // Emit the test at the bottom of the loop.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001116 __ jmp(&test);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001117
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001118 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001119 __ bind(&body);
1120 Visit(stmt->body());
ricow@chromium.org65fae842010-08-25 15:26:24 +00001121
1122 // Emit the statement position here as this is where the while
1123 // statement code starts.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001124 __ bind(loop_statement.continue_label());
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001125 SetStatementPosition(stmt);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001126
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001127 // Check stack before looping.
yangguo@chromium.org56454712012-02-16 15:33:53 +00001128 EmitStackCheck(stmt, &body);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001129
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001130 __ bind(&test);
ricow@chromium.org65fae842010-08-25 15:26:24 +00001131 VisitForControl(stmt->cond(),
1132 &body,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001133 loop_statement.break_label(),
1134 loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001135
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001136 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001137 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001138 decrement_loop_depth();
1139}
1140
1141
1142void FullCodeGenerator::VisitForStatement(ForStatement* stmt) {
1143 Comment cmnt(masm_, "[ ForStatement");
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001144 Label test, body;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001145
1146 Iteration loop_statement(this, stmt);
erik.corry@gmail.combbceb572012-03-09 10:52:05 +00001147
1148 // Set statement position for a break slot before entering the for-body.
1149 SetStatementPosition(stmt);
1150
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001151 if (stmt->init() != NULL) {
1152 Visit(stmt->init());
1153 }
1154
1155 increment_loop_depth();
1156 // Emit the test at the bottom of the loop (even if empty).
1157 __ jmp(&test);
1158
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001159 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001160 __ bind(&body);
1161 Visit(stmt->body());
1162
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001163 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001164 __ bind(loop_statement.continue_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001165 if (stmt->next() != NULL) {
1166 Visit(stmt->next());
1167 }
1168
ricow@chromium.org65fae842010-08-25 15:26:24 +00001169 // Emit the statement position here as this is where the for
1170 // statement code starts.
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001171 SetStatementPosition(stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001172
1173 // Check stack before looping.
yangguo@chromium.org56454712012-02-16 15:33:53 +00001174 EmitStackCheck(stmt, &body);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001175
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001176 __ bind(&test);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001177 if (stmt->cond() != NULL) {
ricow@chromium.org65fae842010-08-25 15:26:24 +00001178 VisitForControl(stmt->cond(),
1179 &body,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001180 loop_statement.break_label(),
1181 loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001182 } else {
1183 __ jmp(&body);
1184 }
1185
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001186 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001187 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001188 decrement_loop_depth();
1189}
1190
1191
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001192void FullCodeGenerator::VisitTryCatchStatement(TryCatchStatement* stmt) {
1193 Comment cmnt(masm_, "[ TryCatchStatement");
1194 SetStatementPosition(stmt);
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001195 // The try block adds a handler to the exception handler chain before
1196 // entering, and removes it again when exiting normally. If an exception
1197 // is thrown during execution of the try block, the handler is consumed
1198 // and control is passed to the catch block with the exception in the
1199 // result register.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001200
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001201 Label try_entry, handler_entry, exit;
1202 __ jmp(&try_entry);
1203 __ bind(&handler_entry);
1204 handler_table()->set(stmt->index(), Smi::FromInt(handler_entry.pos()));
1205 // Exception handler code, the exception is in the result register.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001206 // Extend the context before executing the catch block.
1207 { Comment cmnt(masm_, "[ Extend catch context");
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001208 __ Push(stmt->variable()->name());
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001209 __ push(result_register());
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00001210 PushFunctionArgumentForContextAllocation();
1211 __ CallRuntime(Runtime::kPushCatchContext, 3);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001212 StoreToFrameField(StandardFrameConstants::kContextOffset,
1213 context_register());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001214 }
1215
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001216 Scope* saved_scope = scope();
1217 scope_ = stmt->scope();
1218 ASSERT(scope_->declarations()->is_empty());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001219 { WithOrCatch catch_body(this);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001220 Visit(stmt->catch_block());
1221 }
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001222 // Restore the context.
1223 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1224 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001225 scope_ = saved_scope;
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001226 __ jmp(&exit);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001227
1228 // Try block code. Sets up the exception handler chain.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001229 __ bind(&try_entry);
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +00001230 __ PushTryHandler(StackHandler::CATCH, stmt->index());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001231 { TryCatch try_body(this);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001232 Visit(stmt->try_block());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001233 }
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001234 __ PopTryHandler();
1235 __ bind(&exit);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001236}
1237
1238
1239void FullCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
1240 Comment cmnt(masm_, "[ TryFinallyStatement");
1241 SetStatementPosition(stmt);
1242 // Try finally is compiled by setting up a try-handler on the stack while
1243 // executing the try body, and removing it again afterwards.
1244 //
1245 // The try-finally construct can enter the finally block in three ways:
1246 // 1. By exiting the try-block normally. This removes the try-handler and
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001247 // calls the finally block code before continuing.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001248 // 2. By exiting the try-block with a function-local control flow transfer
1249 // (break/continue/return). The site of the, e.g., break removes the
1250 // try handler and calls the finally block code before continuing
1251 // its outward control transfer.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001252 // 3. By exiting the try-block with a thrown exception.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001253 // This can happen in nested function calls. It traverses the try-handler
1254 // chain and consumes the try-handler entry before jumping to the
1255 // handler code. The handler code then calls the finally-block before
1256 // rethrowing the exception.
1257 //
1258 // The finally block must assume a return address on top of the stack
1259 // (or in the link register on ARM chips) and a value (return value or
1260 // exception) in the result register (rax/eax/r0), both of which must
1261 // be preserved. The return address isn't GC-safe, so it should be
1262 // cooked before GC.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001263 Label try_entry, handler_entry, finally_entry;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001264
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001265 // Jump to try-handler setup and try-block code.
1266 __ jmp(&try_entry);
1267 __ bind(&handler_entry);
1268 handler_table()->set(stmt->index(), Smi::FromInt(handler_entry.pos()));
1269 // Exception handler code. This code is only executed when an exception
1270 // is thrown. The exception is in the result register, and must be
1271 // preserved by the finally block. Call the finally block and then
1272 // rethrow the exception if it returns.
1273 __ Call(&finally_entry);
1274 __ push(result_register());
1275 __ CallRuntime(Runtime::kReThrow, 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001276
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001277 // Finally block implementation.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001278 __ bind(&finally_entry);
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001279 EnterFinallyBlock();
1280 { Finally finally_body(this);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001281 Visit(stmt->finally_block());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001282 }
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001283 ExitFinallyBlock(); // Return to the calling code.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001284
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001285 // Set up try handler.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001286 __ bind(&try_entry);
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +00001287 __ PushTryHandler(StackHandler::FINALLY, stmt->index());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001288 { TryFinally try_body(this, &finally_entry);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001289 Visit(stmt->try_block());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001290 }
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001291 __ PopTryHandler();
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001292 // Execute the finally block on the way out. Clobber the unpredictable
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001293 // value in the result register with one that's safe for GC because the
1294 // finally block will unconditionally preserve the result register on the
1295 // stack.
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001296 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001297 __ Call(&finally_entry);
1298}
1299
1300
1301void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) {
1302#ifdef ENABLE_DEBUGGER_SUPPORT
1303 Comment cmnt(masm_, "[ DebuggerStatement");
1304 SetStatementPosition(stmt);
1305
ager@chromium.org5c838252010-02-19 08:53:10 +00001306 __ DebugBreak();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001307 // Ignore the return value.
1308#endif
1309}
1310
1311
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001312void FullCodeGenerator::VisitConditional(Conditional* expr) {
1313 Comment cmnt(masm_, "[ Conditional");
1314 Label true_case, false_case, done;
ricow@chromium.org65fae842010-08-25 15:26:24 +00001315 VisitForControl(expr->condition(), &true_case, &false_case, &true_case);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001316
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001317 PrepareForBailoutForId(expr->ThenId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001318 __ bind(&true_case);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001319 SetExpressionPosition(expr->then_expression(),
1320 expr->then_expression_position());
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001321 if (context()->IsTest()) {
1322 const TestContext* for_test = TestContext::cast(context());
1323 VisitForControl(expr->then_expression(),
1324 for_test->true_label(),
1325 for_test->false_label(),
1326 NULL);
1327 } else {
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001328 VisitInDuplicateContext(expr->then_expression());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001329 __ jmp(&done);
1330 }
1331
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001332 PrepareForBailoutForId(expr->ElseId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001333 __ bind(&false_case);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001334 SetExpressionPosition(expr->else_expression(),
1335 expr->else_expression_position());
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001336 VisitInDuplicateContext(expr->else_expression());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001337 // If control flow falls through Visit, merge it with true case here.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001338 if (!context()->IsTest()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001339 __ bind(&done);
1340 }
1341}
1342
1343
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001344void FullCodeGenerator::VisitLiteral(Literal* expr) {
1345 Comment cmnt(masm_, "[ Literal");
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001346 context()->Plug(expr->handle());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001347}
1348
1349
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001350void FullCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) {
1351 Comment cmnt(masm_, "[ FunctionLiteral");
1352
1353 // Build the function boilerplate and instantiate it.
1354 Handle<SharedFunctionInfo> function_info =
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001355 Compiler::BuildFunctionInfo(expr, script());
1356 if (function_info.is_null()) {
1357 SetStackOverflow();
1358 return;
1359 }
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00001360 EmitNewClosure(function_info, expr->pretenure());
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001361}
1362
1363
1364void FullCodeGenerator::VisitSharedFunctionInfoLiteral(
1365 SharedFunctionInfoLiteral* expr) {
1366 Comment cmnt(masm_, "[ SharedFunctionInfoLiteral");
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00001367 EmitNewClosure(expr->shared_function_info(), false);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001368}
1369
1370
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001371void FullCodeGenerator::VisitThrow(Throw* expr) {
1372 Comment cmnt(masm_, "[ Throw");
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001373 VisitForStackValue(expr->exception());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001374 __ CallRuntime(Runtime::kThrow, 1);
1375 // Never returns here.
1376}
1377
1378
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001379FullCodeGenerator::NestedStatement* FullCodeGenerator::TryCatch::Exit(
1380 int* stack_depth,
1381 int* context_length) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001382 // The macros used here must preserve the result register.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001383 __ Drop(*stack_depth);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001384 __ PopTryHandler();
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001385 *stack_depth = 0;
1386 return previous_;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001387}
1388
ricow@chromium.org65fae842010-08-25 15:26:24 +00001389
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001390bool FullCodeGenerator::TryLiteralCompare(CompareOperation* expr) {
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001391 Expression* sub_expr;
ager@chromium.org04921a82011-06-27 13:21:41 +00001392 Handle<String> check;
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001393 if (expr->IsLiteralCompareTypeof(&sub_expr, &check)) {
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001394 EmitLiteralCompareTypeof(expr, sub_expr, check);
ager@chromium.org04921a82011-06-27 13:21:41 +00001395 return true;
1396 }
1397
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001398 if (expr->IsLiteralCompareUndefined(&sub_expr)) {
1399 EmitLiteralCompareNil(expr, sub_expr, kUndefinedValue);
1400 return true;
1401 }
1402
1403 if (expr->IsLiteralCompareNull(&sub_expr)) {
1404 EmitLiteralCompareNil(expr, sub_expr, kNullValue);
ager@chromium.org04921a82011-06-27 13:21:41 +00001405 return true;
1406 }
1407
1408 return false;
1409}
1410
1411
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001412#undef __
1413
1414
1415} } // namespace v8::internal