Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp3161 StringRef PatchedName = Name; in ParseInstruction() local
3165 (PatchedName == "jmp" || PatchedName == "jc" || PatchedName == "jnc" || in ParseInstruction()
3166 PatchedName == "jcxz" || PatchedName == "jecxz" || in ParseInstruction()
3167 (PatchedName.startswith("j") && in ParseInstruction()
3168 ParseConditionCode(PatchedName.substr(1)) != X86::COND_INVALID))) { in ParseInstruction()
3185 if (PatchedName.startswith("set") && PatchedName.endswith("b") && in ParseInstruction()
3186 PatchedName != "setb" && PatchedName != "setnb") in ParseInstruction()
3187 PatchedName = PatchedName.substr(0, Name.size()-1); in ParseInstruction()
3192 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) && in ParseInstruction()
3193 (PatchedName.endswith("ss") || PatchedName.endswith("sd") || in ParseInstruction()
[all …]