| Index: runtime/vm/intermediate_language_mips.cc
|
| diff --git a/runtime/vm/intermediate_language_mips.cc b/runtime/vm/intermediate_language_mips.cc
|
| index 302037f8624fd63f9e11cd12bfc6c4b966414dc7..eec3d42cbcd1706ea882d94f0933a1f1ba1fb05f 100644
|
| --- a/runtime/vm/intermediate_language_mips.cc
|
| +++ b/runtime/vm/intermediate_language_mips.cc
|
| @@ -4511,6 +4511,103 @@ void UnaryMintOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| }
|
|
|
|
|
| +CompileType BinaryUint32OpInstr::ComputeType() const {
|
| + return CompileType::Int();
|
| +}
|
| +
|
| +
|
| +CompileType ShiftUint32OpInstr::ComputeType() const {
|
| + return CompileType::Int();
|
| +}
|
| +
|
| +
|
| +CompileType UnaryUint32OpInstr::ComputeType() const {
|
| + return CompileType::Int();
|
| +}
|
| +
|
| +
|
| +CompileType BoxUint32Instr::ComputeType() const {
|
| + return CompileType::Int();
|
| +}
|
| +
|
| +
|
| +CompileType UnboxUint32Instr::ComputeType() const {
|
| + return CompileType::Int();
|
| +}
|
| +
|
| +
|
| +LocationSummary* BinaryUint32OpInstr::MakeLocationSummary(Isolate* isolate,
|
| + bool opt) const {
|
| + UNIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void BinaryUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +LocationSummary* ShiftUint32OpInstr::MakeLocationSummary(Isolate* isolate,
|
| + bool opt) const {
|
| + UNIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void ShiftUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +LocationSummary* UnaryUint32OpInstr::MakeLocationSummary(Isolate* isolate,
|
| + bool opt) const {
|
| + UNIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void UnaryUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +LocationSummary* UnboxUint32Instr::MakeLocationSummary(Isolate* isolate,
|
| + bool opt) const {
|
| + UNIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void UnboxUint32Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +LocationSummary* BoxUint32Instr::MakeLocationSummary(Isolate* isolate,
|
| + bool opt) const {
|
| + UNIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void BoxUint32Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +LocationSummary* UnboxedIntConverterInstr::MakeLocationSummary(Isolate* isolate,
|
| + bool opt) const {
|
| + UNIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void UnboxedIntConverterInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| LocationSummary* ThrowInstr::MakeLocationSummary(Isolate* isolate,
|
| bool opt) const {
|
| return new(isolate) LocationSummary(isolate, 0, 0, LocationSummary::kCall);
|
|
|