blob: 449c5d2b76834a01263cedc511c7ed607ffdd60c [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.org56454712012-02-16 15:33:53 +0000306 FullCodeGenerator cgen(&masm, info);
307 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() &&
317 !info->function()->flags()->Contains(kDontOptimize));
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000318 cgen.PopulateDeoptimizationData(code);
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000319 cgen.PopulateTypeFeedbackInfo(code);
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000320 cgen.PopulateTypeFeedbackCells(code);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000321 code->set_has_deoptimization_support(info->HasDeoptimizationSupport());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +0000322 code->set_handler_table(*cgen.handler_table());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000323#ifdef ENABLE_DEBUGGER_SUPPORT
lrn@chromium.org34e60782011-09-15 07:25:40 +0000324 code->set_has_debug_break_slots(
325 info->isolate()->debugger()->IsDebuggerActive());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000326 code->set_compiled_optimizable(info->IsOptimizable());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000327#endif // ENABLE_DEBUGGER_SUPPORT
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000328 code->set_allow_osr_at_loop_nesting_level(0);
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000329 code->set_profiler_ticks(0);
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000330 code->set_stack_check_table_offset(table_offset);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000331 CodeGenerator::PrintCode(code, info);
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000332 info->SetCode(code); // May be an empty handle.
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000333#ifdef ENABLE_GDB_JIT_INTERFACE
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000334 if (FLAG_gdbjit && !code.is_null()) {
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000335 GDBJITLineInfo* lineinfo =
336 masm.positions_recorder()->DetachGDBJITLineInfo();
337
338 GDBJIT(RegisterDetailedLineInfo(*code, lineinfo));
339 }
340#endif
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000341 return !code.is_null();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000342}
343
344
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000345unsigned FullCodeGenerator::EmitStackCheckTable() {
346 // The stack check table consists of a length (in number of entries)
347 // field, and then a sequence of entries. Each entry is a pair of AST id
348 // and code-relative pc offset.
349 masm()->Align(kIntSize);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000350 unsigned offset = masm()->pc_offset();
351 unsigned length = stack_checks_.length();
352 __ dd(length);
353 for (unsigned i = 0; i < length; ++i) {
354 __ dd(stack_checks_[i].id);
355 __ dd(stack_checks_[i].pc_and_state);
356 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000357 return offset;
358}
359
360
361void FullCodeGenerator::PopulateDeoptimizationData(Handle<Code> code) {
362 // Fill in the deoptimization information.
363 ASSERT(info_->HasDeoptimizationSupport() || bailout_entries_.is_empty());
364 if (!info_->HasDeoptimizationSupport()) return;
365 int length = bailout_entries_.length();
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000366 Handle<DeoptimizationOutputData> data = isolate()->factory()->
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000367 NewDeoptimizationOutputData(length, TENURED);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000368 for (int i = 0; i < length; i++) {
369 data->SetAstId(i, Smi::FromInt(bailout_entries_[i].id));
370 data->SetPcAndState(i, Smi::FromInt(bailout_entries_[i].pc_and_state));
371 }
372 code->set_deoptimization_data(*data);
373}
374
375
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000376void FullCodeGenerator::PopulateTypeFeedbackInfo(Handle<Code> code) {
377 Handle<TypeFeedbackInfo> info = isolate()->factory()->NewTypeFeedbackInfo();
378 info->set_ic_total_count(ic_total_count_);
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +0000379 ASSERT(!isolate()->heap()->InNewSpace(*info));
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000380 code->set_type_feedback_info(*info);
381}
382
383
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000384void FullCodeGenerator::PopulateTypeFeedbackCells(Handle<Code> code) {
385 if (type_feedback_cells_.is_empty()) return;
386 int length = type_feedback_cells_.length();
387 int array_size = TypeFeedbackCells::LengthOfFixedArray(length);
388 Handle<TypeFeedbackCells> cache = Handle<TypeFeedbackCells>::cast(
389 isolate()->factory()->NewFixedArray(array_size, TENURED));
390 for (int i = 0; i < length; i++) {
391 cache->SetAstId(i, Smi::FromInt(type_feedback_cells_[i].ast_id));
392 cache->SetCell(i, *type_feedback_cells_[i].cell);
393 }
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000394 TypeFeedbackInfo::cast(code->type_feedback_info())->set_type_feedback_cells(
395 *cache);
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000396}
397
398
399
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000400void FullCodeGenerator::PrepareForBailout(Expression* node, State state) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000401 PrepareForBailoutForId(node->id(), state);
402}
403
404
405void FullCodeGenerator::RecordJSReturnSite(Call* call) {
406 // We record the offset of the function return so we can rebuild the frame
407 // if the function was inlined, i.e., this is the return address in the
408 // inlined function's frame.
409 //
410 // The state is ignored. We defensively set it to TOS_REG, which is the
411 // real state of the unoptimized code at the return site.
412 PrepareForBailoutForId(call->ReturnId(), TOS_REG);
413#ifdef DEBUG
414 // In debug builds, mark the return so we can verify that this function
415 // was called.
416 ASSERT(!call->return_is_recorded_);
417 call->return_is_recorded_ = true;
418#endif
419}
420
421
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +0000422void FullCodeGenerator::PrepareForBailoutForId(unsigned id, State state) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000423 // There's no need to prepare this code for bailouts from already optimized
424 // code or code that can't be optimized.
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000425 if (!info_->HasDeoptimizationSupport()) return;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000426 unsigned pc_and_state =
427 StateField::encode(state) | PcField::encode(masm_->pc_offset());
yangguo@chromium.org56454712012-02-16 15:33:53 +0000428 ASSERT(Smi::IsValid(pc_and_state));
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000429 BailoutEntry entry = { id, pc_and_state };
430#ifdef DEBUG
yangguo@chromium.org659ceec2012-01-26 07:37:54 +0000431 if (FLAG_enable_slow_asserts) {
432 // Assert that we don't have multiple bailout entries for the same node.
433 for (int i = 0; i < bailout_entries_.length(); i++) {
434 if (bailout_entries_.at(i).id == entry.id) {
435 AstPrinter printer;
436 PrintF("%s", printer.PrintProgram(info_->function()));
437 UNREACHABLE();
438 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000439 }
440 }
441#endif // DEBUG
442 bailout_entries_.Add(entry);
443}
444
445
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000446void FullCodeGenerator::RecordTypeFeedbackCell(
447 unsigned id, Handle<JSGlobalPropertyCell> cell) {
448 TypeFeedbackCellEntry entry = { id, cell };
449 type_feedback_cells_.Add(entry);
450}
451
452
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +0000453void FullCodeGenerator::RecordStackCheck(unsigned ast_id) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000454 // The pc offset does not need to be encoded and packed together with a
455 // state.
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +0000456 ASSERT(masm_->pc_offset() > 0);
457 BailoutEntry entry = { ast_id, static_cast<unsigned>(masm_->pc_offset()) };
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000458 stack_checks_.Add(entry);
459}
460
461
ricow@chromium.org65fae842010-08-25 15:26:24 +0000462bool FullCodeGenerator::ShouldInlineSmiCase(Token::Value op) {
ricow@chromium.org65fae842010-08-25 15:26:24 +0000463 // Inline smi case inside loops, but not division and modulo which
464 // are too complicated and take up too much space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000465 if (op == Token::DIV ||op == Token::MOD) return false;
466 if (FLAG_always_inline_smi_code) return true;
467 return loop_depth_ > 0;
ricow@chromium.org65fae842010-08-25 15:26:24 +0000468}
469
470
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000471void FullCodeGenerator::EffectContext::Plug(Register reg) const {
472}
473
474
475void FullCodeGenerator::AccumulatorValueContext::Plug(Register reg) const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000476 __ Move(result_register(), reg);
477}
478
479
480void FullCodeGenerator::StackValueContext::Plug(Register reg) const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000481 __ push(reg);
482}
483
484
485void FullCodeGenerator::TestContext::Plug(Register reg) const {
486 // For simplicity we always test the accumulator register.
487 __ Move(result_register(), reg);
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000488 codegen()->PrepareForBailoutBeforeSplit(condition(), false, NULL, NULL);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000489 codegen()->DoTest(this);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000490}
491
492
493void FullCodeGenerator::EffectContext::PlugTOS() const {
494 __ Drop(1);
495}
496
497
498void FullCodeGenerator::AccumulatorValueContext::PlugTOS() const {
499 __ pop(result_register());
500}
501
502
503void FullCodeGenerator::StackValueContext::PlugTOS() const {
504}
505
506
507void FullCodeGenerator::TestContext::PlugTOS() const {
508 // For simplicity we always test the accumulator register.
509 __ pop(result_register());
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000510 codegen()->PrepareForBailoutBeforeSplit(condition(), false, NULL, NULL);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000511 codegen()->DoTest(this);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000512}
513
514
515void FullCodeGenerator::EffectContext::PrepareTest(
516 Label* materialize_true,
517 Label* materialize_false,
518 Label** if_true,
519 Label** if_false,
520 Label** fall_through) const {
521 // In an effect context, the true and the false case branch to the
522 // same label.
523 *if_true = *if_false = *fall_through = materialize_true;
524}
525
526
527void FullCodeGenerator::AccumulatorValueContext::PrepareTest(
528 Label* materialize_true,
529 Label* materialize_false,
530 Label** if_true,
531 Label** if_false,
532 Label** fall_through) const {
533 *if_true = *fall_through = materialize_true;
534 *if_false = materialize_false;
535}
536
537
538void FullCodeGenerator::StackValueContext::PrepareTest(
539 Label* materialize_true,
540 Label* materialize_false,
541 Label** if_true,
542 Label** if_false,
543 Label** fall_through) const {
544 *if_true = *fall_through = materialize_true;
545 *if_false = materialize_false;
546}
547
548
549void FullCodeGenerator::TestContext::PrepareTest(
550 Label* materialize_true,
551 Label* materialize_false,
552 Label** if_true,
553 Label** if_false,
554 Label** fall_through) const {
555 *if_true = true_label_;
556 *if_false = false_label_;
557 *fall_through = fall_through_;
ricow@chromium.org65fae842010-08-25 15:26:24 +0000558}
559
560
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000561void FullCodeGenerator::DoTest(const TestContext* context) {
562 DoTest(context->condition(),
563 context->true_label(),
564 context->false_label(),
565 context->fall_through());
566}
567
568
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000569void FullCodeGenerator::VisitDeclarations(
570 ZoneList<Declaration*>* declarations) {
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000571 int save_global_count = global_count_;
572 global_count_ = 0;
573
574 AstVisitor::VisitDeclarations(declarations);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000575
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000576 // Batch declare global functions and variables.
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000577 if (global_count_ > 0) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000578 Handle<FixedArray> array =
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000579 isolate()->factory()->NewFixedArray(2 * global_count_, TENURED);
580 int length = declarations->length();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000581 for (int j = 0, i = 0; i < length; i++) {
ulan@chromium.org812308e2012-02-29 15:58:45 +0000582 Declaration* decl = declarations->at(i);
583 Variable* var = decl->proxy()->var();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000584
ulan@chromium.org812308e2012-02-29 15:58:45 +0000585 if (var->IsUnallocated()) {
586 array->set(j++, *(var->name()));
587 FunctionDeclaration* fun_decl = decl->AsFunctionDeclaration();
588 if (fun_decl == NULL) {
589 if (var->binding_needs_init()) {
590 // In case this binding needs initialization use the hole.
591 array->set_the_hole(j++);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000592 } else {
ulan@chromium.org812308e2012-02-29 15:58:45 +0000593 array->set_undefined(j++);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000594 }
ulan@chromium.org812308e2012-02-29 15:58:45 +0000595 } else {
596 Handle<SharedFunctionInfo> function =
597 Compiler::BuildFunctionInfo(fun_decl->fun(), script());
598 // Check for stack-overflow exception.
599 if (function.is_null()) {
600 SetStackOverflow();
601 return;
602 }
603 array->set(j++, *function);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000604 }
605 }
606 }
607 // Invoke the platform-dependent code generator to do the actual
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000608 // declaration the global functions and variables.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000609 DeclareGlobals(array);
610 }
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000611
612 global_count_ = save_global_count;
613}
614
615
616void FullCodeGenerator::VisitVariableDeclaration(VariableDeclaration* decl) {
ulan@chromium.org812308e2012-02-29 15:58:45 +0000617 EmitDeclaration(decl->proxy(), decl->mode(), NULL);
618}
619
620
621void FullCodeGenerator::VisitFunctionDeclaration(FunctionDeclaration* decl) {
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000622 EmitDeclaration(decl->proxy(), decl->mode(), decl->fun());
623}
624
625
626void FullCodeGenerator::VisitModuleDeclaration(ModuleDeclaration* decl) {
ulan@chromium.org812308e2012-02-29 15:58:45 +0000627 EmitDeclaration(decl->proxy(), decl->mode(), NULL);
628}
629
630
631void FullCodeGenerator::VisitImportDeclaration(ImportDeclaration* decl) {
632 EmitDeclaration(decl->proxy(), decl->mode(), NULL);
633}
634
635
636void FullCodeGenerator::VisitExportDeclaration(ExportDeclaration* decl) {
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000637 // TODO(rossberg)
638}
639
640
641void FullCodeGenerator::VisitModuleLiteral(ModuleLiteral* module) {
642 // TODO(rossberg)
643}
644
645
646void FullCodeGenerator::VisitModuleVariable(ModuleVariable* module) {
647 // TODO(rossberg)
648}
649
650
651void FullCodeGenerator::VisitModulePath(ModulePath* module) {
652 // TODO(rossberg)
653}
654
655
656void FullCodeGenerator::VisitModuleUrl(ModuleUrl* decl) {
657 // TODO(rossberg)
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000658}
659
660
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000661int FullCodeGenerator::DeclareGlobalsFlags() {
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000662 ASSERT(DeclareGlobalsLanguageMode::is_valid(language_mode()));
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000663 return DeclareGlobalsEvalFlag::encode(is_eval()) |
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000664 DeclareGlobalsNativeFlag::encode(is_native()) |
665 DeclareGlobalsLanguageMode::encode(language_mode());
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000666}
667
668
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000669void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000670 CodeGenerator::RecordPositions(masm_, fun->start_position());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000671}
672
673
674void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000675 CodeGenerator::RecordPositions(masm_, fun->end_position() - 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000676}
677
678
679void FullCodeGenerator::SetStatementPosition(Statement* stmt) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000680#ifdef ENABLE_DEBUGGER_SUPPORT
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000681 if (!isolate()->debugger()->IsDebuggerActive()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000682 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000683 } else {
684 // Check if the statement will be breakable without adding a debug break
685 // slot.
686 BreakableStatementChecker checker;
687 checker.Check(stmt);
688 // Record the statement position right here if the statement is not
689 // breakable. For breakable statements the actual recording of the
690 // position will be postponed to the breakable code (typically an IC).
691 bool position_recorded = CodeGenerator::RecordPositions(
692 masm_, stmt->statement_pos(), !checker.is_breakable());
693 // If the position recording did record a new position generate a debug
694 // break slot to make the statement breakable.
695 if (position_recorded) {
696 Debug::GenerateSlot(masm_);
697 }
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000698 }
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000699#else
700 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
701#endif
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000702}
703
704
705void FullCodeGenerator::SetExpressionPosition(Expression* expr, int pos) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000706#ifdef ENABLE_DEBUGGER_SUPPORT
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000707 if (!isolate()->debugger()->IsDebuggerActive()) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000708 CodeGenerator::RecordPositions(masm_, pos);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000709 } else {
710 // Check if the expression will be breakable without adding a debug break
711 // slot.
712 BreakableStatementChecker checker;
713 checker.Check(expr);
714 // Record a statement position right here if the expression is not
715 // breakable. For breakable expressions the actual recording of the
716 // position will be postponed to the breakable code (typically an IC).
717 // NOTE this will record a statement position for something which might
718 // not be a statement. As stepping in the debugger will only stop at
719 // statement positions this is used for e.g. the condition expression of
720 // a do while loop.
721 bool position_recorded = CodeGenerator::RecordPositions(
722 masm_, pos, !checker.is_breakable());
723 // If the position recording did record a new position generate a debug
724 // break slot to make the statement breakable.
725 if (position_recorded) {
726 Debug::GenerateSlot(masm_);
727 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000728 }
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000729#else
730 CodeGenerator::RecordPositions(masm_, pos);
731#endif
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000732}
733
734
735void FullCodeGenerator::SetStatementPosition(int pos) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000736 CodeGenerator::RecordPositions(masm_, pos);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000737}
738
739
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000740void FullCodeGenerator::SetSourcePosition(int pos) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000741 if (pos != RelocInfo::kNoPosition) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000742 masm_->positions_recorder()->RecordPosition(pos);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000743 }
744}
745
746
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000747// Lookup table for code generators for special runtime calls which are
748// generated inline.
749#define INLINE_FUNCTION_GENERATOR_ADDRESS(Name, argc, ressize) \
750 &FullCodeGenerator::Emit##Name,
erik.corry@gmail.com145eff52010-08-23 11:36:18 +0000751
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000752const FullCodeGenerator::InlineFunctionGenerator
753 FullCodeGenerator::kInlineFunctionGenerators[] = {
754 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
755 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
756 };
757#undef INLINE_FUNCTION_GENERATOR_ADDRESS
758
759
760FullCodeGenerator::InlineFunctionGenerator
761 FullCodeGenerator::FindInlineFunctionGenerator(Runtime::FunctionId id) {
whesse@chromium.org023421e2010-12-21 12:19:12 +0000762 int lookup_index =
763 static_cast<int>(id) - static_cast<int>(Runtime::kFirstInlineFunction);
764 ASSERT(lookup_index >= 0);
765 ASSERT(static_cast<size_t>(lookup_index) <
766 ARRAY_SIZE(kInlineFunctionGenerators));
767 return kInlineFunctionGenerators[lookup_index];
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000768}
769
770
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000771void FullCodeGenerator::EmitInlineRuntimeCall(CallRuntime* expr) {
772 const Runtime::Function* function = expr->function();
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000773 ASSERT(function != NULL);
774 ASSERT(function->intrinsic_type == Runtime::INLINE);
775 InlineFunctionGenerator generator =
776 FindInlineFunctionGenerator(function->function_id);
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000777 ((*this).*(generator))(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000778}
779
780
781void FullCodeGenerator::VisitBinaryOperation(BinaryOperation* expr) {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000782 switch (expr->op()) {
ricow@chromium.org65fae842010-08-25 15:26:24 +0000783 case Token::COMMA:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000784 return VisitComma(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000785 case Token::OR:
786 case Token::AND:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000787 return VisitLogicalExpression(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000788 default:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000789 return VisitArithmeticExpression(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000790 }
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000791}
792
793
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000794void FullCodeGenerator::VisitInDuplicateContext(Expression* expr) {
795 if (context()->IsEffect()) {
796 VisitForEffect(expr);
797 } else if (context()->IsAccumulatorValue()) {
798 VisitForAccumulatorValue(expr);
799 } else if (context()->IsStackValue()) {
800 VisitForStackValue(expr);
801 } else if (context()->IsTest()) {
802 const TestContext* test = TestContext::cast(context());
803 VisitForControl(expr, test->true_label(), test->false_label(),
804 test->fall_through());
805 }
806}
807
808
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000809void FullCodeGenerator::VisitComma(BinaryOperation* expr) {
810 Comment cmnt(masm_, "[ Comma");
811 VisitForEffect(expr->left());
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000812 VisitInDuplicateContext(expr->right());
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000813}
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000814
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000815
816void FullCodeGenerator::VisitLogicalExpression(BinaryOperation* expr) {
817 bool is_logical_and = expr->op() == Token::AND;
818 Comment cmnt(masm_, is_logical_and ? "[ Logical AND" : "[ Logical OR");
819 Expression* left = expr->left();
820 Expression* right = expr->right();
821 int right_id = expr->RightId();
822 Label done;
823
824 if (context()->IsTest()) {
825 Label eval_right;
826 const TestContext* test = TestContext::cast(context());
827 if (is_logical_and) {
828 VisitForControl(left, &eval_right, test->false_label(), &eval_right);
829 } else {
830 VisitForControl(left, test->true_label(), &eval_right, &eval_right);
831 }
832 PrepareForBailoutForId(right_id, NO_REGISTERS);
833 __ bind(&eval_right);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000834
835 } else if (context()->IsAccumulatorValue()) {
836 VisitForAccumulatorValue(left);
837 // We want the value in the accumulator for the test, and on the stack in
838 // case we need it.
839 __ push(result_register());
840 Label discard, restore;
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000841 if (is_logical_and) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000842 DoTest(left, &discard, &restore, &restore);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000843 } else {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000844 DoTest(left, &restore, &discard, &restore);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000845 }
846 __ bind(&restore);
847 __ pop(result_register());
848 __ jmp(&done);
849 __ bind(&discard);
850 __ Drop(1);
851 PrepareForBailoutForId(right_id, NO_REGISTERS);
852
853 } else if (context()->IsStackValue()) {
854 VisitForAccumulatorValue(left);
855 // We want the value in the accumulator for the test, and on the stack in
856 // case we need it.
857 __ push(result_register());
858 Label discard;
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000859 if (is_logical_and) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000860 DoTest(left, &discard, &done, &discard);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000861 } else {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000862 DoTest(left, &done, &discard, &discard);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000863 }
864 __ bind(&discard);
865 __ Drop(1);
866 PrepareForBailoutForId(right_id, NO_REGISTERS);
867
868 } else {
869 ASSERT(context()->IsEffect());
870 Label eval_right;
871 if (is_logical_and) {
872 VisitForControl(left, &eval_right, &done, &eval_right);
873 } else {
874 VisitForControl(left, &done, &eval_right, &eval_right);
875 }
876 PrepareForBailoutForId(right_id, NO_REGISTERS);
877 __ bind(&eval_right);
878 }
879
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000880 VisitInDuplicateContext(right);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000881 __ bind(&done);
882}
883
884
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000885void FullCodeGenerator::VisitArithmeticExpression(BinaryOperation* expr) {
886 Token::Value op = expr->op();
887 Comment cmnt(masm_, "[ ArithmeticExpression");
888 Expression* left = expr->left();
889 Expression* right = expr->right();
890 OverwriteMode mode =
891 left->ResultOverwriteAllowed()
892 ? OVERWRITE_LEFT
893 : (right->ResultOverwriteAllowed() ? OVERWRITE_RIGHT : NO_OVERWRITE);
894
895 VisitForStackValue(left);
896 VisitForAccumulatorValue(right);
897
898 SetSourcePosition(expr->position());
899 if (ShouldInlineSmiCase(op)) {
900 EmitInlineSmiBinaryOp(expr, op, mode, left, right);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000901 } else {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000902 EmitBinaryOp(expr, op, mode);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000903 }
904}
905
906
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000907void FullCodeGenerator::VisitBlock(Block* stmt) {
908 Comment cmnt(masm_, "[ Block");
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000909 NestedBlock nested_block(this, stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000910 SetStatementPosition(stmt);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000911
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000912 Scope* saved_scope = scope();
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000913 // Push a block context when entering a block with block scoped variables.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000914 if (stmt->block_scope() != NULL) {
915 { Comment cmnt(masm_, "[ Extend block context");
916 scope_ = stmt->block_scope();
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000917 Handle<ScopeInfo> scope_info = scope_->GetScopeInfo();
918 int heap_slots = scope_info->ContextLength() - Context::MIN_CONTEXT_SLOTS;
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000919 __ Push(scope_info);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000920 PushFunctionArgumentForContextAllocation();
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000921 if (heap_slots <= FastNewBlockContextStub::kMaximumSlots) {
922 FastNewBlockContextStub stub(heap_slots);
923 __ CallStub(&stub);
924 } else {
925 __ CallRuntime(Runtime::kPushBlockContext, 2);
926 }
927
928 // Replace the context stored in the frame.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000929 StoreToFrameField(StandardFrameConstants::kContextOffset,
930 context_register());
931 }
932 { Comment cmnt(masm_, "[ Declarations");
933 VisitDeclarations(scope_->declarations());
934 }
935 }
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +0000936 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000937 VisitStatements(stmt->statements());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000938 scope_ = saved_scope;
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000939 __ bind(nested_block.break_label());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000940 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000941
942 // Pop block context if necessary.
943 if (stmt->block_scope() != NULL) {
944 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
945 // Update local stack frame context field.
946 StoreToFrameField(StandardFrameConstants::kContextOffset,
947 context_register());
948 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000949}
950
951
952void FullCodeGenerator::VisitExpressionStatement(ExpressionStatement* stmt) {
953 Comment cmnt(masm_, "[ ExpressionStatement");
954 SetStatementPosition(stmt);
955 VisitForEffect(stmt->expression());
956}
957
958
959void FullCodeGenerator::VisitEmptyStatement(EmptyStatement* stmt) {
960 Comment cmnt(masm_, "[ EmptyStatement");
961 SetStatementPosition(stmt);
962}
963
964
965void FullCodeGenerator::VisitIfStatement(IfStatement* stmt) {
966 Comment cmnt(masm_, "[ IfStatement");
967 SetStatementPosition(stmt);
968 Label then_part, else_part, done;
969
ricow@chromium.org65fae842010-08-25 15:26:24 +0000970 if (stmt->HasElseStatement()) {
971 VisitForControl(stmt->condition(), &then_part, &else_part, &then_part);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000972 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000973 __ bind(&then_part);
974 Visit(stmt->then_statement());
975 __ jmp(&done);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000976
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000977 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000978 __ bind(&else_part);
979 Visit(stmt->else_statement());
980 } else {
981 VisitForControl(stmt->condition(), &then_part, &done, &then_part);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000982 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000983 __ bind(&then_part);
984 Visit(stmt->then_statement());
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000985
986 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000987 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000988 __ bind(&done);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000989 PrepareForBailoutForId(stmt->IfId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000990}
991
992
993void FullCodeGenerator::VisitContinueStatement(ContinueStatement* stmt) {
994 Comment cmnt(masm_, "[ ContinueStatement");
995 SetStatementPosition(stmt);
996 NestedStatement* current = nesting_stack_;
997 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000998 int context_length = 0;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000999 // When continuing, we clobber the unpredictable value in the accumulator
1000 // with one that's safe for GC. If we hit an exit from the try block of
1001 // try...finally on our way out, we will unconditionally preserve the
1002 // accumulator on the stack.
1003 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001004 while (!current->IsContinueTarget(stmt->target())) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001005 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001006 }
1007 __ Drop(stack_depth);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001008 if (context_length > 0) {
1009 while (context_length > 0) {
1010 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1011 --context_length;
1012 }
1013 StoreToFrameField(StandardFrameConstants::kContextOffset,
1014 context_register());
1015 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001016
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001017 __ jmp(current->AsIteration()->continue_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001018}
1019
1020
1021void FullCodeGenerator::VisitBreakStatement(BreakStatement* stmt) {
1022 Comment cmnt(masm_, "[ BreakStatement");
1023 SetStatementPosition(stmt);
1024 NestedStatement* current = nesting_stack_;
1025 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001026 int context_length = 0;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001027 // When breaking, we clobber the unpredictable value in the accumulator
1028 // with one that's safe for GC. If we hit an exit from the try block of
1029 // try...finally on our way out, we will unconditionally preserve the
1030 // accumulator on the stack.
1031 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001032 while (!current->IsBreakTarget(stmt->target())) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001033 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001034 }
1035 __ Drop(stack_depth);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001036 if (context_length > 0) {
1037 while (context_length > 0) {
1038 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1039 --context_length;
1040 }
1041 StoreToFrameField(StandardFrameConstants::kContextOffset,
1042 context_register());
1043 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001044
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001045 __ jmp(current->AsBreakable()->break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001046}
1047
1048
1049void FullCodeGenerator::VisitReturnStatement(ReturnStatement* stmt) {
1050 Comment cmnt(masm_, "[ ReturnStatement");
1051 SetStatementPosition(stmt);
1052 Expression* expr = stmt->expression();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001053 VisitForAccumulatorValue(expr);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001054
1055 // Exit all nested statements.
1056 NestedStatement* current = nesting_stack_;
1057 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001058 int context_length = 0;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001059 while (current != NULL) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001060 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001061 }
1062 __ Drop(stack_depth);
1063
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00001064 EmitReturnSequence();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001065}
1066
1067
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001068void FullCodeGenerator::VisitWithStatement(WithStatement* stmt) {
1069 Comment cmnt(masm_, "[ WithStatement");
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001070 SetStatementPosition(stmt);
1071
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001072 VisitForStackValue(stmt->expression());
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00001073 PushFunctionArgumentForContextAllocation();
1074 __ CallRuntime(Runtime::kPushWithContext, 2);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001075 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001076
1077 { WithOrCatch body(this);
1078 Visit(stmt->statement());
1079 }
1080
1081 // Pop context.
1082 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1083 // Update local stack frame context field.
1084 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001085}
1086
1087
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001088void FullCodeGenerator::VisitDoWhileStatement(DoWhileStatement* stmt) {
1089 Comment cmnt(masm_, "[ DoWhileStatement");
1090 SetStatementPosition(stmt);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001091 Label body, stack_check;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001092
1093 Iteration loop_statement(this, stmt);
1094 increment_loop_depth();
1095
1096 __ bind(&body);
1097 Visit(stmt->body());
1098
ricow@chromium.org65fae842010-08-25 15:26:24 +00001099 // Record the position of the do while condition and make sure it is
1100 // possible to break on the condition.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001101 __ bind(loop_statement.continue_label());
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001102 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001103 SetExpressionPosition(stmt->cond(), stmt->condition_position());
ricow@chromium.org65fae842010-08-25 15:26:24 +00001104 VisitForControl(stmt->cond(),
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001105 &stack_check,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001106 loop_statement.break_label(),
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001107 &stack_check);
1108
1109 // Check stack before looping.
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001110 PrepareForBailoutForId(stmt->BackEdgeId(), NO_REGISTERS);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001111 __ bind(&stack_check);
yangguo@chromium.org56454712012-02-16 15:33:53 +00001112 EmitStackCheck(stmt, &body);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001113 __ jmp(&body);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001114
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001115 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001116 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001117 decrement_loop_depth();
1118}
1119
1120
1121void FullCodeGenerator::VisitWhileStatement(WhileStatement* stmt) {
1122 Comment cmnt(masm_, "[ WhileStatement");
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001123 Label test, body;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001124
1125 Iteration loop_statement(this, stmt);
1126 increment_loop_depth();
1127
1128 // Emit the test at the bottom of the loop.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001129 __ jmp(&test);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001130
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001131 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001132 __ bind(&body);
1133 Visit(stmt->body());
ricow@chromium.org65fae842010-08-25 15:26:24 +00001134
1135 // Emit the statement position here as this is where the while
1136 // statement code starts.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001137 __ bind(loop_statement.continue_label());
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001138 SetStatementPosition(stmt);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001139
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001140 // Check stack before looping.
yangguo@chromium.org56454712012-02-16 15:33:53 +00001141 EmitStackCheck(stmt, &body);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001142
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001143 __ bind(&test);
ricow@chromium.org65fae842010-08-25 15:26:24 +00001144 VisitForControl(stmt->cond(),
1145 &body,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001146 loop_statement.break_label(),
1147 loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001148
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001149 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001150 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001151 decrement_loop_depth();
1152}
1153
1154
1155void FullCodeGenerator::VisitForStatement(ForStatement* stmt) {
1156 Comment cmnt(masm_, "[ ForStatement");
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001157 Label test, body;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001158
1159 Iteration loop_statement(this, stmt);
erik.corry@gmail.combbceb572012-03-09 10:52:05 +00001160
1161 // Set statement position for a break slot before entering the for-body.
1162 SetStatementPosition(stmt);
1163
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001164 if (stmt->init() != NULL) {
1165 Visit(stmt->init());
1166 }
1167
1168 increment_loop_depth();
1169 // Emit the test at the bottom of the loop (even if empty).
1170 __ jmp(&test);
1171
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001172 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001173 __ bind(&body);
1174 Visit(stmt->body());
1175
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001176 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001177 __ bind(loop_statement.continue_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001178 if (stmt->next() != NULL) {
1179 Visit(stmt->next());
1180 }
1181
ricow@chromium.org65fae842010-08-25 15:26:24 +00001182 // Emit the statement position here as this is where the for
1183 // statement code starts.
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001184 SetStatementPosition(stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001185
1186 // Check stack before looping.
yangguo@chromium.org56454712012-02-16 15:33:53 +00001187 EmitStackCheck(stmt, &body);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001188
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001189 __ bind(&test);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001190 if (stmt->cond() != NULL) {
ricow@chromium.org65fae842010-08-25 15:26:24 +00001191 VisitForControl(stmt->cond(),
1192 &body,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001193 loop_statement.break_label(),
1194 loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001195 } else {
1196 __ jmp(&body);
1197 }
1198
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001199 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001200 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001201 decrement_loop_depth();
1202}
1203
1204
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001205void FullCodeGenerator::VisitTryCatchStatement(TryCatchStatement* stmt) {
1206 Comment cmnt(masm_, "[ TryCatchStatement");
1207 SetStatementPosition(stmt);
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001208 // The try block adds a handler to the exception handler chain before
1209 // entering, and removes it again when exiting normally. If an exception
1210 // is thrown during execution of the try block, the handler is consumed
1211 // and control is passed to the catch block with the exception in the
1212 // result register.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001213
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001214 Label try_entry, handler_entry, exit;
1215 __ jmp(&try_entry);
1216 __ bind(&handler_entry);
1217 handler_table()->set(stmt->index(), Smi::FromInt(handler_entry.pos()));
1218 // Exception handler code, the exception is in the result register.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001219 // Extend the context before executing the catch block.
1220 { Comment cmnt(masm_, "[ Extend catch context");
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001221 __ Push(stmt->variable()->name());
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001222 __ push(result_register());
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00001223 PushFunctionArgumentForContextAllocation();
1224 __ CallRuntime(Runtime::kPushCatchContext, 3);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001225 StoreToFrameField(StandardFrameConstants::kContextOffset,
1226 context_register());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001227 }
1228
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001229 Scope* saved_scope = scope();
1230 scope_ = stmt->scope();
1231 ASSERT(scope_->declarations()->is_empty());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001232 { WithOrCatch catch_body(this);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001233 Visit(stmt->catch_block());
1234 }
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001235 // Restore the context.
1236 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1237 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001238 scope_ = saved_scope;
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001239 __ jmp(&exit);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001240
1241 // Try block code. Sets up the exception handler chain.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001242 __ bind(&try_entry);
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +00001243 __ PushTryHandler(StackHandler::CATCH, stmt->index());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001244 { TryCatch try_body(this);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001245 Visit(stmt->try_block());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001246 }
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001247 __ PopTryHandler();
1248 __ bind(&exit);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001249}
1250
1251
1252void FullCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
1253 Comment cmnt(masm_, "[ TryFinallyStatement");
1254 SetStatementPosition(stmt);
1255 // Try finally is compiled by setting up a try-handler on the stack while
1256 // executing the try body, and removing it again afterwards.
1257 //
1258 // The try-finally construct can enter the finally block in three ways:
1259 // 1. By exiting the try-block normally. This removes the try-handler and
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001260 // calls the finally block code before continuing.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001261 // 2. By exiting the try-block with a function-local control flow transfer
1262 // (break/continue/return). The site of the, e.g., break removes the
1263 // try handler and calls the finally block code before continuing
1264 // its outward control transfer.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001265 // 3. By exiting the try-block with a thrown exception.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001266 // This can happen in nested function calls. It traverses the try-handler
1267 // chain and consumes the try-handler entry before jumping to the
1268 // handler code. The handler code then calls the finally-block before
1269 // rethrowing the exception.
1270 //
1271 // The finally block must assume a return address on top of the stack
1272 // (or in the link register on ARM chips) and a value (return value or
1273 // exception) in the result register (rax/eax/r0), both of which must
1274 // be preserved. The return address isn't GC-safe, so it should be
1275 // cooked before GC.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001276 Label try_entry, handler_entry, finally_entry;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001277
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001278 // Jump to try-handler setup and try-block code.
1279 __ jmp(&try_entry);
1280 __ bind(&handler_entry);
1281 handler_table()->set(stmt->index(), Smi::FromInt(handler_entry.pos()));
1282 // Exception handler code. This code is only executed when an exception
1283 // is thrown. The exception is in the result register, and must be
1284 // preserved by the finally block. Call the finally block and then
1285 // rethrow the exception if it returns.
1286 __ Call(&finally_entry);
1287 __ push(result_register());
1288 __ CallRuntime(Runtime::kReThrow, 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001289
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001290 // Finally block implementation.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001291 __ bind(&finally_entry);
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001292 EnterFinallyBlock();
1293 { Finally finally_body(this);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001294 Visit(stmt->finally_block());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001295 }
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001296 ExitFinallyBlock(); // Return to the calling code.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001297
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001298 // Set up try handler.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001299 __ bind(&try_entry);
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +00001300 __ PushTryHandler(StackHandler::FINALLY, stmt->index());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001301 { TryFinally try_body(this, &finally_entry);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001302 Visit(stmt->try_block());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001303 }
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001304 __ PopTryHandler();
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001305 // Execute the finally block on the way out. Clobber the unpredictable
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001306 // value in the result register with one that's safe for GC because the
1307 // finally block will unconditionally preserve the result register on the
1308 // stack.
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001309 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001310 __ Call(&finally_entry);
1311}
1312
1313
1314void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) {
1315#ifdef ENABLE_DEBUGGER_SUPPORT
1316 Comment cmnt(masm_, "[ DebuggerStatement");
1317 SetStatementPosition(stmt);
1318
ager@chromium.org5c838252010-02-19 08:53:10 +00001319 __ DebugBreak();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001320 // Ignore the return value.
1321#endif
1322}
1323
1324
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001325void FullCodeGenerator::VisitConditional(Conditional* expr) {
1326 Comment cmnt(masm_, "[ Conditional");
1327 Label true_case, false_case, done;
ricow@chromium.org65fae842010-08-25 15:26:24 +00001328 VisitForControl(expr->condition(), &true_case, &false_case, &true_case);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001329
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001330 PrepareForBailoutForId(expr->ThenId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001331 __ bind(&true_case);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001332 SetExpressionPosition(expr->then_expression(),
1333 expr->then_expression_position());
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001334 if (context()->IsTest()) {
1335 const TestContext* for_test = TestContext::cast(context());
1336 VisitForControl(expr->then_expression(),
1337 for_test->true_label(),
1338 for_test->false_label(),
1339 NULL);
1340 } else {
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001341 VisitInDuplicateContext(expr->then_expression());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001342 __ jmp(&done);
1343 }
1344
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001345 PrepareForBailoutForId(expr->ElseId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001346 __ bind(&false_case);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001347 SetExpressionPosition(expr->else_expression(),
1348 expr->else_expression_position());
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001349 VisitInDuplicateContext(expr->else_expression());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001350 // If control flow falls through Visit, merge it with true case here.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001351 if (!context()->IsTest()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001352 __ bind(&done);
1353 }
1354}
1355
1356
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001357void FullCodeGenerator::VisitLiteral(Literal* expr) {
1358 Comment cmnt(masm_, "[ Literal");
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001359 context()->Plug(expr->handle());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001360}
1361
1362
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001363void FullCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) {
1364 Comment cmnt(masm_, "[ FunctionLiteral");
1365
1366 // Build the function boilerplate and instantiate it.
1367 Handle<SharedFunctionInfo> function_info =
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001368 Compiler::BuildFunctionInfo(expr, script());
1369 if (function_info.is_null()) {
1370 SetStackOverflow();
1371 return;
1372 }
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00001373 EmitNewClosure(function_info, expr->pretenure());
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001374}
1375
1376
1377void FullCodeGenerator::VisitSharedFunctionInfoLiteral(
1378 SharedFunctionInfoLiteral* expr) {
1379 Comment cmnt(masm_, "[ SharedFunctionInfoLiteral");
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00001380 EmitNewClosure(expr->shared_function_info(), false);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001381}
1382
1383
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001384void FullCodeGenerator::VisitThrow(Throw* expr) {
1385 Comment cmnt(masm_, "[ Throw");
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001386 VisitForStackValue(expr->exception());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001387 __ CallRuntime(Runtime::kThrow, 1);
1388 // Never returns here.
1389}
1390
1391
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001392FullCodeGenerator::NestedStatement* FullCodeGenerator::TryCatch::Exit(
1393 int* stack_depth,
1394 int* context_length) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001395 // The macros used here must preserve the result register.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001396 __ Drop(*stack_depth);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001397 __ PopTryHandler();
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001398 *stack_depth = 0;
1399 return previous_;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001400}
1401
ricow@chromium.org65fae842010-08-25 15:26:24 +00001402
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001403bool FullCodeGenerator::TryLiteralCompare(CompareOperation* expr) {
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001404 Expression* sub_expr;
ager@chromium.org04921a82011-06-27 13:21:41 +00001405 Handle<String> check;
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001406 if (expr->IsLiteralCompareTypeof(&sub_expr, &check)) {
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001407 EmitLiteralCompareTypeof(expr, sub_expr, check);
ager@chromium.org04921a82011-06-27 13:21:41 +00001408 return true;
1409 }
1410
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001411 if (expr->IsLiteralCompareUndefined(&sub_expr)) {
1412 EmitLiteralCompareNil(expr, sub_expr, kUndefinedValue);
1413 return true;
1414 }
1415
1416 if (expr->IsLiteralCompareNull(&sub_expr)) {
1417 EmitLiteralCompareNil(expr, sub_expr, kNullValue);
ager@chromium.org04921a82011-06-27 13:21:41 +00001418 return true;
1419 }
1420
1421 return false;
1422}
1423
1424
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001425#undef __
1426
1427
1428} } // namespace v8::internal