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

Side by Side Diff: vm/stub_code_x64.cc

Issue 8827015: Implement two-argument check inline cache. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
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
« no previous file with comments | « 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « vm/stub_code_ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698