Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/X86/MCTargetDesc/
H A DX86BaseInfo.h84 COND_AE = 3, enumerator
316 case X86::COND_AE: in classifySecondCondCodeInMacroFusion()
/llvm-project-15.0.7/bolt/lib/Target/X86/
H A DX86MCPlusBuilder.cpp119 case X86::COND_B: return X86::COND_AE; in getInvertedCondCode()
122 case X86::COND_AE: return X86::COND_B; in getInvertedCondCode()
155 case X86::COND_AE: return DCC_GREATER | DCC_EQUAL | DCC_UNSIGNED; in getCondCodesLogicalOr()
172 case DCC_EQUAL | DCC_GREATER | DCC_UNSIGNED: return X86::COND_AE; in getCondCodesLogicalOr()
2975 case X86::COND_AE: return X86::COND_B; in getCanonicalBranchCondCode()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp2734 case X86::COND_B: return X86::COND_AE; in GetOppositeBranchCondition()
2737 case X86::COND_AE: return X86::COND_B; in GetOppositeBranchCondition()
2761 case X86::COND_BE: return X86::COND_AE; in getSwappedCondition()
2763 case X86::COND_AE: return X86::COND_BE; in getSwappedCondition()
2778 case CmpInst::FCMP_OGE: CC = X86::COND_AE; break; in getX86ConditionCode()
2793 case CmpInst::ICMP_UGE: CC = X86::COND_AE; break; in getX86ConditionCode()
4221 return X86::COND_AE; in isUseDefConvertible()
4243 return X86::COND_AE; in isUseDefConvertible()
4461 case X86::COND_A: case X86::COND_AE: in optimizeCompareInstr()
4526 case X86::COND_AE: // x >=u (C + 1) --> x >u C in optimizeCompareInstr()
[all …]
H A DX86FlagsCopyLowering.cpp354 return X86::COND_AE; in getCondFromFCMOV()
H A DX86FrameLowering.cpp1022 BuildMI(&MBB, DL, TII.get(X86::JCC_1)).addMBB(ContinueMBB).addImm(X86::COND_AE); in emitStackProbeInlineWindowsCoreCLR64()
3301 BuildMI(stackCheckMBB, DL, TII.get(X86::JCC_1)).addMBB(&PrologueMBB).addImm(X86::COND_AE); in adjustForHiPEPrologue()
H A DX86ISelLowering.cpp5435 case X86::COND_AE: in isX86CCSigned()
5457 case ISD::SETUGE: return X86::COND_AE; in TranslateIntegerX86CC()
5526 case ISD::SETGE: return X86::COND_AE; in TranslateX86CC()
5554 case X86::COND_AE: in hasFPCMov()
23637 case X86::COND_A: case X86::COND_AE: in EmitTest()
45098 CC = X86::COND_AE; in combineSetCCAtomicArith()
45413 case X86::COND_AE: in combinePTESTCC()
45423 InvCC = X86::COND_AE; in combinePTESTCC()
47965 X86CC = X86::COND_AE; in combineAnd()
47975 X86CC = X86CC == X86::COND_AE ? X86::COND_B : X86::COND_AE; in combineAnd()
[all …]
H A DX86ISelDAGToDAG.cpp3010 case X86::COND_A: case X86::COND_AE: in hasNoSignFlagUses()
/llvm-project-15.0.7/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp2752 .Cases("ae", "nb", X86::COND_AE) // Above or Equal/Not Below in ParseConditionCode()