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

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGVTables.cpp 1266 llvm::sort(AddressPoints, [this](const AddressPoint &AP1,
1268 if (&AP1 == &AP2)
1274 QualType(AP1.first->getTypeForDecl(), 0), O1);
1288 return AP1.second < AP2.second;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 1112 /// Handle "(icmp eq/ne (ashr/lshr AP2, A), AP1)" ->
1113 /// (icmp eq/ne A, Log2(AP2/AP1)) ->
1114 /// (icmp eq/ne A, Log2(AP2) - Log2(AP1)).
1116 const APInt &AP1,
1134 if (AP2.isNegative() != AP1.isNegative())
1136 if (AP2.sgt(AP1))
1140 if (!AP1)
1145 if (AP1 == AP2)
1149 if (IsAShr && AP1.isNegative())
1150 Shift = AP1.countLeadingOnes() - AP2.countLeadingOnes()
    [all...]

Completed in 18 milliseconds