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

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

Issue 2494073002: [turbofan] Optimize ToName conversion. (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | src/compiler/js-typed-lowering.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 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_ 5 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_
6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ 6 #define V8_COMPILER_JS_TYPED_LOWERING_H_
7 7
8 #include "src/base/compiler-specific.h" 8 #include "src/base/compiler-specific.h"
9 #include "src/base/flags.h" 9 #include "src/base/flags.h"
10 #include "src/compiler/graph-reducer.h" 10 #include "src/compiler/graph-reducer.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 Reduction ReduceJSLoadContext(Node* node); 56 Reduction ReduceJSLoadContext(Node* node);
57 Reduction ReduceJSStoreContext(Node* node); 57 Reduction ReduceJSStoreContext(Node* node);
58 Reduction ReduceJSLoadModule(Node* node); 58 Reduction ReduceJSLoadModule(Node* node);
59 Reduction ReduceJSStoreModule(Node* node); 59 Reduction ReduceJSStoreModule(Node* node);
60 Reduction ReduceJSEqualTypeOf(Node* node, bool invert); 60 Reduction ReduceJSEqualTypeOf(Node* node, bool invert);
61 Reduction ReduceJSEqual(Node* node, bool invert); 61 Reduction ReduceJSEqual(Node* node, bool invert);
62 Reduction ReduceJSStrictEqual(Node* node, bool invert); 62 Reduction ReduceJSStrictEqual(Node* node, bool invert);
63 Reduction ReduceJSToBoolean(Node* node); 63 Reduction ReduceJSToBoolean(Node* node);
64 Reduction ReduceJSToInteger(Node* node); 64 Reduction ReduceJSToInteger(Node* node);
65 Reduction ReduceJSToLength(Node* node); 65 Reduction ReduceJSToLength(Node* node);
66 Reduction ReduceJSToName(Node* node);
66 Reduction ReduceJSToNumberInput(Node* input); 67 Reduction ReduceJSToNumberInput(Node* input);
67 Reduction ReduceJSToNumber(Node* node); 68 Reduction ReduceJSToNumber(Node* node);
68 Reduction ReduceJSToStringInput(Node* input); 69 Reduction ReduceJSToStringInput(Node* input);
69 Reduction ReduceJSToString(Node* node); 70 Reduction ReduceJSToString(Node* node);
70 Reduction ReduceJSToObject(Node* node); 71 Reduction ReduceJSToObject(Node* node);
71 Reduction ReduceJSConvertReceiver(Node* node); 72 Reduction ReduceJSConvertReceiver(Node* node);
72 Reduction ReduceJSCallConstruct(Node* node); 73 Reduction ReduceJSCallConstruct(Node* node);
73 Reduction ReduceJSCallFunction(Node* node); 74 Reduction ReduceJSCallFunction(Node* node);
74 Reduction ReduceJSForInNext(Node* node); 75 Reduction ReduceJSForInNext(Node* node);
75 Reduction ReduceJSGeneratorStore(Node* node); 76 Reduction ReduceJSGeneratorStore(Node* node);
(...skipping 23 matching lines...) Expand all
99 TypeCache const& type_cache_; 100 TypeCache const& type_cache_;
100 }; 101 };
101 102
102 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) 103 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags)
103 104
104 } // namespace compiler 105 } // namespace compiler
105 } // namespace internal 106 } // namespace internal
106 } // namespace v8 107 } // namespace v8
107 108
108 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 109 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698