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

Side by Side Diff: src/compiler/js-typed-lowering.cc

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/js-builtin-reducer.cc ('k') | src/compiler/node.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 #include "src/compiler/js-typed-lowering.h" 5 #include "src/compiler/js-typed-lowering.h"
6 6
7 #include "src/builtins/builtins-utils.h" 7 #include "src/builtins/builtins-utils.h"
8 #include "src/code-factory.h" 8 #include "src/code-factory.h"
9 #include "src/compilation-dependencies.h" 9 #include "src/compilation-dependencies.h"
10 #include "src/compiler/access-builder.h" 10 #include "src/compiler/access-builder.h"
11 #include "src/compiler/js-graph.h" 11 #include "src/compiler/js-graph.h"
12 #include "src/compiler/linkage.h" 12 #include "src/compiler/linkage.h"
13 #include "src/compiler/node-matchers.h" 13 #include "src/compiler/node-matchers.h"
14 #include "src/compiler/node-properties.h" 14 #include "src/compiler/node-properties.h"
15 #include "src/compiler/operator-properties.h" 15 #include "src/compiler/operator-properties.h"
16 #include "src/compiler/type-cache.h" 16 #include "src/compiler/type-cache.h"
17 #include "src/types.h" 17 #include "src/compiler/types.h"
18 18
19 namespace v8 { 19 namespace v8 {
20 namespace internal { 20 namespace internal {
21 namespace compiler { 21 namespace compiler {
22 22
23 // A helper class to simplify the process of reducing a single binop node with a 23 // A helper class to simplify the process of reducing a single binop node with a
24 // JSOperator. This class manages the rewriting of context, control, and effect 24 // JSOperator. This class manages the rewriting of context, control, and effect
25 // dependencies during lowering of a binop and contains numerous helper 25 // dependencies during lowering of a binop and contains numerous helper
26 // functions for matching the types of inputs to an operation. 26 // functions for matching the types of inputs to an operation.
27 class JSBinopReduction final { 27 class JSBinopReduction final {
(...skipping 1980 matching lines...) Expand 10 before | Expand all | Expand 10 after
2008 } 2008 }
2009 2009
2010 2010
2011 CompilationDependencies* JSTypedLowering::dependencies() const { 2011 CompilationDependencies* JSTypedLowering::dependencies() const {
2012 return dependencies_; 2012 return dependencies_;
2013 } 2013 }
2014 2014
2015 } // namespace compiler 2015 } // namespace compiler
2016 } // namespace internal 2016 } // namespace internal
2017 } // namespace v8 2017 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698