diff options
author | shadchin <shadchin@yandex-team.ru> | 2022-02-10 16:44:30 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:44:30 +0300 |
commit | 2598ef1d0aee359b4b6d5fdd1758916d5907d04f (patch) | |
tree | 012bb94d777798f1f56ac1cec429509766d05181 /contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/X86BaseInfo.h | |
parent | 6751af0b0c1b952fede40b19b71da8025b5d8bcf (diff) | |
download | ydb-2598ef1d0aee359b4b6d5fdd1758916d5907d04f.tar.gz |
Restoring authorship annotation for <shadchin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/X86BaseInfo.h')
-rw-r--r-- | contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/X86BaseInfo.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/X86BaseInfo.h b/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/X86BaseInfo.h index 4db1bfc251..fc60496917 100644 --- a/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/X86BaseInfo.h +++ b/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/X86BaseInfo.h @@ -55,18 +55,18 @@ namespace X86 { /// The constants to describe instr prefixes if there are enum IPREFIXES { IP_NO_PREFIX = 0, - IP_HAS_OP_SIZE = 1U << 0, - IP_HAS_AD_SIZE = 1U << 1, - IP_HAS_REPEAT_NE = 1U << 2, - IP_HAS_REPEAT = 1U << 3, - IP_HAS_LOCK = 1U << 4, - IP_HAS_NOTRACK = 1U << 5, - IP_USE_VEX = 1U << 6, - IP_USE_VEX2 = 1U << 7, - IP_USE_VEX3 = 1U << 8, - IP_USE_EVEX = 1U << 9, - IP_USE_DISP8 = 1U << 10, - IP_USE_DISP32 = 1U << 11, + IP_HAS_OP_SIZE = 1U << 0, + IP_HAS_AD_SIZE = 1U << 1, + IP_HAS_REPEAT_NE = 1U << 2, + IP_HAS_REPEAT = 1U << 3, + IP_HAS_LOCK = 1U << 4, + IP_HAS_NOTRACK = 1U << 5, + IP_USE_VEX = 1U << 6, + IP_USE_VEX2 = 1U << 7, + IP_USE_VEX3 = 1U << 8, + IP_USE_EVEX = 1U << 9, + IP_USE_DISP8 = 1U << 10, + IP_USE_DISP32 = 1U << 11, }; enum OperandType : unsigned { @@ -952,11 +952,11 @@ namespace X86II { // NOTRACK prefix NoTrackShift = EVEX_RCShift + 1, - NOTRACK = 1ULL << NoTrackShift, - - // Force VEX encoding - ExplicitVEXShift = NoTrackShift + 1, - ExplicitVEXPrefix = 1ULL << ExplicitVEXShift + NOTRACK = 1ULL << NoTrackShift, + + // Force VEX encoding + ExplicitVEXShift = NoTrackShift + 1, + ExplicitVEXPrefix = 1ULL << ExplicitVEXShift }; /// \returns true if the instruction with given opcode is a prefix. |