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

Side by Side Diff: src/utils.h

Issue 157443002: Add basic support for STL containers allocated in Zones (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback Created 6 years, 10 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.h ('k') | src/zone-allocator.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after
1133 1133
1134 // Every FunctionState starts with this id. 1134 // Every FunctionState starts with this id.
1135 static const int kFirstUsableId = 4; 1135 static const int kFirstUsableId = 4;
1136 1136
1137 // Every compiled stub starts with this id. 1137 // Every compiled stub starts with this id.
1138 static const int kStubEntryId = 5; 1138 static const int kStubEntryId = 5;
1139 1139
1140 int id_; 1140 int id_;
1141 }; 1141 };
1142 1142
1143
1144 template <class C>
1145 class ContainerPointerWrapper {
1146 public:
1147 typedef typename C::iterator iterator;
1148 typedef typename C::reverse_iterator reverse_iterator;
1149 explicit ContainerPointerWrapper(C* container) : container_(container) {}
1150 iterator begin() { return container_->begin(); }
1151 iterator end() { return container_->end(); }
1152 reverse_iterator rbegin() { return container_->rbegin(); }
1153 reverse_iterator rend() { return container_->rend(); }
1154 private:
1155 C* container_;
1156 };
1157
1143 } } // namespace v8::internal 1158 } } // namespace v8::internal
1144 1159
1145 #endif // V8_UTILS_H_ 1160 #endif // V8_UTILS_H_
OLDNEW
« no previous file with comments | « src/list.h ('k') | src/zone-allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698