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

Side by Side Diff: src/compiler/zone-pool.h

Issue 905293002: Remove dependency on v8.h from TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add DEPS file. Created 5 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
« no previous file with comments | « src/compiler/x64/linkage-x64.cc ('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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #ifndef V8_COMPILER_ZONE_POOL_H_ 5 #ifndef V8_COMPILER_ZONE_POOL_H_
6 #define V8_COMPILER_ZONE_POOL_H_ 6 #define V8_COMPILER_ZONE_POOL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
11 11
12 #include "src/v8.h" 12 #include "src/zone.h"
13 13
14 namespace v8 { 14 namespace v8 {
15 namespace internal { 15 namespace internal {
16 namespace compiler { 16 namespace compiler {
17 17
18 class ZonePool FINAL { 18 class ZonePool FINAL {
19 public: 19 public:
20 class Scope FINAL { 20 class Scope FINAL {
21 public: 21 public:
22 explicit Scope(ZonePool* zone_pool) : zone_pool_(zone_pool), zone_(NULL) {} 22 explicit Scope(ZonePool* zone_pool) : zone_pool_(zone_pool), zone_(NULL) {}
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 size_t total_deleted_bytes_; 83 size_t total_deleted_bytes_;
84 84
85 DISALLOW_COPY_AND_ASSIGN(ZonePool); 85 DISALLOW_COPY_AND_ASSIGN(ZonePool);
86 }; 86 };
87 87
88 } // namespace compiler 88 } // namespace compiler
89 } // namespace internal 89 } // namespace internal
90 } // namespace v8 90 } // namespace v8
91 91
92 #endif 92 #endif
OLDNEW
« no previous file with comments | « src/compiler/x64/linkage-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698