mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
Changed the table generator so that the X86
disassembler never recognizes InitReg instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97017 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5f366af2ff
commit
80443f9146
@ -282,6 +282,10 @@ RecognizableInstr::filter_ret RecognizableInstr::filter() const {
|
||||
IsCodeGenOnly)
|
||||
return FILTER_STRONG;
|
||||
|
||||
if (Form == X86Local::MRMInitReg)
|
||||
return FILTER_STRONG;
|
||||
|
||||
|
||||
// Filter out instructions with a LOCK prefix;
|
||||
// prefer forms that do not have the prefix
|
||||
if (HasLockPrefix)
|
||||
@ -353,9 +357,6 @@ RecognizableInstr::filter_ret RecognizableInstr::filter() const {
|
||||
if (AsmString.find("subreg") != AsmString.npos)
|
||||
return FILTER_STRONG;
|
||||
|
||||
assert(Form != X86Local::MRMInitReg &&
|
||||
"FORMAT_MRMINITREG instruction not skipped");
|
||||
|
||||
if (HasFROperands && Name.find("MOV") != Name.npos &&
|
||||
((Name.find("2") != Name.npos && Name.find("32") == Name.npos) ||
|
||||
(Name.find("to") != Name.npos)))
|
||||
|
Loading…
x
Reference in New Issue
Block a user