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

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

Issue 2146293003: [builtins] implement Array.prototype.includes in TurboFan (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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
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/flags.h" 8 #include "src/base/flags.h"
9 #include "src/compiler/graph-reducer.h" 9 #include "src/compiler/graph-reducer.h"
10 #include "src/compiler/opcodes.h" 10 #include "src/compiler/opcodes.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 Reduction ReduceJSComparison(Node* node); 55 Reduction ReduceJSComparison(Node* node);
56 Reduction ReduceJSLoadNamed(Node* node); 56 Reduction ReduceJSLoadNamed(Node* node);
57 Reduction ReduceJSLoadProperty(Node* node); 57 Reduction ReduceJSLoadProperty(Node* node);
58 Reduction ReduceJSStoreProperty(Node* node); 58 Reduction ReduceJSStoreProperty(Node* node);
59 Reduction ReduceJSInstanceOf(Node* node); 59 Reduction ReduceJSInstanceOf(Node* node);
60 Reduction ReduceJSLoadContext(Node* node); 60 Reduction ReduceJSLoadContext(Node* node);
61 Reduction ReduceJSStoreContext(Node* node); 61 Reduction ReduceJSStoreContext(Node* node);
62 Reduction ReduceJSEqualTypeOf(Node* node, bool invert); 62 Reduction ReduceJSEqualTypeOf(Node* node, bool invert);
63 Reduction ReduceJSEqual(Node* node, bool invert); 63 Reduction ReduceJSEqual(Node* node, bool invert);
64 Reduction ReduceJSStrictEqual(Node* node, bool invert); 64 Reduction ReduceJSStrictEqual(Node* node, bool invert);
65 Reduction ReduceJSSameValueZero(Node* node);
65 Reduction ReduceJSToBoolean(Node* node); 66 Reduction ReduceJSToBoolean(Node* node);
66 Reduction ReduceJSToInteger(Node* node); 67 Reduction ReduceJSToInteger(Node* node);
67 Reduction ReduceJSToLength(Node* node); 68 Reduction ReduceJSToLength(Node* node);
68 Reduction ReduceJSToNumberInput(Node* input); 69 Reduction ReduceJSToNumberInput(Node* input);
69 Reduction ReduceJSToNumber(Node* node); 70 Reduction ReduceJSToNumber(Node* node);
70 Reduction ReduceJSToStringInput(Node* input); 71 Reduction ReduceJSToStringInput(Node* input);
71 Reduction ReduceJSToString(Node* node); 72 Reduction ReduceJSToString(Node* node);
72 Reduction ReduceJSToObject(Node* node); 73 Reduction ReduceJSToObject(Node* node);
73 Reduction ReduceJSConvertReceiver(Node* node); 74 Reduction ReduceJSConvertReceiver(Node* node);
74 Reduction ReduceJSCallConstruct(Node* node); 75 Reduction ReduceJSCallConstruct(Node* node);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 TypeCache const& type_cache_; 114 TypeCache const& type_cache_;
114 }; 115 };
115 116
116 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) 117 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags)
117 118
118 } // namespace compiler 119 } // namespace compiler
119 } // namespace internal 120 } // namespace internal
120 } // namespace v8 121 } // namespace v8
121 122
122 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 123 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698