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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 V(OptimizedIdenticalWithNumberCheck) \ | 47 V(OptimizedIdenticalWithNumberCheck) \ |
48 V(ICCallBreakpoint) \ | 48 V(ICCallBreakpoint) \ |
49 V(RuntimeCallBreakpoint) \ | 49 V(RuntimeCallBreakpoint) \ |
50 V(AllocateArray) \ | 50 V(AllocateArray) \ |
51 V(AllocateContext) \ | 51 V(AllocateContext) \ |
52 V(OneArgCheckInlineCache) \ | 52 V(OneArgCheckInlineCache) \ |
53 V(TwoArgsCheckInlineCache) \ | 53 V(TwoArgsCheckInlineCache) \ |
54 V(SmiAddInlineCache) \ | 54 V(SmiAddInlineCache) \ |
55 V(SmiSubInlineCache) \ | 55 V(SmiSubInlineCache) \ |
56 V(SmiEqualInlineCache) \ | 56 V(SmiEqualInlineCache) \ |
57 V(UnaryRangeCollectingInlineCache) \ | |
58 V(BinaryRangeCollectingInlineCache) \ | |
59 V(OneArgOptimizedCheckInlineCache) \ | 57 V(OneArgOptimizedCheckInlineCache) \ |
60 V(TwoArgsOptimizedCheckInlineCache) \ | 58 V(TwoArgsOptimizedCheckInlineCache) \ |
61 V(ZeroArgsUnoptimizedStaticCall) \ | 59 V(ZeroArgsUnoptimizedStaticCall) \ |
62 V(OneArgUnoptimizedStaticCall) \ | 60 V(OneArgUnoptimizedStaticCall) \ |
63 V(TwoArgsUnoptimizedStaticCall) \ | 61 V(TwoArgsUnoptimizedStaticCall) \ |
64 V(Subtype1TestCache) \ | 62 V(Subtype1TestCache) \ |
65 V(Subtype2TestCache) \ | 63 V(Subtype2TestCache) \ |
66 V(Subtype3TestCache) \ | 64 V(Subtype3TestCache) \ |
67 V(CallClosureNoSuchMethod) \ | 65 V(CallClosureNoSuchMethod) \ |
68 V(FrameAwaitingMaterialization) \ | 66 V(FrameAwaitingMaterialization) \ |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 | 189 |
192 | 190 |
193 enum DeoptStubKind { | 191 enum DeoptStubKind { |
194 kLazyDeopt, | 192 kLazyDeopt, |
195 kEagerDeopt | 193 kEagerDeopt |
196 }; | 194 }; |
197 | 195 |
198 } // namespace dart | 196 } // namespace dart |
199 | 197 |
200 #endif // VM_STUB_CODE_H_ | 198 #endif // VM_STUB_CODE_H_ |
OLD | NEW |