| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |