mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-28 15:33:16 +00:00
fix computation of ambiguous instructions to not ignore the mnemonic.
FWIW, X86 has 254 ambiguous instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117979 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9af3d1c0dc
commit
e66b7ebfb4
@ -411,6 +411,10 @@ struct MatchableInfo {
|
|||||||
/// ambiguously match the same set of operands as \arg RHS (without being a
|
/// ambiguously match the same set of operands as \arg RHS (without being a
|
||||||
/// strictly superior match).
|
/// strictly superior match).
|
||||||
bool CouldMatchAmiguouslyWith(const MatchableInfo &RHS) {
|
bool CouldMatchAmiguouslyWith(const MatchableInfo &RHS) {
|
||||||
|
// The primary comparator is the instruction mnemonic.
|
||||||
|
if (Tokens[0] != RHS.Tokens[0])
|
||||||
|
return false;
|
||||||
|
|
||||||
// The number of operands is unambiguous.
|
// The number of operands is unambiguous.
|
||||||
if (Operands.size() != RHS.Operands.size())
|
if (Operands.size() != RHS.Operands.size())
|
||||||
return false;
|
return false;
|
||||||
@ -849,8 +853,8 @@ BuildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void AsmMatcherInfo::BuildOperandClasses() {
|
void AsmMatcherInfo::BuildOperandClasses() {
|
||||||
std::vector<Record*> AsmOperands;
|
std::vector<Record*> AsmOperands =
|
||||||
AsmOperands = Records.getAllDerivedDefinitions("AsmOperandClass");
|
Records.getAllDerivedDefinitions("AsmOperandClass");
|
||||||
|
|
||||||
// Pre-populate AsmOperandClasses map.
|
// Pre-populate AsmOperandClasses map.
|
||||||
for (std::vector<Record*>::iterator it = AsmOperands.begin(),
|
for (std::vector<Record*>::iterator it = AsmOperands.begin(),
|
||||||
@ -1127,7 +1131,7 @@ static void EmitConvertToMCInst(CodeGenTarget &Target,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::sort(MIOperandList.begin(), MIOperandList.end());
|
array_pod_sort(MIOperandList.begin(), MIOperandList.end());
|
||||||
|
|
||||||
// Compute the total number of operands.
|
// Compute the total number of operands.
|
||||||
unsigned NumMIOperands = 0;
|
unsigned NumMIOperands = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user