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

Side by Side Diff: vm/stub_code_arm.cc

Issue 8379013: Implement new inline cache. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 9 years, 1 month 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.cc ('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 28 matching lines...) Expand all
39 void StubCode::GenerateCallStaticFunctionStub(Assembler* assembler) { 39 void StubCode::GenerateCallStaticFunctionStub(Assembler* assembler) {
40 __ Unimplemented("CallStaticFunction stub"); 40 __ Unimplemented("CallStaticFunction stub");
41 } 41 }
42 42
43 43
44 void StubCode::GenerateMegamorphicLookupStub(Assembler* assembler) { 44 void StubCode::GenerateMegamorphicLookupStub(Assembler* assembler) {
45 __ Unimplemented("MegamorphicLookup stub"); 45 __ Unimplemented("MegamorphicLookup stub");
46 } 46 }
47 47
48 48
49 void StubCode::GenerateCallInstanceFunctionStub(Assembler* assembler) {
50 __ Unimplemented("CallInstanceFunction stub");
51 }
52
53
54 void StubCode::GenerateCallClosureFunctionStub(Assembler* assembler) { 49 void StubCode::GenerateCallClosureFunctionStub(Assembler* assembler) {
55 __ Unimplemented("CallClosureFunction stub"); 50 __ Unimplemented("CallClosureFunction stub");
56 } 51 }
57 52
58 53
59 void StubCode::GenerateAllocateContextStub(Assembler* assembler) { 54 void StubCode::GenerateAllocateContextStub(Assembler* assembler) {
60 __ Unimplemented("AllocateContext stub"); 55 __ Unimplemented("AllocateContext stub");
61 } 56 }
62 57
63 58
64 void StubCode::GenerateAllocationStubForClass(Assembler* assembler, 59 void StubCode::GenerateAllocationStubForClass(Assembler* assembler,
65 const Class& cls) { 60 const Class& cls) {
66 __ Unimplemented("AllocateObject stub"); 61 __ Unimplemented("AllocateObject stub");
67 } 62 }
68 63
69 64
70 void StubCode::GenerateAllocationStubForClosure(Assembler* assembler, 65 void StubCode::GenerateAllocationStubForClosure(Assembler* assembler,
71 const Function& func) { 66 const Function& func) {
72 __ Unimplemented("AllocateClosure stub"); 67 __ Unimplemented("AllocateClosure stub");
73 } 68 }
74 69
75 } // namespace dart 70 } // namespace dart
76 71
77 #endif // defined TARGET_ARCH_ARM 72 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « vm/stub_code.cc ('k') | vm/stub_code_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698