Lines Matching refs:PatchedName
2001 StringRef PatchedName = Name; in ParseInstruction() local
2004 if (PatchedName.startswith("set") && PatchedName.endswith("b") && in ParseInstruction()
2005 PatchedName != "setb" && PatchedName != "setnb") in ParseInstruction()
2006 PatchedName = PatchedName.substr(0, Name.size()-1); in ParseInstruction()
2009 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) && in ParseInstruction()
2010 (PatchedName.endswith("ss") || PatchedName.endswith("sd") || in ParseInstruction()
2011 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) { in ParseInstruction()
2012 bool IsVCMP = PatchedName[0] == 'v'; in ParseInstruction()
2015 PatchedName.slice(CCIdx, PatchedName.size() - 2)) in ParseInstruction()
2052 Operands.push_back(X86Operand::CreateToken(PatchedName.slice(0, CCIdx), in ParseInstruction()
2059 PatchedName = PatchedName.substr(PatchedName.size() - 2); in ParseInstruction()
2064 if (PatchedName.startswith("vpcmp") && in ParseInstruction()
2065 (PatchedName.endswith("b") || PatchedName.endswith("w") || in ParseInstruction()
2066 PatchedName.endswith("d") || PatchedName.endswith("q"))) { in ParseInstruction()
2067 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1; in ParseInstruction()
2069 PatchedName.slice(5, PatchedName.size() - CCIdx)) in ParseInstruction()
2086 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx); in ParseInstruction()
2091 if (PatchedName.startswith("vpcom") && in ParseInstruction()
2092 (PatchedName.endswith("b") || PatchedName.endswith("w") || in ParseInstruction()
2093 PatchedName.endswith("d") || PatchedName.endswith("q"))) { in ParseInstruction()
2094 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1; in ParseInstruction()
2096 PatchedName.slice(5, PatchedName.size() - CCIdx)) in ParseInstruction()
2113 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx); in ParseInstruction()
2117 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc)); in ParseInstruction()