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

Side by Side Diff: src/compiler/typed-optimization.h

Issue 2666543002: [turbofan] Optimize ReferenceEqual based on input types. (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | src/compiler/typed-optimization.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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_TYPED_OPTIMIZATION_H_ 5 #ifndef V8_COMPILER_TYPED_OPTIMIZATION_H_
6 #define V8_COMPILER_TYPED_OPTIMIZATION_H_ 6 #define V8_COMPILER_TYPED_OPTIMIZATION_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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 private: 44 private:
45 Reduction ReduceCheckHeapObject(Node* node); 45 Reduction ReduceCheckHeapObject(Node* node);
46 Reduction ReduceCheckMaps(Node* node); 46 Reduction ReduceCheckMaps(Node* node);
47 Reduction ReduceCheckString(Node* node); 47 Reduction ReduceCheckString(Node* node);
48 Reduction ReduceLoadField(Node* node); 48 Reduction ReduceLoadField(Node* node);
49 Reduction ReduceNumberFloor(Node* node); 49 Reduction ReduceNumberFloor(Node* node);
50 Reduction ReduceNumberRoundop(Node* node); 50 Reduction ReduceNumberRoundop(Node* node);
51 Reduction ReduceNumberToUint8Clamped(Node* node); 51 Reduction ReduceNumberToUint8Clamped(Node* node);
52 Reduction ReducePhi(Node* node); 52 Reduction ReducePhi(Node* node);
53 Reduction ReduceReferenceEqual(Node* node);
53 Reduction ReduceSelect(Node* node); 54 Reduction ReduceSelect(Node* node);
54 55
55 CompilationDependencies* dependencies() const { return dependencies_; } 56 CompilationDependencies* dependencies() const { return dependencies_; }
56 Factory* factory() const; 57 Factory* factory() const;
57 Flags flags() const { return flags_; } 58 Flags flags() const { return flags_; }
58 Graph* graph() const; 59 Graph* graph() const;
59 Isolate* isolate() const; 60 Isolate* isolate() const;
60 JSGraph* jsgraph() const { return jsgraph_; } 61 JSGraph* jsgraph() const { return jsgraph_; }
61 SimplifiedOperatorBuilder* simplified() const; 62 SimplifiedOperatorBuilder* simplified() const;
62 63
63 CompilationDependencies* const dependencies_; 64 CompilationDependencies* const dependencies_;
64 Flags const flags_; 65 Flags const flags_;
65 JSGraph* const jsgraph_; 66 JSGraph* const jsgraph_;
66 Type* const true_type_; 67 Type* const true_type_;
67 Type* const false_type_; 68 Type* const false_type_;
68 TypeCache const& type_cache_; 69 TypeCache const& type_cache_;
69 70
70 DISALLOW_COPY_AND_ASSIGN(TypedOptimization); 71 DISALLOW_COPY_AND_ASSIGN(TypedOptimization);
71 }; 72 };
72 73
73 DEFINE_OPERATORS_FOR_FLAGS(TypedOptimization::Flags) 74 DEFINE_OPERATORS_FOR_FLAGS(TypedOptimization::Flags)
74 75
75 } // namespace compiler 76 } // namespace compiler
76 } // namespace internal 77 } // namespace internal
77 } // namespace v8 78 } // namespace v8
78 79
79 #endif // V8_COMPILER_TYPED_OPTIMIZATION_H_ 80 #endif // V8_COMPILER_TYPED_OPTIMIZATION_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/typed-optimization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698