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

Unified Diff: src/compiler/operation-typer.h

Issue 2139203002: [turbofan] Allow non-speculative operators to consume feedback types. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comments. Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/compiler/operation-typer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/operation-typer.h
diff --git a/src/compiler/operation-typer.h b/src/compiler/operation-typer.h
index aa669acdec49e30645622ceb7610549ba4827609..b37360a8c4e987d891affe32dae11e3332baab62 100644
--- a/src/compiler/operation-typer.h
+++ b/src/compiler/operation-typer.h
@@ -32,11 +32,13 @@ class OperationTyper {
Type* ToNumber(Type* type);
Type* WeakenRange(Type* current_range, Type* previous_range);
- Type* NumericAdd(Type* lhs, Type* rhs);
- Type* NumericSubtract(Type* lhs, Type* rhs);
- Type* NumericMultiply(Type* lhs, Type* rhs);
- Type* NumericDivide(Type* lhs, Type* rhs);
- Type* NumericModulus(Type* lhs, Type* rhs);
+ Type* NumberAdd(Type* lhs, Type* rhs);
+ Type* NumberSubtract(Type* lhs, Type* rhs);
+ Type* NumberMultiply(Type* lhs, Type* rhs);
+ Type* NumberDivide(Type* lhs, Type* rhs);
+ Type* NumberModulus(Type* lhs, Type* rhs);
+
+ Type* NumberAbs(Type* type);
enum ComparisonOutcomeFlags {
kComparisonTrue = 1,
« no previous file with comments | « no previous file | src/compiler/operation-typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698