OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 if (elements_.length() != other->elements_.length()) return false; | 500 if (elements_.length() != other->elements_.length()) return false; |
501 #endif | 501 #endif |
502 if (stack_pointer_ != other->stack_pointer_) return false; | 502 if (stack_pointer_ != other->stack_pointer_) return false; |
503 for (int i = 0; i < elements_.length(); i++) { | 503 for (int i = 0; i < elements_.length(); i++) { |
504 if (!elements_[i].Equals(other->elements_[i])) return false; | 504 if (!elements_[i].Equals(other->elements_[i])) return false; |
505 } | 505 } |
506 | 506 |
507 return true; | 507 return true; |
508 } | 508 } |
509 | 509 |
| 510 |
| 511 // Specialization of List::ResizeAdd to non-inlined version for FrameElements. |
| 512 // The function ResizeAdd becomes a real function, whose implementation is the |
| 513 // inlined ResizeAddInternal. |
| 514 template <> |
| 515 void List<FrameElement, |
| 516 FreeStoreAllocationPolicy>::ResizeAdd(const FrameElement& element) { |
| 517 ResizeAddInternal(element); |
| 518 } |
| 519 |
510 } } // namespace v8::internal | 520 } } // namespace v8::internal |
OLD | NEW |