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

Side by Side Diff: src/compiler/typer.cc

Issue 883613006: [turbofan] Cleanup the NodeProperties. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/simplified-operator-reducer.cc ('k') | src/compiler/verifier.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 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/bootstrapper.h" 5 #include "src/bootstrapper.h"
6 #include "src/compiler/graph-inl.h" 6 #include "src/compiler/graph-inl.h"
7 #include "src/compiler/graph-reducer.h" 7 #include "src/compiler/graph-reducer.h"
8 #include "src/compiler/js-operator.h" 8 #include "src/compiler/js-operator.h"
9 #include "src/compiler/node.h" 9 #include "src/compiler/node.h"
10 #include "src/compiler/node-properties-inl.h"
11 #include "src/compiler/node-properties.h" 10 #include "src/compiler/node-properties.h"
12 #include "src/compiler/simplified-operator.h" 11 #include "src/compiler/simplified-operator.h"
13 #include "src/compiler/typer.h" 12 #include "src/compiler/typer.h"
14 13
15 namespace v8 { 14 namespace v8 {
16 namespace internal { 15 namespace internal {
17 namespace compiler { 16 namespace compiler {
18 17
19 #define NATIVE_TYPES(V) \ 18 #define NATIVE_TYPES(V) \
20 V(Int8) \ 19 V(Int8) \
(...skipping 2116 matching lines...) Expand 10 before | Expand all | Expand 10 after
2137 TYPED_ARRAYS(TYPED_ARRAY_CASE) 2136 TYPED_ARRAYS(TYPED_ARRAY_CASE)
2138 #undef TYPED_ARRAY_CASE 2137 #undef TYPED_ARRAY_CASE
2139 } 2138 }
2140 } 2139 }
2141 return Type::Constant(value, zone()); 2140 return Type::Constant(value, zone());
2142 } 2141 }
2143 2142
2144 } // namespace compiler 2143 } // namespace compiler
2145 } // namespace internal 2144 } // namespace internal
2146 } // namespace v8 2145 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/simplified-operator-reducer.cc ('k') | src/compiler/verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698