| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 V(_Double, truncateToDouble, DoubleTruncate, 615732263) \ | 82 V(_Double, truncateToDouble, DoubleTruncate, 615732263) \ |
| 83 V(_Double, roundToDouble, DoubleRound, 622146406) \ | 83 V(_Double, roundToDouble, DoubleRound, 622146406) \ |
| 84 V(_Double, floorToDouble, DoubleFloor, 1614014643) \ | 84 V(_Double, floorToDouble, DoubleFloor, 1614014643) \ |
| 85 V(_Double, ceilToDouble, DoubleCeil, 277859570) \ | 85 V(_Double, ceilToDouble, DoubleCeil, 277859570) \ |
| 86 V(_Double, _modulo, DoubleMod, 1443289156) \ | 86 V(_Double, _modulo, DoubleMod, 1443289156) \ |
| 87 V(::, sqrt, MathSqrt, 465520247) \ | 87 V(::, sqrt, MathSqrt, 465520247) \ |
| 88 V(::, sin, MathSin, 730107143) \ | 88 V(::, sin, MathSin, 730107143) \ |
| 89 V(::, cos, MathCos, 1282146521) \ | 89 V(::, cos, MathCos, 1282146521) \ |
| 90 V(::, min, MathMin, 1022567780) \ | 90 V(::, min, MathMin, 1022567780) \ |
| 91 V(::, max, MathMax, 612058870) \ | 91 V(::, max, MathMax, 612058870) \ |
| 92 V(::, _doublePow, MathDoublePow, 2098142859) \ | 92 V(::, _doublePow, MathDoublePow, 2125162289) \ |
| 93 V(Float32x4, Float32x4., Float32x4Constructor, 1314950569) \ | 93 V(Float32x4, Float32x4., Float32x4Constructor, 1314950569) \ |
| 94 V(Float32x4, Float32x4.zero, Float32x4Zero, 1432281809) \ | 94 V(Float32x4, Float32x4.zero, Float32x4Zero, 1432281809) \ |
| 95 V(Float32x4, Float32x4.splat, Float32x4Splat, 1148280442) \ | 95 V(Float32x4, Float32x4.splat, Float32x4Splat, 1148280442) \ |
| 96 V(Float32x4, Float32x4.fromInt32x4Bits, Float32x4FromInt32x4Bits, \ | 96 V(Float32x4, Float32x4.fromInt32x4Bits, Float32x4FromInt32x4Bits, \ |
| 97 872145194) \ | 97 872145194) \ |
| 98 V(Float32x4, Float32x4.fromFloat64x2, Float32x4FromFloat64x2, 1511660322) \ | 98 V(Float32x4, Float32x4.fromFloat64x2, Float32x4FromFloat64x2, 1511660322) \ |
| 99 V(_Float32x4, shuffle, Float32x4Shuffle, 1178727105) \ | 99 V(_Float32x4, shuffle, Float32x4Shuffle, 1178727105) \ |
| 100 V(_Float32x4, shuffleMix, Float32x4ShuffleMix, 927956119) \ | 100 V(_Float32x4, shuffleMix, Float32x4ShuffleMix, 927956119) \ |
| 101 V(_Float32x4, get:x, Float32x4ShuffleX, 1351747629) \ | 101 V(_Float32x4, get:x, Float32x4ShuffleX, 1351747629) \ |
| 102 V(_Float32x4, get:y, Float32x4ShuffleY, 217416201) \ | 102 V(_Float32x4, get:y, Float32x4ShuffleY, 217416201) \ |
| (...skipping 7679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7782 ForwardInstructionIterator* current_iterator_; | 7782 ForwardInstructionIterator* current_iterator_; |
| 7783 | 7783 |
| 7784 private: | 7784 private: |
| 7785 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); | 7785 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); |
| 7786 }; | 7786 }; |
| 7787 | 7787 |
| 7788 | 7788 |
| 7789 } // namespace dart | 7789 } // namespace dart |
| 7790 | 7790 |
| 7791 #endif // VM_INTERMEDIATE_LANGUAGE_H_ | 7791 #endif // VM_INTERMEDIATE_LANGUAGE_H_ |
| OLD | NEW |