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

Side by Side Diff: src/zone/zone-chunk-list.h

Issue 2618553004: [compiler] Collect eager inner functions for compilation during renumbering. (Closed)
Patch Set: Address comments and remove field from ParseInfo Created 3 years, 11 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
« no previous file with comments | « src/zone/zone.cc ('k') | test/unittests/zone/zone-chunk-list-unittest.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stdlib.h> 5 #include <stdlib.h>
6 6
7 #include "src/globals.h" 7 #include "src/globals.h"
8 #include "src/utils.h"
8 #include "src/zone/zone.h" 9 #include "src/zone/zone.h"
9 10
10 #ifndef V8_SRC_ZONE_ZONE_CHUNK_LIST_H_ 11 #ifndef V8_SRC_ZONE_ZONE_CHUNK_LIST_H_
11 #define V8_SRC_ZONE_ZONE_CHUNK_LIST_H_ 12 #define V8_SRC_ZONE_ZONE_CHUNK_LIST_H_
12 13
13 namespace v8 { 14 namespace v8 {
14 namespace internal { 15 namespace internal {
15 16
16 template <typename T> 17 template <typename T>
17 class ZoneChunkListIterator; 18 class ZoneChunkListIterator;
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 444
444 template <typename T> 445 template <typename T>
445 ReverseZoneChunkListIterator<const T> ZoneChunkList<T>::rend() const { 446 ReverseZoneChunkListIterator<const T> ZoneChunkList<T>::rend() const {
446 return ReverseZoneChunkListIterator<const T>::End(this); 447 return ReverseZoneChunkListIterator<const T>::End(this);
447 } 448 }
448 449
449 } // namespace internal 450 } // namespace internal
450 } // namespace v8 451 } // namespace v8
451 452
452 #endif // V8_SRC_ZONE_ZONE_CHUNK_LIST_H_ 453 #endif // V8_SRC_ZONE_ZONE_CHUNK_LIST_H_
OLDNEW
« no previous file with comments | « src/zone/zone.cc ('k') | test/unittests/zone/zone-chunk-list-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698