Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: src/ast.cc

Issue 7622014: Merge r8072 and r8884 to 3.2. (Closed) Base URL: http://v8.googlecode.com/svn/branches/3.2/
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 if (!expression()->IsInlineable()) return false; 547 if (!expression()->IsInlineable()) return false;
548 const int count = arguments()->length(); 548 const int count = arguments()->length();
549 for (int i = 0; i < count; ++i) { 549 for (int i = 0; i < count; ++i) {
550 if (!arguments()->at(i)->IsInlineable()) return false; 550 if (!arguments()->at(i)->IsInlineable()) return false;
551 } 551 }
552 return true; 552 return true;
553 } 553 }
554 554
555 555
556 bool CallRuntime::IsInlineable() const { 556 bool CallRuntime::IsInlineable() const {
557 // Don't try to inline JS runtime calls because we don't (currently) even
558 // optimize them.
559 if (is_jsruntime()) return false;
560 // Don't inline the %_ArgumentsLength or %_Arguments because their
561 // implementation will not work. There is no stack frame to get them
562 // from.
563 if (function()->intrinsic_type == Runtime::INLINE &&
564 (name()->IsEqualTo(CStrVector("_ArgumentsLength")) ||
565 name()->IsEqualTo(CStrVector("_Arguments")))) {
566 return false;
567 }
557 const int count = arguments()->length(); 568 const int count = arguments()->length();
558 for (int i = 0; i < count; ++i) { 569 for (int i = 0; i < count; ++i) {
559 if (!arguments()->at(i)->IsInlineable()) return false; 570 if (!arguments()->at(i)->IsInlineable()) return false;
560 } 571 }
561 return true; 572 return true;
562 } 573 }
563 574
564 575
565 bool UnaryOperation::IsInlineable() const { 576 bool UnaryOperation::IsInlineable() const {
566 return expression()->IsInlineable(); 577 return expression()->IsInlineable();
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
1145 ZoneList<Statement*>* statements, 1156 ZoneList<Statement*>* statements,
1146 int pos) 1157 int pos)
1147 : label_(label), 1158 : label_(label),
1148 statements_(statements), 1159 statements_(statements),
1149 position_(pos), 1160 position_(pos),
1150 compare_type_(NONE), 1161 compare_type_(NONE),
1151 entry_id_(AstNode::GetNextId()) { 1162 entry_id_(AstNode::GetNextId()) {
1152 } 1163 }
1153 1164
1154 } } // namespace v8::internal 1165 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698