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

Side by Side Diff: src/compiler/js-native-context-specialization.h

Issue 2511223003: [turbofan] Properly optimize instanceof (even in the presence of @@hasInstance). (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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_NATIVE_CONTEXT_SPECIALIZATION_H_ 5 #ifndef V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_
6 #define V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ 6 #define V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_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/deoptimize-reason.h" 10 #include "src/deoptimize-reason.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 typedef base::Flags<Flag> Flags; 46 typedef base::Flags<Flag> Flags;
47 47
48 JSNativeContextSpecialization(Editor* editor, JSGraph* jsgraph, Flags flags, 48 JSNativeContextSpecialization(Editor* editor, JSGraph* jsgraph, Flags flags,
49 Handle<Context> native_context, 49 Handle<Context> native_context,
50 CompilationDependencies* dependencies, 50 CompilationDependencies* dependencies,
51 Zone* zone); 51 Zone* zone);
52 52
53 Reduction Reduce(Node* node) final; 53 Reduction Reduce(Node* node) final;
54 54
55 private: 55 private:
56 Reduction ReduceJSInstanceOf(Node* node);
56 Reduction ReduceJSLoadContext(Node* node); 57 Reduction ReduceJSLoadContext(Node* node);
57 Reduction ReduceJSLoadNamed(Node* node); 58 Reduction ReduceJSLoadNamed(Node* node);
58 Reduction ReduceJSStoreNamed(Node* node); 59 Reduction ReduceJSStoreNamed(Node* node);
59 Reduction ReduceJSLoadProperty(Node* node); 60 Reduction ReduceJSLoadProperty(Node* node);
60 Reduction ReduceJSStoreProperty(Node* node); 61 Reduction ReduceJSStoreProperty(Node* node);
61 62
62 Reduction ReduceElementAccess(Node* node, Node* index, Node* value, 63 Reduction ReduceElementAccess(Node* node, Node* index, Node* value,
63 MapHandleList const& receiver_maps, 64 MapHandleList const& receiver_maps,
64 AccessMode access_mode, 65 AccessMode access_mode,
65 LanguageMode language_mode, 66 LanguageMode language_mode,
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 DISALLOW_COPY_AND_ASSIGN(JSNativeContextSpecialization); 176 DISALLOW_COPY_AND_ASSIGN(JSNativeContextSpecialization);
176 }; 177 };
177 178
178 DEFINE_OPERATORS_FOR_FLAGS(JSNativeContextSpecialization::Flags) 179 DEFINE_OPERATORS_FOR_FLAGS(JSNativeContextSpecialization::Flags)
179 180
180 } // namespace compiler 181 } // namespace compiler
181 } // namespace internal 182 } // namespace internal
182 } // namespace v8 183 } // namespace v8
183 184
184 #endif // V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ 185 #endif // V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698