| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 | 31 |
| 32 // TODO(srdjan): Add _ByteArrayBase, get:length. | 32 // TODO(srdjan): Add _ByteArrayBase, get:length. |
| 33 // TODO(srdjan): Unify with INTRINSIC_LIST. | 33 // TODO(srdjan): Unify with INTRINSIC_LIST. |
| 34 // (class-name, function-name, recognized enum, fingerprint). | 34 // (class-name, function-name, recognized enum, fingerprint). |
| 35 // See intrinsifier for fingerprint computation. | 35 // See intrinsifier for fingerprint computation. |
| 36 #define RECOGNIZED_LIST(V) \ | 36 #define RECOGNIZED_LIST(V) \ |
| 37 V(_ObjectArray, get:length, ObjectArrayLength, 405297088) \ | 37 V(_ObjectArray, get:length, ObjectArrayLength, 405297088) \ |
| 38 V(_ImmutableArray, get:length, ImmutableArrayLength, 433698233) \ | 38 V(_ImmutableArray, get:length, ImmutableArrayLength, 433698233) \ |
| 39 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \ | 39 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \ |
| 40 V(_GrowableObjectArray, get:capacity, GrowableArrayCapacity, 725548050) \ | 40 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 725548050) \ |
| 41 V(_StringBase, get:length, StringBaseLength, 320803993) \ | 41 V(_StringBase, get:length, StringBaseLength, 320803993) \ |
| 42 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 583130725) \ | 42 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 583130725) \ |
| 43 V(_StringBase, charCodeAt, StringBaseCharCodeAt, 984449525) \ | 43 V(_StringBase, charCodeAt, StringBaseCharCodeAt, 984449525) \ |
| 44 V(_StringBase, [], StringBaseCharAt, 1062366987) \ | 44 V(_StringBase, [], StringBaseCharAt, 1062366987) \ |
| 45 V(_IntegerImplementation, toDouble, IntegerToDouble, 1252792570) \ | 45 V(_IntegerImplementation, toDouble, IntegerToDouble, 1252792570) \ |
| 46 V(_Double, toInt, DoubleToInteger, 362666636) \ | 46 V(_Double, toInt, DoubleToInteger, 362666636) \ |
| 47 V(::, sqrt, MathSqrt, 2232519) \ | 47 V(::, sqrt, MathSqrt, 2232519) \ |
| 48 | 48 |
| 49 // Class that recognizes the name and owner of a function and returns the | 49 // Class that recognizes the name and owner of a function and returns the |
| 50 // corresponding enum. See RECOGNIZED_LIST above for list of recognizable | 50 // corresponding enum. See RECOGNIZED_LIST above for list of recognizable |
| (...skipping 4303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4354 ForwardInstructionIterator* current_iterator_; | 4354 ForwardInstructionIterator* current_iterator_; |
| 4355 | 4355 |
| 4356 private: | 4356 private: |
| 4357 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); | 4357 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); |
| 4358 }; | 4358 }; |
| 4359 | 4359 |
| 4360 | 4360 |
| 4361 } // namespace dart | 4361 } // namespace dart |
| 4362 | 4362 |
| 4363 #endif // VM_INTERMEDIATE_LANGUAGE_H_ | 4363 #endif // VM_INTERMEDIATE_LANGUAGE_H_ |
| OLD | NEW |