| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |