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

Side by Side Diff: runtime/vm/stub_code_x64.cc

Issue 8851008: Add support for interrupting an isolate in the vm. Interrupts are (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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
« runtime/vm/isolate.cc ('K') | « runtime/vm/stub_code_ia32.cc ('k') | no next file » | 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_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
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
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
OLDNEW
« runtime/vm/isolate.cc ('K') | « runtime/vm/stub_code_ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698