Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/lib/Target/X86/AsmParser/
DX86AsmParser.cpp1929 StringRef PatchedName = Name; in ParseInstruction() local
1932 if (PatchedName.startswith("set") && PatchedName.endswith("b") && in ParseInstruction()
1933 PatchedName != "setb" && PatchedName != "setnb") in ParseInstruction()
1934 PatchedName = PatchedName.substr(0, Name.size()-1); in ParseInstruction()
1938 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) && in ParseInstruction()
1939 (PatchedName.endswith("ss") || PatchedName.endswith("sd") || in ParseInstruction()
1940 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) { in ParseInstruction()
1941 bool IsVCMP = PatchedName[0] == 'v'; in ParseInstruction()
1944 PatchedName.slice(SSECCIdx, PatchedName.size() - 2)) in ParseInstruction()
1982 if (PatchedName.endswith("ss")) { in ParseInstruction()
[all …]