Index: runtime/vm/intermediate_language_arm64.cc |
diff --git a/runtime/vm/intermediate_language_arm64.cc b/runtime/vm/intermediate_language_arm64.cc |
index 8b8fa14ba7c8aa535bb3ca8e887cbf3476991b9d..87734e3560f324cefdf9c4235ae80c58c90b7144 100644 |
--- a/runtime/vm/intermediate_language_arm64.cc |
+++ b/runtime/vm/intermediate_language_arm64.cc |
@@ -5136,6 +5136,86 @@ void UnaryMintOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
} |
+CompileType BinaryUint32OpInstr::ComputeType() const { |
+ return CompileType::FromCid(kSmiCid); |
+} |
+ |
+ |
+CompileType ShiftUint32OpInstr::ComputeType() const { |
+ return CompileType::FromCid(kSmiCid); |
+} |
+ |
+ |
+CompileType UnaryUint32OpInstr::ComputeType() const { |
+ return CompileType::FromCid(kSmiCid); |
+} |
+ |
+ |
+CompileType BoxUint32Instr::ComputeType() const { |
+ return CompileType::FromCid(kSmiCid); |
+} |
+ |
+ |
+CompileType UnboxUint32Instr::ComputeType() const { |
+ return CompileType::FromCid(kSmiCid); |
+} |
+ |
+ |
+LocationSummary* BinaryUint32OpInstr::MakeLocationSummary(Isolate* isolate, |
+ bool opt) const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void BinaryUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+} |
+ |
+ |
+LocationSummary* ShiftUint32OpInstr::MakeLocationSummary(Isolate* isolate, |
+ bool opt) const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void ShiftUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+} |
+ |
+ |
+LocationSummary* UnaryUint32OpInstr::MakeLocationSummary(Isolate* isolate, |
+ bool opt) const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void UnaryUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+} |
+ |
+ |
+LocationSummary* UnboxUint32Instr::MakeLocationSummary(Isolate* isolate, |
+ bool opt) const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void UnboxUint32Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+} |
+ |
+ |
+LocationSummary* BoxUint32Instr::MakeLocationSummary(Isolate* isolate, |
+ bool opt) const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void BoxUint32Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+} |
+ |
+ |
LocationSummary* ThrowInstr::MakeLocationSummary(Isolate* isolate, |
bool opt) const { |
return new(isolate) LocationSummary(isolate, 0, 0, LocationSummary::kCall); |