| Index: runtime/vm/intermediate_language_arm.cc
|
| diff --git a/runtime/vm/intermediate_language_arm.cc b/runtime/vm/intermediate_language_arm.cc
|
| index 60f959f0e3b9e42805cd69ca2d09faede640f57d..bf40f7f8ae21b79c14ed44642f1507838876856f 100644
|
| --- a/runtime/vm/intermediate_language_arm.cc
|
| +++ b/runtime/vm/intermediate_language_arm.cc
|
| @@ -840,6 +840,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:
|
| @@ -2168,7 +2179,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);
|
| @@ -2178,7 +2189,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(),
|
| @@ -2198,7 +2209,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());
|
| }
|
| @@ -2658,4 +2669,3 @@ void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| } // namespace dart
|
|
|
| #endif // defined TARGET_ARCH_ARM
|
| -
|
|
|