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

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

Issue 2890023004: [turbofan] Avoid allocating rest parameters for spread calls. (Closed)
Patch Set: Created 3 years, 7 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-operator.cc ('k') | 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 Reduction ReduceJSToBoolean(Node* node); 62 Reduction ReduceJSToBoolean(Node* node);
63 Reduction ReduceJSToInteger(Node* node); 63 Reduction ReduceJSToInteger(Node* node);
64 Reduction ReduceJSToLength(Node* node); 64 Reduction ReduceJSToLength(Node* node);
65 Reduction ReduceJSToName(Node* node); 65 Reduction ReduceJSToName(Node* node);
66 Reduction ReduceJSToNumberInput(Node* input); 66 Reduction ReduceJSToNumberInput(Node* input);
67 Reduction ReduceJSToNumber(Node* node); 67 Reduction ReduceJSToNumber(Node* node);
68 Reduction ReduceJSToStringInput(Node* input); 68 Reduction ReduceJSToStringInput(Node* input);
69 Reduction ReduceJSToString(Node* node); 69 Reduction ReduceJSToString(Node* node);
70 Reduction ReduceJSToObject(Node* node); 70 Reduction ReduceJSToObject(Node* node);
71 Reduction ReduceJSConvertReceiver(Node* node); 71 Reduction ReduceJSConvertReceiver(Node* node);
72 Reduction ReduceJSConstructForwardVarargs(Node* node);
72 Reduction ReduceJSConstruct(Node* node); 73 Reduction ReduceJSConstruct(Node* node);
73 Reduction ReduceJSCallForwardVarargs(Node* node); 74 Reduction ReduceJSCallForwardVarargs(Node* node);
74 Reduction ReduceJSCall(Node* node); 75 Reduction ReduceJSCall(Node* node);
75 Reduction ReduceJSForInNext(Node* node); 76 Reduction ReduceJSForInNext(Node* node);
76 Reduction ReduceJSLoadMessage(Node* node); 77 Reduction ReduceJSLoadMessage(Node* node);
77 Reduction ReduceJSStoreMessage(Node* node); 78 Reduction ReduceJSStoreMessage(Node* node);
78 Reduction ReduceJSGeneratorStore(Node* node); 79 Reduction ReduceJSGeneratorStore(Node* node);
79 Reduction ReduceJSGeneratorRestoreContinuation(Node* node); 80 Reduction ReduceJSGeneratorRestoreContinuation(Node* node);
80 Reduction ReduceJSGeneratorRestoreRegister(Node* node); 81 Reduction ReduceJSGeneratorRestoreRegister(Node* node);
81 Reduction ReduceJSTypeOf(Node* node); 82 Reduction ReduceJSTypeOf(Node* node);
(...skipping 27 matching lines...) Expand all
109 TypeCache const& type_cache_; 110 TypeCache const& type_cache_;
110 }; 111 };
111 112
112 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) 113 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags)
113 114
114 } // namespace compiler 115 } // namespace compiler
115 } // namespace internal 116 } // namespace internal
116 } // namespace v8 117 } // namespace v8
117 118
118 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 119 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/js-operator.cc ('k') | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698