Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVETPAndVPTOptimisationsPass.cpp547 static bool IsVCMP(unsigned Opcode) { return VCMPOpcodeToVPT(Opcode) != 0; } in IsVCMP() function
575 assert(IsVCMP(Instr.getOpcode()) && "Inst must be a VCMP"); in GetCondCode()
582 assert(IsVCMP(Cond.getOpcode()) && IsVCMP(Prev.getOpcode())); in IsVPNOTEquivalent()
874 if (!IsVCMP(Instr.getOpcode())) { in ReplaceVCMPsByVPNOTs()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp3310 bool IsVCMP = PatchedName[0] == 'v'; in ParseInstruction() local
3311 unsigned CCIdx = IsVCMP ? 4 : 3; in ParseInstruction()
3362 if (CC != ~0U && (IsVCMP || CC < 8) && in ParseInstruction()
3363 (IsVCMP || PatchedName.back() != 'h')) { in ParseInstruction()
3365 PatchedName = IsVCMP ? "vcmpss" : "cmpss"; in ParseInstruction()
3367 PatchedName = IsVCMP ? "vcmpsd" : "cmpsd"; in ParseInstruction()
3369 PatchedName = IsVCMP ? "vcmpps" : "cmpps"; in ParseInstruction()
3371 PatchedName = IsVCMP ? "vcmppd" : "cmppd"; in ParseInstruction()