| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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_CONSTANTS_DBC_H_ | 5 #ifndef VM_CONSTANTS_DBC_H_ |
| 6 #define VM_CONSTANTS_DBC_H_ | 6 #define VM_CONSTANTS_DBC_H_ |
| 7 | 7 |
| 8 #include "platform/globals.h" | 8 #include "platform/globals.h" |
| 9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
| 10 #include "platform/utils.h" | 10 #include "platform/utils.h" |
| (...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 V(IfDEq, A_D, reg, reg, ___) \ | 740 V(IfDEq, A_D, reg, reg, ___) \ |
| 741 V(IfDLe, A_D, reg, reg, ___) \ | 741 V(IfDLe, A_D, reg, reg, ___) \ |
| 742 V(IfDLt, A_D, reg, reg, ___) \ | 742 V(IfDLt, A_D, reg, reg, ___) \ |
| 743 V(IfDGe, A_D, reg, reg, ___) \ | 743 V(IfDGe, A_D, reg, reg, ___) \ |
| 744 V(IfDGt, A_D, reg, reg, ___) \ | 744 V(IfDGt, A_D, reg, reg, ___) \ |
| 745 V(IfNeStrictNum, A_D, reg, reg, ___) \ | 745 V(IfNeStrictNum, A_D, reg, reg, ___) \ |
| 746 V(IfEqStrictNum, A_D, reg, reg, ___) \ | 746 V(IfEqStrictNum, A_D, reg, reg, ___) \ |
| 747 V(IfEqNull, A, reg, ___, ___) \ | 747 V(IfEqNull, A, reg, ___, ___) \ |
| 748 V(IfNeNull, A, reg, ___, ___) \ | 748 V(IfNeNull, A, reg, ___, ___) \ |
| 749 V(CreateArrayTOS, 0, ___, ___, ___) \ | 749 V(CreateArrayTOS, 0, ___, ___, ___) \ |
| 750 V(CreateArrayOpt, A_B_C, reg, reg, ___) \ | 750 V(CreateArrayOpt, A_B_C, reg, reg, reg) \ |
| 751 V(Allocate, D, lit, ___, ___) \ | 751 V(Allocate, D, lit, ___, ___) \ |
| 752 V(AllocateT, 0, ___, ___, ___) \ | 752 V(AllocateT, 0, ___, ___, ___) \ |
| 753 V(AllocateOpt, A_D, reg, lit, ___) \ | 753 V(AllocateOpt, A_D, reg, lit, ___) \ |
| 754 V(AllocateTOpt, A_D, reg, lit, ___) \ | 754 V(AllocateTOpt, A_D, reg, lit, ___) \ |
| 755 V(StoreIndexedTOS, 0, ___, ___, ___) \ | 755 V(StoreIndexedTOS, 0, ___, ___, ___) \ |
| 756 V(StoreIndexed, A_B_C, reg, reg, reg) \ | 756 V(StoreIndexed, A_B_C, reg, reg, reg) \ |
| 757 V(StoreIndexedUint8, A_B_C, reg, reg, reg) \ | 757 V(StoreIndexedUint8, A_B_C, reg, reg, reg) \ |
| 758 V(StoreIndexedExternalUint8, A_B_C, reg, reg, reg) \ | 758 V(StoreIndexedExternalUint8, A_B_C, reg, reg, reg) \ |
| 759 V(StoreIndexedOneByteString, A_B_C, reg, reg, reg) \ | 759 V(StoreIndexedOneByteString, A_B_C, reg, reg, reg) \ |
| 760 V(StoreIndexedUint32, A_B_C, reg, reg, reg) \ | 760 V(StoreIndexedUint32, A_B_C, reg, reg, reg) \ |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 948 | 948 |
| 949 // After a comparison, the condition NEXT_IS_TRUE means the following | 949 // After a comparison, the condition NEXT_IS_TRUE means the following |
| 950 // instruction is executed if the comparision is true and skipped over overwise. | 950 // instruction is executed if the comparision is true and skipped over overwise. |
| 951 // Conidition NEXT_IS_FALSE means the following instruction is executed if the | 951 // Conidition NEXT_IS_FALSE means the following instruction is executed if the |
| 952 // comparison is false and skipped over otherwise. | 952 // comparison is false and skipped over otherwise. |
| 953 enum Condition { NEXT_IS_TRUE, NEXT_IS_FALSE }; | 953 enum Condition { NEXT_IS_TRUE, NEXT_IS_FALSE }; |
| 954 | 954 |
| 955 } // namespace dart | 955 } // namespace dart |
| 956 | 956 |
| 957 #endif // VM_CONSTANTS_DBC_H_ | 957 #endif // VM_CONSTANTS_DBC_H_ |
| OLD | NEW |