| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 V(_GrowableObjectArray, get:length, GrowableArrayLength, 767561362) \ | 65 V(_GrowableObjectArray, get:length, GrowableArrayLength, 767561362) \ |
| 66 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 874559046) \ | 66 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 874559046) \ |
| 67 V(_GrowableObjectArray, _setData, GrowableArraySetData, 1302055339) \ | 67 V(_GrowableObjectArray, _setData, GrowableArraySetData, 1302055339) \ |
| 68 V(_GrowableObjectArray, _setLength, GrowableArraySetLength, 1016226171) \ | 68 V(_GrowableObjectArray, _setLength, GrowableArraySetLength, 1016226171) \ |
| 69 V(_StringBase, get:length, StringBaseLength, 1158042795) \ | 69 V(_StringBase, get:length, StringBaseLength, 1158042795) \ |
| 70 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 1588094430) \ | 70 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 1588094430) \ |
| 71 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 1452213966) \ | 71 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 1452213966) \ |
| 72 V(_StringBase, [], StringBaseCharAt, 924930519) \ | 72 V(_StringBase, [], StringBaseCharAt, 924930519) \ |
| 73 V(_OneByteString, _setAt, OneByteStringSetAt, 456985263) \ | 73 V(_OneByteString, _setAt, OneByteStringSetAt, 456985263) \ |
| 74 V(_IntegerImplementation, toDouble, IntegerToDouble, 2141284842) \ | 74 V(_IntegerImplementation, toDouble, IntegerToDouble, 2141284842) \ |
| 75 V(_IntegerImplementation, _leftShiftWithMask32, IntegerLeftShiftWithMask32, \ |
| 76 964472615) \ |
| 75 V(_Double, toInt, DoubleToInteger, 1580473283) \ | 77 V(_Double, toInt, DoubleToInteger, 1580473283) \ |
| 76 V(_Double, truncateToDouble, DoubleTruncate, 849350203) \ | 78 V(_Double, truncateToDouble, DoubleTruncate, 849350203) \ |
| 77 V(_Double, roundToDouble, DoubleRound, 500368418) \ | 79 V(_Double, roundToDouble, DoubleRound, 500368418) \ |
| 78 V(_Double, floorToDouble, DoubleFloor, 763548522) \ | 80 V(_Double, floorToDouble, DoubleFloor, 763548522) \ |
| 79 V(_Double, ceilToDouble, DoubleCeil, 976697019) \ | 81 V(_Double, ceilToDouble, DoubleCeil, 976697019) \ |
| 80 V(_Double, pow, DoublePow, 1240251670) \ | 82 V(_Double, pow, DoublePow, 1240251670) \ |
| 81 V(_Double, _modulo, DoubleMod, 1850917533) \ | 83 V(_Double, _modulo, DoubleMod, 1850917533) \ |
| 82 V(::, sqrt, MathSqrt, 465520247) \ | 84 V(::, sqrt, MathSqrt, 465520247) \ |
| 83 V(::, sin, MathSin, 730107143) \ | 85 V(::, sin, MathSin, 730107143) \ |
| 84 V(::, cos, MathCos, 1282146521) \ | 86 V(::, cos, MathCos, 1282146521) \ |
| (...skipping 6534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6619 ForwardInstructionIterator* current_iterator_; | 6621 ForwardInstructionIterator* current_iterator_; |
| 6620 | 6622 |
| 6621 private: | 6623 private: |
| 6622 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); | 6624 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); |
| 6623 }; | 6625 }; |
| 6624 | 6626 |
| 6625 | 6627 |
| 6626 } // namespace dart | 6628 } // namespace dart |
| 6627 | 6629 |
| 6628 #endif // VM_INTERMEDIATE_LANGUAGE_H_ | 6630 #endif // VM_INTERMEDIATE_LANGUAGE_H_ |
| OLD | NEW |