| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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" | 5 #include "vm/globals.h" |
| 6 #if defined(TARGET_ARCH_X64) | 6 #if defined(TARGET_ARCH_X64) |
| 7 | 7 |
| 8 #include "vm/native_entry.h" | 8 #include "vm/native_entry.h" |
| 9 #include "vm/stub_code.h" | 9 #include "vm/stub_code.h" |
| 10 | 10 |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 const Function& func) { | 338 const Function& func) { |
| 339 __ Unimplemented("AllocateClosure stub"); | 339 __ Unimplemented("AllocateClosure stub"); |
| 340 } | 340 } |
| 341 | 341 |
| 342 | 342 |
| 343 void StubCode::GenerateCallNoSuchMethodFunctionStub(Assembler* assembler) { | 343 void StubCode::GenerateCallNoSuchMethodFunctionStub(Assembler* assembler) { |
| 344 __ Unimplemented("CallNoSuchMethodFunction stub"); | 344 __ Unimplemented("CallNoSuchMethodFunction stub"); |
| 345 } | 345 } |
| 346 | 346 |
| 347 | 347 |
| 348 void StubCode::GenerateInlineCacheStub(Assembler* assembler) { | 348 void StubCode::GenerateOneArgCheckInlineCacheStub(Assembler* assembler) { |
| 349 __ Unimplemented("InlineCache stub"); | 349 __ Unimplemented("GenerateOneArgCheckInlineCacheStub stub"); |
| 350 } |
| 351 |
| 352 |
| 353 void StubCode::GenerateTwoArgsCheckInlineCacheStub(Assembler* assembler) { |
| 354 __ Unimplemented("GenerateTwoArgsCheckInlineCacheStub stub"); |
| 350 } | 355 } |
| 351 | 356 |
| 352 | 357 |
| 353 void StubCode::GenerateBreakpointStaticStub(Assembler* assembler) { | 358 void StubCode::GenerateBreakpointStaticStub(Assembler* assembler) { |
| 354 __ Unimplemented("BreakpointStatic stub"); | 359 __ Unimplemented("BreakpointStatic stub"); |
| 355 } | 360 } |
| 356 | 361 |
| 357 | 362 |
| 358 void StubCode::GenerateBreakpointDynamicStub(Assembler* assembler) { | 363 void StubCode::GenerateBreakpointDynamicStub(Assembler* assembler) { |
| 359 __ Unimplemented("BreakpointDynamic stub"); | 364 __ Unimplemented("BreakpointDynamic stub"); |
| 360 } | 365 } |
| 361 | 366 |
| 362 } // namespace dart | 367 } // namespace dart |
| 363 | 368 |
| 364 #endif // defined TARGET_ARCH_X64 | 369 #endif // defined TARGET_ARCH_X64 |
| OLD | NEW |