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

Unified Diff: src/compiler/opcodes.h

Issue 1921563002: [turbofan] Initial version of number type feedback. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add tests for the checks and fix check insertion Created 4 years, 7 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
Index: src/compiler/opcodes.h
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h
index fa6c518adb6265155a2d8db21949f0aa9ce716a8..33c8c863668b23d8e84e78f904edbed8d44760af 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -177,6 +177,8 @@
SIMPLIFIED_COMPARE_BINOP_LIST(V) \
V(BooleanNot) \
V(BooleanToNumber) \
+ V(SpeculativeNumberAdd) \
+ V(SpeculativeNumberSubtract) \
V(NumberAdd) \
V(NumberSubtract) \
V(NumberMultiply) \
@@ -320,6 +322,10 @@
V(BitcastFloat64ToInt64) \
V(BitcastInt32ToFloat32) \
V(BitcastInt64ToFloat64) \
+ V(CheckedUint32ToInt32) \
Benedikt Meurer 2016/05/30 18:39:50 These should really be simplified operators.
Jarin 2016/05/31 20:28:53 Done.
+ V(CheckedFloat64ToInt32) \
+ V(CheckedTaggedToInt32) \
+ V(CheckedTaggedToFloat64) \
V(Float32Add) \
V(Float32Sub) \
V(Float32SubPreserveNan) \

Powered by Google App Engine
This is Rietveld 408576698