| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 __ LeaveFrame(); | 165 __ LeaveFrame(); |
| 166 __ ret(); | 166 __ ret(); |
| 167 } | 167 } |
| 168 | 168 |
| 169 | 169 |
| 170 void StubCode::GenerateCallStaticFunctionStub(Assembler* assembler) { | 170 void StubCode::GenerateCallStaticFunctionStub(Assembler* assembler) { |
| 171 __ Unimplemented("CallStaticFunction stub"); | 171 __ Unimplemented("CallStaticFunction stub"); |
| 172 } | 172 } |
| 173 | 173 |
| 174 | 174 |
| 175 void StubCode::GenerateStackOverflowStub(Assembler* assembler) { | |
| 176 __ Unimplemented("StackOverflow stub"); | |
| 177 } | |
| 178 | |
| 179 | |
| 180 void StubCode::GenerateOptimizeInvokedFunctionStub(Assembler* assembler) { | 175 void StubCode::GenerateOptimizeInvokedFunctionStub(Assembler* assembler) { |
| 181 __ Unimplemented("OptimizeInvokedFunction stub"); | 176 __ Unimplemented("OptimizeInvokedFunction stub"); |
| 182 } | 177 } |
| 183 | 178 |
| 184 | 179 |
| 185 void StubCode::GenerateFixCallersTargetStub(Assembler* assembler) { | 180 void StubCode::GenerateFixCallersTargetStub(Assembler* assembler) { |
| 186 __ Unimplemented("FixCallersTarget stub"); | 181 __ Unimplemented("FixCallersTarget stub"); |
| 187 } | 182 } |
| 188 | 183 |
| 189 | 184 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 } | 355 } |
| 361 | 356 |
| 362 | 357 |
| 363 void StubCode::GenerateBreakpointDynamicStub(Assembler* assembler) { | 358 void StubCode::GenerateBreakpointDynamicStub(Assembler* assembler) { |
| 364 __ Unimplemented("BreakpointDynamic stub"); | 359 __ Unimplemented("BreakpointDynamic stub"); |
| 365 } | 360 } |
| 366 | 361 |
| 367 } // namespace dart | 362 } // namespace dart |
| 368 | 363 |
| 369 #endif // defined TARGET_ARCH_X64 | 364 #endif // defined TARGET_ARCH_X64 |
| OLD | NEW |