| Index: runtime/vm/intermediate_language_arm.cc
|
| diff --git a/runtime/vm/intermediate_language_arm.cc b/runtime/vm/intermediate_language_arm.cc
|
| index 710c2be07c04154202ff60b7f63c13221d76b7e8..3c6af835ce618e04fdf8ed3ffa56041139bc65b9 100644
|
| --- a/runtime/vm/intermediate_language_arm.cc
|
| +++ b/runtime/vm/intermediate_language_arm.cc
|
| @@ -844,6 +844,17 @@ void LoadUntaggedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| }
|
|
|
|
|
| +LocationSummary* LoadClassIdInstr::MakeLocationSummary() const {
|
| + UNIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void LoadClassIdInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| CompileType LoadIndexedInstr::ComputeType() const {
|
| switch (class_id_) {
|
| case kArrayCid:
|
| @@ -2299,7 +2310,7 @@ LocationSummary* PolymorphicInstanceCallInstr::MakeLocationSummary() const {
|
|
|
|
|
| void PolymorphicInstanceCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| - Label* deopt = compiler->AddDeoptStub(instance_call()->deopt_id(),
|
| + Label* deopt = compiler->AddDeoptStub(deopt_id(),
|
| kDeoptPolymorphicInstanceCallTestFail);
|
| if (ic_data().NumberOfChecks() == 0) {
|
| __ b(deopt);
|
| @@ -2309,7 +2320,7 @@ void PolymorphicInstanceCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| if (!with_checks()) {
|
| ASSERT(ic_data().HasOneTarget());
|
| const Function& target = Function::ZoneHandle(ic_data().GetTargetAt(0));
|
| - compiler->GenerateStaticCall(instance_call()->deopt_id(),
|
| + compiler->GenerateStaticCall(deopt_id(),
|
| instance_call()->token_pos(),
|
| target,
|
| instance_call()->ArgumentCount(),
|
| @@ -2329,7 +2340,7 @@ void PolymorphicInstanceCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| instance_call()->ArgumentCount(),
|
| instance_call()->argument_names(),
|
| deopt,
|
| - instance_call()->deopt_id(),
|
| + deopt_id(),
|
| instance_call()->token_pos(),
|
| locs());
|
| }
|
| @@ -2789,4 +2800,3 @@ void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| } // namespace dart
|
|
|
| #endif // defined TARGET_ARCH_ARM
|
| -
|
|
|