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

Side by Side Diff: src/virtual-frame.cc

Issue 100253: Stop inlining of list reallocation in virtual frames. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 7 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 | « src/list-inl.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/list-inl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698