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

Unified Diff: src/compiler/opcodes.h

Issue 2362173003: [turbofan] Improve representation selection for Smi checking. (Closed)
Patch Set: Address comments Created 4 years, 3 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 | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/redundancy-elimination.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/opcodes.h
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h
index e5733e59471fe9bb3516d5fd6f8bb298e1f94724..16f5c1cfa4865deb0f5262248f072084a48307b4 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -190,12 +190,15 @@
V(CheckedUint32Div) \
V(CheckedUint32Mod) \
V(CheckedInt32Mul) \
+ V(CheckedInt32ToTaggedSigned) \
V(CheckedUint32ToInt32) \
+ V(CheckedUint32ToTaggedSigned) \
V(CheckedFloat64ToInt32) \
V(CheckedTaggedSignedToInt32) \
V(CheckedTaggedToInt32) \
V(CheckedTruncateTaggedToWord32) \
- V(CheckedTaggedToFloat64)
+ V(CheckedTaggedToFloat64) \
+ V(CheckedTaggedToTaggedSigned)
#define SIMPLIFIED_COMPARE_BINOP_LIST(V) \
V(NumberEqual) \
@@ -286,8 +289,8 @@
V(CheckMaps) \
V(CheckNumber) \
V(CheckString) \
- V(CheckTaggedPointer) \
- V(CheckTaggedSigned) \
+ V(CheckSmi) \
+ V(CheckHeapObject) \
V(CheckFloat64Hole) \
V(CheckTaggedHole) \
V(ConvertTaggedHoleToUndefined) \
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/redundancy-elimination.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698