| 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_FLOW_GRAPH_BUILDER_H_ | 5 #ifndef VM_FLOW_GRAPH_BUILDER_H_ |
| 6 #define VM_FLOW_GRAPH_BUILDER_H_ | 6 #define VM_FLOW_GRAPH_BUILDER_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" |
| 11 #include "vm/intermediate_language.h" | 11 #include "vm/intermediate_language.h" |
| 12 | 12 |
| 13 namespace dart { | 13 namespace dart { |
| 14 | 14 |
| 15 class FlowGraph; | 15 class FlowGraph; |
| 16 class Instruction; | 16 class Instruction; |
| 17 class ParsedFunction; | 17 class ParsedFunction; |
| 18 | 18 |
| 19 // List of recognized list factories: | 19 // List of recognized list factories: |
| 20 // (factory-name-symbol, result-cid, fingerprint). | 20 // (factory-name-symbol, result-cid, fingerprint). |
| 21 // TODO(srdjan): Store the values in the snapshot instead. | 21 // TODO(srdjan): Store the values in the snapshot instead. |
| 22 #define RECOGNIZED_LIST_FACTORY_LIST(V) \ | 22 #define RECOGNIZED_LIST_FACTORY_LIST(V) \ |
| 23 V(ObjectArrayFactory, kArrayCid, 1558200848) \ | 23 V(_ListFactory, kArrayCid, 1436567945) \ |
| 24 V(GrowableObjectArrayWithData, kGrowableObjectArrayCid, 619965861) \ | 24 V(_GrowableListWithData, kGrowableObjectArrayCid, 461305701) \ |
| 25 V(GrowableObjectArrayFactory, kGrowableObjectArrayCid, 1180134731) \ | 25 V(_GrowableListFactory, kGrowableObjectArrayCid, 910639199) \ |
| 26 V(_Int8ArrayFactory, kTypedDataInt8ArrayCid, 810750844) \ | 26 V(_Int8ArrayFactory, kTypedDataInt8ArrayCid, 810750844) \ |
| 27 V(_Uint8ArrayFactory, kTypedDataUint8ArrayCid, 1246070930) \ | 27 V(_Uint8ArrayFactory, kTypedDataUint8ArrayCid, 1246070930) \ |
| 28 V(_Uint8ClampedArrayFactory, kTypedDataUint8ClampedArrayCid, 1882603960) \ | 28 V(_Uint8ClampedArrayFactory, kTypedDataUint8ClampedArrayCid, 1882603960) \ |
| 29 V(_Int16ArrayFactory, kTypedDataInt16ArrayCid, 565702275) \ | 29 V(_Int16ArrayFactory, kTypedDataInt16ArrayCid, 565702275) \ |
| 30 V(_Uint16ArrayFactory, kTypedDataUint16ArrayCid, 745756560) \ | 30 V(_Uint16ArrayFactory, kTypedDataUint16ArrayCid, 745756560) \ |
| 31 V(_Int32ArrayFactory, kTypedDataInt32ArrayCid, 2141385820) \ | 31 V(_Int32ArrayFactory, kTypedDataInt32ArrayCid, 2141385820) \ |
| 32 V(_Uint32ArrayFactory, kTypedDataUint32ArrayCid, 2076467298) \ | 32 V(_Uint32ArrayFactory, kTypedDataUint32ArrayCid, 2076467298) \ |
| 33 V(_Int64ArrayFactory, kTypedDataInt64ArrayCid, 1223523117) \ | 33 V(_Int64ArrayFactory, kTypedDataInt64ArrayCid, 1223523117) \ |
| 34 V(_Uint64ArrayFactory, kTypedDataUint64ArrayCid, 1032112679) \ | 34 V(_Uint64ArrayFactory, kTypedDataUint64ArrayCid, 1032112679) \ |
| 35 V(_Float64ArrayFactory, kTypedDataFloat64ArrayCid, 1863852388) \ | 35 V(_Float64ArrayFactory, kTypedDataFloat64ArrayCid, 1863852388) \ |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 // Output parameters. | 525 // Output parameters. |
| 526 GrowableArray<TargetEntryInstr**> true_successor_addresses_; | 526 GrowableArray<TargetEntryInstr**> true_successor_addresses_; |
| 527 GrowableArray<TargetEntryInstr**> false_successor_addresses_; | 527 GrowableArray<TargetEntryInstr**> false_successor_addresses_; |
| 528 | 528 |
| 529 intptr_t condition_token_pos_; | 529 intptr_t condition_token_pos_; |
| 530 }; | 530 }; |
| 531 | 531 |
| 532 } // namespace dart | 532 } // namespace dart |
| 533 | 533 |
| 534 #endif // VM_FLOW_GRAPH_BUILDER_H_ | 534 #endif // VM_FLOW_GRAPH_BUILDER_H_ |
| OLD | NEW |