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

Side by Side Diff: src/compiler/simplified-lowering.cc

Issue 2289573002: [turbofan] Remove the unused asm.js types from TypeCache. (Closed)
Patch Set: 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-lowering.h ('k') | src/compiler/simplified-operator-reducer.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/compiler/simplified-lowering.h" 5 #include "src/compiler/simplified-lowering.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "src/address-map.h" 9 #include "src/address-map.h"
10 #include "src/base/bits.h" 10 #include "src/base/bits.h"
11 #include "src/code-factory.h" 11 #include "src/code-factory.h"
12 #include "src/compiler/access-builder.h" 12 #include "src/compiler/access-builder.h"
13 #include "src/compiler/common-operator.h" 13 #include "src/compiler/common-operator.h"
14 #include "src/compiler/diamond.h" 14 #include "src/compiler/diamond.h"
15 #include "src/compiler/linkage.h" 15 #include "src/compiler/linkage.h"
16 #include "src/compiler/node-matchers.h" 16 #include "src/compiler/node-matchers.h"
17 #include "src/compiler/node-properties.h" 17 #include "src/compiler/node-properties.h"
18 #include "src/compiler/operation-typer.h" 18 #include "src/compiler/operation-typer.h"
19 #include "src/compiler/operator-properties.h" 19 #include "src/compiler/operator-properties.h"
20 #include "src/compiler/representation-change.h" 20 #include "src/compiler/representation-change.h"
21 #include "src/compiler/simplified-operator.h" 21 #include "src/compiler/simplified-operator.h"
22 #include "src/compiler/source-position.h" 22 #include "src/compiler/source-position.h"
23 #include "src/compiler/type-cache.h"
23 #include "src/conversions-inl.h" 24 #include "src/conversions-inl.h"
24 #include "src/objects.h" 25 #include "src/objects.h"
25 #include "src/type-cache.h"
26 26
27 namespace v8 { 27 namespace v8 {
28 namespace internal { 28 namespace internal {
29 namespace compiler { 29 namespace compiler {
30 30
31 // Macro for outputting trace information from representation inference. 31 // Macro for outputting trace information from representation inference.
32 #define TRACE(...) \ 32 #define TRACE(...) \
33 do { \ 33 do { \
34 if (FLAG_trace_representation) PrintF(__VA_ARGS__); \ 34 if (FLAG_trace_representation) PrintF(__VA_ARGS__); \
35 } while (false) 35 } while (false)
(...skipping 3293 matching lines...) Expand 10 before | Expand all | Expand 10 after
3329 isolate(), graph()->zone(), callable.descriptor(), 0, flags, 3329 isolate(), graph()->zone(), callable.descriptor(), 0, flags,
3330 Operator::kNoProperties); 3330 Operator::kNoProperties);
3331 to_number_operator_.set(common()->Call(desc)); 3331 to_number_operator_.set(common()->Call(desc));
3332 } 3332 }
3333 return to_number_operator_.get(); 3333 return to_number_operator_.get();
3334 } 3334 }
3335 3335
3336 } // namespace compiler 3336 } // namespace compiler
3337 } // namespace internal 3337 } // namespace internal
3338 } // namespace v8 3338 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.h ('k') | src/compiler/simplified-operator-reducer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698