blob: 807387413299303de1759c19b1b0f9c59c6d94fa [file] [log] [blame]
Ben Murdoch85b71792012-04-11 18:30:58 +01001// Copyright 2011 the V8 project authors. All rights reserved.
Leon Clarked91b9f72010-01-27 17:25:45 +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
Ben Murdoch8b112d22011-06-08 16:22:53 +010030#include "codegen.h"
Leon Clarked91b9f72010-01-27 17:25:45 +000031#include "compiler.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010032#include "debug.h"
Leon Clarked91b9f72010-01-27 17:25:45 +000033#include "full-codegen.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010034#include "liveedit.h"
Kristian Monsen80d68ea2010-09-08 11:05:35 +010035#include "macro-assembler.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010036#include "prettyprinter.h"
Steve Block6ded16b2010-05-10 14:33:55 +010037#include "scopes.h"
Ben Murdoch69a99ed2011-11-30 16:03:39 +000038#include "scopeinfo.h"
Leon Clarked91b9f72010-01-27 17:25:45 +000039#include "stub-cache.h"
Leon Clarked91b9f72010-01-27 17:25:45 +000040
41namespace v8 {
42namespace internal {
43
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010044void BreakableStatementChecker::Check(Statement* stmt) {
45 Visit(stmt);
46}
47
48
49void BreakableStatementChecker::Check(Expression* expr) {
50 Visit(expr);
51}
52
53
Ben Murdoch85b71792012-04-11 18:30:58 +010054void BreakableStatementChecker::VisitDeclaration(Declaration* decl) {
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010055}
56
57
58void BreakableStatementChecker::VisitBlock(Block* stmt) {
59}
60
61
62void BreakableStatementChecker::VisitExpressionStatement(
63 ExpressionStatement* stmt) {
64 // Check if expression is breakable.
65 Visit(stmt->expression());
66}
67
68
69void BreakableStatementChecker::VisitEmptyStatement(EmptyStatement* stmt) {
70}
71
72
73void BreakableStatementChecker::VisitIfStatement(IfStatement* stmt) {
74 // If the condition is breakable the if statement is breakable.
75 Visit(stmt->condition());
76}
77
78
79void BreakableStatementChecker::VisitContinueStatement(
80 ContinueStatement* stmt) {
81}
82
83
84void BreakableStatementChecker::VisitBreakStatement(BreakStatement* stmt) {
85}
86
87
88void BreakableStatementChecker::VisitReturnStatement(ReturnStatement* stmt) {
89 // Return is breakable if the expression is.
90 Visit(stmt->expression());
91}
92
93
Ben Murdoch69a99ed2011-11-30 16:03:39 +000094void BreakableStatementChecker::VisitWithStatement(WithStatement* stmt) {
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010095 Visit(stmt->expression());
96}
97
98
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010099void BreakableStatementChecker::VisitSwitchStatement(SwitchStatement* stmt) {
100 // Switch statements breakable if the tag expression is.
101 Visit(stmt->tag());
102}
103
104
105void BreakableStatementChecker::VisitDoWhileStatement(DoWhileStatement* stmt) {
106 // Mark do while as breakable to avoid adding a break slot in front of it.
107 is_breakable_ = true;
108}
109
110
111void BreakableStatementChecker::VisitWhileStatement(WhileStatement* stmt) {
112 // Mark while statements breakable if the condition expression is.
113 Visit(stmt->cond());
114}
115
116
117void BreakableStatementChecker::VisitForStatement(ForStatement* stmt) {
118 // Mark for statements breakable if the condition expression is.
119 if (stmt->cond() != NULL) {
120 Visit(stmt->cond());
121 }
122}
123
124
125void BreakableStatementChecker::VisitForInStatement(ForInStatement* stmt) {
126 // Mark for in statements breakable if the enumerable expression is.
127 Visit(stmt->enumerable());
128}
129
130
131void BreakableStatementChecker::VisitTryCatchStatement(
132 TryCatchStatement* stmt) {
133 // Mark try catch as breakable to avoid adding a break slot in front of it.
134 is_breakable_ = true;
135}
136
137
138void BreakableStatementChecker::VisitTryFinallyStatement(
139 TryFinallyStatement* stmt) {
140 // Mark try finally as breakable to avoid adding a break slot in front of it.
141 is_breakable_ = true;
142}
143
144
145void BreakableStatementChecker::VisitDebuggerStatement(
146 DebuggerStatement* stmt) {
147 // The debugger statement is breakable.
148 is_breakable_ = true;
149}
150
151
152void BreakableStatementChecker::VisitFunctionLiteral(FunctionLiteral* expr) {
153}
154
155
156void BreakableStatementChecker::VisitSharedFunctionInfoLiteral(
157 SharedFunctionInfoLiteral* expr) {
158}
159
160
161void BreakableStatementChecker::VisitConditional(Conditional* expr) {
162}
163
164
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100165void BreakableStatementChecker::VisitVariableProxy(VariableProxy* expr) {
166}
167
168
169void BreakableStatementChecker::VisitLiteral(Literal* expr) {
170}
171
172
173void BreakableStatementChecker::VisitRegExpLiteral(RegExpLiteral* expr) {
174}
175
176
177void BreakableStatementChecker::VisitObjectLiteral(ObjectLiteral* expr) {
178}
179
180
181void BreakableStatementChecker::VisitArrayLiteral(ArrayLiteral* expr) {
182}
183
184
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100185void BreakableStatementChecker::VisitAssignment(Assignment* expr) {
186 // If assigning to a property (including a global property) the assignment is
187 // breakable.
Ben Murdoch589d6972011-11-30 16:04:58 +0000188 VariableProxy* proxy = expr->target()->AsVariableProxy();
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100189 Property* prop = expr->target()->AsProperty();
Ben Murdoch589d6972011-11-30 16:04:58 +0000190 if (prop != NULL || (proxy != NULL && proxy->var()->IsUnallocated())) {
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100191 is_breakable_ = true;
192 return;
193 }
194
195 // Otherwise the assignment is breakable if the assigned value is.
196 Visit(expr->value());
197}
198
199
200void BreakableStatementChecker::VisitThrow(Throw* expr) {
201 // Throw is breakable if the expression is.
202 Visit(expr->exception());
203}
204
205
206void BreakableStatementChecker::VisitProperty(Property* expr) {
207 // Property load is breakable.
208 is_breakable_ = true;
209}
210
211
212void BreakableStatementChecker::VisitCall(Call* expr) {
213 // Function calls both through IC and call stub are breakable.
214 is_breakable_ = true;
215}
216
217
218void BreakableStatementChecker::VisitCallNew(CallNew* expr) {
219 // Function calls through new are breakable.
220 is_breakable_ = true;
221}
222
223
224void BreakableStatementChecker::VisitCallRuntime(CallRuntime* expr) {
225}
226
227
228void BreakableStatementChecker::VisitUnaryOperation(UnaryOperation* expr) {
229 Visit(expr->expression());
230}
231
232
233void BreakableStatementChecker::VisitCountOperation(CountOperation* expr) {
234 Visit(expr->expression());
235}
236
237
238void BreakableStatementChecker::VisitBinaryOperation(BinaryOperation* expr) {
239 Visit(expr->left());
Ben Murdoch7d3e7fc2011-07-12 16:37:06 +0100240 if (expr->op() != Token::AND &&
241 expr->op() != Token::OR) {
242 Visit(expr->right());
243 }
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100244}
245
246
Ben Murdoch85b71792012-04-11 18:30:58 +0100247void BreakableStatementChecker::VisitCompareToNull(CompareToNull* expr) {
248 Visit(expr->expression());
249}
250
251
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100252void BreakableStatementChecker::VisitCompareOperation(CompareOperation* expr) {
253 Visit(expr->left());
254 Visit(expr->right());
255}
256
257
258void BreakableStatementChecker::VisitThisFunction(ThisFunction* expr) {
259}
260
261
Leon Clarked91b9f72010-01-27 17:25:45 +0000262#define __ ACCESS_MASM(masm())
263
Ben Murdochf87a2032010-10-22 12:50:53 +0100264bool FullCodeGenerator::MakeCode(CompilationInfo* info) {
Steve Block44f0eee2011-05-26 01:26:41 +0100265 Isolate* isolate = info->isolate();
Andrei Popescu31002712010-02-23 13:46:05 +0000266 Handle<Script> script = info->script();
Leon Clarked91b9f72010-01-27 17:25:45 +0000267 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
268 int len = String::cast(script->source())->length();
Steve Block44f0eee2011-05-26 01:26:41 +0100269 isolate->counters()->total_full_codegen_source_size()->Increment(len);
Leon Clarked91b9f72010-01-27 17:25:45 +0000270 }
Ben Murdochb0fe1622011-05-05 13:52:32 +0100271 if (FLAG_trace_codegen) {
272 PrintF("Full Compiler - ");
273 }
Andrei Popescu31002712010-02-23 13:46:05 +0000274 CodeGenerator::MakeCodePrologue(info);
Leon Clarked91b9f72010-01-27 17:25:45 +0000275 const int kInitialBufferSize = 4 * KB;
Ben Murdoch8b112d22011-06-08 16:22:53 +0100276 MacroAssembler masm(info->isolate(), NULL, kInitialBufferSize);
Ben Murdochb8e0da22011-05-16 14:20:40 +0100277#ifdef ENABLE_GDB_JIT_INTERFACE
278 masm.positions_recorder()->StartGDBJITLineInfoRecording();
279#endif
Andrei Popescu402d9372010-02-26 13:31:12 +0000280
Ben Murdoch85b71792012-04-11 18:30:58 +0100281 FullCodeGenerator cgen(&masm);
282 cgen.Generate(info);
Leon Clarked91b9f72010-01-27 17:25:45 +0000283 if (cgen.HasStackOverflow()) {
Steve Block44f0eee2011-05-26 01:26:41 +0100284 ASSERT(!isolate->has_pending_exception());
Ben Murdochf87a2032010-10-22 12:50:53 +0100285 return false;
Leon Clarked91b9f72010-01-27 17:25:45 +0000286 }
Ben Murdochb0fe1622011-05-05 13:52:32 +0100287 unsigned table_offset = cgen.EmitStackCheckTable();
Ben Murdochf87a2032010-10-22 12:50:53 +0100288
Ben Murdoch589d6972011-11-30 16:04:58 +0000289 Code::Flags flags = Code::ComputeFlags(Code::FUNCTION);
Ben Murdochf87a2032010-10-22 12:50:53 +0100290 Handle<Code> code = CodeGenerator::MakeCodeEpilogue(&masm, flags, info);
Ben Murdoch85b71792012-04-11 18:30:58 +0100291 code->set_optimizable(info->IsOptimizable());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100292 cgen.PopulateDeoptimizationData(code);
293 code->set_has_deoptimization_support(info->HasDeoptimizationSupport());
Ben Murdoch589d6972011-11-30 16:04:58 +0000294 code->set_has_debug_break_slots(
295 info->isolate()->debugger()->IsDebuggerActive());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100296 code->set_allow_osr_at_loop_nesting_level(0);
Steve Block1e0659c2011-05-24 12:43:12 +0100297 code->set_stack_check_table_offset(table_offset);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100298 CodeGenerator::PrintCode(code, info);
Ben Murdoch85b71792012-04-11 18:30:58 +0100299 info->SetCode(code); // may be an empty handle.
Ben Murdochb8e0da22011-05-16 14:20:40 +0100300#ifdef ENABLE_GDB_JIT_INTERFACE
Steve Block1e0659c2011-05-24 12:43:12 +0100301 if (FLAG_gdbjit && !code.is_null()) {
Ben Murdochb8e0da22011-05-16 14:20:40 +0100302 GDBJITLineInfo* lineinfo =
303 masm.positions_recorder()->DetachGDBJITLineInfo();
304
305 GDBJIT(RegisterDetailedLineInfo(*code, lineinfo));
306 }
307#endif
Ben Murdochf87a2032010-10-22 12:50:53 +0100308 return !code.is_null();
Leon Clarked91b9f72010-01-27 17:25:45 +0000309}
310
311
Ben Murdochb0fe1622011-05-05 13:52:32 +0100312unsigned FullCodeGenerator::EmitStackCheckTable() {
313 // The stack check table consists of a length (in number of entries)
314 // field, and then a sequence of entries. Each entry is a pair of AST id
315 // and code-relative pc offset.
316 masm()->Align(kIntSize);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100317 unsigned offset = masm()->pc_offset();
318 unsigned length = stack_checks_.length();
319 __ dd(length);
320 for (unsigned i = 0; i < length; ++i) {
321 __ dd(stack_checks_[i].id);
322 __ dd(stack_checks_[i].pc_and_state);
323 }
Ben Murdochb0fe1622011-05-05 13:52:32 +0100324 return offset;
325}
326
327
328void FullCodeGenerator::PopulateDeoptimizationData(Handle<Code> code) {
329 // Fill in the deoptimization information.
330 ASSERT(info_->HasDeoptimizationSupport() || bailout_entries_.is_empty());
331 if (!info_->HasDeoptimizationSupport()) return;
332 int length = bailout_entries_.length();
Ben Murdoch85b71792012-04-11 18:30:58 +0100333 Handle<DeoptimizationOutputData> data =
334 isolate()->factory()->
Steve Block44f0eee2011-05-26 01:26:41 +0100335 NewDeoptimizationOutputData(length, TENURED);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100336 for (int i = 0; i < length; i++) {
337 data->SetAstId(i, Smi::FromInt(bailout_entries_[i].id));
338 data->SetPcAndState(i, Smi::FromInt(bailout_entries_[i].pc_and_state));
339 }
340 code->set_deoptimization_data(*data);
341}
342
343
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000344void FullCodeGenerator::PrepareForBailout(Expression* node, State state) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100345 PrepareForBailoutForId(node->id(), state);
346}
347
348
349void FullCodeGenerator::RecordJSReturnSite(Call* call) {
350 // We record the offset of the function return so we can rebuild the frame
351 // if the function was inlined, i.e., this is the return address in the
352 // inlined function's frame.
353 //
354 // The state is ignored. We defensively set it to TOS_REG, which is the
355 // real state of the unoptimized code at the return site.
356 PrepareForBailoutForId(call->ReturnId(), TOS_REG);
357#ifdef DEBUG
358 // In debug builds, mark the return so we can verify that this function
359 // was called.
360 ASSERT(!call->return_is_recorded_);
361 call->return_is_recorded_ = true;
362#endif
363}
364
365
Ben Murdoch85b71792012-04-11 18:30:58 +0100366void FullCodeGenerator::PrepareForBailoutForId(int id, State state) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100367 // There's no need to prepare this code for bailouts from already optimized
368 // code or code that can't be optimized.
Ben Murdoch85b71792012-04-11 18:30:58 +0100369 if (!FLAG_deopt || !info_->HasDeoptimizationSupport()) return;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100370 unsigned pc_and_state =
371 StateField::encode(state) | PcField::encode(masm_->pc_offset());
372 BailoutEntry entry = { id, pc_and_state };
373#ifdef DEBUG
Ben Murdoch85b71792012-04-11 18:30:58 +0100374 // Assert that we don't have multiple bailout entries for the same node.
375 for (int i = 0; i < bailout_entries_.length(); i++) {
376 if (bailout_entries_.at(i).id == entry.id) {
377 AstPrinter printer;
378 PrintF("%s", printer.PrintProgram(info_->function()));
379 UNREACHABLE();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100380 }
381 }
382#endif // DEBUG
383 bailout_entries_.Add(entry);
384}
385
386
Ben Murdoch85b71792012-04-11 18:30:58 +0100387void FullCodeGenerator::RecordStackCheck(int ast_id) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100388 // The pc offset does not need to be encoded and packed together with a
389 // state.
Ben Murdoch85b71792012-04-11 18:30:58 +0100390 BailoutEntry entry = { ast_id, masm_->pc_offset() };
Ben Murdochb0fe1622011-05-05 13:52:32 +0100391 stack_checks_.Add(entry);
392}
393
394
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100395bool FullCodeGenerator::ShouldInlineSmiCase(Token::Value op) {
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100396 // Inline smi case inside loops, but not division and modulo which
397 // are too complicated and take up too much space.
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100398 if (op == Token::DIV ||op == Token::MOD) return false;
399 if (FLAG_always_inline_smi_code) return true;
400 return loop_depth_ > 0;
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100401}
402
403
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100404void FullCodeGenerator::EffectContext::Plug(Register reg) const {
405}
406
407
408void FullCodeGenerator::AccumulatorValueContext::Plug(Register reg) const {
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100409 __ Move(result_register(), reg);
410}
411
412
413void FullCodeGenerator::StackValueContext::Plug(Register reg) const {
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100414 __ push(reg);
Ben Murdoch85b71792012-04-11 18:30:58 +0100415 codegen()->increment_stack_height();
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100416}
417
418
419void FullCodeGenerator::TestContext::Plug(Register reg) const {
420 // For simplicity we always test the accumulator register.
421 __ Move(result_register(), reg);
Ben Murdoch85b71792012-04-11 18:30:58 +0100422 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000423 codegen()->DoTest(this);
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100424}
425
426
427void FullCodeGenerator::EffectContext::PlugTOS() const {
428 __ Drop(1);
Ben Murdoch85b71792012-04-11 18:30:58 +0100429 codegen()->decrement_stack_height();
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100430}
431
432
433void FullCodeGenerator::AccumulatorValueContext::PlugTOS() const {
434 __ pop(result_register());
Ben Murdoch85b71792012-04-11 18:30:58 +0100435 codegen()->decrement_stack_height();
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100436}
437
438
439void FullCodeGenerator::StackValueContext::PlugTOS() const {
440}
441
442
443void FullCodeGenerator::TestContext::PlugTOS() const {
444 // For simplicity we always test the accumulator register.
445 __ pop(result_register());
Ben Murdoch85b71792012-04-11 18:30:58 +0100446 codegen()->decrement_stack_height();
447 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000448 codegen()->DoTest(this);
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100449}
450
451
452void FullCodeGenerator::EffectContext::PrepareTest(
453 Label* materialize_true,
454 Label* materialize_false,
455 Label** if_true,
456 Label** if_false,
457 Label** fall_through) const {
458 // In an effect context, the true and the false case branch to the
459 // same label.
460 *if_true = *if_false = *fall_through = materialize_true;
461}
462
463
464void FullCodeGenerator::AccumulatorValueContext::PrepareTest(
465 Label* materialize_true,
466 Label* materialize_false,
467 Label** if_true,
468 Label** if_false,
469 Label** fall_through) const {
470 *if_true = *fall_through = materialize_true;
471 *if_false = materialize_false;
472}
473
474
475void FullCodeGenerator::StackValueContext::PrepareTest(
476 Label* materialize_true,
477 Label* materialize_false,
478 Label** if_true,
479 Label** if_false,
480 Label** fall_through) const {
481 *if_true = *fall_through = materialize_true;
482 *if_false = materialize_false;
483}
484
485
486void FullCodeGenerator::TestContext::PrepareTest(
487 Label* materialize_true,
488 Label* materialize_false,
489 Label** if_true,
490 Label** if_false,
491 Label** fall_through) const {
492 *if_true = true_label_;
493 *if_false = false_label_;
494 *fall_through = fall_through_;
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100495}
496
497
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000498void FullCodeGenerator::DoTest(const TestContext* context) {
499 DoTest(context->condition(),
500 context->true_label(),
501 context->false_label(),
502 context->fall_through());
503}
504
505
Leon Clarked91b9f72010-01-27 17:25:45 +0000506void FullCodeGenerator::VisitDeclarations(
507 ZoneList<Declaration*>* declarations) {
Ben Murdoch85b71792012-04-11 18:30:58 +0100508 int length = declarations->length();
509 int global_count = 0;
510 for (int i = 0; i < length; i++) {
511 Declaration* decl = declarations->at(i);
512 EmitDeclaration(decl->proxy(), decl->mode(), decl->fun(), &global_count);
513 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000514
Ben Murdoch589d6972011-11-30 16:04:58 +0000515 // Batch declare global functions and variables.
Ben Murdoch85b71792012-04-11 18:30:58 +0100516 if (global_count > 0) {
Steve Block44f0eee2011-05-26 01:26:41 +0100517 Handle<FixedArray> array =
Ben Murdoch85b71792012-04-11 18:30:58 +0100518 isolate()->factory()->NewFixedArray(2 * global_count, TENURED);
Leon Clarked91b9f72010-01-27 17:25:45 +0000519 for (int j = 0, i = 0; i < length; i++) {
520 Declaration* decl = declarations->at(i);
521 Variable* var = decl->proxy()->var();
Leon Clarked91b9f72010-01-27 17:25:45 +0000522
Ben Murdoch589d6972011-11-30 16:04:58 +0000523 if (var->IsUnallocated()) {
Leon Clarked91b9f72010-01-27 17:25:45 +0000524 array->set(j++, *(var->name()));
Ben Murdoch85b71792012-04-11 18:30:58 +0100525 if (decl->fun() == NULL) {
526 if (var->mode() == Variable::CONST) {
527 // In case this is const property use the hole.
Leon Clarked91b9f72010-01-27 17:25:45 +0000528 array->set_the_hole(j++);
529 } else {
530 array->set_undefined(j++);
531 }
532 } else {
Steve Block6ded16b2010-05-10 14:33:55 +0100533 Handle<SharedFunctionInfo> function =
Ben Murdoch85b71792012-04-11 18:30:58 +0100534 Compiler::BuildFunctionInfo(decl->fun(), script());
Leon Clarked91b9f72010-01-27 17:25:45 +0000535 // Check for stack-overflow exception.
Ben Murdochf87a2032010-10-22 12:50:53 +0100536 if (function.is_null()) {
537 SetStackOverflow();
538 return;
539 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000540 array->set(j++, *function);
541 }
542 }
543 }
544 // Invoke the platform-dependent code generator to do the actual
Ben Murdoch589d6972011-11-30 16:04:58 +0000545 // declaration the global functions and variables.
Leon Clarked91b9f72010-01-27 17:25:45 +0000546 DeclareGlobals(array);
547 }
548}
549
550
Ben Murdoch589d6972011-11-30 16:04:58 +0000551int FullCodeGenerator::DeclareGlobalsFlags() {
Ben Murdoch85b71792012-04-11 18:30:58 +0100552 int flags = 0;
553 if (is_eval()) flags |= kDeclareGlobalsEvalFlag;
554 if (is_strict_mode()) flags |= kDeclareGlobalsStrictModeFlag;
555 if (is_native()) flags |= kDeclareGlobalsNativeFlag;
556 return flags;
Ben Murdoch589d6972011-11-30 16:04:58 +0000557}
558
559
Leon Clarked91b9f72010-01-27 17:25:45 +0000560void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000561 CodeGenerator::RecordPositions(masm_, fun->start_position());
Leon Clarked91b9f72010-01-27 17:25:45 +0000562}
563
564
565void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000566 CodeGenerator::RecordPositions(masm_, fun->end_position() - 1);
Leon Clarked91b9f72010-01-27 17:25:45 +0000567}
568
569
570void FullCodeGenerator::SetStatementPosition(Statement* stmt) {
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100571#ifdef ENABLE_DEBUGGER_SUPPORT
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000572 if (!isolate()->debugger()->IsDebuggerActive()) {
Leon Clarked91b9f72010-01-27 17:25:45 +0000573 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000574 } else {
575 // Check if the statement will be breakable without adding a debug break
576 // slot.
577 BreakableStatementChecker checker;
578 checker.Check(stmt);
579 // Record the statement position right here if the statement is not
580 // breakable. For breakable statements the actual recording of the
581 // position will be postponed to the breakable code (typically an IC).
582 bool position_recorded = CodeGenerator::RecordPositions(
583 masm_, stmt->statement_pos(), !checker.is_breakable());
584 // If the position recording did record a new position generate a debug
585 // break slot to make the statement breakable.
586 if (position_recorded) {
587 Debug::GenerateSlot(masm_);
588 }
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100589 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000590#else
591 CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
592#endif
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100593}
594
595
596void FullCodeGenerator::SetExpressionPosition(Expression* expr, int pos) {
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100597#ifdef ENABLE_DEBUGGER_SUPPORT
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000598 if (!isolate()->debugger()->IsDebuggerActive()) {
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100599 CodeGenerator::RecordPositions(masm_, pos);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000600 } else {
601 // Check if the expression will be breakable without adding a debug break
602 // slot.
603 BreakableStatementChecker checker;
604 checker.Check(expr);
605 // Record a statement position right here if the expression is not
606 // breakable. For breakable expressions the actual recording of the
607 // position will be postponed to the breakable code (typically an IC).
608 // NOTE this will record a statement position for something which might
609 // not be a statement. As stepping in the debugger will only stop at
610 // statement positions this is used for e.g. the condition expression of
611 // a do while loop.
612 bool position_recorded = CodeGenerator::RecordPositions(
613 masm_, pos, !checker.is_breakable());
614 // If the position recording did record a new position generate a debug
615 // break slot to make the statement breakable.
616 if (position_recorded) {
617 Debug::GenerateSlot(masm_);
618 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000619 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000620#else
621 CodeGenerator::RecordPositions(masm_, pos);
622#endif
Leon Clarked91b9f72010-01-27 17:25:45 +0000623}
624
625
626void FullCodeGenerator::SetStatementPosition(int pos) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000627 CodeGenerator::RecordPositions(masm_, pos);
Leon Clarked91b9f72010-01-27 17:25:45 +0000628}
629
630
Ben Murdochb0fe1622011-05-05 13:52:32 +0100631void FullCodeGenerator::SetSourcePosition(int pos) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000632 if (pos != RelocInfo::kNoPosition) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100633 masm_->positions_recorder()->RecordPosition(pos);
Leon Clarked91b9f72010-01-27 17:25:45 +0000634 }
635}
636
637
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100638// Lookup table for code generators for special runtime calls which are
639// generated inline.
640#define INLINE_FUNCTION_GENERATOR_ADDRESS(Name, argc, ressize) \
641 &FullCodeGenerator::Emit##Name,
Steve Block791712a2010-08-27 10:21:07 +0100642
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100643const FullCodeGenerator::InlineFunctionGenerator
644 FullCodeGenerator::kInlineFunctionGenerators[] = {
645 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
646 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
647 };
648#undef INLINE_FUNCTION_GENERATOR_ADDRESS
649
650
651FullCodeGenerator::InlineFunctionGenerator
652 FullCodeGenerator::FindInlineFunctionGenerator(Runtime::FunctionId id) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100653 int lookup_index =
654 static_cast<int>(id) - static_cast<int>(Runtime::kFirstInlineFunction);
655 ASSERT(lookup_index >= 0);
656 ASSERT(static_cast<size_t>(lookup_index) <
657 ARRAY_SIZE(kInlineFunctionGenerators));
658 return kInlineFunctionGenerators[lookup_index];
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100659}
660
661
Ben Murdoch85b71792012-04-11 18:30:58 +0100662void FullCodeGenerator::EmitInlineRuntimeCall(CallRuntime* node) {
663 ZoneList<Expression*>* args = node->arguments();
664 const Runtime::Function* function = node->function();
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100665 ASSERT(function != NULL);
666 ASSERT(function->intrinsic_type == Runtime::INLINE);
667 InlineFunctionGenerator generator =
668 FindInlineFunctionGenerator(function->function_id);
Ben Murdoch85b71792012-04-11 18:30:58 +0100669 ((*this).*(generator))(args);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100670}
671
672
673void FullCodeGenerator::VisitBinaryOperation(BinaryOperation* expr) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000674 switch (expr->op()) {
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100675 case Token::COMMA:
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000676 return VisitComma(expr);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100677 case Token::OR:
678 case Token::AND:
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000679 return VisitLogicalExpression(expr);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100680 default:
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000681 return VisitArithmeticExpression(expr);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100682 }
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100683}
684
685
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000686void FullCodeGenerator::VisitComma(BinaryOperation* expr) {
687 Comment cmnt(masm_, "[ Comma");
688 VisitForEffect(expr->left());
Ben Murdoch85b71792012-04-11 18:30:58 +0100689 if (context()->IsTest()) ForwardBailoutToChild(expr);
690 VisitInCurrentContext(expr->right());
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000691}
Leon Clarked91b9f72010-01-27 17:25:45 +0000692
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000693
694void FullCodeGenerator::VisitLogicalExpression(BinaryOperation* expr) {
695 bool is_logical_and = expr->op() == Token::AND;
696 Comment cmnt(masm_, is_logical_and ? "[ Logical AND" : "[ Logical OR");
697 Expression* left = expr->left();
698 Expression* right = expr->right();
699 int right_id = expr->RightId();
700 Label done;
701
702 if (context()->IsTest()) {
703 Label eval_right;
704 const TestContext* test = TestContext::cast(context());
705 if (is_logical_and) {
706 VisitForControl(left, &eval_right, test->false_label(), &eval_right);
707 } else {
708 VisitForControl(left, test->true_label(), &eval_right, &eval_right);
709 }
710 PrepareForBailoutForId(right_id, NO_REGISTERS);
711 __ bind(&eval_right);
Ben Murdoch85b71792012-04-11 18:30:58 +0100712 ForwardBailoutToChild(expr);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000713
714 } else if (context()->IsAccumulatorValue()) {
715 VisitForAccumulatorValue(left);
716 // We want the value in the accumulator for the test, and on the stack in
717 // case we need it.
718 __ push(result_register());
719 Label discard, restore;
Ben Murdoch85b71792012-04-11 18:30:58 +0100720 PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000721 if (is_logical_and) {
722 DoTest(left, &discard, &restore, &restore);
723 } else {
724 DoTest(left, &restore, &discard, &restore);
725 }
726 __ bind(&restore);
727 __ pop(result_register());
728 __ jmp(&done);
729 __ bind(&discard);
730 __ Drop(1);
731 PrepareForBailoutForId(right_id, NO_REGISTERS);
732
733 } else if (context()->IsStackValue()) {
734 VisitForAccumulatorValue(left);
735 // We want the value in the accumulator for the test, and on the stack in
736 // case we need it.
737 __ push(result_register());
738 Label discard;
Ben Murdoch85b71792012-04-11 18:30:58 +0100739 PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000740 if (is_logical_and) {
741 DoTest(left, &discard, &done, &discard);
742 } else {
743 DoTest(left, &done, &discard, &discard);
744 }
745 __ bind(&discard);
746 __ Drop(1);
747 PrepareForBailoutForId(right_id, NO_REGISTERS);
748
749 } else {
750 ASSERT(context()->IsEffect());
751 Label eval_right;
752 if (is_logical_and) {
753 VisitForControl(left, &eval_right, &done, &eval_right);
754 } else {
755 VisitForControl(left, &done, &eval_right, &eval_right);
756 }
757 PrepareForBailoutForId(right_id, NO_REGISTERS);
758 __ bind(&eval_right);
759 }
760
Ben Murdoch85b71792012-04-11 18:30:58 +0100761 VisitInCurrentContext(right);
Leon Clarked91b9f72010-01-27 17:25:45 +0000762 __ bind(&done);
763}
764
765
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000766void FullCodeGenerator::VisitArithmeticExpression(BinaryOperation* expr) {
767 Token::Value op = expr->op();
768 Comment cmnt(masm_, "[ ArithmeticExpression");
769 Expression* left = expr->left();
770 Expression* right = expr->right();
771 OverwriteMode mode =
772 left->ResultOverwriteAllowed()
773 ? OVERWRITE_LEFT
774 : (right->ResultOverwriteAllowed() ? OVERWRITE_RIGHT : NO_OVERWRITE);
775
776 VisitForStackValue(left);
777 VisitForAccumulatorValue(right);
778
779 SetSourcePosition(expr->position());
780 if (ShouldInlineSmiCase(op)) {
781 EmitInlineSmiBinaryOp(expr, op, mode, left, right);
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100782 } else {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000783 EmitBinaryOp(expr, op, mode);
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100784 }
785}
786
787
Ben Murdoch85b71792012-04-11 18:30:58 +0100788void FullCodeGenerator::ForwardBailoutToChild(Expression* expr) {
789 if (!info_->HasDeoptimizationSupport()) return;
790 ASSERT(context()->IsTest());
791 ASSERT(expr == forward_bailout_stack_->expr());
792 forward_bailout_pending_ = forward_bailout_stack_;
793}
794
795
796void FullCodeGenerator::VisitInCurrentContext(Expression* expr) {
797 if (context()->IsTest()) {
798 ForwardBailoutStack stack(expr, forward_bailout_pending_);
799 ForwardBailoutStack* saved = forward_bailout_stack_;
800 forward_bailout_pending_ = NULL;
801 forward_bailout_stack_ = &stack;
802 Visit(expr);
803 forward_bailout_stack_ = saved;
804 } else {
805 ASSERT(forward_bailout_pending_ == NULL);
806 Visit(expr);
807 State state = context()->IsAccumulatorValue() ? TOS_REG : NO_REGISTERS;
808 PrepareForBailout(expr, state);
809 // Forwarding bailouts to children is a one shot operation. It should have
810 // been processed at this point.
811 ASSERT(forward_bailout_pending_ == NULL);
812 }
813}
814
815
Leon Clarked91b9f72010-01-27 17:25:45 +0000816void FullCodeGenerator::VisitBlock(Block* stmt) {
817 Comment cmnt(masm_, "[ Block");
Ben Murdoch589d6972011-11-30 16:04:58 +0000818 NestedBlock nested_block(this, stmt);
Leon Clarked91b9f72010-01-27 17:25:45 +0000819 SetStatementPosition(stmt);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100820
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000821 Scope* saved_scope = scope();
Ben Murdoch589d6972011-11-30 16:04:58 +0000822 // Push a block context when entering a block with block scoped variables.
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000823 if (stmt->block_scope() != NULL) {
824 { Comment cmnt(masm_, "[ Extend block context");
825 scope_ = stmt->block_scope();
Ben Murdoch85b71792012-04-11 18:30:58 +0100826 __ Push(scope_->GetSerializedScopeInfo());
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000827 PushFunctionArgumentForContextAllocation();
Ben Murdoch85b71792012-04-11 18:30:58 +0100828 __ CallRuntime(Runtime::kPushBlockContext, 2);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000829 StoreToFrameField(StandardFrameConstants::kContextOffset,
830 context_register());
831 }
832 { Comment cmnt(masm_, "[ Declarations");
833 VisitDeclarations(scope_->declarations());
834 }
835 }
Steve Block1e0659c2011-05-24 12:43:12 +0100836 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
Leon Clarked91b9f72010-01-27 17:25:45 +0000837 VisitStatements(stmt->statements());
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000838 scope_ = saved_scope;
Ben Murdoch589d6972011-11-30 16:04:58 +0000839 __ bind(nested_block.break_label());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100840 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
Ben Murdoch589d6972011-11-30 16:04:58 +0000841
842 // Pop block context if necessary.
843 if (stmt->block_scope() != NULL) {
844 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
845 // Update local stack frame context field.
846 StoreToFrameField(StandardFrameConstants::kContextOffset,
847 context_register());
848 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000849}
850
851
852void FullCodeGenerator::VisitExpressionStatement(ExpressionStatement* stmt) {
853 Comment cmnt(masm_, "[ ExpressionStatement");
854 SetStatementPosition(stmt);
855 VisitForEffect(stmt->expression());
856}
857
858
859void FullCodeGenerator::VisitEmptyStatement(EmptyStatement* stmt) {
860 Comment cmnt(masm_, "[ EmptyStatement");
861 SetStatementPosition(stmt);
862}
863
864
865void FullCodeGenerator::VisitIfStatement(IfStatement* stmt) {
866 Comment cmnt(masm_, "[ IfStatement");
867 SetStatementPosition(stmt);
868 Label then_part, else_part, done;
869
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100870 if (stmt->HasElseStatement()) {
871 VisitForControl(stmt->condition(), &then_part, &else_part, &then_part);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100872 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100873 __ bind(&then_part);
874 Visit(stmt->then_statement());
875 __ jmp(&done);
Leon Clarked91b9f72010-01-27 17:25:45 +0000876
Ben Murdochb0fe1622011-05-05 13:52:32 +0100877 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100878 __ bind(&else_part);
879 Visit(stmt->else_statement());
880 } else {
881 VisitForControl(stmt->condition(), &then_part, &done, &then_part);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100882 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100883 __ bind(&then_part);
884 Visit(stmt->then_statement());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100885
886 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100887 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000888 __ bind(&done);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000889 PrepareForBailoutForId(stmt->IfId(), NO_REGISTERS);
Leon Clarked91b9f72010-01-27 17:25:45 +0000890}
891
892
893void FullCodeGenerator::VisitContinueStatement(ContinueStatement* stmt) {
894 Comment cmnt(masm_, "[ ContinueStatement");
895 SetStatementPosition(stmt);
896 NestedStatement* current = nesting_stack_;
897 int stack_depth = 0;
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000898 int context_length = 0;
Ben Murdochdb5a90a2011-01-06 18:27:03 +0000899 // When continuing, we clobber the unpredictable value in the accumulator
900 // with one that's safe for GC. If we hit an exit from the try block of
901 // try...finally on our way out, we will unconditionally preserve the
902 // accumulator on the stack.
903 ClearAccumulator();
Leon Clarked91b9f72010-01-27 17:25:45 +0000904 while (!current->IsContinueTarget(stmt->target())) {
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000905 current = current->Exit(&stack_depth, &context_length);
Leon Clarked91b9f72010-01-27 17:25:45 +0000906 }
907 __ Drop(stack_depth);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000908 if (context_length > 0) {
909 while (context_length > 0) {
910 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
911 --context_length;
912 }
913 StoreToFrameField(StandardFrameConstants::kContextOffset,
914 context_register());
915 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000916
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000917 __ jmp(current->AsIteration()->continue_label());
Leon Clarked91b9f72010-01-27 17:25:45 +0000918}
919
920
921void FullCodeGenerator::VisitBreakStatement(BreakStatement* stmt) {
922 Comment cmnt(masm_, "[ BreakStatement");
923 SetStatementPosition(stmt);
924 NestedStatement* current = nesting_stack_;
925 int stack_depth = 0;
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000926 int context_length = 0;
Ben Murdochdb5a90a2011-01-06 18:27:03 +0000927 // When breaking, we clobber the unpredictable value in the accumulator
928 // with one that's safe for GC. If we hit an exit from the try block of
929 // try...finally on our way out, we will unconditionally preserve the
930 // accumulator on the stack.
931 ClearAccumulator();
Leon Clarked91b9f72010-01-27 17:25:45 +0000932 while (!current->IsBreakTarget(stmt->target())) {
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000933 current = current->Exit(&stack_depth, &context_length);
Leon Clarked91b9f72010-01-27 17:25:45 +0000934 }
935 __ Drop(stack_depth);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000936 if (context_length > 0) {
937 while (context_length > 0) {
938 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
939 --context_length;
940 }
941 StoreToFrameField(StandardFrameConstants::kContextOffset,
942 context_register());
943 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000944
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000945 __ jmp(current->AsBreakable()->break_label());
Leon Clarked91b9f72010-01-27 17:25:45 +0000946}
947
948
949void FullCodeGenerator::VisitReturnStatement(ReturnStatement* stmt) {
950 Comment cmnt(masm_, "[ ReturnStatement");
951 SetStatementPosition(stmt);
952 Expression* expr = stmt->expression();
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100953 VisitForAccumulatorValue(expr);
Leon Clarked91b9f72010-01-27 17:25:45 +0000954
955 // Exit all nested statements.
956 NestedStatement* current = nesting_stack_;
957 int stack_depth = 0;
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000958 int context_length = 0;
Leon Clarked91b9f72010-01-27 17:25:45 +0000959 while (current != NULL) {
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000960 current = current->Exit(&stack_depth, &context_length);
Leon Clarked91b9f72010-01-27 17:25:45 +0000961 }
962 __ Drop(stack_depth);
963
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100964 EmitReturnSequence();
Leon Clarked91b9f72010-01-27 17:25:45 +0000965}
966
967
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000968void FullCodeGenerator::VisitWithStatement(WithStatement* stmt) {
969 Comment cmnt(masm_, "[ WithStatement");
Leon Clarked91b9f72010-01-27 17:25:45 +0000970 SetStatementPosition(stmt);
971
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100972 VisitForStackValue(stmt->expression());
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000973 PushFunctionArgumentForContextAllocation();
974 __ CallRuntime(Runtime::kPushWithContext, 2);
Ben Murdoch85b71792012-04-11 18:30:58 +0100975 decrement_stack_height();
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000976 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
977
978 { WithOrCatch body(this);
979 Visit(stmt->statement());
980 }
981
982 // Pop context.
983 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
984 // Update local stack frame context field.
Leon Clarked91b9f72010-01-27 17:25:45 +0000985 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
986}
987
988
Leon Clarked91b9f72010-01-27 17:25:45 +0000989void FullCodeGenerator::VisitDoWhileStatement(DoWhileStatement* stmt) {
990 Comment cmnt(masm_, "[ DoWhileStatement");
991 SetStatementPosition(stmt);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100992 Label body, stack_check;
Leon Clarked91b9f72010-01-27 17:25:45 +0000993
994 Iteration loop_statement(this, stmt);
995 increment_loop_depth();
996
997 __ bind(&body);
998 Visit(stmt->body());
999
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001000 // Record the position of the do while condition and make sure it is
1001 // possible to break on the condition.
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001002 __ bind(loop_statement.continue_label());
Ben Murdochb0fe1622011-05-05 13:52:32 +01001003 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01001004 SetExpressionPosition(stmt->cond(), stmt->condition_position());
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001005 VisitForControl(stmt->cond(),
Ben Murdochb0fe1622011-05-05 13:52:32 +01001006 &stack_check,
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001007 loop_statement.break_label(),
Ben Murdochb0fe1622011-05-05 13:52:32 +01001008 &stack_check);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01001009
Ben Murdochb0fe1622011-05-05 13:52:32 +01001010 // Check stack before looping.
1011 PrepareForBailoutForId(stmt->BackEdgeId(), NO_REGISTERS);
1012 __ bind(&stack_check);
Ben Murdoch85b71792012-04-11 18:30:58 +01001013 EmitStackCheck(stmt);
Ben Murdochb0fe1622011-05-05 13:52:32 +01001014 __ jmp(&body);
1015
1016 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001017 __ bind(loop_statement.break_label());
Leon Clarked91b9f72010-01-27 17:25:45 +00001018 decrement_loop_depth();
1019}
1020
1021
1022void FullCodeGenerator::VisitWhileStatement(WhileStatement* stmt) {
1023 Comment cmnt(masm_, "[ WhileStatement");
Ben Murdochb0fe1622011-05-05 13:52:32 +01001024 Label test, body;
Leon Clarked91b9f72010-01-27 17:25:45 +00001025
1026 Iteration loop_statement(this, stmt);
1027 increment_loop_depth();
1028
1029 // Emit the test at the bottom of the loop.
Ben Murdochb0fe1622011-05-05 13:52:32 +01001030 __ jmp(&test);
Leon Clarked91b9f72010-01-27 17:25:45 +00001031
Ben Murdochb0fe1622011-05-05 13:52:32 +01001032 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
Leon Clarked91b9f72010-01-27 17:25:45 +00001033 __ bind(&body);
1034 Visit(stmt->body());
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001035
1036 // Emit the statement position here as this is where the while
1037 // statement code starts.
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001038 __ bind(loop_statement.continue_label());
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01001039 SetStatementPosition(stmt);
Leon Clarkef7060e22010-06-03 12:02:55 +01001040
Leon Clarked91b9f72010-01-27 17:25:45 +00001041 // Check stack before looping.
Ben Murdoch85b71792012-04-11 18:30:58 +01001042 EmitStackCheck(stmt);
Leon Clarked91b9f72010-01-27 17:25:45 +00001043
Ben Murdochb0fe1622011-05-05 13:52:32 +01001044 __ bind(&test);
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001045 VisitForControl(stmt->cond(),
1046 &body,
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001047 loop_statement.break_label(),
1048 loop_statement.break_label());
Leon Clarked91b9f72010-01-27 17:25:45 +00001049
Ben Murdochb0fe1622011-05-05 13:52:32 +01001050 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001051 __ bind(loop_statement.break_label());
Leon Clarked91b9f72010-01-27 17:25:45 +00001052 decrement_loop_depth();
1053}
1054
1055
1056void FullCodeGenerator::VisitForStatement(ForStatement* stmt) {
1057 Comment cmnt(masm_, "[ ForStatement");
Ben Murdochb0fe1622011-05-05 13:52:32 +01001058 Label test, body;
Leon Clarked91b9f72010-01-27 17:25:45 +00001059
1060 Iteration loop_statement(this, stmt);
1061 if (stmt->init() != NULL) {
1062 Visit(stmt->init());
1063 }
1064
1065 increment_loop_depth();
1066 // Emit the test at the bottom of the loop (even if empty).
1067 __ jmp(&test);
1068
Ben Murdochb0fe1622011-05-05 13:52:32 +01001069 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
Leon Clarked91b9f72010-01-27 17:25:45 +00001070 __ bind(&body);
1071 Visit(stmt->body());
1072
Ben Murdochb0fe1622011-05-05 13:52:32 +01001073 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS);
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001074 __ bind(loop_statement.continue_label());
Ben Murdoch85b71792012-04-11 18:30:58 +01001075 SetStatementPosition(stmt);
Leon Clarked91b9f72010-01-27 17:25:45 +00001076 if (stmt->next() != NULL) {
1077 Visit(stmt->next());
1078 }
1079
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001080 // Emit the statement position here as this is where the for
1081 // statement code starts.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01001082 SetStatementPosition(stmt);
Leon Clarked91b9f72010-01-27 17:25:45 +00001083
1084 // Check stack before looping.
Ben Murdoch85b71792012-04-11 18:30:58 +01001085 EmitStackCheck(stmt);
Leon Clarked91b9f72010-01-27 17:25:45 +00001086
Ben Murdochb0fe1622011-05-05 13:52:32 +01001087 __ bind(&test);
Leon Clarked91b9f72010-01-27 17:25:45 +00001088 if (stmt->cond() != NULL) {
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001089 VisitForControl(stmt->cond(),
1090 &body,
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001091 loop_statement.break_label(),
1092 loop_statement.break_label());
Leon Clarked91b9f72010-01-27 17:25:45 +00001093 } else {
1094 __ jmp(&body);
1095 }
1096
Ben Murdochb0fe1622011-05-05 13:52:32 +01001097 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001098 __ bind(loop_statement.break_label());
Leon Clarked91b9f72010-01-27 17:25:45 +00001099 decrement_loop_depth();
1100}
1101
1102
Leon Clarked91b9f72010-01-27 17:25:45 +00001103void FullCodeGenerator::VisitTryCatchStatement(TryCatchStatement* stmt) {
1104 Comment cmnt(masm_, "[ TryCatchStatement");
1105 SetStatementPosition(stmt);
Ben Murdoch85b71792012-04-11 18:30:58 +01001106 // The try block adds a handler to the exception handler chain
1107 // before entering, and removes it again when exiting normally.
1108 // If an exception is thrown during execution of the try block,
1109 // control is passed to the handler, which also consumes the handler.
1110 // At this point, the exception is in a register, and store it in
1111 // the temporary local variable (prints as ".catch-var") before
1112 // executing the catch block. The catch block has been rewritten
1113 // to introduce a new scope to bind the catch variable and to remove
1114 // that scope again afterwards.
Leon Clarked91b9f72010-01-27 17:25:45 +00001115
Ben Murdoch85b71792012-04-11 18:30:58 +01001116 Label try_handler_setup, done;
1117 __ Call(&try_handler_setup);
1118 // Try handler code, exception in result register.
1119
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001120 // Extend the context before executing the catch block.
1121 { Comment cmnt(masm_, "[ Extend catch context");
1122 __ Push(stmt->variable()->name());
1123 __ push(result_register());
1124 PushFunctionArgumentForContextAllocation();
1125 __ CallRuntime(Runtime::kPushCatchContext, 3);
1126 StoreToFrameField(StandardFrameConstants::kContextOffset,
1127 context_register());
Leon Clarked91b9f72010-01-27 17:25:45 +00001128 }
1129
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001130 Scope* saved_scope = scope();
1131 scope_ = stmt->scope();
1132 ASSERT(scope_->declarations()->is_empty());
Ben Murdoch85b71792012-04-11 18:30:58 +01001133 { WithOrCatch body(this);
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001134 Visit(stmt->catch_block());
1135 }
Ben Murdoch589d6972011-11-30 16:04:58 +00001136 // Restore the context.
1137 LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1138 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001139 scope_ = saved_scope;
Ben Murdoch85b71792012-04-11 18:30:58 +01001140 __ jmp(&done);
Leon Clarked91b9f72010-01-27 17:25:45 +00001141
1142 // Try block code. Sets up the exception handler chain.
Ben Murdoch85b71792012-04-11 18:30:58 +01001143 __ bind(&try_handler_setup);
1144 {
1145 const int delta = StackHandlerConstants::kSize / kPointerSize;
1146 TryCatch try_block(this);
1147 __ PushTryHandler(IN_JAVASCRIPT, TRY_CATCH_HANDLER);
1148 increment_stack_height(delta);
Leon Clarked91b9f72010-01-27 17:25:45 +00001149 Visit(stmt->try_block());
Ben Murdoch85b71792012-04-11 18:30:58 +01001150 __ PopTryHandler();
1151 decrement_stack_height(delta);
Leon Clarked91b9f72010-01-27 17:25:45 +00001152 }
Ben Murdoch85b71792012-04-11 18:30:58 +01001153 __ bind(&done);
Leon Clarked91b9f72010-01-27 17:25:45 +00001154}
1155
1156
1157void FullCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
1158 Comment cmnt(masm_, "[ TryFinallyStatement");
1159 SetStatementPosition(stmt);
1160 // Try finally is compiled by setting up a try-handler on the stack while
1161 // executing the try body, and removing it again afterwards.
1162 //
1163 // The try-finally construct can enter the finally block in three ways:
1164 // 1. By exiting the try-block normally. This removes the try-handler and
Ben Murdoch85b71792012-04-11 18:30:58 +01001165 // calls the finally block code before continuing.
Leon Clarked91b9f72010-01-27 17:25:45 +00001166 // 2. By exiting the try-block with a function-local control flow transfer
1167 // (break/continue/return). The site of the, e.g., break removes the
1168 // try handler and calls the finally block code before continuing
1169 // its outward control transfer.
Ben Murdoch85b71792012-04-11 18:30:58 +01001170 // 3. by exiting the try-block with a thrown exception.
Leon Clarked91b9f72010-01-27 17:25:45 +00001171 // This can happen in nested function calls. It traverses the try-handler
1172 // chain and consumes the try-handler entry before jumping to the
1173 // handler code. The handler code then calls the finally-block before
1174 // rethrowing the exception.
1175 //
1176 // The finally block must assume a return address on top of the stack
1177 // (or in the link register on ARM chips) and a value (return value or
1178 // exception) in the result register (rax/eax/r0), both of which must
1179 // be preserved. The return address isn't GC-safe, so it should be
1180 // cooked before GC.
Ben Murdoch85b71792012-04-11 18:30:58 +01001181 Label finally_entry;
1182 Label try_handler_setup;
1183 const int original_stack_height = stack_height();
Leon Clarked91b9f72010-01-27 17:25:45 +00001184
Ben Murdoch85b71792012-04-11 18:30:58 +01001185 // Setup the try-handler chain. Use a call to
1186 // Jump to try-handler setup and try-block code. Use call to put try-handler
1187 // address on stack.
1188 __ Call(&try_handler_setup);
1189 // Try handler code. Return address of call is pushed on handler stack.
1190 {
1191 // This code is only executed during stack-handler traversal when an
1192 // exception is thrown. The exception is in the result register, which
1193 // is retained by the finally block.
1194 // Call the finally block and then rethrow the exception if it returns.
1195 __ Call(&finally_entry);
1196 __ push(result_register());
1197 __ CallRuntime(Runtime::kReThrow, 1);
1198 }
Leon Clarked91b9f72010-01-27 17:25:45 +00001199
1200 __ bind(&finally_entry);
Ben Murdoch85b71792012-04-11 18:30:58 +01001201 {
1202 // Finally block implementation.
1203 Finally finally_block(this);
1204 EnterFinallyBlock();
1205 set_stack_height(original_stack_height + Finally::kElementCount);
Leon Clarked91b9f72010-01-27 17:25:45 +00001206 Visit(stmt->finally_block());
Ben Murdoch85b71792012-04-11 18:30:58 +01001207 ExitFinallyBlock(); // Return to the calling code.
Leon Clarked91b9f72010-01-27 17:25:45 +00001208 }
1209
Ben Murdoch85b71792012-04-11 18:30:58 +01001210 __ bind(&try_handler_setup);
1211 {
1212 // Setup try handler (stack pointer registers).
1213 const int delta = StackHandlerConstants::kSize / kPointerSize;
1214 TryFinally try_block(this, &finally_entry);
1215 __ PushTryHandler(IN_JAVASCRIPT, TRY_FINALLY_HANDLER);
1216 set_stack_height(original_stack_height + delta);
Leon Clarked91b9f72010-01-27 17:25:45 +00001217 Visit(stmt->try_block());
Ben Murdoch85b71792012-04-11 18:30:58 +01001218 __ PopTryHandler();
1219 set_stack_height(original_stack_height);
Leon Clarked91b9f72010-01-27 17:25:45 +00001220 }
Ben Murdochdb5a90a2011-01-06 18:27:03 +00001221 // Execute the finally block on the way out. Clobber the unpredictable
Ben Murdoch85b71792012-04-11 18:30:58 +01001222 // value in the accumulator with one that's safe for GC. The finally
1223 // block will unconditionally preserve the accumulator on the stack.
Ben Murdochdb5a90a2011-01-06 18:27:03 +00001224 ClearAccumulator();
Leon Clarked91b9f72010-01-27 17:25:45 +00001225 __ Call(&finally_entry);
1226}
1227
1228
1229void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) {
1230#ifdef ENABLE_DEBUGGER_SUPPORT
1231 Comment cmnt(masm_, "[ DebuggerStatement");
1232 SetStatementPosition(stmt);
Leon Clarke4515c472010-02-03 11:58:03 +00001233
Andrei Popescu402d9372010-02-26 13:31:12 +00001234 __ DebugBreak();
Leon Clarked91b9f72010-01-27 17:25:45 +00001235 // Ignore the return value.
1236#endif
1237}
1238
1239
Leon Clarked91b9f72010-01-27 17:25:45 +00001240void FullCodeGenerator::VisitConditional(Conditional* expr) {
1241 Comment cmnt(masm_, "[ Conditional");
1242 Label true_case, false_case, done;
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001243 VisitForControl(expr->condition(), &true_case, &false_case, &true_case);
Leon Clarked91b9f72010-01-27 17:25:45 +00001244
Ben Murdochb0fe1622011-05-05 13:52:32 +01001245 PrepareForBailoutForId(expr->ThenId(), NO_REGISTERS);
Leon Clarked91b9f72010-01-27 17:25:45 +00001246 __ bind(&true_case);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01001247 SetExpressionPosition(expr->then_expression(),
1248 expr->then_expression_position());
Ben Murdoch85b71792012-04-11 18:30:58 +01001249 int start_stack_height = stack_height();
Ben Murdochf87a2032010-10-22 12:50:53 +01001250 if (context()->IsTest()) {
1251 const TestContext* for_test = TestContext::cast(context());
1252 VisitForControl(expr->then_expression(),
1253 for_test->true_label(),
1254 for_test->false_label(),
1255 NULL);
1256 } else {
Ben Murdoch85b71792012-04-11 18:30:58 +01001257 VisitInCurrentContext(expr->then_expression());
Leon Clarked91b9f72010-01-27 17:25:45 +00001258 __ jmp(&done);
1259 }
1260
Ben Murdochb0fe1622011-05-05 13:52:32 +01001261 PrepareForBailoutForId(expr->ElseId(), NO_REGISTERS);
Leon Clarked91b9f72010-01-27 17:25:45 +00001262 __ bind(&false_case);
Ben Murdoch85b71792012-04-11 18:30:58 +01001263 set_stack_height(start_stack_height);
1264 if (context()->IsTest()) ForwardBailoutToChild(expr);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01001265 SetExpressionPosition(expr->else_expression(),
1266 expr->else_expression_position());
Ben Murdoch85b71792012-04-11 18:30:58 +01001267 VisitInCurrentContext(expr->else_expression());
Leon Clarked91b9f72010-01-27 17:25:45 +00001268 // If control flow falls through Visit, merge it with true case here.
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001269 if (!context()->IsTest()) {
Leon Clarked91b9f72010-01-27 17:25:45 +00001270 __ bind(&done);
1271 }
1272}
1273
1274
Leon Clarked91b9f72010-01-27 17:25:45 +00001275void FullCodeGenerator::VisitLiteral(Literal* expr) {
1276 Comment cmnt(masm_, "[ Literal");
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001277 context()->Plug(expr->handle());
Leon Clarked91b9f72010-01-27 17:25:45 +00001278}
1279
1280
Leon Clarkef7060e22010-06-03 12:02:55 +01001281void FullCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) {
1282 Comment cmnt(masm_, "[ FunctionLiteral");
1283
1284 // Build the function boilerplate and instantiate it.
1285 Handle<SharedFunctionInfo> function_info =
Ben Murdochf87a2032010-10-22 12:50:53 +01001286 Compiler::BuildFunctionInfo(expr, script());
1287 if (function_info.is_null()) {
1288 SetStackOverflow();
1289 return;
1290 }
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -08001291 EmitNewClosure(function_info, expr->pretenure());
Leon Clarkef7060e22010-06-03 12:02:55 +01001292}
1293
1294
1295void FullCodeGenerator::VisitSharedFunctionInfoLiteral(
1296 SharedFunctionInfoLiteral* expr) {
1297 Comment cmnt(masm_, "[ SharedFunctionInfoLiteral");
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -08001298 EmitNewClosure(expr->shared_function_info(), false);
Leon Clarkef7060e22010-06-03 12:02:55 +01001299}
1300
1301
Leon Clarked91b9f72010-01-27 17:25:45 +00001302void FullCodeGenerator::VisitThrow(Throw* expr) {
1303 Comment cmnt(masm_, "[ Throw");
Ben Murdoch85b71792012-04-11 18:30:58 +01001304 // Throw has no effect on the stack height or the current expression context.
1305 // Usually the expression context is null, because throw is a statement.
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001306 VisitForStackValue(expr->exception());
Leon Clarked91b9f72010-01-27 17:25:45 +00001307 __ CallRuntime(Runtime::kThrow, 1);
Ben Murdoch85b71792012-04-11 18:30:58 +01001308 decrement_stack_height();
Leon Clarked91b9f72010-01-27 17:25:45 +00001309 // Never returns here.
1310}
1311
1312
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001313FullCodeGenerator::NestedStatement* FullCodeGenerator::TryCatch::Exit(
1314 int* stack_depth,
1315 int* context_length) {
Leon Clarked91b9f72010-01-27 17:25:45 +00001316 // The macros used here must preserve the result register.
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001317 __ Drop(*stack_depth);
Leon Clarked91b9f72010-01-27 17:25:45 +00001318 __ PopTryHandler();
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001319 *stack_depth = 0;
1320 return previous_;
Leon Clarked91b9f72010-01-27 17:25:45 +00001321}
1322
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001323
Ben Murdoch85b71792012-04-11 18:30:58 +01001324bool FullCodeGenerator::TryLiteralCompare(CompareOperation* compare,
1325 Label* if_true,
1326 Label* if_false,
1327 Label* fall_through) {
1328 Expression *expr;
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001329 Handle<String> check;
Ben Murdoch85b71792012-04-11 18:30:58 +01001330 if (compare->IsLiteralCompareTypeof(&expr, &check)) {
1331 EmitLiteralCompareTypeof(expr, check, if_true, if_false, fall_through);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001332 return true;
1333 }
1334
Ben Murdoch85b71792012-04-11 18:30:58 +01001335 if (compare->IsLiteralCompareUndefined(&expr)) {
1336 EmitLiteralCompareUndefined(expr, if_true, if_false, fall_through);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001337 return true;
1338 }
1339
1340 return false;
1341}
1342
1343
Leon Clarked91b9f72010-01-27 17:25:45 +00001344#undef __
1345
1346
1347} } // namespace v8::internal