| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 V(_ExternalUint8ClampedArray, _getIndexed, \ | 54 V(_ExternalUint8ClampedArray, _getIndexed, \ |
| 55 ExternalUint8ClampedArrayGetIndexed, 682839007) \ | 55 ExternalUint8ClampedArrayGetIndexed, 682839007) \ |
| 56 V(_Int16Array, _getIndexed, Int16ArrayGetIndexed, 313999108) \ | 56 V(_Int16Array, _getIndexed, Int16ArrayGetIndexed, 313999108) \ |
| 57 V(_Uint16Array, _getIndexed, Uint16ArrayGetIndexed, 539701175) \ | 57 V(_Uint16Array, _getIndexed, Uint16ArrayGetIndexed, 539701175) \ |
| 58 V(_Int32Array, _getIndexed, Int32ArrayGetIndexed, 655321526) \ | 58 V(_Int32Array, _getIndexed, Int32ArrayGetIndexed, 655321526) \ |
| 59 V(_Uint32Array, _getIndexed, Uint32ArrayGetIndexed, 1060443550) \ | 59 V(_Uint32Array, _getIndexed, Uint32ArrayGetIndexed, 1060443550) \ |
| 60 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \ | 60 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \ |
| 61 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 725548050) \ | 61 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 725548050) \ |
| 62 V(_StringBase, get:length, StringBaseLength, 320803993) \ | 62 V(_StringBase, get:length, StringBaseLength, 320803993) \ |
| 63 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 711547329) \ | 63 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 711547329) \ |
| 64 V(_StringBase, charCodeAt, StringBaseCharCodeAt, 984449525) \ | 64 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 984449525) \ |
| 65 V(_StringBase, [], StringBaseCharAt, 1062366987) \ | 65 V(_StringBase, [], StringBaseCharAt, 1062366987) \ |
| 66 V(_IntegerImplementation, toDouble, IntegerToDouble, 733149324) \ | 66 V(_IntegerImplementation, toDouble, IntegerToDouble, 733149324) \ |
| 67 V(_Double, toInt, DoubleToInteger, 362666636) \ | 67 V(_Double, toInt, DoubleToInteger, 362666636) \ |
| 68 V(_Double, truncate, DoubleTruncate, 620870996) \ | 68 V(_Double, truncate, DoubleTruncate, 620870996) \ |
| 69 V(_Double, round, DoubleRound, 620870996) \ | 69 V(_Double, round, DoubleRound, 620870996) \ |
| 70 V(_Double, floor, DoubleFloor, 620870996) \ | 70 V(_Double, floor, DoubleFloor, 620870996) \ |
| 71 V(_Double, ceil, DoubleCeil, 620870996) \ | 71 V(_Double, ceil, DoubleCeil, 620870996) \ |
| 72 V(_Double, pow, DoublePow, 1131958048) \ | 72 V(_Double, pow, DoublePow, 1131958048) \ |
| 73 V(_Double, _modulo, DoubleMod, 437099337) \ | 73 V(_Double, _modulo, DoubleMod, 437099337) \ |
| 74 V(::, sqrt, MathSqrt, 1662640002) \ | 74 V(::, sqrt, MathSqrt, 1662640002) \ |
| (...skipping 4391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4466 ForwardInstructionIterator* current_iterator_; | 4466 ForwardInstructionIterator* current_iterator_; |
| 4467 | 4467 |
| 4468 private: | 4468 private: |
| 4469 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); | 4469 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); |
| 4470 }; | 4470 }; |
| 4471 | 4471 |
| 4472 | 4472 |
| 4473 } // namespace dart | 4473 } // namespace dart |
| 4474 | 4474 |
| 4475 #endif // VM_INTERMEDIATE_LANGUAGE_H_ | 4475 #endif // VM_INTERMEDIATE_LANGUAGE_H_ |
| OLD | NEW |