| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 V(_TypedList, _setFloat64, ByteArrayBaseSetFloat64, 49127618) \ | 63 V(_TypedList, _setFloat64, ByteArrayBaseSetFloat64, 49127618) \ |
| 64 V(_TypedList, _setFloat32x4, ByteArrayBaseSetFloat32x4, 1261559935) \ | 64 V(_TypedList, _setFloat32x4, ByteArrayBaseSetFloat32x4, 1261559935) \ |
| 65 V(_GrowableObjectArray, get:length, GrowableArrayLength, 1160417196) \ | 65 V(_GrowableObjectArray, get:length, GrowableArrayLength, 1160417196) \ |
| 66 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 1509841570) \ | 66 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 1509841570) \ |
| 67 V(_GrowableObjectArray, _setData, GrowableArraySetData, 1574432374) \ | 67 V(_GrowableObjectArray, _setData, GrowableArraySetData, 1574432374) \ |
| 68 V(_GrowableObjectArray, _setLength, GrowableArraySetLength, 1112774552) \ | 68 V(_GrowableObjectArray, _setLength, GrowableArraySetLength, 1112774552) \ |
| 69 V(_StringBase, get:length, StringBaseLength, 1483520063) \ | 69 V(_StringBase, get:length, StringBaseLength, 1483520063) \ |
| 70 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 879849436) \ | 70 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 879849436) \ |
| 71 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 1958436584) \ | 71 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 1958436584) \ |
| 72 V(_StringBase, [], StringBaseCharAt, 990046076) \ | 72 V(_StringBase, [], StringBaseCharAt, 990046076) \ |
| 73 V(_StringBase, _interpolate, StringBaseInterpolate, 562390768) \ |
| 73 V(_OneByteString, _setAt, OneByteStringSetAt, 308408714) \ | 74 V(_OneByteString, _setAt, OneByteStringSetAt, 308408714) \ |
| 74 V(_IntegerImplementation, toDouble, IntegerToDouble, 2011998508) \ | 75 V(_IntegerImplementation, toDouble, IntegerToDouble, 2011998508) \ |
| 75 V(_IntegerImplementation, _leftShiftWithMask32, IntegerLeftShiftWithMask32, \ | 76 V(_IntegerImplementation, _leftShiftWithMask32, IntegerLeftShiftWithMask32, \ |
| 76 2095943661) \ | 77 2095943661) \ |
| 77 V(_Double, toInt, DoubleToInteger, 1328149975) \ | 78 V(_Double, toInt, DoubleToInteger, 1328149975) \ |
| 78 V(_Double, truncateToDouble, DoubleTruncate, 615732263) \ | 79 V(_Double, truncateToDouble, DoubleTruncate, 615732263) \ |
| 79 V(_Double, roundToDouble, DoubleRound, 622146406) \ | 80 V(_Double, roundToDouble, DoubleRound, 622146406) \ |
| 80 V(_Double, floorToDouble, DoubleFloor, 1614014643) \ | 81 V(_Double, floorToDouble, DoubleFloor, 1614014643) \ |
| 81 V(_Double, ceilToDouble, DoubleCeil, 277859570) \ | 82 V(_Double, ceilToDouble, DoubleCeil, 277859570) \ |
| 82 V(_Double, _modulo, DoubleMod, 1443289156) \ | 83 V(_Double, _modulo, DoubleMod, 1443289156) \ |
| (...skipping 6719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6802 ForwardInstructionIterator* current_iterator_; | 6803 ForwardInstructionIterator* current_iterator_; |
| 6803 | 6804 |
| 6804 private: | 6805 private: |
| 6805 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); | 6806 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); |
| 6806 }; | 6807 }; |
| 6807 | 6808 |
| 6808 | 6809 |
| 6809 } // namespace dart | 6810 } // namespace dart |
| 6810 | 6811 |
| 6811 #endif // VM_INTERMEDIATE_LANGUAGE_H_ | 6812 #endif // VM_INTERMEDIATE_LANGUAGE_H_ |
| OLD | NEW |