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

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

Issue 2197163002: [turbofan] Remove dead JSTypedLowering::EmptyFrameState. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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/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/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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 Reduction ReduceCheckString(Node* node); 82 Reduction ReduceCheckString(Node* node);
83 Reduction ReduceLoadField(Node* node); 83 Reduction ReduceLoadField(Node* node);
84 Reduction ReduceNumberRoundop(Node* node); 84 Reduction ReduceNumberRoundop(Node* node);
85 Reduction ReduceSelect(Node* node); 85 Reduction ReduceSelect(Node* node);
86 Reduction ReduceJSSubtract(Node* node); 86 Reduction ReduceJSSubtract(Node* node);
87 Reduction ReduceJSDivide(Node* node); 87 Reduction ReduceJSDivide(Node* node);
88 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); 88 Reduction ReduceInt32Binop(Node* node, const Operator* intOp);
89 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, 89 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness,
90 const Operator* shift_op); 90 const Operator* shift_op);
91 91
92 Node* EmptyFrameState();
93
94 Factory* factory() const; 92 Factory* factory() const;
95 Graph* graph() const; 93 Graph* graph() const;
96 JSGraph* jsgraph() const { return jsgraph_; } 94 JSGraph* jsgraph() const { return jsgraph_; }
97 Isolate* isolate() const; 95 Isolate* isolate() const;
98 JSOperatorBuilder* javascript() const; 96 JSOperatorBuilder* javascript() const;
99 CommonOperatorBuilder* common() const; 97 CommonOperatorBuilder* common() const;
100 SimplifiedOperatorBuilder* simplified() const; 98 SimplifiedOperatorBuilder* simplified() const;
101 MachineOperatorBuilder* machine() const; 99 MachineOperatorBuilder* machine() const;
102 CompilationDependencies* dependencies() const; 100 CompilationDependencies* dependencies() const;
103 Flags flags() const { return flags_; } 101 Flags flags() const { return flags_; }
104 102
105 CompilationDependencies* dependencies_; 103 CompilationDependencies* dependencies_;
106 Flags flags_; 104 Flags flags_;
107 JSGraph* jsgraph_; 105 JSGraph* jsgraph_;
108 Type* shifted_int32_ranges_[4]; 106 Type* shifted_int32_ranges_[4];
109 Type* const true_type_; 107 Type* const true_type_;
110 Type* const false_type_; 108 Type* const false_type_;
111 Type* const the_hole_type_; 109 Type* const the_hole_type_;
112 TypeCache const& type_cache_; 110 TypeCache const& type_cache_;
113 }; 111 };
114 112
115 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) 113 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags)
116 114
117 } // namespace compiler 115 } // namespace compiler
118 } // namespace internal 116 } // namespace internal
119 } // namespace v8 117 } // namespace v8
120 118
121 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 119 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698