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

Unified Diff: runtime/vm/intermediate_language.cc

Issue 10968059: Support for unboxed 64-bit integer bitwise operations and equality on ia32. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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 | « runtime/vm/intermediate_language.h ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language.cc
===================================================================
--- runtime/vm/intermediate_language.cc (revision 13110)
+++ runtime/vm/intermediate_language.cc (working copy)
@@ -1215,6 +1215,16 @@
}
+RawAbstractType* UnboxedMintBinaryOpInstr::CompileType() const {
+ return Type::IntType();
+}
+
+
+intptr_t UnboxedMintBinaryOpInstr::ResultCid() const {
+ return kDynamicCid;
+}
+
+
RawAbstractType* UnboxedDoubleBinaryOpInstr::CompileType() const {
return Type::Double();
}
@@ -1240,6 +1250,26 @@
}
+intptr_t BoxIntegerInstr::ResultCid() const {
+ return kDynamicCid;
+}
+
+
+RawAbstractType* BoxIntegerInstr::CompileType() const {
+ return Type::IntType();
+}
+
+
+intptr_t UnboxIntegerInstr::ResultCid() const {
+ return kDynamicCid;
+}
+
+
+RawAbstractType* UnboxIntegerInstr::CompileType() const {
+ return Type::null();
+}
+
+
RawAbstractType* UnarySmiOpInstr::CompileType() const {
return Type::SmiType();
}
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698