blob: b49337ac37ce32730035539a4eecf149d42e362e [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"
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +000039#include "snapshot.h"
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000040#include "stub-cache.h"
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000041
42namespace v8 {
43namespace internal {
44
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +000045void BreakableStatementChecker::Check(Statement* stmt) {
46 Visit(stmt);
47}
48
49
50void BreakableStatementChecker::Check(Expression* expr) {
51 Visit(expr);
52}
53
54
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000055void BreakableStatementChecker::VisitVariableDeclaration(
56 VariableDeclaration* decl) {
57}
58
ulan@chromium.org812308e2012-02-29 15:58:45 +000059void BreakableStatementChecker::VisitFunctionDeclaration(
60 FunctionDeclaration* decl) {
61}
62
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000063void BreakableStatementChecker::VisitModuleDeclaration(
64 ModuleDeclaration* decl) {
65}
66
ulan@chromium.org812308e2012-02-29 15:58:45 +000067void BreakableStatementChecker::VisitImportDeclaration(
68 ImportDeclaration* decl) {
69}
70
71void BreakableStatementChecker::VisitExportDeclaration(
72 ExportDeclaration* decl) {
73}
74
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000075
76void BreakableStatementChecker::VisitModuleLiteral(ModuleLiteral* module) {
77}
78
79void BreakableStatementChecker::VisitModuleVariable(ModuleVariable* module) {
80}
81
82void BreakableStatementChecker::VisitModulePath(ModulePath* module) {
83}
84
85void BreakableStatementChecker::VisitModuleUrl(ModuleUrl* module) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +000086}
87
88
ulan@chromium.org8e8d8822012-11-23 14:36:46 +000089void BreakableStatementChecker::VisitModuleStatement(ModuleStatement* stmt) {
90}
91
92
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +000093void BreakableStatementChecker::VisitBlock(Block* stmt) {
94}
95
96
97void BreakableStatementChecker::VisitExpressionStatement(
98 ExpressionStatement* stmt) {
99 // Check if expression is breakable.
100 Visit(stmt->expression());
101}
102
103
104void BreakableStatementChecker::VisitEmptyStatement(EmptyStatement* stmt) {
105}
106
107
108void BreakableStatementChecker::VisitIfStatement(IfStatement* stmt) {
109 // If the condition is breakable the if statement is breakable.
110 Visit(stmt->condition());
111}
112
113
114void BreakableStatementChecker::VisitContinueStatement(
115 ContinueStatement* stmt) {
116}
117
118
119void BreakableStatementChecker::VisitBreakStatement(BreakStatement* stmt) {
120}
121
122
123void BreakableStatementChecker::VisitReturnStatement(ReturnStatement* stmt) {
124 // Return is breakable if the expression is.
125 Visit(stmt->expression());
126}
127
128
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000129void BreakableStatementChecker::VisitWithStatement(WithStatement* stmt) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000130 Visit(stmt->expression());
131}
132
133
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000134void BreakableStatementChecker::VisitSwitchStatement(SwitchStatement* stmt) {
135 // Switch statements breakable if the tag expression is.
136 Visit(stmt->tag());
137}
138
139
140void BreakableStatementChecker::VisitDoWhileStatement(DoWhileStatement* stmt) {
141 // Mark do while as breakable to avoid adding a break slot in front of it.
142 is_breakable_ = true;
143}
144
145
146void BreakableStatementChecker::VisitWhileStatement(WhileStatement* stmt) {
147 // Mark while statements breakable if the condition expression is.
148 Visit(stmt->cond());
149}
150
151
152void BreakableStatementChecker::VisitForStatement(ForStatement* stmt) {
153 // Mark for statements breakable if the condition expression is.
154 if (stmt->cond() != NULL) {
155 Visit(stmt->cond());
156 }
157}
158
159
160void BreakableStatementChecker::VisitForInStatement(ForInStatement* stmt) {
161 // Mark for in statements breakable if the enumerable expression is.
162 Visit(stmt->enumerable());
163}
164
165
166void BreakableStatementChecker::VisitTryCatchStatement(
167 TryCatchStatement* stmt) {
168 // Mark try catch as breakable to avoid adding a break slot in front of it.
169 is_breakable_ = true;
170}
171
172
173void BreakableStatementChecker::VisitTryFinallyStatement(
174 TryFinallyStatement* stmt) {
175 // Mark try finally as breakable to avoid adding a break slot in front of it.
176 is_breakable_ = true;
177}
178
179
180void BreakableStatementChecker::VisitDebuggerStatement(
181 DebuggerStatement* stmt) {
182 // The debugger statement is breakable.
183 is_breakable_ = true;
184}
185
186
187void BreakableStatementChecker::VisitFunctionLiteral(FunctionLiteral* expr) {
188}
189
190
191void BreakableStatementChecker::VisitSharedFunctionInfoLiteral(
192 SharedFunctionInfoLiteral* expr) {
193}
194
195
196void BreakableStatementChecker::VisitConditional(Conditional* expr) {
197}
198
199
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000200void BreakableStatementChecker::VisitVariableProxy(VariableProxy* expr) {
201}
202
203
204void BreakableStatementChecker::VisitLiteral(Literal* expr) {
205}
206
207
208void BreakableStatementChecker::VisitRegExpLiteral(RegExpLiteral* expr) {
209}
210
211
212void BreakableStatementChecker::VisitObjectLiteral(ObjectLiteral* expr) {
213}
214
215
216void BreakableStatementChecker::VisitArrayLiteral(ArrayLiteral* expr) {
217}
218
219
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000220void BreakableStatementChecker::VisitAssignment(Assignment* expr) {
221 // If assigning to a property (including a global property) the assignment is
222 // breakable.
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000223 VariableProxy* proxy = expr->target()->AsVariableProxy();
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000224 Property* prop = expr->target()->AsProperty();
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000225 if (prop != NULL || (proxy != NULL && proxy->var()->IsUnallocated())) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000226 is_breakable_ = true;
227 return;
228 }
229
230 // Otherwise the assignment is breakable if the assigned value is.
231 Visit(expr->value());
232}
233
234
235void BreakableStatementChecker::VisitThrow(Throw* expr) {
236 // Throw is breakable if the expression is.
237 Visit(expr->exception());
238}
239
240
241void BreakableStatementChecker::VisitProperty(Property* expr) {
242 // Property load is breakable.
243 is_breakable_ = true;
244}
245
246
247void BreakableStatementChecker::VisitCall(Call* expr) {
248 // Function calls both through IC and call stub are breakable.
249 is_breakable_ = true;
250}
251
252
253void BreakableStatementChecker::VisitCallNew(CallNew* expr) {
254 // Function calls through new are breakable.
255 is_breakable_ = true;
256}
257
258
259void BreakableStatementChecker::VisitCallRuntime(CallRuntime* expr) {
260}
261
262
263void BreakableStatementChecker::VisitUnaryOperation(UnaryOperation* expr) {
264 Visit(expr->expression());
265}
266
267
268void BreakableStatementChecker::VisitCountOperation(CountOperation* expr) {
269 Visit(expr->expression());
270}
271
272
273void BreakableStatementChecker::VisitBinaryOperation(BinaryOperation* expr) {
274 Visit(expr->left());
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +0000275 if (expr->op() != Token::AND &&
276 expr->op() != Token::OR) {
277 Visit(expr->right());
278 }
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000279}
280
281
282void BreakableStatementChecker::VisitCompareOperation(CompareOperation* expr) {
283 Visit(expr->left());
284 Visit(expr->right());
285}
286
287
288void BreakableStatementChecker::VisitThisFunction(ThisFunction* expr) {
289}
290
291
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000292#define __ ACCESS_MASM(masm())
293
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000294bool FullCodeGenerator::MakeCode(CompilationInfo* info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000295 Isolate* isolate = info->isolate();
ager@chromium.org5c838252010-02-19 08:53:10 +0000296 Handle<Script> script = info->script();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000297 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
298 int len = String::cast(script->source())->length();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000299 isolate->counters()->total_full_codegen_source_size()->Increment(len);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000300 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000301 if (FLAG_trace_codegen) {
302 PrintF("Full Compiler - ");
303 }
ager@chromium.org5c838252010-02-19 08:53:10 +0000304 CodeGenerator::MakeCodePrologue(info);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000305 const int kInitialBufferSize = 4 * KB;
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000306 MacroAssembler masm(info->isolate(), NULL, kInitialBufferSize);
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000307#ifdef ENABLE_GDB_JIT_INTERFACE
308 masm.positions_recorder()->StartGDBJITLineInfoRecording();
309#endif
ager@chromium.org5c838252010-02-19 08:53:10 +0000310
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000311 FullCodeGenerator cgen(&masm, info);
yangguo@chromium.org56454712012-02-16 15:33:53 +0000312 cgen.Generate();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000313 if (cgen.HasStackOverflow()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000314 ASSERT(!isolate->has_pending_exception());
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000315 return false;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000316 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000317 unsigned table_offset = cgen.EmitStackCheckTable();
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000318
lrn@chromium.org34e60782011-09-15 07:25:40 +0000319 Code::Flags flags = Code::ComputeFlags(Code::FUNCTION);
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000320 Handle<Code> code = CodeGenerator::MakeCodeEpilogue(&masm, flags, info);
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000321 code->set_optimizable(info->IsOptimizable() &&
ulan@chromium.orgd6899c32012-05-18 14:12:25 +0000322 !info->function()->flags()->Contains(kDontOptimize) &&
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000323 info->function()->scope()->AllowsLazyCompilation());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000324 cgen.PopulateDeoptimizationData(code);
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000325 cgen.PopulateTypeFeedbackInfo(code);
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000326 cgen.PopulateTypeFeedbackCells(code);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000327 code->set_has_deoptimization_support(info->HasDeoptimizationSupport());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +0000328 code->set_handler_table(*cgen.handler_table());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000329#ifdef ENABLE_DEBUGGER_SUPPORT
lrn@chromium.org34e60782011-09-15 07:25:40 +0000330 code->set_has_debug_break_slots(
331 info->isolate()->debugger()->IsDebuggerActive());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000332 code->set_compiled_optimizable(info->IsOptimizable());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000333#endif // ENABLE_DEBUGGER_SUPPORT
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000334 code->set_allow_osr_at_loop_nesting_level(0);
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000335 code->set_profiler_ticks(0);
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000336 code->set_stack_check_table_offset(table_offset);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000337 CodeGenerator::PrintCode(code, info);
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000338 info->SetCode(code); // May be an empty handle.
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000339#ifdef ENABLE_GDB_JIT_INTERFACE
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000340 if (FLAG_gdbjit && !code.is_null()) {
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000341 GDBJITLineInfo* lineinfo =
342 masm.positions_recorder()->DetachGDBJITLineInfo();
343
344 GDBJIT(RegisterDetailedLineInfo(*code, lineinfo));
345 }
346#endif
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000347 return !code.is_null();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000348}
349
350
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000351unsigned FullCodeGenerator::EmitStackCheckTable() {
352 // The stack check table consists of a length (in number of entries)
353 // field, and then a sequence of entries. Each entry is a pair of AST id
354 // and code-relative pc offset.
355 masm()->Align(kIntSize);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000356 unsigned offset = masm()->pc_offset();
357 unsigned length = stack_checks_.length();
358 __ dd(length);
359 for (unsigned i = 0; i < length; ++i) {
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +0000360 __ dd(stack_checks_[i].id.ToInt());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000361 __ dd(stack_checks_[i].pc_and_state);
362 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000363 return offset;
364}
365
366
367void FullCodeGenerator::PopulateDeoptimizationData(Handle<Code> code) {
368 // Fill in the deoptimization information.
369 ASSERT(info_->HasDeoptimizationSupport() || bailout_entries_.is_empty());
370 if (!info_->HasDeoptimizationSupport()) return;
371 int length = bailout_entries_.length();
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000372 Handle<DeoptimizationOutputData> data = isolate()->factory()->
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000373 NewDeoptimizationOutputData(length, TENURED);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000374 for (int i = 0; i < length; i++) {
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +0000375 data->SetAstId(i, bailout_entries_[i].id);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000376 data->SetPcAndState(i, Smi::FromInt(bailout_entries_[i].pc_and_state));
377 }
378 code->set_deoptimization_data(*data);
379}
380
381
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000382void FullCodeGenerator::PopulateTypeFeedbackInfo(Handle<Code> code) {
383 Handle<TypeFeedbackInfo> info = isolate()->factory()->NewTypeFeedbackInfo();
384 info->set_ic_total_count(ic_total_count_);
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +0000385 ASSERT(!isolate()->heap()->InNewSpace(*info));
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000386 code->set_type_feedback_info(*info);
387}
388
389
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +0000390void FullCodeGenerator::Initialize() {
391 // The generation of debug code must match between the snapshot code and the
392 // code that is generated later. This is assumed by the debugger when it is
393 // calculating PC offsets after generating a debug version of code. Therefore
394 // we disable the production of debug code in the full compiler if we are
395 // either generating a snapshot or we booted from a snapshot.
396 generate_debug_code_ = FLAG_debug_code &&
397 !Serializer::enabled() &&
398 !Snapshot::HaveASnapshotToStartFrom();
399 masm_->set_emit_debug_code(generate_debug_code_);
400 masm_->set_predictable_code_size(true);
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000401 InitializeAstVisitor();
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +0000402}
403
404
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000405void FullCodeGenerator::PopulateTypeFeedbackCells(Handle<Code> code) {
406 if (type_feedback_cells_.is_empty()) return;
407 int length = type_feedback_cells_.length();
408 int array_size = TypeFeedbackCells::LengthOfFixedArray(length);
409 Handle<TypeFeedbackCells> cache = Handle<TypeFeedbackCells>::cast(
410 isolate()->factory()->NewFixedArray(array_size, TENURED));
411 for (int i = 0; i < length; i++) {
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +0000412 cache->SetAstId(i, type_feedback_cells_[i].ast_id);
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000413 cache->SetCell(i, *type_feedback_cells_[i].cell);
414 }
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000415 TypeFeedbackInfo::cast(code->type_feedback_info())->set_type_feedback_cells(
416 *cache);
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000417}
418
419
420
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000421void FullCodeGenerator::PrepareForBailout(Expression* node, State state) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000422 PrepareForBailoutForId(node->id(), state);
423}
424
425
426void FullCodeGenerator::RecordJSReturnSite(Call* call) {
427 // We record the offset of the function return so we can rebuild the frame
428 // if the function was inlined, i.e., this is the return address in the
429 // inlined function's frame.
430 //
431 // The state is ignored. We defensively set it to TOS_REG, which is the
432 // real state of the unoptimized code at the return site.
433 PrepareForBailoutForId(call->ReturnId(), TOS_REG);
434#ifdef DEBUG
435 // In debug builds, mark the return so we can verify that this function
436 // was called.
437 ASSERT(!call->return_is_recorded_);
438 call->return_is_recorded_ = true;
439#endif
440}
441
442
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +0000443void FullCodeGenerator::PrepareForBailoutForId(BailoutId id, State state) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000444 // There's no need to prepare this code for bailouts from already optimized
445 // code or code that can't be optimized.
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000446 if (!info_->HasDeoptimizationSupport()) return;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000447 unsigned pc_and_state =
448 StateField::encode(state) | PcField::encode(masm_->pc_offset());
yangguo@chromium.org56454712012-02-16 15:33:53 +0000449 ASSERT(Smi::IsValid(pc_and_state));
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000450 BailoutEntry entry = { id, pc_and_state };
jkummerow@chromium.org59297c72013-01-09 16:32:23 +0000451 ASSERT(!prepared_bailout_ids_.Contains(id.ToInt()));
452 prepared_bailout_ids_.Add(id.ToInt(), zone());
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000453 bailout_entries_.Add(entry, zone());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000454}
455
456
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000457void FullCodeGenerator::RecordTypeFeedbackCell(
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +0000458 TypeFeedbackId id, Handle<JSGlobalPropertyCell> cell) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000459 TypeFeedbackCellEntry entry = { id, cell };
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000460 type_feedback_cells_.Add(entry, zone());
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000461}
462
463
rossberg@chromium.orgcddc71f2012-12-07 12:40:13 +0000464void FullCodeGenerator::RecordBackEdge(BailoutId ast_id) {
465 // The pc offset does not need to be encoded and packed together with a state.
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +0000466 ASSERT(masm_->pc_offset() > 0);
467 BailoutEntry entry = { ast_id, static_cast<unsigned>(masm_->pc_offset()) };
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000468 stack_checks_.Add(entry, zone());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000469}
470
471
ricow@chromium.org65fae842010-08-25 15:26:24 +0000472bool FullCodeGenerator::ShouldInlineSmiCase(Token::Value op) {
ricow@chromium.org65fae842010-08-25 15:26:24 +0000473 // Inline smi case inside loops, but not division and modulo which
474 // are too complicated and take up too much space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000475 if (op == Token::DIV ||op == Token::MOD) return false;
476 if (FLAG_always_inline_smi_code) return true;
477 return loop_depth_ > 0;
ricow@chromium.org65fae842010-08-25 15:26:24 +0000478}
479
480
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000481void FullCodeGenerator::EffectContext::Plug(Register reg) const {
482}
483
484
485void FullCodeGenerator::AccumulatorValueContext::Plug(Register reg) const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000486 __ Move(result_register(), reg);
487}
488
489
490void FullCodeGenerator::StackValueContext::Plug(Register reg) const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000491 __ push(reg);
492}
493
494
495void FullCodeGenerator::TestContext::Plug(Register reg) const {
496 // For simplicity we always test the accumulator register.
497 __ Move(result_register(), reg);
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000498 codegen()->PrepareForBailoutBeforeSplit(condition(), false, NULL, NULL);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000499 codegen()->DoTest(this);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000500}
501
502
503void FullCodeGenerator::EffectContext::PlugTOS() const {
504 __ Drop(1);
505}
506
507
508void FullCodeGenerator::AccumulatorValueContext::PlugTOS() const {
509 __ pop(result_register());
510}
511
512
513void FullCodeGenerator::StackValueContext::PlugTOS() const {
514}
515
516
517void FullCodeGenerator::TestContext::PlugTOS() const {
518 // For simplicity we always test the accumulator register.
519 __ pop(result_register());
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000520 codegen()->PrepareForBailoutBeforeSplit(condition(), false, NULL, NULL);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000521 codegen()->DoTest(this);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000522}
523
524
525void FullCodeGenerator::EffectContext::PrepareTest(
526 Label* materialize_true,
527 Label* materialize_false,
528 Label** if_true,
529 Label** if_false,
530 Label** fall_through) const {
531 // In an effect context, the true and the false case branch to the
532 // same label.
533 *if_true = *if_false = *fall_through = materialize_true;
534}
535
536
537void FullCodeGenerator::AccumulatorValueContext::PrepareTest(
538 Label* materialize_true,
539 Label* materialize_false,
540 Label** if_true,
541 Label** if_false,
542 Label** fall_through) const {
543 *if_true = *fall_through = materialize_true;
544 *if_false = materialize_false;
545}
546
547
548void FullCodeGenerator::StackValueContext::PrepareTest(
549 Label* materialize_true,
550 Label* materialize_false,
551 Label** if_true,
552 Label** if_false,
553 Label** fall_through) const {
554 *if_true = *fall_through = materialize_true;
555 *if_false = materialize_false;
556}
557
558
559void FullCodeGenerator::TestContext::PrepareTest(
560 Label* materialize_true,
561 Label* materialize_false,
562 Label** if_true,
563 Label** if_false,
564 Label** fall_through) const {
565 *if_true = true_label_;
566 *if_false = false_label_;
567 *fall_through = fall_through_;
ricow@chromium.org65fae842010-08-25 15:26:24 +0000568}
569
570
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000571void FullCodeGenerator::DoTest(const TestContext* context) {
572 DoTest(context->condition(),
573 context->true_label(),
574 context->false_label(),
575 context->fall_through());
576}
577
578
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000579void FullCodeGenerator::AllocateModules(ZoneList<Declaration*>* declarations) {
580 ASSERT(scope_->is_global_scope());
581
582 for (int i = 0; i < declarations->length(); i++) {
583 ModuleDeclaration* declaration = declarations->at(i)->AsModuleDeclaration();
584 if (declaration != NULL) {
585 ModuleLiteral* module = declaration->module()->AsModuleLiteral();
586 if (module != NULL) {
587 Comment cmnt(masm_, "[ Link nested modules");
588 Scope* scope = module->body()->scope();
589 Interface* interface = scope->interface();
590 ASSERT(interface->IsModule() && interface->IsFrozen());
591
592 interface->Allocate(scope->module_var()->index());
593
594 // Set up module context.
595 ASSERT(scope->interface()->Index() >= 0);
596 __ Push(Smi::FromInt(scope->interface()->Index()));
597 __ Push(scope->GetScopeInfo());
598 __ CallRuntime(Runtime::kPushModuleContext, 2);
599 StoreToFrameField(StandardFrameConstants::kContextOffset,
600 context_register());
601
602 AllocateModules(scope->declarations());
603
604 // Pop module context.
605 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
606 // Update local stack frame context field.
607 StoreToFrameField(StandardFrameConstants::kContextOffset,
608 context_register());
609 }
610 }
611 }
612}
613
614
615// Modules have their own local scope, represented by their own context.
616// Module instance objects have an accessor for every export that forwards
617// access to the respective slot from the module's context. (Exports that are
618// modules themselves, however, are simple data properties.)
619//
620// All modules have a _hosting_ scope/context, which (currently) is the
621// (innermost) enclosing global scope. To deal with recursion, nested modules
622// are hosted by the same scope as global ones.
623//
624// For every (global or nested) module literal, the hosting context has an
625// internal slot that points directly to the respective module context. This
626// enables quick access to (statically resolved) module members by 2-dimensional
627// access through the hosting context. For example,
628//
629// module A {
630// let x;
631// module B { let y; }
632// }
633// module C { let z; }
634//
635// allocates contexts as follows:
636//
637// [header| .A | .B | .C | A | C ] (global)
638// | | |
639// | | +-- [header| z ] (module)
640// | |
641// | +------- [header| y ] (module)
642// |
643// +------------ [header| x | B ] (module)
644//
645// Here, .A, .B, .C are the internal slots pointing to the hosted module
646// contexts, whereas A, B, C hold the actual instance objects (note that every
647// module context also points to the respective instance object through its
648// extension slot in the header).
649//
650// To deal with arbitrary recursion and aliases between modules,
651// they are created and initialized in several stages. Each stage applies to
652// all modules in the hosting global scope, including nested ones.
653//
654// 1. Allocate: for each module _literal_, allocate the module contexts and
655// respective instance object and wire them up. This happens in the
656// PushModuleContext runtime function, as generated by AllocateModules
657// (invoked by VisitDeclarations in the hosting scope).
658//
659// 2. Bind: for each module _declaration_ (i.e. literals as well as aliases),
660// assign the respective instance object to respective local variables. This
661// happens in VisitModuleDeclaration, and uses the instance objects created
662// in the previous stage.
663// For each module _literal_, this phase also constructs a module descriptor
664// for the next stage. This happens in VisitModuleLiteral.
665//
666// 3. Populate: invoke the DeclareModules runtime function to populate each
667// _instance_ object with accessors for it exports. This is generated by
668// DeclareModules (invoked by VisitDeclarations in the hosting scope again),
669// and uses the descriptors generated in the previous stage.
670//
671// 4. Initialize: execute the module bodies (and other code) in sequence. This
672// happens by the separate statements generated for module bodies. To reenter
673// the module scopes properly, the parser inserted ModuleStatements.
674
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000675void FullCodeGenerator::VisitDeclarations(
676 ZoneList<Declaration*>* declarations) {
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000677 Handle<FixedArray> saved_modules = modules_;
678 int saved_module_index = module_index_;
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000679 ZoneList<Handle<Object> >* saved_globals = globals_;
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000680 ZoneList<Handle<Object> > inner_globals(10, zone());
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000681 globals_ = &inner_globals;
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000682
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000683 if (scope_->num_modules() != 0) {
684 // This is a scope hosting modules. Allocate a descriptor array to pass
685 // to the runtime for initialization.
686 Comment cmnt(masm_, "[ Allocate modules");
687 ASSERT(scope_->is_global_scope());
688 modules_ =
689 isolate()->factory()->NewFixedArray(scope_->num_modules(), TENURED);
690 module_index_ = 0;
691
692 // Generate code for allocating all modules, including nested ones.
693 // The allocated contexts are stored in internal variables in this scope.
694 AllocateModules(declarations);
695 }
696
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000697 AstVisitor::VisitDeclarations(declarations);
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000698
699 if (scope_->num_modules() != 0) {
700 // Initialize modules from descriptor array.
701 ASSERT(module_index_ == modules_->length());
702 DeclareModules(modules_);
703 modules_ = saved_modules;
704 module_index_ = saved_module_index;
705 }
706
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000707 if (!globals_->is_empty()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000708 // Invoke the platform-dependent code generator to do the actual
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000709 // declaration of the global functions and variables.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000710 Handle<FixedArray> array =
711 isolate()->factory()->NewFixedArray(globals_->length(), TENURED);
712 for (int i = 0; i < globals_->length(); ++i)
713 array->set(i, *globals_->at(i));
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000714 DeclareGlobals(array);
715 }
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000716
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000717 globals_ = saved_globals;
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000718}
719
720
721void FullCodeGenerator::VisitModuleLiteral(ModuleLiteral* module) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000722 Block* block = module->body();
723 Scope* saved_scope = scope();
724 scope_ = block->scope();
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000725 Interface* interface = scope_->interface();
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000726
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000727 Comment cmnt(masm_, "[ ModuleLiteral");
728 SetStatementPosition(block);
729
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000730 ASSERT(!modules_.is_null());
731 ASSERT(module_index_ < modules_->length());
732 int index = module_index_++;
733
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000734 // Set up module context.
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000735 ASSERT(interface->Index() >= 0);
736 __ Push(Smi::FromInt(interface->Index()));
737 __ Push(Smi::FromInt(0));
738 __ CallRuntime(Runtime::kPushModuleContext, 2);
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000739 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000740
741 {
742 Comment cmnt(masm_, "[ Declarations");
743 VisitDeclarations(scope_->declarations());
744 }
745
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000746 // Populate the module description.
747 Handle<ModuleInfo> description =
748 ModuleInfo::Create(isolate(), interface, scope_);
749 modules_->set(index, *description);
750
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000751 scope_ = saved_scope;
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000752 // Pop module context.
753 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
754 // Update local stack frame context field.
755 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000756}
757
758
759void FullCodeGenerator::VisitModuleVariable(ModuleVariable* module) {
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000760 // Nothing to do.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000761 // The instance object is resolved statically through the module's interface.
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000762}
763
764
765void FullCodeGenerator::VisitModulePath(ModulePath* module) {
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000766 // Nothing to do.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000767 // The instance object is resolved statically through the module's interface.
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000768}
769
770
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000771void FullCodeGenerator::VisitModuleUrl(ModuleUrl* module) {
772 // TODO(rossberg): dummy allocation for now.
773 Scope* scope = module->body()->scope();
774 Interface* interface = scope_->interface();
775
776 ASSERT(interface->IsModule() && interface->IsFrozen());
777 ASSERT(!modules_.is_null());
778 ASSERT(module_index_ < modules_->length());
779 interface->Allocate(scope->module_var()->index());
780 int index = module_index_++;
781
782 Handle<ModuleInfo> description =
783 ModuleInfo::Create(isolate(), interface, scope_);
784 modules_->set(index, *description);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000785}
786
787
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000788int FullCodeGenerator::DeclareGlobalsFlags() {
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000789 ASSERT(DeclareGlobalsLanguageMode::is_valid(language_mode()));
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000790 return DeclareGlobalsEvalFlag::encode(is_eval()) |
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000791 DeclareGlobalsNativeFlag::encode(is_native()) |
792 DeclareGlobalsLanguageMode::encode(language_mode());
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000793}
794
795
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000796void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000797 CodeGenerator::RecordPositions(masm_, fun->start_position());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000798}
799
800
801void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000802 CodeGenerator::RecordPositions(masm_, fun->end_position() - 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000803}
804
805
806void FullCodeGenerator::SetStatementPosition(Statement* stmt) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000807#ifdef ENABLE_DEBUGGER_SUPPORT
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000808 if (!isolate()->debugger()->IsDebuggerActive()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000809 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000810 } else {
811 // Check if the statement will be breakable without adding a debug break
812 // slot.
813 BreakableStatementChecker checker;
814 checker.Check(stmt);
815 // Record the statement position right here if the statement is not
816 // breakable. For breakable statements the actual recording of the
817 // position will be postponed to the breakable code (typically an IC).
818 bool position_recorded = CodeGenerator::RecordPositions(
819 masm_, stmt->statement_pos(), !checker.is_breakable());
820 // If the position recording did record a new position generate a debug
821 // break slot to make the statement breakable.
822 if (position_recorded) {
823 Debug::GenerateSlot(masm_);
824 }
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000825 }
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000826#else
827 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
828#endif
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000829}
830
831
832void FullCodeGenerator::SetExpressionPosition(Expression* expr, int pos) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000833#ifdef ENABLE_DEBUGGER_SUPPORT
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000834 if (!isolate()->debugger()->IsDebuggerActive()) {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000835 CodeGenerator::RecordPositions(masm_, pos);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000836 } else {
837 // Check if the expression will be breakable without adding a debug break
838 // slot.
839 BreakableStatementChecker checker;
840 checker.Check(expr);
841 // Record a statement position right here if the expression is not
842 // breakable. For breakable expressions the actual recording of the
843 // position will be postponed to the breakable code (typically an IC).
844 // NOTE this will record a statement position for something which might
845 // not be a statement. As stepping in the debugger will only stop at
846 // statement positions this is used for e.g. the condition expression of
847 // a do while loop.
848 bool position_recorded = CodeGenerator::RecordPositions(
849 masm_, pos, !checker.is_breakable());
850 // If the position recording did record a new position generate a debug
851 // break slot to make the statement breakable.
852 if (position_recorded) {
853 Debug::GenerateSlot(masm_);
854 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000855 }
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000856#else
857 CodeGenerator::RecordPositions(masm_, pos);
858#endif
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000859}
860
861
862void FullCodeGenerator::SetStatementPosition(int pos) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000863 CodeGenerator::RecordPositions(masm_, pos);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000864}
865
866
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000867void FullCodeGenerator::SetSourcePosition(int pos) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000868 if (pos != RelocInfo::kNoPosition) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000869 masm_->positions_recorder()->RecordPosition(pos);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000870 }
871}
872
873
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000874// Lookup table for code generators for special runtime calls which are
875// generated inline.
876#define INLINE_FUNCTION_GENERATOR_ADDRESS(Name, argc, ressize) \
877 &FullCodeGenerator::Emit##Name,
erik.corry@gmail.com145eff52010-08-23 11:36:18 +0000878
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000879const FullCodeGenerator::InlineFunctionGenerator
880 FullCodeGenerator::kInlineFunctionGenerators[] = {
881 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
882 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
883 };
884#undef INLINE_FUNCTION_GENERATOR_ADDRESS
885
886
887FullCodeGenerator::InlineFunctionGenerator
888 FullCodeGenerator::FindInlineFunctionGenerator(Runtime::FunctionId id) {
whesse@chromium.org023421e2010-12-21 12:19:12 +0000889 int lookup_index =
890 static_cast<int>(id) - static_cast<int>(Runtime::kFirstInlineFunction);
891 ASSERT(lookup_index >= 0);
892 ASSERT(static_cast<size_t>(lookup_index) <
893 ARRAY_SIZE(kInlineFunctionGenerators));
894 return kInlineFunctionGenerators[lookup_index];
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000895}
896
897
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000898void FullCodeGenerator::EmitInlineRuntimeCall(CallRuntime* expr) {
899 const Runtime::Function* function = expr->function();
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000900 ASSERT(function != NULL);
901 ASSERT(function->intrinsic_type == Runtime::INLINE);
902 InlineFunctionGenerator generator =
903 FindInlineFunctionGenerator(function->function_id);
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000904 ((*this).*(generator))(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000905}
906
907
908void FullCodeGenerator::VisitBinaryOperation(BinaryOperation* expr) {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000909 switch (expr->op()) {
ricow@chromium.org65fae842010-08-25 15:26:24 +0000910 case Token::COMMA:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000911 return VisitComma(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000912 case Token::OR:
913 case Token::AND:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000914 return VisitLogicalExpression(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000915 default:
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000916 return VisitArithmeticExpression(expr);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000917 }
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000918}
919
920
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000921void FullCodeGenerator::VisitInDuplicateContext(Expression* expr) {
922 if (context()->IsEffect()) {
923 VisitForEffect(expr);
924 } else if (context()->IsAccumulatorValue()) {
925 VisitForAccumulatorValue(expr);
926 } else if (context()->IsStackValue()) {
927 VisitForStackValue(expr);
928 } else if (context()->IsTest()) {
929 const TestContext* test = TestContext::cast(context());
930 VisitForControl(expr, test->true_label(), test->false_label(),
931 test->fall_through());
932 }
933}
934
935
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000936void FullCodeGenerator::VisitComma(BinaryOperation* expr) {
937 Comment cmnt(masm_, "[ Comma");
938 VisitForEffect(expr->left());
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000939 VisitInDuplicateContext(expr->right());
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000940}
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000941
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000942
943void FullCodeGenerator::VisitLogicalExpression(BinaryOperation* expr) {
944 bool is_logical_and = expr->op() == Token::AND;
945 Comment cmnt(masm_, is_logical_and ? "[ Logical AND" : "[ Logical OR");
946 Expression* left = expr->left();
947 Expression* right = expr->right();
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +0000948 BailoutId right_id = expr->RightId();
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000949 Label done;
950
951 if (context()->IsTest()) {
952 Label eval_right;
953 const TestContext* test = TestContext::cast(context());
954 if (is_logical_and) {
955 VisitForControl(left, &eval_right, test->false_label(), &eval_right);
956 } else {
957 VisitForControl(left, test->true_label(), &eval_right, &eval_right);
958 }
959 PrepareForBailoutForId(right_id, NO_REGISTERS);
960 __ bind(&eval_right);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000961
962 } else if (context()->IsAccumulatorValue()) {
963 VisitForAccumulatorValue(left);
964 // We want the value in the accumulator for the test, and on the stack in
965 // case we need it.
966 __ push(result_register());
967 Label discard, restore;
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000968 if (is_logical_and) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000969 DoTest(left, &discard, &restore, &restore);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000970 } else {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000971 DoTest(left, &restore, &discard, &restore);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000972 }
973 __ bind(&restore);
974 __ pop(result_register());
975 __ jmp(&done);
976 __ bind(&discard);
977 __ Drop(1);
978 PrepareForBailoutForId(right_id, NO_REGISTERS);
979
980 } else if (context()->IsStackValue()) {
981 VisitForAccumulatorValue(left);
982 // We want the value in the accumulator for the test, and on the stack in
983 // case we need it.
984 __ push(result_register());
985 Label discard;
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000986 if (is_logical_and) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000987 DoTest(left, &discard, &done, &discard);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000988 } else {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000989 DoTest(left, &done, &discard, &discard);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000990 }
991 __ bind(&discard);
992 __ Drop(1);
993 PrepareForBailoutForId(right_id, NO_REGISTERS);
994
995 } else {
996 ASSERT(context()->IsEffect());
997 Label eval_right;
998 if (is_logical_and) {
999 VisitForControl(left, &eval_right, &done, &eval_right);
1000 } else {
1001 VisitForControl(left, &done, &eval_right, &eval_right);
1002 }
1003 PrepareForBailoutForId(right_id, NO_REGISTERS);
1004 __ bind(&eval_right);
1005 }
1006
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001007 VisitInDuplicateContext(right);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001008 __ bind(&done);
1009}
1010
1011
ricow@chromium.orgd2be9012011-06-01 06:00:58 +00001012void FullCodeGenerator::VisitArithmeticExpression(BinaryOperation* expr) {
1013 Token::Value op = expr->op();
1014 Comment cmnt(masm_, "[ ArithmeticExpression");
1015 Expression* left = expr->left();
1016 Expression* right = expr->right();
1017 OverwriteMode mode =
1018 left->ResultOverwriteAllowed()
1019 ? OVERWRITE_LEFT
1020 : (right->ResultOverwriteAllowed() ? OVERWRITE_RIGHT : NO_OVERWRITE);
1021
1022 VisitForStackValue(left);
1023 VisitForAccumulatorValue(right);
1024
1025 SetSourcePosition(expr->position());
1026 if (ShouldInlineSmiCase(op)) {
1027 EmitInlineSmiBinaryOp(expr, op, mode, left, right);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001028 } else {
ricow@chromium.orgd2be9012011-06-01 06:00:58 +00001029 EmitBinaryOp(expr, op, mode);
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001030 }
1031}
1032
1033
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001034void FullCodeGenerator::VisitBlock(Block* stmt) {
1035 Comment cmnt(masm_, "[ Block");
jkummerow@chromium.org486075a2011-09-07 12:44:28 +00001036 NestedBlock nested_block(this, stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001037 SetStatementPosition(stmt);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001038
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001039 Scope* saved_scope = scope();
jkummerow@chromium.org486075a2011-09-07 12:44:28 +00001040 // Push a block context when entering a block with block scoped variables.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +00001041 if (stmt->scope() != NULL) {
danno@chromium.org81cac2b2012-07-10 11:28:27 +00001042 scope_ = stmt->scope();
ulan@chromium.org8e8d8822012-11-23 14:36:46 +00001043 ASSERT(!scope_->is_module_scope());
1044 { Comment cmnt(masm_, "[ Extend block context");
1045 Handle<ScopeInfo> scope_info = scope_->GetScopeInfo();
1046 int heap_slots = scope_info->ContextLength() - Context::MIN_CONTEXT_SLOTS;
1047 __ Push(scope_info);
1048 PushFunctionArgumentForContextAllocation();
1049 if (heap_slots <= FastNewBlockContextStub::kMaximumSlots) {
1050 FastNewBlockContextStub stub(heap_slots);
1051 __ CallStub(&stub);
1052 } else {
1053 __ CallRuntime(Runtime::kPushBlockContext, 2);
1054 }
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001055
ulan@chromium.org8e8d8822012-11-23 14:36:46 +00001056 // Replace the context stored in the frame.
1057 StoreToFrameField(StandardFrameConstants::kContextOffset,
1058 context_register());
1059 }
1060 { Comment cmnt(masm_, "[ Declarations");
1061 VisitDeclarations(scope_->declarations());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001062 }
1063 }
ulan@chromium.org8e8d8822012-11-23 14:36:46 +00001064
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00001065 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001066 VisitStatements(stmt->statements());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001067 scope_ = saved_scope;
jkummerow@chromium.org486075a2011-09-07 12:44:28 +00001068 __ bind(nested_block.break_label());
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001069 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
jkummerow@chromium.org486075a2011-09-07 12:44:28 +00001070
1071 // Pop block context if necessary.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +00001072 if (stmt->scope() != NULL) {
jkummerow@chromium.org486075a2011-09-07 12:44:28 +00001073 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1074 // Update local stack frame context field.
1075 StoreToFrameField(StandardFrameConstants::kContextOffset,
1076 context_register());
1077 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001078}
1079
1080
ulan@chromium.org8e8d8822012-11-23 14:36:46 +00001081void FullCodeGenerator::VisitModuleStatement(ModuleStatement* stmt) {
1082 Comment cmnt(masm_, "[ Module context");
1083
1084 __ Push(Smi::FromInt(stmt->proxy()->interface()->Index()));
1085 __ Push(Smi::FromInt(0));
1086 __ CallRuntime(Runtime::kPushModuleContext, 2);
1087 StoreToFrameField(
1088 StandardFrameConstants::kContextOffset, context_register());
1089
1090 Scope* saved_scope = scope_;
1091 scope_ = stmt->body()->scope();
1092 VisitStatements(stmt->body()->statements());
1093 scope_ = saved_scope;
1094 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1095 // Update local stack frame context field.
1096 StoreToFrameField(StandardFrameConstants::kContextOffset,
1097 context_register());
1098}
1099
1100
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001101void FullCodeGenerator::VisitExpressionStatement(ExpressionStatement* stmt) {
1102 Comment cmnt(masm_, "[ ExpressionStatement");
1103 SetStatementPosition(stmt);
1104 VisitForEffect(stmt->expression());
1105}
1106
1107
1108void FullCodeGenerator::VisitEmptyStatement(EmptyStatement* stmt) {
1109 Comment cmnt(masm_, "[ EmptyStatement");
1110 SetStatementPosition(stmt);
1111}
1112
1113
1114void FullCodeGenerator::VisitIfStatement(IfStatement* stmt) {
1115 Comment cmnt(masm_, "[ IfStatement");
1116 SetStatementPosition(stmt);
1117 Label then_part, else_part, done;
1118
ricow@chromium.org65fae842010-08-25 15:26:24 +00001119 if (stmt->HasElseStatement()) {
1120 VisitForControl(stmt->condition(), &then_part, &else_part, &then_part);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001121 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +00001122 __ bind(&then_part);
1123 Visit(stmt->then_statement());
1124 __ jmp(&done);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001125
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001126 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +00001127 __ bind(&else_part);
1128 Visit(stmt->else_statement());
1129 } else {
1130 VisitForControl(stmt->condition(), &then_part, &done, &then_part);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001131 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +00001132 __ bind(&then_part);
1133 Visit(stmt->then_statement());
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001134
1135 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
ricow@chromium.org65fae842010-08-25 15:26:24 +00001136 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001137 __ bind(&done);
ricow@chromium.orgd2be9012011-06-01 06:00:58 +00001138 PrepareForBailoutForId(stmt->IfId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001139}
1140
1141
1142void FullCodeGenerator::VisitContinueStatement(ContinueStatement* stmt) {
1143 Comment cmnt(masm_, "[ ContinueStatement");
1144 SetStatementPosition(stmt);
1145 NestedStatement* current = nesting_stack_;
1146 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001147 int context_length = 0;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001148 // When continuing, we clobber the unpredictable value in the accumulator
1149 // with one that's safe for GC. If we hit an exit from the try block of
1150 // try...finally on our way out, we will unconditionally preserve the
1151 // accumulator on the stack.
1152 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001153 while (!current->IsContinueTarget(stmt->target())) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001154 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001155 }
1156 __ Drop(stack_depth);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001157 if (context_length > 0) {
1158 while (context_length > 0) {
1159 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1160 --context_length;
1161 }
1162 StoreToFrameField(StandardFrameConstants::kContextOffset,
1163 context_register());
1164 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001165
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001166 __ jmp(current->AsIteration()->continue_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001167}
1168
1169
1170void FullCodeGenerator::VisitBreakStatement(BreakStatement* stmt) {
1171 Comment cmnt(masm_, "[ BreakStatement");
1172 SetStatementPosition(stmt);
1173 NestedStatement* current = nesting_stack_;
1174 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001175 int context_length = 0;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001176 // When breaking, we clobber the unpredictable value in the accumulator
1177 // with one that's safe for GC. If we hit an exit from the try block of
1178 // try...finally on our way out, we will unconditionally preserve the
1179 // accumulator on the stack.
1180 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001181 while (!current->IsBreakTarget(stmt->target())) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001182 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001183 }
1184 __ Drop(stack_depth);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001185 if (context_length > 0) {
1186 while (context_length > 0) {
1187 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1188 --context_length;
1189 }
1190 StoreToFrameField(StandardFrameConstants::kContextOffset,
1191 context_register());
1192 }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001193
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001194 __ jmp(current->AsBreakable()->break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001195}
1196
1197
1198void FullCodeGenerator::VisitReturnStatement(ReturnStatement* stmt) {
1199 Comment cmnt(masm_, "[ ReturnStatement");
1200 SetStatementPosition(stmt);
1201 Expression* expr = stmt->expression();
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001202 VisitForAccumulatorValue(expr);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001203
1204 // Exit all nested statements.
1205 NestedStatement* current = nesting_stack_;
1206 int stack_depth = 0;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001207 int context_length = 0;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001208 while (current != NULL) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001209 current = current->Exit(&stack_depth, &context_length);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001210 }
1211 __ Drop(stack_depth);
1212
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00001213 EmitReturnSequence();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001214}
1215
1216
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001217void FullCodeGenerator::VisitWithStatement(WithStatement* stmt) {
1218 Comment cmnt(masm_, "[ WithStatement");
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001219 SetStatementPosition(stmt);
1220
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001221 VisitForStackValue(stmt->expression());
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00001222 PushFunctionArgumentForContextAllocation();
1223 __ CallRuntime(Runtime::kPushWithContext, 2);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001224 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001225
1226 { WithOrCatch body(this);
1227 Visit(stmt->statement());
1228 }
1229
1230 // Pop context.
1231 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1232 // Update local stack frame context field.
1233 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001234}
1235
1236
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001237void FullCodeGenerator::VisitDoWhileStatement(DoWhileStatement* stmt) {
1238 Comment cmnt(masm_, "[ DoWhileStatement");
1239 SetStatementPosition(stmt);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001240 Label body, stack_check;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001241
1242 Iteration loop_statement(this, stmt);
1243 increment_loop_depth();
1244
1245 __ bind(&body);
1246 Visit(stmt->body());
1247
ricow@chromium.org65fae842010-08-25 15:26:24 +00001248 // Record the position of the do while condition and make sure it is
1249 // possible to break on the condition.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001250 __ bind(loop_statement.continue_label());
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001251 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001252 SetExpressionPosition(stmt->cond(), stmt->condition_position());
ricow@chromium.org65fae842010-08-25 15:26:24 +00001253 VisitForControl(stmt->cond(),
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001254 &stack_check,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001255 loop_statement.break_label(),
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001256 &stack_check);
1257
1258 // Check stack before looping.
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001259 PrepareForBailoutForId(stmt->BackEdgeId(), NO_REGISTERS);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001260 __ bind(&stack_check);
rossberg@chromium.orgcddc71f2012-12-07 12:40:13 +00001261 EmitBackEdgeBookkeeping(stmt, &body);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001262 __ jmp(&body);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001263
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001264 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001265 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001266 decrement_loop_depth();
1267}
1268
1269
1270void FullCodeGenerator::VisitWhileStatement(WhileStatement* stmt) {
1271 Comment cmnt(masm_, "[ WhileStatement");
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001272 Label test, body;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001273
1274 Iteration loop_statement(this, stmt);
1275 increment_loop_depth();
1276
1277 // Emit the test at the bottom of the loop.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001278 __ jmp(&test);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001279
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001280 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001281 __ bind(&body);
1282 Visit(stmt->body());
ricow@chromium.org65fae842010-08-25 15:26:24 +00001283
1284 // Emit the statement position here as this is where the while
1285 // statement code starts.
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001286 __ bind(loop_statement.continue_label());
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001287 SetStatementPosition(stmt);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001288
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001289 // Check stack before looping.
rossberg@chromium.orgcddc71f2012-12-07 12:40:13 +00001290 EmitBackEdgeBookkeeping(stmt, &body);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001291
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001292 __ bind(&test);
ricow@chromium.org65fae842010-08-25 15:26:24 +00001293 VisitForControl(stmt->cond(),
1294 &body,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001295 loop_statement.break_label(),
1296 loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001297
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001298 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001299 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001300 decrement_loop_depth();
1301}
1302
1303
1304void FullCodeGenerator::VisitForStatement(ForStatement* stmt) {
1305 Comment cmnt(masm_, "[ ForStatement");
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001306 Label test, body;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001307
1308 Iteration loop_statement(this, stmt);
erik.corry@gmail.combbceb572012-03-09 10:52:05 +00001309
1310 // Set statement position for a break slot before entering the for-body.
1311 SetStatementPosition(stmt);
1312
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001313 if (stmt->init() != NULL) {
1314 Visit(stmt->init());
1315 }
1316
1317 increment_loop_depth();
1318 // Emit the test at the bottom of the loop (even if empty).
1319 __ jmp(&test);
1320
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001321 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001322 __ bind(&body);
1323 Visit(stmt->body());
1324
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001325 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001326 __ bind(loop_statement.continue_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001327 if (stmt->next() != NULL) {
1328 Visit(stmt->next());
1329 }
1330
ricow@chromium.org65fae842010-08-25 15:26:24 +00001331 // Emit the statement position here as this is where the for
1332 // statement code starts.
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001333 SetStatementPosition(stmt);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001334
1335 // Check stack before looping.
rossberg@chromium.orgcddc71f2012-12-07 12:40:13 +00001336 EmitBackEdgeBookkeeping(stmt, &body);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001337
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001338 __ bind(&test);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001339 if (stmt->cond() != NULL) {
ricow@chromium.org65fae842010-08-25 15:26:24 +00001340 VisitForControl(stmt->cond(),
1341 &body,
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001342 loop_statement.break_label(),
1343 loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001344 } else {
1345 __ jmp(&body);
1346 }
1347
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001348 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
rossberg@chromium.org28a37082011-08-22 11:03:23 +00001349 __ bind(loop_statement.break_label());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001350 decrement_loop_depth();
1351}
1352
1353
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001354void FullCodeGenerator::VisitTryCatchStatement(TryCatchStatement* stmt) {
1355 Comment cmnt(masm_, "[ TryCatchStatement");
1356 SetStatementPosition(stmt);
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001357 // The try block adds a handler to the exception handler chain before
1358 // entering, and removes it again when exiting normally. If an exception
1359 // is thrown during execution of the try block, the handler is consumed
1360 // and control is passed to the catch block with the exception in the
1361 // result register.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001362
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001363 Label try_entry, handler_entry, exit;
1364 __ jmp(&try_entry);
1365 __ bind(&handler_entry);
1366 handler_table()->set(stmt->index(), Smi::FromInt(handler_entry.pos()));
1367 // Exception handler code, the exception is in the result register.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001368 // Extend the context before executing the catch block.
1369 { Comment cmnt(masm_, "[ Extend catch context");
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001370 __ Push(stmt->variable()->name());
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001371 __ push(result_register());
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00001372 PushFunctionArgumentForContextAllocation();
1373 __ CallRuntime(Runtime::kPushCatchContext, 3);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001374 StoreToFrameField(StandardFrameConstants::kContextOffset,
1375 context_register());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001376 }
1377
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001378 Scope* saved_scope = scope();
1379 scope_ = stmt->scope();
1380 ASSERT(scope_->declarations()->is_empty());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001381 { WithOrCatch catch_body(this);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001382 Visit(stmt->catch_block());
1383 }
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001384 // Restore the context.
1385 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1386 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001387 scope_ = saved_scope;
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001388 __ jmp(&exit);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001389
1390 // Try block code. Sets up the exception handler chain.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001391 __ bind(&try_entry);
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +00001392 __ PushTryHandler(StackHandler::CATCH, stmt->index());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001393 { TryCatch try_body(this);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001394 Visit(stmt->try_block());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001395 }
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001396 __ PopTryHandler();
1397 __ bind(&exit);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001398}
1399
1400
1401void FullCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
1402 Comment cmnt(masm_, "[ TryFinallyStatement");
1403 SetStatementPosition(stmt);
1404 // Try finally is compiled by setting up a try-handler on the stack while
1405 // executing the try body, and removing it again afterwards.
1406 //
1407 // The try-finally construct can enter the finally block in three ways:
1408 // 1. By exiting the try-block normally. This removes the try-handler and
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001409 // calls the finally block code before continuing.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001410 // 2. By exiting the try-block with a function-local control flow transfer
1411 // (break/continue/return). The site of the, e.g., break removes the
1412 // try handler and calls the finally block code before continuing
1413 // its outward control transfer.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001414 // 3. By exiting the try-block with a thrown exception.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001415 // This can happen in nested function calls. It traverses the try-handler
1416 // chain and consumes the try-handler entry before jumping to the
1417 // handler code. The handler code then calls the finally-block before
1418 // rethrowing the exception.
1419 //
1420 // The finally block must assume a return address on top of the stack
1421 // (or in the link register on ARM chips) and a value (return value or
1422 // exception) in the result register (rax/eax/r0), both of which must
1423 // be preserved. The return address isn't GC-safe, so it should be
1424 // cooked before GC.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001425 Label try_entry, handler_entry, finally_entry;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001426
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001427 // Jump to try-handler setup and try-block code.
1428 __ jmp(&try_entry);
1429 __ bind(&handler_entry);
1430 handler_table()->set(stmt->index(), Smi::FromInt(handler_entry.pos()));
1431 // Exception handler code. This code is only executed when an exception
1432 // is thrown. The exception is in the result register, and must be
1433 // preserved by the finally block. Call the finally block and then
1434 // rethrow the exception if it returns.
1435 __ Call(&finally_entry);
1436 __ push(result_register());
1437 __ CallRuntime(Runtime::kReThrow, 1);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001438
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001439 // Finally block implementation.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001440 __ bind(&finally_entry);
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001441 EnterFinallyBlock();
1442 { Finally finally_body(this);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001443 Visit(stmt->finally_block());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001444 }
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001445 ExitFinallyBlock(); // Return to the calling code.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001446
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001447 // Set up try handler.
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001448 __ bind(&try_entry);
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +00001449 __ PushTryHandler(StackHandler::FINALLY, stmt->index());
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001450 { TryFinally try_body(this, &finally_entry);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001451 Visit(stmt->try_block());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001452 }
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001453 __ PopTryHandler();
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001454 // Execute the finally block on the way out. Clobber the unpredictable
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001455 // value in the result register with one that's safe for GC because the
1456 // finally block will unconditionally preserve the result register on the
1457 // stack.
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001458 ClearAccumulator();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001459 __ Call(&finally_entry);
1460}
1461
1462
1463void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) {
1464#ifdef ENABLE_DEBUGGER_SUPPORT
1465 Comment cmnt(masm_, "[ DebuggerStatement");
1466 SetStatementPosition(stmt);
1467
ager@chromium.org5c838252010-02-19 08:53:10 +00001468 __ DebugBreak();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001469 // Ignore the return value.
1470#endif
1471}
1472
1473
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001474void FullCodeGenerator::VisitConditional(Conditional* expr) {
1475 Comment cmnt(masm_, "[ Conditional");
1476 Label true_case, false_case, done;
ricow@chromium.org65fae842010-08-25 15:26:24 +00001477 VisitForControl(expr->condition(), &true_case, &false_case, &true_case);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001478
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001479 PrepareForBailoutForId(expr->ThenId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001480 __ bind(&true_case);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001481 SetExpressionPosition(expr->then_expression(),
1482 expr->then_expression_position());
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001483 if (context()->IsTest()) {
1484 const TestContext* for_test = TestContext::cast(context());
1485 VisitForControl(expr->then_expression(),
1486 for_test->true_label(),
1487 for_test->false_label(),
1488 NULL);
1489 } else {
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001490 VisitInDuplicateContext(expr->then_expression());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001491 __ jmp(&done);
1492 }
1493
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001494 PrepareForBailoutForId(expr->ElseId(), NO_REGISTERS);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001495 __ bind(&false_case);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001496 SetExpressionPosition(expr->else_expression(),
1497 expr->else_expression_position());
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001498 VisitInDuplicateContext(expr->else_expression());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001499 // If control flow falls through Visit, merge it with true case here.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001500 if (!context()->IsTest()) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001501 __ bind(&done);
1502 }
1503}
1504
1505
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001506void FullCodeGenerator::VisitLiteral(Literal* expr) {
1507 Comment cmnt(masm_, "[ Literal");
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001508 context()->Plug(expr->handle());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001509}
1510
1511
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001512void FullCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) {
1513 Comment cmnt(masm_, "[ FunctionLiteral");
1514
1515 // Build the function boilerplate and instantiate it.
1516 Handle<SharedFunctionInfo> function_info =
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001517 Compiler::BuildFunctionInfo(expr, script());
1518 if (function_info.is_null()) {
1519 SetStackOverflow();
1520 return;
1521 }
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00001522 EmitNewClosure(function_info, expr->pretenure());
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001523}
1524
1525
1526void FullCodeGenerator::VisitSharedFunctionInfoLiteral(
1527 SharedFunctionInfoLiteral* expr) {
1528 Comment cmnt(masm_, "[ SharedFunctionInfoLiteral");
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00001529 EmitNewClosure(expr->shared_function_info(), false);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001530}
1531
1532
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001533void FullCodeGenerator::VisitThrow(Throw* expr) {
1534 Comment cmnt(masm_, "[ Throw");
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001535 VisitForStackValue(expr->exception());
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001536 __ CallRuntime(Runtime::kThrow, 1);
1537 // Never returns here.
1538}
1539
1540
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001541FullCodeGenerator::NestedStatement* FullCodeGenerator::TryCatch::Exit(
1542 int* stack_depth,
1543 int* context_length) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001544 // The macros used here must preserve the result register.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001545 __ Drop(*stack_depth);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001546 __ PopTryHandler();
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001547 *stack_depth = 0;
1548 return previous_;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001549}
1550
ricow@chromium.org65fae842010-08-25 15:26:24 +00001551
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001552bool FullCodeGenerator::TryLiteralCompare(CompareOperation* expr) {
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001553 Expression* sub_expr;
ager@chromium.org04921a82011-06-27 13:21:41 +00001554 Handle<String> check;
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001555 if (expr->IsLiteralCompareTypeof(&sub_expr, &check)) {
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001556 EmitLiteralCompareTypeof(expr, sub_expr, check);
ager@chromium.org04921a82011-06-27 13:21:41 +00001557 return true;
1558 }
1559
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001560 if (expr->IsLiteralCompareUndefined(&sub_expr)) {
1561 EmitLiteralCompareNil(expr, sub_expr, kUndefinedValue);
1562 return true;
1563 }
1564
1565 if (expr->IsLiteralCompareNull(&sub_expr)) {
1566 EmitLiteralCompareNil(expr, sub_expr, kNullValue);
ager@chromium.org04921a82011-06-27 13:21:41 +00001567 return true;
1568 }
1569
1570 return false;
1571}
1572
1573
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001574#undef __
1575
1576
1577} } // namespace v8::internal