| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 V(_TypedList, _setFloat32x4, ByteArrayBaseSetFloat32x4, 950522310) \ | 67 V(_TypedList, _setFloat32x4, ByteArrayBaseSetFloat32x4, 950522310) \ |
| 68 V(_TypedList, _setInt32x4, ByteArrayBaseSetInt32x4, 1301138078) \ | 68 V(_TypedList, _setInt32x4, ByteArrayBaseSetInt32x4, 1301138078) \ |
| 69 V(_GrowableList, get:length, GrowableArrayLength, 778505107) \ | 69 V(_GrowableList, get:length, GrowableArrayLength, 778505107) \ |
| 70 V(_GrowableList, get:_capacity, GrowableArrayCapacity, 555140075) \ | 70 V(_GrowableList, get:_capacity, GrowableArrayCapacity, 555140075) \ |
| 71 V(_GrowableList, _setData, GrowableArraySetData, 2126927509) \ | 71 V(_GrowableList, _setData, GrowableArraySetData, 2126927509) \ |
| 72 V(_GrowableList, _setLength, GrowableArraySetLength, 89389299) \ | 72 V(_GrowableList, _setLength, GrowableArraySetLength, 89389299) \ |
| 73 V(_StringBase, get:length, StringBaseLength, 784399628) \ | 73 V(_StringBase, get:length, StringBaseLength, 784399628) \ |
| 74 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 49873871) \ | 74 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 49873871) \ |
| 75 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 397735324) \ | 75 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 397735324) \ |
| 76 V(_StringBase, [], StringBaseCharAt, 1512210677) \ | 76 V(_StringBase, [], StringBaseCharAt, 1512210677) \ |
| 77 V(_StringBase, _interpolate, StringBaseInterpolate, 2001502149) \ | 77 V(_StringBase, _interpolate, StringBaseInterpolate, 1758627989) \ |
| 78 V(_OneByteString, _setAt, OneByteStringSetAt, 468605749) \ | 78 V(_OneByteString, _setAt, OneByteStringSetAt, 468605749) \ |
| 79 V(_IntegerImplementation, toDouble, IntegerToDouble, 1084977108) \ | 79 V(_IntegerImplementation, toDouble, IntegerToDouble, 1084977108) \ |
| 80 V(_IntegerImplementation, _leftShiftWithMask32, IntegerLeftShiftWithMask32, \ | 80 V(_IntegerImplementation, _leftShiftWithMask32, IntegerLeftShiftWithMask32, \ |
| 81 597111055) \ | 81 597111055) \ |
| 82 V(_Double, toInt, DoubleToInteger, 1547535151) \ | 82 V(_Double, toInt, DoubleToInteger, 1547535151) \ |
| 83 V(_Double, truncateToDouble, DoubleTruncate, 2117801967) \ | 83 V(_Double, truncateToDouble, DoubleTruncate, 2117801967) \ |
| 84 V(_Double, roundToDouble, DoubleRound, 2124216110) \ | 84 V(_Double, roundToDouble, DoubleRound, 2124216110) \ |
| 85 V(_Double, floorToDouble, DoubleFloor, 968600699) \ | 85 V(_Double, floorToDouble, DoubleFloor, 968600699) \ |
| 86 V(_Double, ceilToDouble, DoubleCeil, 1779929274) \ | 86 V(_Double, ceilToDouble, DoubleCeil, 1779929274) \ |
| 87 V(_Double, _modulo, DoubleMod, 1473971007) \ | 87 V(_Double, _modulo, DoubleMod, 1473971007) \ |
| (...skipping 8104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8192 ForwardInstructionIterator* current_iterator_; | 8192 ForwardInstructionIterator* current_iterator_; |
| 8193 | 8193 |
| 8194 private: | 8194 private: |
| 8195 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); | 8195 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); |
| 8196 }; | 8196 }; |
| 8197 | 8197 |
| 8198 | 8198 |
| 8199 } // namespace dart | 8199 } // namespace dart |
| 8200 | 8200 |
| 8201 #endif // VM_INTERMEDIATE_LANGUAGE_H_ | 8201 #endif // VM_INTERMEDIATE_LANGUAGE_H_ |
| OLD | NEW |