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

Side by Side Diff: src/compiler/type-cache.h

Issue 2309823002: [turbofan] put src/types.[h/cc] into src/compiler/types.[h/cc] (Closed)
Patch Set: Updates/comments. Created 4 years, 3 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/simplified-operator.cc ('k') | src/compiler/types.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 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_TYPE_CACHE_H_ 5 #ifndef V8_COMPILER_TYPE_CACHE_H_
6 #define V8_COMPILER_TYPE_CACHE_H_ 6 #define V8_COMPILER_TYPE_CACHE_H_
7 7
8 #include "src/compiler/types.h"
8 #include "src/date.h" 9 #include "src/date.h"
9 #include "src/types.h"
10 10
11 namespace v8 { 11 namespace v8 {
12 namespace internal { 12 namespace internal {
13 namespace compiler { 13 namespace compiler {
14 14
15 class TypeCache final { 15 class TypeCache final {
16 private: 16 private:
17 // This has to be first for the initialization magic to work. 17 // This has to be first for the initialization magic to work.
18 base::AccountingAllocator allocator; 18 base::AccountingAllocator allocator;
19 Zone zone_; 19 Zone zone_;
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 } 148 }
149 149
150 Zone* zone() { return &zone_; } 150 Zone* zone() { return &zone_; }
151 }; 151 };
152 152
153 } // namespace compiler 153 } // namespace compiler
154 } // namespace internal 154 } // namespace internal
155 } // namespace v8 155 } // namespace v8
156 156
157 #endif // V8_COMPILER_TYPE_CACHE_H_ 157 #endif // V8_COMPILER_TYPE_CACHE_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-operator.cc ('k') | src/compiler/types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698