Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Side by Side Diff: vm/stub_code_arm.cc

Issue 10664004: Fix issue 1968, replace usage of inline 'asm' constructs in 'stack alignment', 'jump to exception h… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « vm/stub_code.h ('k') | vm/stub_code_ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « vm/stub_code.h ('k') | vm/stub_code_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698