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

Side by Side Diff: runtime/vm/intermediate_language.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 | « no previous file | runtime/vm/intrinsifier.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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_INTERMEDIATE_LANGUAGE_H_ 5 #ifndef VM_INTERMEDIATE_LANGUAGE_H_
6 #define VM_INTERMEDIATE_LANGUAGE_H_ 6 #define VM_INTERMEDIATE_LANGUAGE_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/ast.h" 9 #include "vm/ast.h"
10 #include "vm/growable_array.h" 10 #include "vm/growable_array.h"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 V(_TypedList, _setFloat32, ByteArrayBaseSetFloat32, 756330666) \ 62 V(_TypedList, _setFloat32, ByteArrayBaseSetFloat32, 756330666) \
63 V(_TypedList, _setFloat64, ByteArrayBaseSetFloat64, 1495546688) \ 63 V(_TypedList, _setFloat64, ByteArrayBaseSetFloat64, 1495546688) \
64 V(_TypedList, _setFloat32x4, ByteArrayBaseSetFloat32x4, 560495357) \ 64 V(_TypedList, _setFloat32x4, ByteArrayBaseSetFloat32x4, 560495357) \
65 V(_GrowableObjectArray, get:length, GrowableArrayLength, 1160357614) \ 65 V(_GrowableObjectArray, get:length, GrowableArrayLength, 1160357614) \
66 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 1509781988) \ 66 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 1509781988) \
67 V(_GrowableObjectArray, _setData, GrowableArraySetData, 236295352) \ 67 V(_GrowableObjectArray, _setData, GrowableArraySetData, 236295352) \
68 V(_GrowableObjectArray, _setLength, GrowableArraySetLength, 1922121178) \ 68 V(_GrowableObjectArray, _setLength, GrowableArraySetLength, 1922121178) \
69 V(_StringBase, get:length, StringBaseLength, 1483460481) \ 69 V(_StringBase, get:length, StringBaseLength, 1483460481) \
70 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 1588094430) \ 70 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 1588094430) \
71 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 1958436584) \ 71 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 1958436584) \
72 V(_StringBase, [], StringBaseCharAt, 539412735) \ 72 V(_StringBase, [], StringBaseCharAt, 1799392702) \
73 V(_OneByteString, _setAt, OneByteStringSetAt, 1754827784) \ 73 V(_OneByteString, _setAt, OneByteStringSetAt, 1754827784) \
74 V(_IntegerImplementation, toDouble, IntegerToDouble, 2141284842) \ 74 V(_IntegerImplementation, toDouble, IntegerToDouble, 2141284842) \
75 V(_IntegerImplementation, _leftShiftWithMask32, IntegerLeftShiftWithMask32, \ 75 V(_IntegerImplementation, _leftShiftWithMask32, IntegerLeftShiftWithMask32, \
76 2095943661) \ 76 2095943661) \
77 V(_Double, toInt, DoubleToInteger, 1328149975) \ 77 V(_Double, toInt, DoubleToInteger, 1328149975) \
78 V(_Double, truncateToDouble, DoubleTruncate, 615732263) \ 78 V(_Double, truncateToDouble, DoubleTruncate, 615732263) \
79 V(_Double, roundToDouble, DoubleRound, 622146406) \ 79 V(_Double, roundToDouble, DoubleRound, 622146406) \
80 V(_Double, floorToDouble, DoubleFloor, 1614014643) \ 80 V(_Double, floorToDouble, DoubleFloor, 1614014643) \
81 V(_Double, ceilToDouble, DoubleCeil, 277859570) \ 81 V(_Double, ceilToDouble, DoubleCeil, 277859570) \
82 V(_Double, _modulo, DoubleMod, 1443289156) \ 82 V(_Double, _modulo, DoubleMod, 1443289156) \
(...skipping 6701 matching lines...) Expand 10 before | Expand all | Expand 10 after
6784 ForwardInstructionIterator* current_iterator_; 6784 ForwardInstructionIterator* current_iterator_;
6785 6785
6786 private: 6786 private:
6787 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); 6787 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor);
6788 }; 6788 };
6789 6789
6790 6790
6791 } // namespace dart 6791 } // namespace dart
6792 6792
6793 #endif // VM_INTERMEDIATE_LANGUAGE_H_ 6793 #endif // VM_INTERMEDIATE_LANGUAGE_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/intrinsifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698