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

Side by Side Diff: src/compiler/common-operator.h

Issue 835663002: [turbofan] Cache common Loop, Merge and Parameter operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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/common-operator.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_COMMON_OPERATOR_H_ 5 #ifndef V8_COMPILER_COMMON_OPERATOR_H_
6 #define V8_COMPILER_COMMON_OPERATOR_H_ 6 #define V8_COMPILER_COMMON_OPERATOR_H_
7 7
8 #include "src/compiler/machine-type.h" 8 #include "src/compiler/machine-type.h"
9 #include "src/unique.h" 9 #include "src/unique.h"
10 10
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 const Operator* Dead(); 162 const Operator* Dead();
163 const Operator* End(); 163 const Operator* End();
164 const Operator* Branch(BranchHint = BranchHint::kNone); 164 const Operator* Branch(BranchHint = BranchHint::kNone);
165 const Operator* IfTrue(); 165 const Operator* IfTrue();
166 const Operator* IfFalse(); 166 const Operator* IfFalse();
167 const Operator* Throw(); 167 const Operator* Throw();
168 const Operator* Terminate(int effects); 168 const Operator* Terminate(int effects);
169 const Operator* Return(); 169 const Operator* Return();
170 170
171 const Operator* Start(int num_formal_parameters); 171 const Operator* Start(int num_formal_parameters);
172 const Operator* Merge(int controls); 172 const Operator* Loop(int control_input_count);
173 const Operator* Loop(int controls); 173 const Operator* Merge(int control_input_count);
174 const Operator* Parameter(int index); 174 const Operator* Parameter(int index);
175 175
176 const Operator* Int32Constant(int32_t); 176 const Operator* Int32Constant(int32_t);
177 const Operator* Int64Constant(int64_t); 177 const Operator* Int64Constant(int64_t);
178 const Operator* Float32Constant(volatile float); 178 const Operator* Float32Constant(volatile float);
179 const Operator* Float64Constant(volatile double); 179 const Operator* Float64Constant(volatile double);
180 const Operator* ExternalConstant(const ExternalReference&); 180 const Operator* ExternalConstant(const ExternalReference&);
181 const Operator* NumberConstant(volatile double); 181 const Operator* NumberConstant(volatile double);
182 const Operator* HeapConstant(const Unique<HeapObject>&); 182 const Operator* HeapConstant(const Unique<HeapObject>&);
183 183
(...skipping 17 matching lines...) Expand all
201 Zone* const zone_; 201 Zone* const zone_;
202 202
203 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); 203 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder);
204 }; 204 };
205 205
206 } // namespace compiler 206 } // namespace compiler
207 } // namespace internal 207 } // namespace internal
208 } // namespace v8 208 } // namespace v8
209 209
210 #endif // V8_COMPILER_COMMON_OPERATOR_H_ 210 #endif // V8_COMPILER_COMMON_OPERATOR_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/common-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698