| Index: runtime/vm/constants_arm64.h
|
| ===================================================================
|
| --- runtime/vm/constants_arm64.h (revision 40955)
|
| +++ runtime/vm/constants_arm64.h (working copy)
|
| @@ -412,6 +412,14 @@
|
| SUB = AddSubShiftExtFixed | B30,
|
| };
|
|
|
| +// C3.5.3
|
| +enum AddSubWithCarryOp {
|
| + AddSubWithCarryMask = 0x1fe00000,
|
| + AddSubWithCarryFixed = DPRegisterFixed | B28,
|
| + ADC = AddSubWithCarryFixed,
|
| + SBC = AddSubWithCarryFixed | B30,
|
| +};
|
| +
|
| // C3.5.6
|
| enum ConditionalSelectOp {
|
| ConditionalSelectMask = 0x1fe00000,
|
| @@ -587,6 +595,7 @@
|
| _V(MoveWide) \
|
| _V(PCRel) \
|
| _V(AddSubShiftExt) \
|
| +_V(AddSubWithCarry) \
|
| _V(ConditionalSelect) \
|
| _V(MiscDP2Source) \
|
| _V(MiscDP3Source) \
|
|
|