| 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 20 matching lines...) Expand all Loading... |
| 31 // TODO(srdjan): Add _ByteArrayBase, get:length. | 31 // TODO(srdjan): Add _ByteArrayBase, get:length. |
| 32 // TODO(srdjan): Unify with INTRINSIC_LIST. | 32 // TODO(srdjan): Unify with INTRINSIC_LIST. |
| 33 // (class-name, function-name, recognized enum, fingerprint). | 33 // (class-name, function-name, recognized enum, fingerprint). |
| 34 // See intrinsifier for fingerprint computation. | 34 // See intrinsifier for fingerprint computation. |
| 35 #define RECOGNIZED_LIST(V) \ | 35 #define RECOGNIZED_LIST(V) \ |
| 36 V(_ObjectArray, get:length, ObjectArrayLength, 405297088) \ | 36 V(_ObjectArray, get:length, ObjectArrayLength, 405297088) \ |
| 37 V(_ImmutableArray, get:length, ImmutableArrayLength, 433698233) \ | 37 V(_ImmutableArray, get:length, ImmutableArrayLength, 433698233) \ |
| 38 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \ | 38 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \ |
| 39 V(_GrowableObjectArray, get:capacity, GrowableArrayCapacity, 725548050) \ | 39 V(_GrowableObjectArray, get:capacity, GrowableArrayCapacity, 725548050) \ |
| 40 V(_StringBase, get:length, StringBaseLength, 320803993) \ | 40 V(_StringBase, get:length, StringBaseLength, 320803993) \ |
| 41 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 1065961093) \ | 41 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 583130725) \ |
| 42 V(_StringBase, charCodeAt, StringBaseCharCodeAt, 984449525) \ | 42 V(_StringBase, charCodeAt, StringBaseCharCodeAt, 984449525) \ |
| 43 V(_StringBase, [], StringBaseCharAt, 1062366987) \ | 43 V(_StringBase, [], StringBaseCharAt, 1062366987) \ |
| 44 V(_IntegerImplementation, toDouble, IntegerToDouble, 1396338041) \ | 44 V(_IntegerImplementation, toDouble, IntegerToDouble, 1252792570) \ |
| 45 V(_Double, toInt, DoubleToInteger, 362666636) \ | 45 V(_Double, toInt, DoubleToInteger, 362666636) \ |
| 46 V(::, sqrt, MathSqrt, 2232519) \ | 46 V(::, sqrt, MathSqrt, 2232519) \ |
| 47 | 47 |
| 48 // Class that recognizes the name and owner of a function and returns the | 48 // Class that recognizes the name and owner of a function and returns the |
| 49 // corresponding enum. See RECOGNIZED_LIST above for list of recognizable | 49 // corresponding enum. See RECOGNIZED_LIST above for list of recognizable |
| 50 // functions. | 50 // functions. |
| 51 class MethodRecognizer : public AllStatic { | 51 class MethodRecognizer : public AllStatic { |
| 52 public: | 52 public: |
| 53 enum Kind { | 53 enum Kind { |
| 54 kUnknown, | 54 kUnknown, |
| (...skipping 4237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4292 ForwardInstructionIterator* current_iterator_; | 4292 ForwardInstructionIterator* current_iterator_; |
| 4293 | 4293 |
| 4294 private: | 4294 private: |
| 4295 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); | 4295 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); |
| 4296 }; | 4296 }; |
| 4297 | 4297 |
| 4298 | 4298 |
| 4299 } // namespace dart | 4299 } // namespace dart |
| 4300 | 4300 |
| 4301 #endif // VM_INTERMEDIATE_LANGUAGE_H_ | 4301 #endif // VM_INTERMEDIATE_LANGUAGE_H_ |
| OLD | NEW |