| 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_ARM) | 6 #if defined(TARGET_ARCH_ARM) |
| 7 | 7 |
| 8 #include "vm/stub_code.h" | 8 #include "vm/stub_code.h" |
| 9 | 9 |
| 10 #define __ assembler-> | 10 #define __ assembler-> |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 } | 110 } |
| 111 | 111 |
| 112 void StubCode::GenerateSubtype2TestCacheStub(Assembler* assembler) { | 112 void StubCode::GenerateSubtype2TestCacheStub(Assembler* assembler) { |
| 113 __ Unimplemented("Subtype2TestCache Stub"); | 113 __ Unimplemented("Subtype2TestCache Stub"); |
| 114 } | 114 } |
| 115 | 115 |
| 116 void StubCode::GenerateSubtype3TestCacheStub(Assembler* assembler) { | 116 void StubCode::GenerateSubtype3TestCacheStub(Assembler* assembler) { |
| 117 __ Unimplemented("Subtype3TestCache Stub"); | 117 __ Unimplemented("Subtype3TestCache Stub"); |
| 118 } | 118 } |
| 119 | 119 |
| 120 |
| 121 // Return the current stack pointer address, used to stack alignment |
| 122 // checks. |
| 123 void StubCode::GenerateGetStackPointerStub(Assembler* assembler) { |
| 124 __ Unimplemented("GetStackPointer Stub"); |
| 125 } |
| 126 |
| 127 |
| 128 // Jump to the exception handler. |
| 129 // No Result. |
| 130 void StubCode::GenerateJumpToExceptionHandlerStub(Assembler* assembler) { |
| 131 __ Unimplemented("JumpToExceptionHandler Stub"); |
| 132 } |
| 133 |
| 134 |
| 135 // Jump to the error handler. |
| 136 // No Result. |
| 137 void StubCode::GenerateJumpToErrorHandlerStub(Assembler* assembler) { |
| 138 __ Unimplemented("JumpToErrorHandler Stub"); |
| 139 } |
| 140 |
| 120 } // namespace dart | 141 } // namespace dart |
| 121 | 142 |
| 122 #endif // defined TARGET_ARCH_ARM | 143 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |