| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 2095943661) \ | 76 2095943661) \ |
| 77 V(_Double, toInt, DoubleToInteger, 1328149975) \ | 77 V(_Double, toInt, DoubleToInteger, 1328149975) \ |
| 78 V(_Double, truncateToDouble, DoubleTruncate, 615732263) \ | 78 V(_Double, truncateToDouble, DoubleTruncate, 615732263) \ |
| 79 V(_Double, roundToDouble, DoubleRound, 622146406) \ | 79 V(_Double, roundToDouble, DoubleRound, 622146406) \ |
| 80 V(_Double, floorToDouble, DoubleFloor, 1614014643) \ | 80 V(_Double, floorToDouble, DoubleFloor, 1614014643) \ |
| 81 V(_Double, ceilToDouble, DoubleCeil, 277859570) \ | 81 V(_Double, ceilToDouble, DoubleCeil, 277859570) \ |
| 82 V(_Double, _modulo, DoubleMod, 1443289156) \ | 82 V(_Double, _modulo, DoubleMod, 1443289156) \ |
| 83 V(::, sqrt, MathSqrt, 465520247) \ | 83 V(::, sqrt, MathSqrt, 465520247) \ |
| 84 V(::, sin, MathSin, 730107143) \ | 84 V(::, sin, MathSin, 730107143) \ |
| 85 V(::, cos, MathCos, 1282146521) \ | 85 V(::, cos, MathCos, 1282146521) \ |
| 86 V(::, min, MathMin, 1830216388) \ | 86 V(::, min, MathMin, 1602283410) \ |
| 87 V(::, max, MathMax, 234565686) \ | 87 V(::, max, MathMax, 997766696) \ |
| 88 V(::, _doublePow, MathDoublePow, 1728171041) \ | 88 V(::, _doublePow, MathDoublePow, 1728171041) \ |
| 89 V(Float32x4, Float32x4., Float32x4Constructor, 786169160) \ | 89 V(Float32x4, Float32x4., Float32x4Constructor, 786169160) \ |
| 90 V(Float32x4, Float32x4.zero, Float32x4Zero, 1589383280) \ | 90 V(Float32x4, Float32x4.zero, Float32x4Zero, 1589383280) \ |
| 91 V(Float32x4, Float32x4.splat, Float32x4Splat, 62513275) \ | 91 V(Float32x4, Float32x4.splat, Float32x4Splat, 62513275) \ |
| 92 V(Float32x4, Float32x4.fromUint32x4Bits, Float32x4FromUint32x4Bits, \ | 92 V(Float32x4, Float32x4.fromUint32x4Bits, Float32x4FromUint32x4Bits, \ |
| 93 770033146) \ | 93 770033146) \ |
| 94 V(_Float32x4, shuffle, Float32x4Shuffle, 1178727105) \ | 94 V(_Float32x4, shuffle, Float32x4Shuffle, 1178727105) \ |
| 95 V(_Float32x4, get:x, Float32x4ShuffleX, 1351717838) \ | 95 V(_Float32x4, get:x, Float32x4ShuffleX, 1351717838) \ |
| 96 V(_Float32x4, get:y, Float32x4ShuffleY, 217386410) \ | 96 V(_Float32x4, get:y, Float32x4ShuffleY, 217386410) \ |
| 97 V(_Float32x4, get:z, Float32x4ShuffleZ, 2144923721) \ | 97 V(_Float32x4, get:z, Float32x4ShuffleZ, 2144923721) \ |
| (...skipping 6704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6802 ForwardInstructionIterator* current_iterator_; | 6802 ForwardInstructionIterator* current_iterator_; |
| 6803 | 6803 |
| 6804 private: | 6804 private: |
| 6805 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); | 6805 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); |
| 6806 }; | 6806 }; |
| 6807 | 6807 |
| 6808 | 6808 |
| 6809 } // namespace dart | 6809 } // namespace dart |
| 6810 | 6810 |
| 6811 #endif // VM_INTERMEDIATE_LANGUAGE_H_ | 6811 #endif // VM_INTERMEDIATE_LANGUAGE_H_ |
| OLD | NEW |