Searched refs:AP1 (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGVTables.cpp1338 llvm::sort(AddressPoints, [this](const AddressPoint &AP1,
1340 if (&AP1 == &AP2)
1346 QualType(AP1.first->getTypeForDecl(), 0), O1);
1360 return AP1.second < AP2.second;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1149 /// Handle "(icmp eq/ne (ashr/lshr AP2, A), AP1)" ->
1150 /// (icmp eq/ne A, Log2(AP2/AP1)) ->
1151 /// (icmp eq/ne A, Log2(AP2) - Log2(AP1)).
1153 const APInt &AP1,
1171 if (AP2.isNegative() != AP1.isNegative())
1173 if (AP2.sgt(AP1))
1177 if (!AP1)
1182 if (AP1 == AP2)
1186 if (IsAShr && AP1.isNegative())
1187 Shift = AP1
1152 foldICmpShrConstConst(ICmpInst &I, Value *A, const APInt &AP1, const APInt &AP2) argument
1211 foldICmpShlConstConst(ICmpInst &I, Value *A, const APInt &AP1, const APInt &AP2) argument
3876 const APInt &AP1 = C1->getValue(); local
[all...]

Completed in 261 milliseconds