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

Side by Side Diff: runtime/vm/stub_code.h

Issue 9460015: Do not count invocations but usage of a function, i.e., increment a function's counter at IC calls … (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 10 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 | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/stub_code_arm.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 #ifndef VM_STUB_CODE_H_ 5 #ifndef VM_STUB_CODE_H_
6 #define VM_STUB_CODE_H_ 6 #define VM_STUB_CODE_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/assembler.h" 9 #include "vm/assembler.h"
10 10
(...skipping 11 matching lines...) Expand all
22 #define VM_STUB_CODE_LIST(V) \ 22 #define VM_STUB_CODE_LIST(V) \
23 V(DartCallToRuntime) \ 23 V(DartCallToRuntime) \
24 V(StubCallToRuntime) \ 24 V(StubCallToRuntime) \
25 V(PrintStopMessage) \ 25 V(PrintStopMessage) \
26 V(CallNativeCFunction) \ 26 V(CallNativeCFunction) \
27 V(AllocateArray) \ 27 V(AllocateArray) \
28 V(CallNoSuchMethodFunction) \ 28 V(CallNoSuchMethodFunction) \
29 V(MegamorphicLookup) \ 29 V(MegamorphicLookup) \
30 V(CallStaticFunction) \ 30 V(CallStaticFunction) \
31 V(CallClosureFunction) \ 31 V(CallClosureFunction) \
32 V(OptimizeInvokedFunction) \
33 V(FixCallersTarget) \ 32 V(FixCallersTarget) \
34 V(Deoptimize) \ 33 V(Deoptimize) \
35 V(BreakpointStatic) \ 34 V(BreakpointStatic) \
36 35
37 36
38 // Is it permitted for the stubs above to refer to Object::null(), which is 37 // Is it permitted for the stubs above to refer to Object::null(), which is
39 // allocated in the VM isolate and shared across all isolates. 38 // allocated in the VM isolate and shared across all isolates.
40 // However, in cases where a simple GC-safe placeholder is needed on the stack, 39 // However, in cases where a simple GC-safe placeholder is needed on the stack,
41 // using Smi 0 instead of Object::null() is slightly more efficient, since a Smi 40 // using Smi 0 instead of Object::null() is slightly more efficient, since a Smi
42 // does not require relocation. 41 // does not require relocation.
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 const Class& cls); 173 const Class& cls);
175 static void GenerateAllocationStubForClosure(Assembler* assembler, 174 static void GenerateAllocationStubForClosure(Assembler* assembler,
176 const Function& func); 175 const Function& func);
177 static void GenerateNArgsCheckInlineCacheStub(Assembler* assembler, 176 static void GenerateNArgsCheckInlineCacheStub(Assembler* assembler,
178 intptr_t num_args); 177 intptr_t num_args);
179 }; 178 };
180 179
181 } // namespace dart 180 } // namespace dart
182 181
183 #endif // VM_STUB_CODE_H_ 182 #endif // VM_STUB_CODE_H_
OLDNEW
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698