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

Side by Side Diff: src/compiler/js-builtin-reducer.h

Issue 2916063002: [turbofan] Optimize Function.prototype.bind for the common case. (Closed)
Patch Set: Address feedback. Created 3 years, 6 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/access-builder.cc ('k') | src/compiler/js-builtin-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 #ifndef V8_COMPILER_JS_BUILTIN_REDUCER_H_ 5 #ifndef V8_COMPILER_JS_BUILTIN_REDUCER_H_
6 #define V8_COMPILER_JS_BUILTIN_REDUCER_H_ 6 #define V8_COMPILER_JS_BUILTIN_REDUCER_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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 Reduction ReduceFastArrayIteratorNext(Handle<Map> iterator_map, Node* node, 54 Reduction ReduceFastArrayIteratorNext(Handle<Map> iterator_map, Node* node,
55 IterationKind kind); 55 IterationKind kind);
56 Reduction ReduceTypedArrayIteratorNext(Handle<Map> iterator_map, Node* node, 56 Reduction ReduceTypedArrayIteratorNext(Handle<Map> iterator_map, Node* node,
57 IterationKind kind); 57 IterationKind kind);
58 Reduction ReduceArrayIsArray(Node* node); 58 Reduction ReduceArrayIsArray(Node* node);
59 Reduction ReduceArrayPop(Node* node); 59 Reduction ReduceArrayPop(Node* node);
60 Reduction ReduceArrayPush(Node* node); 60 Reduction ReduceArrayPush(Node* node);
61 Reduction ReduceArrayShift(Node* node); 61 Reduction ReduceArrayShift(Node* node);
62 Reduction ReduceDateNow(Node* node); 62 Reduction ReduceDateNow(Node* node);
63 Reduction ReduceDateGetTime(Node* node); 63 Reduction ReduceDateGetTime(Node* node);
64 Reduction ReduceFunctionBind(Node* node);
64 Reduction ReduceGlobalIsFinite(Node* node); 65 Reduction ReduceGlobalIsFinite(Node* node);
65 Reduction ReduceGlobalIsNaN(Node* node); 66 Reduction ReduceGlobalIsNaN(Node* node);
66 Reduction ReduceMathAbs(Node* node); 67 Reduction ReduceMathAbs(Node* node);
67 Reduction ReduceMathAcos(Node* node); 68 Reduction ReduceMathAcos(Node* node);
68 Reduction ReduceMathAcosh(Node* node); 69 Reduction ReduceMathAcosh(Node* node);
69 Reduction ReduceMathAsin(Node* node); 70 Reduction ReduceMathAsin(Node* node);
70 Reduction ReduceMathAsinh(Node* node); 71 Reduction ReduceMathAsinh(Node* node);
71 Reduction ReduceMathAtan(Node* node); 72 Reduction ReduceMathAtan(Node* node);
72 Reduction ReduceMathAtanh(Node* node); 73 Reduction ReduceMathAtanh(Node* node);
73 Reduction ReduceMathAtan2(Node* node); 74 Reduction ReduceMathAtan2(Node* node);
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 TypeCache const& type_cache_; 135 TypeCache const& type_cache_;
135 }; 136 };
136 137
137 DEFINE_OPERATORS_FOR_FLAGS(JSBuiltinReducer::Flags) 138 DEFINE_OPERATORS_FOR_FLAGS(JSBuiltinReducer::Flags)
138 139
139 } // namespace compiler 140 } // namespace compiler
140 } // namespace internal 141 } // namespace internal
141 } // namespace v8 142 } // namespace v8
142 143
143 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ 144 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_
OLDNEW
« no previous file with comments | « src/compiler/access-builder.cc ('k') | src/compiler/js-builtin-reducer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698