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

Unified Diff: dart/runtime/vm/flow_graph_type_propagator.cc

Issue 59073003: Version 0.8.10.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | « dart/runtime/vm/flow_graph_optimizer.cc ('k') | dart/runtime/vm/freelist.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/flow_graph_type_propagator.cc
===================================================================
--- dart/runtime/vm/flow_graph_type_propagator.cc (revision 29808)
+++ dart/runtime/vm/flow_graph_type_propagator.cc (working copy)
@@ -1056,8 +1056,8 @@
(op_kind() == MethodRecognizer::kFloat32x4ShuffleW)) {
return CompileType::FromCid(kDoubleCid);
}
- if ((op_kind() == MethodRecognizer::kUint32x4Shuffle)) {
- return CompileType::FromCid(kUint32x4Cid);
+ if ((op_kind() == MethodRecognizer::kInt32x4Shuffle)) {
+ return CompileType::FromCid(kInt32x4Cid);
}
ASSERT((op_kind() == MethodRecognizer::kFloat32x4Shuffle));
return CompileType::FromCid(kFloat32x4Cid);
@@ -1065,8 +1065,8 @@
CompileType Simd32x4ShuffleMixInstr::ComputeType() const {
- if (op_kind() == MethodRecognizer::kUint32x4ShuffleMix) {
- return CompileType::FromCid(kUint32x4Cid);
+ if (op_kind() == MethodRecognizer::kInt32x4ShuffleMix) {
+ return CompileType::FromCid(kInt32x4Cid);
}
ASSERT((op_kind() == MethodRecognizer::kFloat32x4ShuffleMix));
return CompileType::FromCid(kFloat32x4Cid);
@@ -1094,7 +1094,7 @@
CompileType Float32x4ComparisonInstr::ComputeType() const {
- return CompileType::FromCid(kUint32x4Cid);
+ return CompileType::FromCid(kInt32x4Cid);
}
@@ -1128,38 +1128,38 @@
}
-CompileType Float32x4ToUint32x4Instr::ComputeType() const {
- return CompileType::FromCid(kUint32x4Cid);
+CompileType Float32x4ToInt32x4Instr::ComputeType() const {
+ return CompileType::FromCid(kInt32x4Cid);
}
-CompileType Uint32x4BoolConstructorInstr::ComputeType() const {
- return CompileType::FromCid(kUint32x4Cid);
+CompileType Int32x4BoolConstructorInstr::ComputeType() const {
+ return CompileType::FromCid(kInt32x4Cid);
}
-CompileType Uint32x4GetFlagInstr::ComputeType() const {
+CompileType Int32x4GetFlagInstr::ComputeType() const {
return CompileType::FromCid(kBoolCid);
}
-CompileType Uint32x4SelectInstr::ComputeType() const {
+CompileType Int32x4SelectInstr::ComputeType() const {
return CompileType::FromCid(kFloat32x4Cid);
}
-CompileType Uint32x4SetFlagInstr::ComputeType() const {
- return CompileType::FromCid(kUint32x4Cid);
+CompileType Int32x4SetFlagInstr::ComputeType() const {
+ return CompileType::FromCid(kInt32x4Cid);
}
-CompileType Uint32x4ToFloat32x4Instr::ComputeType() const {
+CompileType Int32x4ToFloat32x4Instr::ComputeType() const {
return CompileType::FromCid(kFloat32x4Cid);
}
-CompileType BinaryUint32x4OpInstr::ComputeType() const {
- return CompileType::FromCid(kUint32x4Cid);
+CompileType BinaryInt32x4OpInstr::ComputeType() const {
+ return CompileType::FromCid(kInt32x4Cid);
}
@@ -1193,13 +1193,13 @@
}
-CompileType UnboxUint32x4Instr::ComputeType() const {
- return CompileType::FromCid(kUint32x4Cid);
+CompileType UnboxInt32x4Instr::ComputeType() const {
+ return CompileType::FromCid(kInt32x4Cid);
}
-CompileType BoxUint32x4Instr::ComputeType() const {
- return CompileType::FromCid(kUint32x4Cid);
+CompileType BoxInt32x4Instr::ComputeType() const {
+ return CompileType::FromCid(kInt32x4Cid);
}
« no previous file with comments | « dart/runtime/vm/flow_graph_optimizer.cc ('k') | dart/runtime/vm/freelist.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698