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

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

Issue 12880023: Remove legacy syntax support for library import (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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/flow_graph_builder.cc ('k') | 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 V(_TypedList, _setUint8, ByteArrayBaseSetUint8, 287047804) \ 50 V(_TypedList, _setUint8, ByteArrayBaseSetUint8, 287047804) \
51 V(_TypedList, _setInt16, ByteArrayBaseSetInt16, 287047804) \ 51 V(_TypedList, _setInt16, ByteArrayBaseSetInt16, 287047804) \
52 V(_TypedList, _setUint16, ByteArrayBaseSetUint16, 287047804) \ 52 V(_TypedList, _setUint16, ByteArrayBaseSetUint16, 287047804) \
53 V(_TypedList, _setInt32, ByteArrayBaseSetInt32, 287047804) \ 53 V(_TypedList, _setInt32, ByteArrayBaseSetInt32, 287047804) \
54 V(_TypedList, _setUint32, ByteArrayBaseSetUint32, 287047804) \ 54 V(_TypedList, _setUint32, ByteArrayBaseSetUint32, 287047804) \
55 V(_TypedList, _setFloat32, ByteArrayBaseSetFloat32, 1032541114) \ 55 V(_TypedList, _setFloat32, ByteArrayBaseSetFloat32, 1032541114) \
56 V(_TypedList, _setFloat64, ByteArrayBaseSetFloat64, 1032541114) \ 56 V(_TypedList, _setFloat64, ByteArrayBaseSetFloat64, 1032541114) \
57 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \ 57 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \
58 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 725548050) \ 58 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 725548050) \
59 V(_StringBase, get:length, StringBaseLength, 320803993) \ 59 V(_StringBase, get:length, StringBaseLength, 320803993) \
60 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 711547329) \ 60 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 110632481) \
61 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 984449525) \ 61 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 984449525) \
62 V(_StringBase, [], StringBaseCharAt, 1062366987) \ 62 V(_StringBase, [], StringBaseCharAt, 1062366987) \
63 V(_IntegerImplementation, toDouble, IntegerToDouble, 733149324) \ 63 V(_IntegerImplementation, toDouble, IntegerToDouble, 733149324) \
64 V(_Double, toInt, DoubleToInteger, 362666636) \ 64 V(_Double, toInt, DoubleToInteger, 362666636) \
65 V(_Double, truncateToDouble, DoubleTruncate, 620870996) \ 65 V(_Double, truncateToDouble, DoubleTruncate, 620870996) \
66 V(_Double, roundToDouble, DoubleRound, 620870996) \ 66 V(_Double, roundToDouble, DoubleRound, 620870996) \
67 V(_Double, floorToDouble, DoubleFloor, 620870996) \ 67 V(_Double, floorToDouble, DoubleFloor, 620870996) \
68 V(_Double, ceilToDouble, DoubleCeil, 620870996) \ 68 V(_Double, ceilToDouble, DoubleCeil, 620870996) \
69 V(_Double, pow, DoublePow, 1131958048) \ 69 V(_Double, pow, DoublePow, 1131958048) \
70 V(_Double, _modulo, DoubleMod, 437099337) \ 70 V(_Double, _modulo, DoubleMod, 437099337) \
(...skipping 4604 matching lines...) Expand 10 before | Expand all | Expand 10 after
4675 ForwardInstructionIterator* current_iterator_; 4675 ForwardInstructionIterator* current_iterator_;
4676 4676
4677 private: 4677 private:
4678 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); 4678 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor);
4679 }; 4679 };
4680 4680
4681 4681
4682 } // namespace dart 4682 } // namespace dart
4683 4683
4684 #endif // VM_INTERMEDIATE_LANGUAGE_H_ 4684 #endif // VM_INTERMEDIATE_LANGUAGE_H_
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/intrinsifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698