Home
last modified time | relevance | path

Searched refs:SuffixSize (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp3387 unsigned SuffixSize = PatchedName.drop_back().back() == 'u' ? 2 : 1; in ParseInstruction() local
3389 PatchedName.slice(5, PatchedName.size() - SuffixSize)) in ParseInstruction()
3399 if (CC != ~0U && (CC != 0 || SuffixSize == 2)) { in ParseInstruction()
3402 case 'b': PatchedName = SuffixSize == 2 ? "vpcmpub" : "vpcmpb"; break; in ParseInstruction()
3403 case 'w': PatchedName = SuffixSize == 2 ? "vpcmpuw" : "vpcmpw"; break; in ParseInstruction()
3404 case 'd': PatchedName = SuffixSize == 2 ? "vpcmpud" : "vpcmpd"; break; in ParseInstruction()
3405 case 'q': PatchedName = SuffixSize == 2 ? "vpcmpuq" : "vpcmpq"; break; in ParseInstruction()
3416 unsigned SuffixSize = PatchedName.drop_back().back() == 'u' ? 2 : 1; in ParseInstruction() local
3418 PatchedName.slice(5, PatchedName.size() - SuffixSize)) in ParseInstruction()
3431 case 'b': PatchedName = SuffixSize == 2 ? "vpcomub" : "vpcomb"; break; in ParseInstruction()
[all …]