1 // Copyright 2011 the V8 project authors. All rights reserved. 2 // 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 30 #include "codegen.h" 31 #include "compiler.h" 32 #include "debug.h" 33 #include "full-codegen.h" 34 #include "liveedit.h" 35 #include "macro-assembler.h" 36 #include "prettyprinter.h" 37 #include "scopes.h" 38 #include "stub-cache.h" 39 40 namespace v8 { 41 namespace internal { 42 43 void BreakableStatementChecker::Check(Statement* stmt) { 44 Visit(stmt); 45 } 46 47 48 void BreakableStatementChecker::Check(Expression* expr) { 49 Visit(expr); 50 } 51 52 53 void BreakableStatementChecker::VisitDeclaration(Declaration* decl) { 54 } 55 56 57 void BreakableStatementChecker::VisitBlock(Block* stmt) { 58 } 59 60 61 void BreakableStatementChecker::VisitExpressionStatement( 62 ExpressionStatement* stmt) { 63 // Check if expression is breakable. 64 Visit(stmt->expression()); 65 } 66 67 68 void BreakableStatementChecker::VisitEmptyStatement(EmptyStatement* stmt) { 69 } 70 71 72 void BreakableStatementChecker::VisitIfStatement(IfStatement* stmt) { 73 // If the condition is breakable the if statement is breakable. 74 Visit(stmt->condition()); 75 } 76 77 78 void BreakableStatementChecker::VisitContinueStatement( 79 ContinueStatement* stmt) { 80 } 81 82 83 void BreakableStatementChecker::VisitBreakStatement(BreakStatement* stmt) { 84 } 85 86 87 void BreakableStatementChecker::VisitReturnStatement(ReturnStatement* stmt) { 88 // Return is breakable if the expression is. 89 Visit(stmt->expression()); 90 } 91 92 93 void BreakableStatementChecker::VisitWithEnterStatement( 94 WithEnterStatement* stmt) { 95 Visit(stmt->expression()); 96 } 97 98 99 void BreakableStatementChecker::VisitWithExitStatement( 100 WithExitStatement* stmt) { 101 } 102 103 104 void BreakableStatementChecker::VisitSwitchStatement(SwitchStatement* stmt) { 105 // Switch statements breakable if the tag expression is. 106 Visit(stmt->tag()); 107 } 108 109 110 void BreakableStatementChecker::VisitDoWhileStatement(DoWhileStatement* stmt) { 111 // Mark do while as breakable to avoid adding a break slot in front of it. 112 is_breakable_ = true; 113 } 114 115 116 void BreakableStatementChecker::VisitWhileStatement(WhileStatement* stmt) { 117 // Mark while statements breakable if the condition expression is. 118 Visit(stmt->cond()); 119 } 120 121 122 void BreakableStatementChecker::VisitForStatement(ForStatement* stmt) { 123 // Mark for statements breakable if the condition expression is. 124 if (stmt->cond() != NULL) { 125 Visit(stmt->cond()); 126 } 127 } 128 129 130 void BreakableStatementChecker::VisitForInStatement(ForInStatement* stmt) { 131 // Mark for in statements breakable if the enumerable expression is. 132 Visit(stmt->enumerable()); 133 } 134 135 136 void BreakableStatementChecker::VisitTryCatchStatement( 137 TryCatchStatement* stmt) { 138 // Mark try catch as breakable to avoid adding a break slot in front of it. 139 is_breakable_ = true; 140 } 141 142 143 void BreakableStatementChecker::VisitTryFinallyStatement( 144 TryFinallyStatement* stmt) { 145 // Mark try finally as breakable to avoid adding a break slot in front of it. 146 is_breakable_ = true; 147 } 148 149 150 void BreakableStatementChecker::VisitDebuggerStatement( 151 DebuggerStatement* stmt) { 152 // The debugger statement is breakable. 153 is_breakable_ = true; 154 } 155 156 157 void BreakableStatementChecker::VisitFunctionLiteral(FunctionLiteral* expr) { 158 } 159 160 161 void BreakableStatementChecker::VisitSharedFunctionInfoLiteral( 162 SharedFunctionInfoLiteral* expr) { 163 } 164 165 166 void BreakableStatementChecker::VisitConditional(Conditional* expr) { 167 } 168 169 170 void BreakableStatementChecker::VisitVariableProxy(VariableProxy* expr) { 171 } 172 173 174 void BreakableStatementChecker::VisitLiteral(Literal* expr) { 175 } 176 177 178 void BreakableStatementChecker::VisitRegExpLiteral(RegExpLiteral* expr) { 179 } 180 181 182 void BreakableStatementChecker::VisitObjectLiteral(ObjectLiteral* expr) { 183 } 184 185 186 void BreakableStatementChecker::VisitArrayLiteral(ArrayLiteral* expr) { 187 } 188 189 190 void BreakableStatementChecker::VisitCatchExtensionObject( 191 CatchExtensionObject* expr) { 192 } 193 194 195 void BreakableStatementChecker::VisitAssignment(Assignment* expr) { 196 // If assigning to a property (including a global property) the assignment is 197 // breakable. 198 Variable* var = expr->target()->AsVariableProxy()->AsVariable(); 199 Property* prop = expr->target()->AsProperty(); 200 if (prop != NULL || (var != NULL && var->is_global())) { 201 is_breakable_ = true; 202 return; 203 } 204 205 // Otherwise the assignment is breakable if the assigned value is. 206 Visit(expr->value()); 207 } 208 209 210 void BreakableStatementChecker::VisitThrow(Throw* expr) { 211 // Throw is breakable if the expression is. 212 Visit(expr->exception()); 213 } 214 215 216 void BreakableStatementChecker::VisitProperty(Property* expr) { 217 // Property load is breakable. 218 is_breakable_ = true; 219 } 220 221 222 void BreakableStatementChecker::VisitCall(Call* expr) { 223 // Function calls both through IC and call stub are breakable. 224 is_breakable_ = true; 225 } 226 227 228 void BreakableStatementChecker::VisitCallNew(CallNew* expr) { 229 // Function calls through new are breakable. 230 is_breakable_ = true; 231 } 232 233 234 void BreakableStatementChecker::VisitCallRuntime(CallRuntime* expr) { 235 } 236 237 238 void BreakableStatementChecker::VisitUnaryOperation(UnaryOperation* expr) { 239 Visit(expr->expression()); 240 } 241 242 243 void BreakableStatementChecker::VisitCountOperation(CountOperation* expr) { 244 Visit(expr->expression()); 245 } 246 247 248 void BreakableStatementChecker::VisitBinaryOperation(BinaryOperation* expr) { 249 Visit(expr->left()); 250 if (expr->op() != Token::AND && 251 expr->op() != Token::OR) { 252 Visit(expr->right()); 253 } 254 } 255 256 257 void BreakableStatementChecker::VisitCompareToNull(CompareToNull* expr) { 258 Visit(expr->expression()); 259 } 260 261 262 void BreakableStatementChecker::VisitCompareOperation(CompareOperation* expr) { 263 Visit(expr->left()); 264 Visit(expr->right()); 265 } 266 267 268 void BreakableStatementChecker::VisitThisFunction(ThisFunction* expr) { 269 } 270 271 272 #define __ ACCESS_MASM(masm()) 273 274 bool FullCodeGenerator::MakeCode(CompilationInfo* info) { 275 Isolate* isolate = info->isolate(); 276 Handle<Script> script = info->script(); 277 if (!script->IsUndefined() && !script->source()->IsUndefined()) { 278 int len = String::cast(script->source())->length(); 279 isolate->counters()->total_full_codegen_source_size()->Increment(len); 280 } 281 if (FLAG_trace_codegen) { 282 PrintF("Full Compiler - "); 283 } 284 CodeGenerator::MakeCodePrologue(info); 285 const int kInitialBufferSize = 4 * KB; 286 MacroAssembler masm(info->isolate(), NULL, kInitialBufferSize); 287 #ifdef ENABLE_GDB_JIT_INTERFACE 288 masm.positions_recorder()->StartGDBJITLineInfoRecording(); 289 #endif 290 291 FullCodeGenerator cgen(&masm); 292 cgen.Generate(info); 293 if (cgen.HasStackOverflow()) { 294 ASSERT(!isolate->has_pending_exception()); 295 return false; 296 } 297 unsigned table_offset = cgen.EmitStackCheckTable(); 298 299 Code::Flags flags = Code::ComputeFlags(Code::FUNCTION, NOT_IN_LOOP); 300 Handle<Code> code = CodeGenerator::MakeCodeEpilogue(&masm, flags, info); 301 code->set_optimizable(info->IsOptimizable()); 302 cgen.PopulateDeoptimizationData(code); 303 code->set_has_deoptimization_support(info->HasDeoptimizationSupport()); 304 code->set_allow_osr_at_loop_nesting_level(0); 305 code->set_stack_check_table_offset(table_offset); 306 CodeGenerator::PrintCode(code, info); 307 info->SetCode(code); // may be an empty handle. 308 #ifdef ENABLE_GDB_JIT_INTERFACE 309 if (FLAG_gdbjit && !code.is_null()) { 310 GDBJITLineInfo* lineinfo = 311 masm.positions_recorder()->DetachGDBJITLineInfo(); 312 313 GDBJIT(RegisterDetailedLineInfo(*code, lineinfo)); 314 } 315 #endif 316 return !code.is_null(); 317 } 318 319 320 unsigned FullCodeGenerator::EmitStackCheckTable() { 321 // The stack check table consists of a length (in number of entries) 322 // field, and then a sequence of entries. Each entry is a pair of AST id 323 // and code-relative pc offset. 324 masm()->Align(kIntSize); 325 masm()->RecordComment("[ Stack check table"); 326 unsigned offset = masm()->pc_offset(); 327 unsigned length = stack_checks_.length(); 328 __ dd(length); 329 for (unsigned i = 0; i < length; ++i) { 330 __ dd(stack_checks_[i].id); 331 __ dd(stack_checks_[i].pc_and_state); 332 } 333 masm()->RecordComment("]"); 334 return offset; 335 } 336 337 338 void FullCodeGenerator::PopulateDeoptimizationData(Handle<Code> code) { 339 // Fill in the deoptimization information. 340 ASSERT(info_->HasDeoptimizationSupport() || bailout_entries_.is_empty()); 341 if (!info_->HasDeoptimizationSupport()) return; 342 int length = bailout_entries_.length(); 343 Handle<DeoptimizationOutputData> data = 344 isolate()->factory()-> 345 NewDeoptimizationOutputData(length, TENURED); 346 for (int i = 0; i < length; i++) { 347 data->SetAstId(i, Smi::FromInt(bailout_entries_[i].id)); 348 data->SetPcAndState(i, Smi::FromInt(bailout_entries_[i].pc_and_state)); 349 } 350 code->set_deoptimization_data(*data); 351 } 352 353 354 void FullCodeGenerator::PrepareForBailout(AstNode* node, State state) { 355 PrepareForBailoutForId(node->id(), state); 356 } 357 358 359 void FullCodeGenerator::RecordJSReturnSite(Call* call) { 360 // We record the offset of the function return so we can rebuild the frame 361 // if the function was inlined, i.e., this is the return address in the 362 // inlined function's frame. 363 // 364 // The state is ignored. We defensively set it to TOS_REG, which is the 365 // real state of the unoptimized code at the return site. 366 PrepareForBailoutForId(call->ReturnId(), TOS_REG); 367 #ifdef DEBUG 368 // In debug builds, mark the return so we can verify that this function 369 // was called. 370 ASSERT(!call->return_is_recorded_); 371 call->return_is_recorded_ = true; 372 #endif 373 } 374 375 376 void FullCodeGenerator::PrepareForBailoutForId(int id, State state) { 377 // There's no need to prepare this code for bailouts from already optimized 378 // code or code that can't be optimized. 379 if (!FLAG_deopt || !info_->HasDeoptimizationSupport()) return; 380 unsigned pc_and_state = 381 StateField::encode(state) | PcField::encode(masm_->pc_offset()); 382 BailoutEntry entry = { id, pc_and_state }; 383 #ifdef DEBUG 384 // Assert that we don't have multiple bailout entries for the same node. 385 for (int i = 0; i < bailout_entries_.length(); i++) { 386 if (bailout_entries_.at(i).id == entry.id) { 387 AstPrinter printer; 388 PrintF("%s", printer.PrintProgram(info_->function())); 389 UNREACHABLE(); 390 } 391 } 392 #endif // DEBUG 393 bailout_entries_.Add(entry); 394 } 395 396 397 void FullCodeGenerator::RecordStackCheck(int ast_id) { 398 // The pc offset does not need to be encoded and packed together with a 399 // state. 400 BailoutEntry entry = { ast_id, masm_->pc_offset() }; 401 stack_checks_.Add(entry); 402 } 403 404 405 int FullCodeGenerator::SlotOffset(Slot* slot) { 406 ASSERT(slot != NULL); 407 // Offset is negative because higher indexes are at lower addresses. 408 int offset = -slot->index() * kPointerSize; 409 // Adjust by a (parameter or local) base offset. 410 switch (slot->type()) { 411 case Slot::PARAMETER: 412 offset += (scope()->num_parameters() + 1) * kPointerSize; 413 break; 414 case Slot::LOCAL: 415 offset += JavaScriptFrameConstants::kLocal0Offset; 416 break; 417 case Slot::CONTEXT: 418 case Slot::LOOKUP: 419 UNREACHABLE(); 420 } 421 return offset; 422 } 423 424 425 bool FullCodeGenerator::ShouldInlineSmiCase(Token::Value op) { 426 // Inline smi case inside loops, but not division and modulo which 427 // are too complicated and take up too much space. 428 if (op == Token::DIV ||op == Token::MOD) return false; 429 if (FLAG_always_inline_smi_code) return true; 430 return loop_depth_ > 0; 431 } 432 433 434 void FullCodeGenerator::EffectContext::Plug(Register reg) const { 435 } 436 437 438 void FullCodeGenerator::AccumulatorValueContext::Plug(Register reg) const { 439 __ Move(result_register(), reg); 440 } 441 442 443 void FullCodeGenerator::StackValueContext::Plug(Register reg) const { 444 __ push(reg); 445 } 446 447 448 void FullCodeGenerator::TestContext::Plug(Register reg) const { 449 // For simplicity we always test the accumulator register. 450 __ Move(result_register(), reg); 451 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL); 452 codegen()->DoTest(true_label_, false_label_, fall_through_); 453 } 454 455 456 void FullCodeGenerator::EffectContext::PlugTOS() const { 457 __ Drop(1); 458 } 459 460 461 void FullCodeGenerator::AccumulatorValueContext::PlugTOS() const { 462 __ pop(result_register()); 463 } 464 465 466 void FullCodeGenerator::StackValueContext::PlugTOS() const { 467 } 468 469 470 void FullCodeGenerator::TestContext::PlugTOS() const { 471 // For simplicity we always test the accumulator register. 472 __ pop(result_register()); 473 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL); 474 codegen()->DoTest(true_label_, false_label_, fall_through_); 475 } 476 477 478 void FullCodeGenerator::EffectContext::PrepareTest( 479 Label* materialize_true, 480 Label* materialize_false, 481 Label** if_true, 482 Label** if_false, 483 Label** fall_through) const { 484 // In an effect context, the true and the false case branch to the 485 // same label. 486 *if_true = *if_false = *fall_through = materialize_true; 487 } 488 489 490 void FullCodeGenerator::AccumulatorValueContext::PrepareTest( 491 Label* materialize_true, 492 Label* materialize_false, 493 Label** if_true, 494 Label** if_false, 495 Label** fall_through) const { 496 *if_true = *fall_through = materialize_true; 497 *if_false = materialize_false; 498 } 499 500 501 void FullCodeGenerator::StackValueContext::PrepareTest( 502 Label* materialize_true, 503 Label* materialize_false, 504 Label** if_true, 505 Label** if_false, 506 Label** fall_through) const { 507 *if_true = *fall_through = materialize_true; 508 *if_false = materialize_false; 509 } 510 511 512 void FullCodeGenerator::TestContext::PrepareTest( 513 Label* materialize_true, 514 Label* materialize_false, 515 Label** if_true, 516 Label** if_false, 517 Label** fall_through) const { 518 *if_true = true_label_; 519 *if_false = false_label_; 520 *fall_through = fall_through_; 521 } 522 523 524 void FullCodeGenerator::VisitDeclarations( 525 ZoneList<Declaration*>* declarations) { 526 int length = declarations->length(); 527 int globals = 0; 528 for (int i = 0; i < length; i++) { 529 Declaration* decl = declarations->at(i); 530 Variable* var = decl->proxy()->var(); 531 Slot* slot = var->AsSlot(); 532 533 // If it was not possible to allocate the variable at compile 534 // time, we need to "declare" it at runtime to make sure it 535 // actually exists in the local context. 536 if ((slot != NULL && slot->type() == Slot::LOOKUP) || !var->is_global()) { 537 VisitDeclaration(decl); 538 } else { 539 // Count global variables and functions for later processing 540 globals++; 541 } 542 } 543 544 // Compute array of global variable and function declarations. 545 // Do nothing in case of no declared global functions or variables. 546 if (globals > 0) { 547 Handle<FixedArray> array = 548 isolate()->factory()->NewFixedArray(2 * globals, TENURED); 549 for (int j = 0, i = 0; i < length; i++) { 550 Declaration* decl = declarations->at(i); 551 Variable* var = decl->proxy()->var(); 552 Slot* slot = var->AsSlot(); 553 554 if ((slot == NULL || slot->type() != Slot::LOOKUP) && var->is_global()) { 555 array->set(j++, *(var->name())); 556 if (decl->fun() == NULL) { 557 if (var->mode() == Variable::CONST) { 558 // In case this is const property use the hole. 559 array->set_the_hole(j++); 560 } else { 561 array->set_undefined(j++); 562 } 563 } else { 564 Handle<SharedFunctionInfo> function = 565 Compiler::BuildFunctionInfo(decl->fun(), script()); 566 // Check for stack-overflow exception. 567 if (function.is_null()) { 568 SetStackOverflow(); 569 return; 570 } 571 array->set(j++, *function); 572 } 573 } 574 } 575 // Invoke the platform-dependent code generator to do the actual 576 // declaration the global variables and functions. 577 DeclareGlobals(array); 578 } 579 } 580 581 582 void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) { 583 if (FLAG_debug_info) { 584 CodeGenerator::RecordPositions(masm_, fun->start_position()); 585 } 586 } 587 588 589 void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) { 590 if (FLAG_debug_info) { 591 CodeGenerator::RecordPositions(masm_, fun->end_position() - 1); 592 } 593 } 594 595 596 void FullCodeGenerator::SetStatementPosition(Statement* stmt) { 597 if (FLAG_debug_info) { 598 #ifdef ENABLE_DEBUGGER_SUPPORT 599 if (!isolate()->debugger()->IsDebuggerActive()) { 600 CodeGenerator::RecordPositions(masm_, stmt->statement_pos()); 601 } else { 602 // Check if the statement will be breakable without adding a debug break 603 // slot. 604 BreakableStatementChecker checker; 605 checker.Check(stmt); 606 // Record the statement position right here if the statement is not 607 // breakable. For breakable statements the actual recording of the 608 // position will be postponed to the breakable code (typically an IC). 609 bool position_recorded = CodeGenerator::RecordPositions( 610 masm_, stmt->statement_pos(), !checker.is_breakable()); 611 // If the position recording did record a new position generate a debug 612 // break slot to make the statement breakable. 613 if (position_recorded) { 614 Debug::GenerateSlot(masm_); 615 } 616 } 617 #else 618 CodeGenerator::RecordPositions(masm_, stmt->statement_pos()); 619 #endif 620 } 621 } 622 623 624 void FullCodeGenerator::SetExpressionPosition(Expression* expr, int pos) { 625 if (FLAG_debug_info) { 626 #ifdef ENABLE_DEBUGGER_SUPPORT 627 if (!isolate()->debugger()->IsDebuggerActive()) { 628 CodeGenerator::RecordPositions(masm_, pos); 629 } else { 630 // Check if the expression will be breakable without adding a debug break 631 // slot. 632 BreakableStatementChecker checker; 633 checker.Check(expr); 634 // Record a statement position right here if the expression is not 635 // breakable. For breakable expressions the actual recording of the 636 // position will be postponed to the breakable code (typically an IC). 637 // NOTE this will record a statement position for something which might 638 // not be a statement. As stepping in the debugger will only stop at 639 // statement positions this is used for e.g. the condition expression of 640 // a do while loop. 641 bool position_recorded = CodeGenerator::RecordPositions( 642 masm_, pos, !checker.is_breakable()); 643 // If the position recording did record a new position generate a debug 644 // break slot to make the statement breakable. 645 if (position_recorded) { 646 Debug::GenerateSlot(masm_); 647 } 648 } 649 #else 650 CodeGenerator::RecordPositions(masm_, pos); 651 #endif 652 } 653 } 654 655 656 void FullCodeGenerator::SetStatementPosition(int pos) { 657 if (FLAG_debug_info) { 658 CodeGenerator::RecordPositions(masm_, pos); 659 } 660 } 661 662 663 void FullCodeGenerator::SetSourcePosition(int pos) { 664 if (FLAG_debug_info && pos != RelocInfo::kNoPosition) { 665 masm_->positions_recorder()->RecordPosition(pos); 666 } 667 } 668 669 670 // Lookup table for code generators for special runtime calls which are 671 // generated inline. 672 #define INLINE_FUNCTION_GENERATOR_ADDRESS(Name, argc, ressize) \ 673 &FullCodeGenerator::Emit##Name, 674 675 const FullCodeGenerator::InlineFunctionGenerator 676 FullCodeGenerator::kInlineFunctionGenerators[] = { 677 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS) 678 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS) 679 }; 680 #undef INLINE_FUNCTION_GENERATOR_ADDRESS 681 682 683 FullCodeGenerator::InlineFunctionGenerator 684 FullCodeGenerator::FindInlineFunctionGenerator(Runtime::FunctionId id) { 685 int lookup_index = 686 static_cast<int>(id) - static_cast<int>(Runtime::kFirstInlineFunction); 687 ASSERT(lookup_index >= 0); 688 ASSERT(static_cast<size_t>(lookup_index) < 689 ARRAY_SIZE(kInlineFunctionGenerators)); 690 return kInlineFunctionGenerators[lookup_index]; 691 } 692 693 694 void FullCodeGenerator::EmitInlineRuntimeCall(CallRuntime* node) { 695 ZoneList<Expression*>* args = node->arguments(); 696 Handle<String> name = node->name(); 697 const Runtime::Function* function = node->function(); 698 ASSERT(function != NULL); 699 ASSERT(function->intrinsic_type == Runtime::INLINE); 700 InlineFunctionGenerator generator = 701 FindInlineFunctionGenerator(function->function_id); 702 ((*this).*(generator))(args); 703 } 704 705 706 void FullCodeGenerator::VisitBinaryOperation(BinaryOperation* expr) { 707 Comment cmnt(masm_, "[ BinaryOperation"); 708 Token::Value op = expr->op(); 709 Expression* left = expr->left(); 710 Expression* right = expr->right(); 711 712 OverwriteMode mode = NO_OVERWRITE; 713 if (left->ResultOverwriteAllowed()) { 714 mode = OVERWRITE_LEFT; 715 } else if (right->ResultOverwriteAllowed()) { 716 mode = OVERWRITE_RIGHT; 717 } 718 719 switch (op) { 720 case Token::COMMA: 721 VisitForEffect(left); 722 if (context()->IsTest()) ForwardBailoutToChild(expr); 723 context()->HandleExpression(right); 724 break; 725 726 case Token::OR: 727 case Token::AND: 728 EmitLogicalOperation(expr); 729 break; 730 731 case Token::ADD: 732 case Token::SUB: 733 case Token::DIV: 734 case Token::MOD: 735 case Token::MUL: 736 case Token::BIT_OR: 737 case Token::BIT_AND: 738 case Token::BIT_XOR: 739 case Token::SHL: 740 case Token::SHR: 741 case Token::SAR: { 742 // Load both operands. 743 VisitForStackValue(left); 744 VisitForAccumulatorValue(right); 745 746 SetSourcePosition(expr->position()); 747 if (ShouldInlineSmiCase(op)) { 748 EmitInlineSmiBinaryOp(expr, op, mode, left, right); 749 } else { 750 EmitBinaryOp(op, mode); 751 } 752 break; 753 } 754 755 default: 756 UNREACHABLE(); 757 } 758 } 759 760 761 void FullCodeGenerator::EmitLogicalOperation(BinaryOperation* expr) { 762 Label eval_right, done; 763 764 context()->EmitLogicalLeft(expr, &eval_right, &done); 765 766 PrepareForBailoutForId(expr->RightId(), NO_REGISTERS); 767 __ bind(&eval_right); 768 if (context()->IsTest()) ForwardBailoutToChild(expr); 769 context()->HandleExpression(expr->right()); 770 771 __ bind(&done); 772 } 773 774 775 void FullCodeGenerator::EffectContext::EmitLogicalLeft(BinaryOperation* expr, 776 Label* eval_right, 777 Label* done) const { 778 if (expr->op() == Token::OR) { 779 codegen()->VisitForControl(expr->left(), done, eval_right, eval_right); 780 } else { 781 ASSERT(expr->op() == Token::AND); 782 codegen()->VisitForControl(expr->left(), eval_right, done, eval_right); 783 } 784 } 785 786 787 void FullCodeGenerator::AccumulatorValueContext::EmitLogicalLeft( 788 BinaryOperation* expr, 789 Label* eval_right, 790 Label* done) const { 791 HandleExpression(expr->left()); 792 // We want the value in the accumulator for the test, and on the stack in case 793 // we need it. 794 __ push(result_register()); 795 Label discard, restore; 796 if (expr->op() == Token::OR) { 797 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL); 798 codegen()->DoTest(&restore, &discard, &restore); 799 } else { 800 ASSERT(expr->op() == Token::AND); 801 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL); 802 codegen()->DoTest(&discard, &restore, &restore); 803 } 804 __ bind(&restore); 805 __ pop(result_register()); 806 __ jmp(done); 807 __ bind(&discard); 808 __ Drop(1); 809 } 810 811 812 void FullCodeGenerator::StackValueContext::EmitLogicalLeft( 813 BinaryOperation* expr, 814 Label* eval_right, 815 Label* done) const { 816 codegen()->VisitForAccumulatorValue(expr->left()); 817 // We want the value in the accumulator for the test, and on the stack in case 818 // we need it. 819 __ push(result_register()); 820 Label discard; 821 if (expr->op() == Token::OR) { 822 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL); 823 codegen()->DoTest(done, &discard, &discard); 824 } else { 825 ASSERT(expr->op() == Token::AND); 826 codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL); 827 codegen()->DoTest(&discard, done, &discard); 828 } 829 __ bind(&discard); 830 __ Drop(1); 831 } 832 833 834 void FullCodeGenerator::TestContext::EmitLogicalLeft(BinaryOperation* expr, 835 Label* eval_right, 836 Label* done) const { 837 if (expr->op() == Token::OR) { 838 codegen()->VisitForControl(expr->left(), 839 true_label_, eval_right, eval_right); 840 } else { 841 ASSERT(expr->op() == Token::AND); 842 codegen()->VisitForControl(expr->left(), 843 eval_right, false_label_, eval_right); 844 } 845 } 846 847 848 void FullCodeGenerator::ForwardBailoutToChild(Expression* expr) { 849 if (!info_->HasDeoptimizationSupport()) return; 850 ASSERT(context()->IsTest()); 851 ASSERT(expr == forward_bailout_stack_->expr()); 852 forward_bailout_pending_ = forward_bailout_stack_; 853 } 854 855 856 void FullCodeGenerator::EffectContext::HandleExpression( 857 Expression* expr) const { 858 codegen()->HandleInNonTestContext(expr, NO_REGISTERS); 859 } 860 861 862 void FullCodeGenerator::AccumulatorValueContext::HandleExpression( 863 Expression* expr) const { 864 codegen()->HandleInNonTestContext(expr, TOS_REG); 865 } 866 867 868 void FullCodeGenerator::StackValueContext::HandleExpression( 869 Expression* expr) const { 870 codegen()->HandleInNonTestContext(expr, NO_REGISTERS); 871 } 872 873 874 void FullCodeGenerator::TestContext::HandleExpression(Expression* expr) const { 875 codegen()->VisitInTestContext(expr); 876 } 877 878 879 void FullCodeGenerator::HandleInNonTestContext(Expression* expr, State state) { 880 ASSERT(forward_bailout_pending_ == NULL); 881 AstVisitor::Visit(expr); 882 PrepareForBailout(expr, state); 883 // Forwarding bailouts to children is a one shot operation. It 884 // should have been processed at this point. 885 ASSERT(forward_bailout_pending_ == NULL); 886 } 887 888 889 void FullCodeGenerator::VisitInTestContext(Expression* expr) { 890 ForwardBailoutStack stack(expr, forward_bailout_pending_); 891 ForwardBailoutStack* saved = forward_bailout_stack_; 892 forward_bailout_pending_ = NULL; 893 forward_bailout_stack_ = &stack; 894 AstVisitor::Visit(expr); 895 forward_bailout_stack_ = saved; 896 } 897 898 899 void FullCodeGenerator::VisitBlock(Block* stmt) { 900 Comment cmnt(masm_, "[ Block"); 901 Breakable nested_statement(this, stmt); 902 SetStatementPosition(stmt); 903 904 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS); 905 VisitStatements(stmt->statements()); 906 __ bind(nested_statement.break_target()); 907 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS); 908 } 909 910 911 void FullCodeGenerator::VisitExpressionStatement(ExpressionStatement* stmt) { 912 Comment cmnt(masm_, "[ ExpressionStatement"); 913 SetStatementPosition(stmt); 914 VisitForEffect(stmt->expression()); 915 } 916 917 918 void FullCodeGenerator::VisitEmptyStatement(EmptyStatement* stmt) { 919 Comment cmnt(masm_, "[ EmptyStatement"); 920 SetStatementPosition(stmt); 921 } 922 923 924 void FullCodeGenerator::VisitIfStatement(IfStatement* stmt) { 925 Comment cmnt(masm_, "[ IfStatement"); 926 SetStatementPosition(stmt); 927 Label then_part, else_part, done; 928 929 if (stmt->HasElseStatement()) { 930 VisitForControl(stmt->condition(), &then_part, &else_part, &then_part); 931 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS); 932 __ bind(&then_part); 933 Visit(stmt->then_statement()); 934 __ jmp(&done); 935 936 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS); 937 __ bind(&else_part); 938 Visit(stmt->else_statement()); 939 } else { 940 VisitForControl(stmt->condition(), &then_part, &done, &then_part); 941 PrepareForBailoutForId(stmt->ThenId(), NO_REGISTERS); 942 __ bind(&then_part); 943 Visit(stmt->then_statement()); 944 945 PrepareForBailoutForId(stmt->ElseId(), NO_REGISTERS); 946 } 947 __ bind(&done); 948 PrepareForBailoutForId(stmt->id(), NO_REGISTERS); 949 } 950 951 952 void FullCodeGenerator::VisitContinueStatement(ContinueStatement* stmt) { 953 Comment cmnt(masm_, "[ ContinueStatement"); 954 SetStatementPosition(stmt); 955 NestedStatement* current = nesting_stack_; 956 int stack_depth = 0; 957 // When continuing, we clobber the unpredictable value in the accumulator 958 // with one that's safe for GC. If we hit an exit from the try block of 959 // try...finally on our way out, we will unconditionally preserve the 960 // accumulator on the stack. 961 ClearAccumulator(); 962 while (!current->IsContinueTarget(stmt->target())) { 963 stack_depth = current->Exit(stack_depth); 964 current = current->outer(); 965 } 966 __ Drop(stack_depth); 967 968 Iteration* loop = current->AsIteration(); 969 __ jmp(loop->continue_target()); 970 } 971 972 973 void FullCodeGenerator::VisitBreakStatement(BreakStatement* stmt) { 974 Comment cmnt(masm_, "[ BreakStatement"); 975 SetStatementPosition(stmt); 976 NestedStatement* current = nesting_stack_; 977 int stack_depth = 0; 978 // When breaking, we clobber the unpredictable value in the accumulator 979 // with one that's safe for GC. If we hit an exit from the try block of 980 // try...finally on our way out, we will unconditionally preserve the 981 // accumulator on the stack. 982 ClearAccumulator(); 983 while (!current->IsBreakTarget(stmt->target())) { 984 stack_depth = current->Exit(stack_depth); 985 current = current->outer(); 986 } 987 __ Drop(stack_depth); 988 989 Breakable* target = current->AsBreakable(); 990 __ jmp(target->break_target()); 991 } 992 993 994 void FullCodeGenerator::VisitReturnStatement(ReturnStatement* stmt) { 995 Comment cmnt(masm_, "[ ReturnStatement"); 996 SetStatementPosition(stmt); 997 Expression* expr = stmt->expression(); 998 VisitForAccumulatorValue(expr); 999 1000 // Exit all nested statements. 1001 NestedStatement* current = nesting_stack_; 1002 int stack_depth = 0; 1003 while (current != NULL) { 1004 stack_depth = current->Exit(stack_depth); 1005 current = current->outer(); 1006 } 1007 __ Drop(stack_depth); 1008 1009 EmitReturnSequence(); 1010 } 1011 1012 1013 void FullCodeGenerator::VisitWithEnterStatement(WithEnterStatement* stmt) { 1014 Comment cmnt(masm_, "[ WithEnterStatement"); 1015 SetStatementPosition(stmt); 1016 1017 VisitForStackValue(stmt->expression()); 1018 if (stmt->is_catch_block()) { 1019 __ CallRuntime(Runtime::kPushCatchContext, 1); 1020 } else { 1021 __ CallRuntime(Runtime::kPushContext, 1); 1022 } 1023 // Both runtime calls return the new context in both the context and the 1024 // result registers. 1025 1026 // Update local stack frame context field. 1027 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register()); 1028 } 1029 1030 1031 void FullCodeGenerator::VisitWithExitStatement(WithExitStatement* stmt) { 1032 Comment cmnt(masm_, "[ WithExitStatement"); 1033 SetStatementPosition(stmt); 1034 1035 // Pop context. 1036 LoadContextField(context_register(), Context::PREVIOUS_INDEX); 1037 // Update local stack frame context field. 1038 StoreToFrameField(StandardFrameConstants::kContextOffset, context_register()); 1039 } 1040 1041 1042 void FullCodeGenerator::VisitDoWhileStatement(DoWhileStatement* stmt) { 1043 Comment cmnt(masm_, "[ DoWhileStatement"); 1044 SetStatementPosition(stmt); 1045 Label body, stack_check; 1046 1047 Iteration loop_statement(this, stmt); 1048 increment_loop_depth(); 1049 1050 __ bind(&body); 1051 Visit(stmt->body()); 1052 1053 // Record the position of the do while condition and make sure it is 1054 // possible to break on the condition. 1055 __ bind(loop_statement.continue_target()); 1056 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS); 1057 SetExpressionPosition(stmt->cond(), stmt->condition_position()); 1058 VisitForControl(stmt->cond(), 1059 &stack_check, 1060 loop_statement.break_target(), 1061 &stack_check); 1062 1063 // Check stack before looping. 1064 PrepareForBailoutForId(stmt->BackEdgeId(), NO_REGISTERS); 1065 __ bind(&stack_check); 1066 EmitStackCheck(stmt); 1067 __ jmp(&body); 1068 1069 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS); 1070 __ bind(loop_statement.break_target()); 1071 decrement_loop_depth(); 1072 } 1073 1074 1075 void FullCodeGenerator::VisitWhileStatement(WhileStatement* stmt) { 1076 Comment cmnt(masm_, "[ WhileStatement"); 1077 Label test, body; 1078 1079 Iteration loop_statement(this, stmt); 1080 increment_loop_depth(); 1081 1082 // Emit the test at the bottom of the loop. 1083 __ jmp(&test); 1084 1085 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS); 1086 __ bind(&body); 1087 Visit(stmt->body()); 1088 1089 // Emit the statement position here as this is where the while 1090 // statement code starts. 1091 __ bind(loop_statement.continue_target()); 1092 SetStatementPosition(stmt); 1093 1094 // Check stack before looping. 1095 EmitStackCheck(stmt); 1096 1097 __ bind(&test); 1098 VisitForControl(stmt->cond(), 1099 &body, 1100 loop_statement.break_target(), 1101 loop_statement.break_target()); 1102 1103 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS); 1104 __ bind(loop_statement.break_target()); 1105 decrement_loop_depth(); 1106 } 1107 1108 1109 void FullCodeGenerator::VisitForStatement(ForStatement* stmt) { 1110 Comment cmnt(masm_, "[ ForStatement"); 1111 Label test, body; 1112 1113 Iteration loop_statement(this, stmt); 1114 if (stmt->init() != NULL) { 1115 Visit(stmt->init()); 1116 } 1117 1118 increment_loop_depth(); 1119 // Emit the test at the bottom of the loop (even if empty). 1120 __ jmp(&test); 1121 1122 PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS); 1123 __ bind(&body); 1124 Visit(stmt->body()); 1125 1126 PrepareForBailoutForId(stmt->ContinueId(), NO_REGISTERS); 1127 __ bind(loop_statement.continue_target()); 1128 SetStatementPosition(stmt); 1129 if (stmt->next() != NULL) { 1130 Visit(stmt->next()); 1131 } 1132 1133 // Emit the statement position here as this is where the for 1134 // statement code starts. 1135 SetStatementPosition(stmt); 1136 1137 // Check stack before looping. 1138 EmitStackCheck(stmt); 1139 1140 __ bind(&test); 1141 if (stmt->cond() != NULL) { 1142 VisitForControl(stmt->cond(), 1143 &body, 1144 loop_statement.break_target(), 1145 loop_statement.break_target()); 1146 } else { 1147 __ jmp(&body); 1148 } 1149 1150 PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS); 1151 __ bind(loop_statement.break_target()); 1152 decrement_loop_depth(); 1153 } 1154 1155 1156 void FullCodeGenerator::VisitTryCatchStatement(TryCatchStatement* stmt) { 1157 Comment cmnt(masm_, "[ TryCatchStatement"); 1158 SetStatementPosition(stmt); 1159 // The try block adds a handler to the exception handler chain 1160 // before entering, and removes it again when exiting normally. 1161 // If an exception is thrown during execution of the try block, 1162 // control is passed to the handler, which also consumes the handler. 1163 // At this point, the exception is in a register, and store it in 1164 // the temporary local variable (prints as ".catch-var") before 1165 // executing the catch block. The catch block has been rewritten 1166 // to introduce a new scope to bind the catch variable and to remove 1167 // that scope again afterwards. 1168 1169 Label try_handler_setup, catch_entry, done; 1170 __ Call(&try_handler_setup); 1171 // Try handler code, exception in result register. 1172 1173 // Store exception in local .catch variable before executing catch block. 1174 { 1175 // The catch variable is *always* a variable proxy for a local variable. 1176 Variable* catch_var = stmt->catch_var()->AsVariableProxy()->AsVariable(); 1177 ASSERT_NOT_NULL(catch_var); 1178 Slot* variable_slot = catch_var->AsSlot(); 1179 ASSERT_NOT_NULL(variable_slot); 1180 ASSERT_EQ(Slot::LOCAL, variable_slot->type()); 1181 StoreToFrameField(SlotOffset(variable_slot), result_register()); 1182 } 1183 1184 Visit(stmt->catch_block()); 1185 __ jmp(&done); 1186 1187 // Try block code. Sets up the exception handler chain. 1188 __ bind(&try_handler_setup); 1189 { 1190 TryCatch try_block(this, &catch_entry); 1191 __ PushTryHandler(IN_JAVASCRIPT, TRY_CATCH_HANDLER); 1192 Visit(stmt->try_block()); 1193 __ PopTryHandler(); 1194 } 1195 __ bind(&done); 1196 } 1197 1198 1199 void FullCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) { 1200 Comment cmnt(masm_, "[ TryFinallyStatement"); 1201 SetStatementPosition(stmt); 1202 // Try finally is compiled by setting up a try-handler on the stack while 1203 // executing the try body, and removing it again afterwards. 1204 // 1205 // The try-finally construct can enter the finally block in three ways: 1206 // 1. By exiting the try-block normally. This removes the try-handler and 1207 // calls the finally block code before continuing. 1208 // 2. By exiting the try-block with a function-local control flow transfer 1209 // (break/continue/return). The site of the, e.g., break removes the 1210 // try handler and calls the finally block code before continuing 1211 // its outward control transfer. 1212 // 3. by exiting the try-block with a thrown exception. 1213 // This can happen in nested function calls. It traverses the try-handler 1214 // chain and consumes the try-handler entry before jumping to the 1215 // handler code. The handler code then calls the finally-block before 1216 // rethrowing the exception. 1217 // 1218 // The finally block must assume a return address on top of the stack 1219 // (or in the link register on ARM chips) and a value (return value or 1220 // exception) in the result register (rax/eax/r0), both of which must 1221 // be preserved. The return address isn't GC-safe, so it should be 1222 // cooked before GC. 1223 Label finally_entry; 1224 Label try_handler_setup; 1225 1226 // Setup the try-handler chain. Use a call to 1227 // Jump to try-handler setup and try-block code. Use call to put try-handler 1228 // address on stack. 1229 __ Call(&try_handler_setup); 1230 // Try handler code. Return address of call is pushed on handler stack. 1231 { 1232 // This code is only executed during stack-handler traversal when an 1233 // exception is thrown. The execption is in the result register, which 1234 // is retained by the finally block. 1235 // Call the finally block and then rethrow the exception. 1236 __ Call(&finally_entry); 1237 __ push(result_register()); 1238 __ CallRuntime(Runtime::kReThrow, 1); 1239 } 1240 1241 __ bind(&finally_entry); 1242 { 1243 // Finally block implementation. 1244 Finally finally_block(this); 1245 EnterFinallyBlock(); 1246 Visit(stmt->finally_block()); 1247 ExitFinallyBlock(); // Return to the calling code. 1248 } 1249 1250 __ bind(&try_handler_setup); 1251 { 1252 // Setup try handler (stack pointer registers). 1253 TryFinally try_block(this, &finally_entry); 1254 __ PushTryHandler(IN_JAVASCRIPT, TRY_FINALLY_HANDLER); 1255 Visit(stmt->try_block()); 1256 __ PopTryHandler(); 1257 } 1258 // Execute the finally block on the way out. Clobber the unpredictable 1259 // value in the accumulator with one that's safe for GC. The finally 1260 // block will unconditionally preserve the accumulator on the stack. 1261 ClearAccumulator(); 1262 __ Call(&finally_entry); 1263 } 1264 1265 1266 void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) { 1267 #ifdef ENABLE_DEBUGGER_SUPPORT 1268 Comment cmnt(masm_, "[ DebuggerStatement"); 1269 SetStatementPosition(stmt); 1270 1271 __ DebugBreak(); 1272 // Ignore the return value. 1273 #endif 1274 } 1275 1276 1277 void FullCodeGenerator::VisitConditional(Conditional* expr) { 1278 Comment cmnt(masm_, "[ Conditional"); 1279 Label true_case, false_case, done; 1280 VisitForControl(expr->condition(), &true_case, &false_case, &true_case); 1281 1282 PrepareForBailoutForId(expr->ThenId(), NO_REGISTERS); 1283 __ bind(&true_case); 1284 SetExpressionPosition(expr->then_expression(), 1285 expr->then_expression_position()); 1286 if (context()->IsTest()) { 1287 const TestContext* for_test = TestContext::cast(context()); 1288 VisitForControl(expr->then_expression(), 1289 for_test->true_label(), 1290 for_test->false_label(), 1291 NULL); 1292 } else { 1293 context()->HandleExpression(expr->then_expression()); 1294 __ jmp(&done); 1295 } 1296 1297 PrepareForBailoutForId(expr->ElseId(), NO_REGISTERS); 1298 __ bind(&false_case); 1299 if (context()->IsTest()) ForwardBailoutToChild(expr); 1300 SetExpressionPosition(expr->else_expression(), 1301 expr->else_expression_position()); 1302 context()->HandleExpression(expr->else_expression()); 1303 // If control flow falls through Visit, merge it with true case here. 1304 if (!context()->IsTest()) { 1305 __ bind(&done); 1306 } 1307 } 1308 1309 1310 void FullCodeGenerator::VisitLiteral(Literal* expr) { 1311 Comment cmnt(masm_, "[ Literal"); 1312 context()->Plug(expr->handle()); 1313 } 1314 1315 1316 void FullCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) { 1317 Comment cmnt(masm_, "[ FunctionLiteral"); 1318 1319 // Build the function boilerplate and instantiate it. 1320 Handle<SharedFunctionInfo> function_info = 1321 Compiler::BuildFunctionInfo(expr, script()); 1322 if (function_info.is_null()) { 1323 SetStackOverflow(); 1324 return; 1325 } 1326 EmitNewClosure(function_info, expr->pretenure()); 1327 } 1328 1329 1330 void FullCodeGenerator::VisitSharedFunctionInfoLiteral( 1331 SharedFunctionInfoLiteral* expr) { 1332 Comment cmnt(masm_, "[ SharedFunctionInfoLiteral"); 1333 EmitNewClosure(expr->shared_function_info(), false); 1334 } 1335 1336 1337 void FullCodeGenerator::VisitCatchExtensionObject(CatchExtensionObject* expr) { 1338 // Call runtime routine to allocate the catch extension object and 1339 // assign the exception value to the catch variable. 1340 Comment cmnt(masm_, "[ CatchExtensionObject"); 1341 VisitForStackValue(expr->key()); 1342 VisitForStackValue(expr->value()); 1343 // Create catch extension object. 1344 __ CallRuntime(Runtime::kCreateCatchExtensionObject, 2); 1345 context()->Plug(result_register()); 1346 } 1347 1348 1349 void FullCodeGenerator::VisitThrow(Throw* expr) { 1350 Comment cmnt(masm_, "[ Throw"); 1351 VisitForStackValue(expr->exception()); 1352 __ CallRuntime(Runtime::kThrow, 1); 1353 // Never returns here. 1354 } 1355 1356 1357 int FullCodeGenerator::TryFinally::Exit(int stack_depth) { 1358 // The macros used here must preserve the result register. 1359 __ Drop(stack_depth); 1360 __ PopTryHandler(); 1361 __ Call(finally_entry_); 1362 return 0; 1363 } 1364 1365 1366 int FullCodeGenerator::TryCatch::Exit(int stack_depth) { 1367 // The macros used here must preserve the result register. 1368 __ Drop(stack_depth); 1369 __ PopTryHandler(); 1370 return 0; 1371 } 1372 1373 1374 #undef __ 1375 1376 1377 } } // namespace v8::internal 1378