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

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

Issue 2074903002: [turbofan] Numeric type feedback for mul, div and mod. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 6 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 | « src/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-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 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_SIMPLIFIED_OPERATOR_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/compiler/type-hints.h" 10 #include "src/compiler/type-hints.h"
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 const Operator* NumberRound(); 192 const Operator* NumberRound();
193 const Operator* NumberSqrt(); 193 const Operator* NumberSqrt();
194 const Operator* NumberTrunc(); 194 const Operator* NumberTrunc();
195 const Operator* NumberToInt32(); 195 const Operator* NumberToInt32();
196 const Operator* NumberToUint32(); 196 const Operator* NumberToUint32();
197 197
198 const Operator* NumberSilenceNaN(); 198 const Operator* NumberSilenceNaN();
199 199
200 const Operator* SpeculativeNumberAdd(BinaryOperationHints::Hint hint); 200 const Operator* SpeculativeNumberAdd(BinaryOperationHints::Hint hint);
201 const Operator* SpeculativeNumberSubtract(BinaryOperationHints::Hint hint); 201 const Operator* SpeculativeNumberSubtract(BinaryOperationHints::Hint hint);
202 const Operator* SpeculativeNumberMultiply(BinaryOperationHints::Hint hint);
203 const Operator* SpeculativeNumberDivide(BinaryOperationHints::Hint hint);
204 const Operator* SpeculativeNumberModulus(BinaryOperationHints::Hint hint);
202 205
203 const Operator* SpeculativeNumberLessThan(CompareOperationHints::Hint hint); 206 const Operator* SpeculativeNumberLessThan(CompareOperationHints::Hint hint);
204 const Operator* SpeculativeNumberLessThanOrEqual( 207 const Operator* SpeculativeNumberLessThanOrEqual(
205 CompareOperationHints::Hint hint); 208 CompareOperationHints::Hint hint);
206 const Operator* SpeculativeNumberEqual(CompareOperationHints::Hint hint); 209 const Operator* SpeculativeNumberEqual(CompareOperationHints::Hint hint);
207 210
208 const Operator* ReferenceEqual(Type* type); 211 const Operator* ReferenceEqual(Type* type);
209 212
210 const Operator* StringEqual(); 213 const Operator* StringEqual();
211 const Operator* StringLessThan(); 214 const Operator* StringLessThan();
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 Zone* const zone_; 277 Zone* const zone_;
275 278
276 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 279 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
277 }; 280 };
278 281
279 } // namespace compiler 282 } // namespace compiler
280 } // namespace internal 283 } // namespace internal
281 } // namespace v8 284 } // namespace v8
282 285
283 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 286 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698