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

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

Issue 1160063002: Remove unused pc descriptor types. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: added comment Created 5 years, 6 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
« no previous file with comments | « runtime/vm/raw_object.h ('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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 V(OneArgUnoptimizedStaticCall) \ 61 V(OneArgUnoptimizedStaticCall) \
62 V(TwoArgsUnoptimizedStaticCall) \ 62 V(TwoArgsUnoptimizedStaticCall) \
63 V(OptimizeFunction) \ 63 V(OptimizeFunction) \
64 V(InvokeDartCode) \ 64 V(InvokeDartCode) \
65 V(Subtype1TestCache) \ 65 V(Subtype1TestCache) \
66 V(Subtype2TestCache) \ 66 V(Subtype2TestCache) \
67 V(Subtype3TestCache) \ 67 V(Subtype3TestCache) \
68 V(Deoptimize) \ 68 V(Deoptimize) \
69 V(DeoptimizeLazy) \ 69 V(DeoptimizeLazy) \
70 V(ICCallBreakpoint) \ 70 V(ICCallBreakpoint) \
71 V(ClosureCallBreakpoint) \
72 V(RuntimeCallBreakpoint) \ 71 V(RuntimeCallBreakpoint) \
73 V(UnoptimizedIdenticalWithNumberCheck) \ 72 V(UnoptimizedIdenticalWithNumberCheck) \
74 V(OptimizedIdenticalWithNumberCheck) \ 73 V(OptimizedIdenticalWithNumberCheck) \
75 V(DebugStepCheck) \ 74 V(DebugStepCheck) \
76 V(MegamorphicLookup) \ 75 V(MegamorphicLookup) \
77 76
78 #define STUB_CODE_LIST(V) \ 77 #define STUB_CODE_LIST(V) \
79 BOOTSTRAP_STUB_CODE_LIST(V) \ 78 BOOTSTRAP_STUB_CODE_LIST(V) \
80 REST_STUB_CODE_LIST(V) 79 REST_STUB_CODE_LIST(V)
81 80
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 Assembler* assembler, 239 Assembler* assembler,
241 const Register left, 240 const Register left,
242 const Register right, 241 const Register right,
243 const Register temp1 = kNoRegister, 242 const Register temp1 = kNoRegister,
244 const Register temp2 = kNoRegister); 243 const Register temp2 = kNoRegister);
245 }; 244 };
246 245
247 } // namespace dart 246 } // namespace dart
248 247
249 #endif // VM_STUB_CODE_H_ 248 #endif // VM_STUB_CODE_H_
OLDNEW
« no previous file with comments | « runtime/vm/raw_object.h ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698