| Index: src/arm64/decoder-arm64.h
|
| diff --git a/src/arm64/decoder-arm64.h b/src/arm64/decoder-arm64.h
|
| index b1ef41f1a2fe72c8049bf8789b54aa429d5580bf..a17b3244128c75c79734dec1bef1c8c6b8456db3 100644
|
| --- a/src/arm64/decoder-arm64.h
|
| +++ b/src/arm64/decoder-arm64.h
|
| @@ -16,49 +16,50 @@ namespace internal {
|
|
|
| // List macro containing all visitors needed by the decoder class.
|
|
|
| -#define VISITOR_LIST(V) \
|
| - V(PCRelAddressing) \
|
| - V(AddSubImmediate) \
|
| - V(LogicalImmediate) \
|
| - V(MoveWideImmediate) \
|
| - V(Bitfield) \
|
| - V(Extract) \
|
| - V(UnconditionalBranch) \
|
| - V(UnconditionalBranchToRegister) \
|
| - V(CompareBranch) \
|
| - V(TestBranch) \
|
| - V(ConditionalBranch) \
|
| - V(System) \
|
| - V(Exception) \
|
| - V(LoadStorePairPostIndex) \
|
| - V(LoadStorePairOffset) \
|
| - V(LoadStorePairPreIndex) \
|
| - V(LoadLiteral) \
|
| - V(LoadStoreUnscaledOffset) \
|
| - V(LoadStorePostIndex) \
|
| - V(LoadStorePreIndex) \
|
| - V(LoadStoreRegisterOffset) \
|
| - V(LoadStoreUnsignedOffset) \
|
| - V(LogicalShifted) \
|
| - V(AddSubShifted) \
|
| - V(AddSubExtended) \
|
| - V(AddSubWithCarry) \
|
| - V(ConditionalCompareRegister) \
|
| - V(ConditionalCompareImmediate) \
|
| - V(ConditionalSelect) \
|
| - V(DataProcessing1Source) \
|
| - V(DataProcessing2Source) \
|
| - V(DataProcessing3Source) \
|
| - V(FPCompare) \
|
| - V(FPConditionalCompare) \
|
| - V(FPConditionalSelect) \
|
| - V(FPImmediate) \
|
| - V(FPDataProcessing1Source) \
|
| - V(FPDataProcessing2Source) \
|
| - V(FPDataProcessing3Source) \
|
| - V(FPIntegerConvert) \
|
| - V(FPFixedPointConvert) \
|
| - V(Unallocated) \
|
| +#define VISITOR_LIST(V) \
|
| + V(PCRelAddressing) \
|
| + V(AddSubImmediate) \
|
| + V(LogicalImmediate) \
|
| + V(MoveWideImmediate) \
|
| + V(Bitfield) \
|
| + V(Extract) \
|
| + V(UnconditionalBranch) \
|
| + V(UnconditionalBranchToRegister) \
|
| + V(CompareBranch) \
|
| + V(TestBranch) \
|
| + V(ConditionalBranch) \
|
| + V(System) \
|
| + V(Exception) \
|
| + V(LoadStorePairPostIndex) \
|
| + V(LoadStorePairOffset) \
|
| + V(LoadStorePairPreIndex) \
|
| + V(LoadLiteral) \
|
| + V(LoadStoreUnscaledOffset) \
|
| + V(LoadStorePostIndex) \
|
| + V(LoadStorePreIndex) \
|
| + V(LoadStoreRegisterOffset) \
|
| + V(LoadStoreUnsignedOffset) \
|
| + V(LoadStoreAcquireRelease) \
|
| + V(LogicalShifted) \
|
| + V(AddSubShifted) \
|
| + V(AddSubExtended) \
|
| + V(AddSubWithCarry) \
|
| + V(ConditionalCompareRegister) \
|
| + V(ConditionalCompareImmediate) \
|
| + V(ConditionalSelect) \
|
| + V(DataProcessing1Source) \
|
| + V(DataProcessing2Source) \
|
| + V(DataProcessing3Source) \
|
| + V(FPCompare) \
|
| + V(FPConditionalCompare) \
|
| + V(FPConditionalSelect) \
|
| + V(FPImmediate) \
|
| + V(FPDataProcessing1Source) \
|
| + V(FPDataProcessing2Source) \
|
| + V(FPDataProcessing3Source) \
|
| + V(FPIntegerConvert) \
|
| + V(FPFixedPointConvert) \
|
| + V(Unallocated) \
|
| V(Unimplemented)
|
|
|
| // The Visitor interface. Disassembler and simulator (and other tools)
|
|
|