diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-01-15 05:02:02 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-01-15 05:02:02 +0000 |
commit | b7c7f389180c3f7930227819de86c569703192f2 (patch) | |
tree | 16fdf28d259565b986414966100e3457b18c0179 /llvm/utils/TableGen/X86RecognizableInstr.h | |
parent | 4744ac17335f208e14ccb9b2fc334d103d9086a7 (diff) | |
download | bcm5719-llvm-b7c7f389180c3f7930227819de86c569703192f2.tar.gz bcm5719-llvm-b7c7f389180c3f7930227819de86c569703192f2.zip |
Simplify x86 disassembler table handling of when to use TYPE_Rv/TYPE_R16/TYPE_R32 now that HasOpSizePrefix only means 16-bit instructions.
llvm-svn: 199295
Diffstat (limited to 'llvm/utils/TableGen/X86RecognizableInstr.h')
-rw-r--r-- | llvm/utils/TableGen/X86RecognizableInstr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/utils/TableGen/X86RecognizableInstr.h b/llvm/utils/TableGen/X86RecognizableInstr.h index ef3bdfee254..08e984e9509 100644 --- a/llvm/utils/TableGen/X86RecognizableInstr.h +++ b/llvm/utils/TableGen/X86RecognizableInstr.h @@ -46,6 +46,8 @@ private: uint8_t Form; /// The hasOpSizePrefix field from the record bool HasOpSizePrefix; + /// The hasOpSize16Prefix field from the record + bool HasOpSize16Prefix; /// The hasAdSizePrefix field from the record bool HasAdSizePrefix; /// The hasREX_WPrefix field from the record @@ -89,9 +91,7 @@ private: std::string Name; /// The AT&T AsmString for the instruction std::string AsmString; - - /// Indicates whether the instruction is SSE - bool IsSSE; + /// Indicates whether the instruction should be emitted into the decode /// tables; regardless, it will be emitted into the instruction info table bool ShouldBeEmitted; |