OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM64. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM64. |
6 #if defined(TARGET_ARCH_ARM64) | 6 #if defined(TARGET_ARCH_ARM64) |
7 | 7 |
8 #include "vm/intermediate_language.h" | 8 #include "vm/intermediate_language.h" |
9 | 9 |
10 #include "vm/dart_entry.h" | 10 #include "vm/dart_entry.h" |
(...skipping 5100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5111 UNIMPLEMENTED(); | 5111 UNIMPLEMENTED(); |
5112 return NULL; | 5112 return NULL; |
5113 } | 5113 } |
5114 | 5114 |
5115 | 5115 |
5116 void UnaryMintOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 5116 void UnaryMintOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
5117 UNIMPLEMENTED(); | 5117 UNIMPLEMENTED(); |
5118 } | 5118 } |
5119 | 5119 |
5120 | 5120 |
| 5121 LocationSummary* BinaryUint32OpInstr::MakeLocationSummary(Isolate* isolate, |
| 5122 bool opt) const { |
| 5123 UNIMPLEMENTED(); |
| 5124 return NULL; |
| 5125 } |
| 5126 |
| 5127 |
| 5128 void BinaryUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 5129 } |
| 5130 |
| 5131 |
| 5132 LocationSummary* ShiftUint32OpInstr::MakeLocationSummary(Isolate* isolate, |
| 5133 bool opt) const { |
| 5134 UNIMPLEMENTED(); |
| 5135 return NULL; |
| 5136 } |
| 5137 |
| 5138 |
| 5139 void ShiftUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 5140 } |
| 5141 |
| 5142 |
| 5143 LocationSummary* UnaryUint32OpInstr::MakeLocationSummary(Isolate* isolate, |
| 5144 bool opt) const { |
| 5145 UNIMPLEMENTED(); |
| 5146 return NULL; |
| 5147 } |
| 5148 |
| 5149 |
| 5150 void UnaryUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 5151 } |
| 5152 |
| 5153 |
| 5154 LocationSummary* UnboxUint32Instr::MakeLocationSummary(Isolate* isolate, |
| 5155 bool opt) const { |
| 5156 UNIMPLEMENTED(); |
| 5157 return NULL; |
| 5158 } |
| 5159 |
| 5160 |
| 5161 void UnboxUint32Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 5162 } |
| 5163 |
| 5164 |
| 5165 LocationSummary* BoxUint32Instr::MakeLocationSummary(Isolate* isolate, |
| 5166 bool opt) const { |
| 5167 UNIMPLEMENTED(); |
| 5168 return NULL; |
| 5169 } |
| 5170 |
| 5171 |
| 5172 void BoxUint32Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 5173 } |
| 5174 |
| 5175 |
5121 LocationSummary* ThrowInstr::MakeLocationSummary(Isolate* isolate, | 5176 LocationSummary* ThrowInstr::MakeLocationSummary(Isolate* isolate, |
5122 bool opt) const { | 5177 bool opt) const { |
5123 return new(isolate) LocationSummary(isolate, 0, 0, LocationSummary::kCall); | 5178 return new(isolate) LocationSummary(isolate, 0, 0, LocationSummary::kCall); |
5124 } | 5179 } |
5125 | 5180 |
5126 | 5181 |
5127 void ThrowInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 5182 void ThrowInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
5128 compiler->GenerateRuntimeCall(token_pos(), | 5183 compiler->GenerateRuntimeCall(token_pos(), |
5129 deopt_id(), | 5184 deopt_id(), |
5130 kThrowRuntimeEntry, | 5185 kThrowRuntimeEntry, |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5350 compiler->GenerateCall(token_pos(), &label, stub_kind_, locs()); | 5405 compiler->GenerateCall(token_pos(), &label, stub_kind_, locs()); |
5351 #if defined(DEBUG) | 5406 #if defined(DEBUG) |
5352 __ LoadImmediate(R4, kInvalidObjectPointer, kNoPP); | 5407 __ LoadImmediate(R4, kInvalidObjectPointer, kNoPP); |
5353 __ LoadImmediate(R5, kInvalidObjectPointer, kNoPP); | 5408 __ LoadImmediate(R5, kInvalidObjectPointer, kNoPP); |
5354 #endif | 5409 #endif |
5355 } | 5410 } |
5356 | 5411 |
5357 } // namespace dart | 5412 } // namespace dart |
5358 | 5413 |
5359 #endif // defined TARGET_ARCH_ARM64 | 5414 #endif // defined TARGET_ARCH_ARM64 |
OLD | NEW |