Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVETPAndVPTOptimisationsPass.cpp517 static bool IsVCMP(unsigned Opcode) { return VCMPOpcodeToVPT(Opcode) != 0; } in IsVCMP() function
545 assert(IsVCMP(Instr.getOpcode()) && "Inst must be a VCMP"); in GetCondCode()
552 assert(IsVCMP(Cond.getOpcode()) && IsVCMP(Prev.getOpcode())); in IsVPNOTEquivalent()
841 if (!IsVCMP(Instr.getOpcode())) { in ReplaceVCMPsByVPNOTs()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp3133 bool IsVCMP = PatchedName[0] == 'v'; in ParseInstruction() local
3134 unsigned CCIdx = IsVCMP ? 4 : 3; in ParseInstruction()
3185 if (CC != ~0U && (IsVCMP || CC < 8)) { in ParseInstruction()
3187 PatchedName = IsVCMP ? "vcmpss" : "cmpss"; in ParseInstruction()
3189 PatchedName = IsVCMP ? "vcmpsd" : "cmpsd"; in ParseInstruction()
3191 PatchedName = IsVCMP ? "vcmpps" : "cmpps"; in ParseInstruction()
3193 PatchedName = IsVCMP ? "vcmppd" : "cmppd"; in ParseInstruction()