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

  /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)).
1117 const APInt &AP2) {
1127 if (AP2.isNullValue())
1132 if (AP2.isAllOnesValue())
1134 if (AP2.isNegative() != AP1.isNegative())
1136 if (AP2.sgt(AP1))
1143 ConstantInt::get(A->getType(), AP2.logBase2()));
1145 if (AP1 == AP2)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGVTables.cpp 1267 const AddressPoint &AP2) {
1268 if (&AP1 == &AP2)
1280 QualType(AP2.first->getTypeForDecl(), 0), O2);
1288 return AP1.second < AP2.second;

Completed in 57 milliseconds