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

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

Issue 1192103004: VM: New calling convention for generated code. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: fixed comments Created 5 years, 3 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_snapshot.cc ('k') | runtime/vm/stack_frame.h » ('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_RUNTIME_ENTRY_LIST_H_ 5 #ifndef VM_RUNTIME_ENTRY_LIST_H_
6 #define VM_RUNTIME_ENTRY_LIST_H_ 6 #define VM_RUNTIME_ENTRY_LIST_H_
7 7
8 namespace dart { 8 namespace dart {
9 9
10 #define RUNTIME_ENTRY_LIST(V) \ 10 #define RUNTIME_ENTRY_LIST(V) \
(...skipping 28 matching lines...) Expand all
39 V(TraceFunctionEntry) \ 39 V(TraceFunctionEntry) \
40 V(TraceFunctionExit) \ 40 V(TraceFunctionExit) \
41 V(DeoptimizeMaterialize) \ 41 V(DeoptimizeMaterialize) \
42 V(UpdateFieldCid) \ 42 V(UpdateFieldCid) \
43 V(InitStaticField) \ 43 V(InitStaticField) \
44 V(GrowRegExpStack) \ 44 V(GrowRegExpStack) \
45 V(CompileFunction) \ 45 V(CompileFunction) \
46 46
47 #define LEAF_RUNTIME_ENTRY_LIST(V) \ 47 #define LEAF_RUNTIME_ENTRY_LIST(V) \
48 V(void, PrintStopMessage, const char*) \ 48 V(void, PrintStopMessage, const char*) \
49 V(intptr_t, DeoptimizeCopyFrame, uword) \ 49 V(intptr_t, DeoptimizeCopyFrame, uword, uword) \
50 V(void, DeoptimizeFillFrame, uword) \ 50 V(void, DeoptimizeFillFrame, uword) \
51 V(void, StoreBufferBlockProcess, Thread*) \ 51 V(void, StoreBufferBlockProcess, Thread*) \
52 V(intptr_t, BigintCompare, RawBigint*, RawBigint*) \ 52 V(intptr_t, BigintCompare, RawBigint*, RawBigint*) \
53 V(double, LibcPow, double, double) \ 53 V(double, LibcPow, double, double) \
54 V(double, DartModulo, double, double) \ 54 V(double, DartModulo, double, double) \
55 V(double, LibcFloor, double) \ 55 V(double, LibcFloor, double) \
56 V(double, LibcCeil, double) \ 56 V(double, LibcCeil, double) \
57 V(double, LibcTrunc, double) \ 57 V(double, LibcTrunc, double) \
58 V(double, LibcRound, double) \ 58 V(double, LibcRound, double) \
59 V(double, LibcCos, double) \ 59 V(double, LibcCos, double) \
60 V(double, LibcSin, double) \ 60 V(double, LibcSin, double) \
61 V(RawBool*, CaseInsensitiveCompareUC16, \ 61 V(RawBool*, CaseInsensitiveCompareUC16, \
62 RawString*, RawSmi*, RawSmi*, RawSmi*) \ 62 RawString*, RawSmi*, RawSmi*, RawSmi*) \
63 63
64 } // namespace dart 64 } // namespace dart
65 65
66 #endif // VM_RUNTIME_ENTRY_LIST_H_ 66 #endif // VM_RUNTIME_ENTRY_LIST_H_
OLDNEW
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/stack_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698