HomeSort by: relevance | last modified time | path
    Searched refs:IsVCMP (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
MVETPAndVPTOptimisationsPass.cpp 509 static bool IsVCMP(unsigned Opcode) { return VCMPOpcodeToVPT(Opcode) != 0; }
537 assert(IsVCMP(Instr.getOpcode()) && "Inst must be a VCMP");
544 assert(IsVCMP(Cond.getOpcode()) && IsVCMP(Prev.getOpcode()));
833 if (!IsVCMP(Instr.getOpcode())) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 3132 bool IsVCMP = PatchedName[0] == 'v';
3133 unsigned CCIdx = IsVCMP ? 4 : 3;
3184 if (CC != ~0U && (IsVCMP || CC < 8)) {
3186 PatchedName = IsVCMP ? "vcmpss" : "cmpss";
3188 PatchedName = IsVCMP ? "vcmpsd" : "cmpsd";
3190 PatchedName = IsVCMP ? "vcmpps" : "cmpps";
3192 PatchedName = IsVCMP ? "vcmppd" : "cmppd";

Completed in 17 milliseconds