| OLD | NEW |
| 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 10 matching lines...) Expand all Loading... |
| 21 // isolates running in this dart process. | 21 // isolates running in this dart process. |
| 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(CallNativeCFunction) \ | 25 V(CallNativeCFunction) \ |
| 26 V(AllocateArray) \ | 26 V(AllocateArray) \ |
| 27 V(CallNoSuchMethodFunction) \ | 27 V(CallNoSuchMethodFunction) \ |
| 28 V(MegamorphicLookup) \ | 28 V(MegamorphicLookup) \ |
| 29 V(CallStaticFunction) \ | 29 V(CallStaticFunction) \ |
| 30 V(CallClosureFunction) \ | 30 V(CallClosureFunction) \ |
| 31 V(StackOverflow) \ | |
| 32 V(OptimizeInvokedFunction) \ | 31 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 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 170 |
| 172 static void GenerateAllocationStubForClass(Assembler* assembler, | 171 static void GenerateAllocationStubForClass(Assembler* assembler, |
| 173 const Class& cls); | 172 const Class& cls); |
| 174 static void GenerateAllocationStubForClosure(Assembler* assembler, | 173 static void GenerateAllocationStubForClosure(Assembler* assembler, |
| 175 const Function& func); | 174 const Function& func); |
| 176 }; | 175 }; |
| 177 | 176 |
| 178 } // namespace dart | 177 } // namespace dart |
| 179 | 178 |
| 180 #endif // VM_STUB_CODE_H_ | 179 #endif // VM_STUB_CODE_H_ |
| OLD | NEW |