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

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

Issue 23542041: Make "as" a built-in identifier aka pseudo keyword (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/parser.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // Class for intrinsifying functions. 4 // Class for intrinsifying functions.
5 5
6 #ifndef VM_INTRINSIFIER_H_ 6 #ifndef VM_INTRINSIFIER_H_
7 #define VM_INTRINSIFIER_H_ 7 #define VM_INTRINSIFIER_H_
8 8
9 #include "vm/allocation.h" 9 #include "vm/allocation.h"
10 10
(...skipping 15 matching lines...) Expand all
26 V(_Double, +, Double_add, 295873577) \ 26 V(_Double, +, Double_add, 295873577) \
27 V(_Double, -, Double_sub, 1180117486) \ 27 V(_Double, -, Double_sub, 1180117486) \
28 V(_Double, *, Double_mul, 1999983053) \ 28 V(_Double, *, Double_mul, 1999983053) \
29 V(_Double, /, Double_div, 1904009451) \ 29 V(_Double, /, Double_div, 1904009451) \
30 V(_Double, get:isNaN, Double_getIsNaN, 916506740) \ 30 V(_Double, get:isNaN, Double_getIsNaN, 916506740) \
31 V(_Double, get:isNegative, Double_getIsNegative, 1711332287) \ 31 V(_Double, get:isNegative, Double_getIsNegative, 1711332287) \
32 V(_Double, _mulFromInteger, Double_mulFromInteger, 930284178) \ 32 V(_Double, _mulFromInteger, Double_mulFromInteger, 930284178) \
33 V(_Double, .fromInteger, Double_fromInteger, 475441744) \ 33 V(_Double, .fromInteger, Double_fromInteger, 475441744) \
34 V(_ObjectArray, ., ObjectArray_Allocate, 1930677134) \ 34 V(_ObjectArray, ., ObjectArray_Allocate, 1930677134) \
35 V(_ObjectArray, get:length, Array_getLength, 259323113) \ 35 V(_ObjectArray, get:length, Array_getLength, 259323113) \
36 V(_ObjectArray, [], Array_getIndexed, 93386978) \ 36 V(_ObjectArray, [], Array_getIndexed, 1353366945) \
37 V(_ObjectArray, []=, Array_setIndexed, 1296046137) \ 37 V(_ObjectArray, []=, Array_setIndexed, 1492559642) \
38 V(_GrowableObjectArray, .withData, GrowableArray_Allocate, 1012992871) \ 38 V(_GrowableObjectArray, .withData, GrowableArray_Allocate, 1012992871) \
39 V(_GrowableObjectArray, get:length, GrowableArray_getLength, 1160357614) \ 39 V(_GrowableObjectArray, get:length, GrowableArray_getLength, 1160357614) \
40 V(_GrowableObjectArray, get:_capacity, GrowableArray_getCapacity, 1509781988)\ 40 V(_GrowableObjectArray, get:_capacity, GrowableArray_getCapacity, 1509781988)\
41 V(_GrowableObjectArray, [], GrowableArray_getIndexed, 500679426) \ 41 V(_GrowableObjectArray, [], GrowableArray_getIndexed, 1760659393) \
42 V(_GrowableObjectArray, []=, GrowableArray_setIndexed, 211112998) \ 42 V(_GrowableObjectArray, []=, GrowableArray_setIndexed, 407626503) \
43 V(_GrowableObjectArray, _setLength, GrowableArray_setLength, 1922121178) \ 43 V(_GrowableObjectArray, _setLength, GrowableArray_setLength, 1922121178) \
44 V(_GrowableObjectArray, _setData, GrowableArray_setData, 236295352) \ 44 V(_GrowableObjectArray, _setData, GrowableArray_setData, 236295352) \
45 V(_GrowableObjectArray, add, GrowableArray_add, 1442410650) \ 45 V(_GrowableObjectArray, add, GrowableArray_add, 1442410650) \
46 V(_ImmutableArray, [], ImmutableArray_getIndexed, 894753724) \ 46 V(_ImmutableArray, [], ImmutableArray_getIndexed, 7250043) \
47 V(_ImmutableArray, get:length, ImmutableArray_getLength, 1341942416) \ 47 V(_ImmutableArray, get:length, ImmutableArray_getLength, 1341942416) \
48 V(Object, ==, Object_equal, 677817295) \ 48 V(Object, ==, Object_equal, 677817295) \
49 V(_StringBase, get:hashCode, String_getHashCode, 654483446) \ 49 V(_StringBase, get:hashCode, String_getHashCode, 654483446) \
50 V(_StringBase, get:isEmpty, String_getIsEmpty, 1588094430) \ 50 V(_StringBase, get:isEmpty, String_getIsEmpty, 1588094430) \
51 V(_StringBase, get:length, String_getLength, 1483460481) \ 51 V(_StringBase, get:length, String_getLength, 1483460481) \
52 V(_StringBase, codeUnitAt, String_codeUnitAt, 1958436584) \ 52 V(_StringBase, codeUnitAt, String_codeUnitAt, 1958436584) \
53 V(_OneByteString, get:hashCode, OneByteString_getHashCode, 1236404434) \ 53 V(_OneByteString, get:hashCode, OneByteString_getHashCode, 1236404434) \
54 V(_OneByteString, _substringUncheckedNative, \ 54 V(_OneByteString, _substringUncheckedNative, \
55 OneByteString_substringUnchecked, 25652388) \ 55 OneByteString_substringUnchecked, 25652388) \
56 V(_OneByteString, _setAt, OneByteString_setAt, 1754827784) \ 56 V(_OneByteString, _setAt, OneByteString_setAt, 1754827784) \
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 CORE_INTEGER_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) 154 CORE_INTEGER_LIB_INTRINSIC_LIST(DECLARE_FUNCTION)
155 MATH_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) 155 MATH_LIB_INTRINSIC_LIST(DECLARE_FUNCTION)
156 TYPED_DATA_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) 156 TYPED_DATA_LIB_INTRINSIC_LIST(DECLARE_FUNCTION)
157 157
158 #undef DECLARE_FUNCTION 158 #undef DECLARE_FUNCTION
159 }; 159 };
160 160
161 } // namespace dart 161 } // namespace dart
162 162
163 #endif // VM_INTRINSIFIER_H_ 163 #endif // VM_INTRINSIFIER_H_
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698