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

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ConstantRange.h 219 const APInt *getSingleElement() const {
234 bool isSingleElement() const { return getSingleElement() != nullptr; }
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantRange.cpp 158 } else if (auto *OnlyElt = getSingleElement()) {
896 const APInt *IntMinIsPoison = Ops[1].getSingleElement();
1286 return {*getSingleElement() & *Other.getSingleElement()};
1301 return {*getSingleElement() | *Other.getSingleElement()};
1315 return {*getSingleElement() ^ *Other.getSingleElement()};
1318 if (Other.isSingleElement() && Other.getSingleElement()->isAllOnesValue())
1320 if (isSingleElement() && getSingleElement()->isAllOnesValue()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ValueLattice.h 280 return *getConstantRange().getSingleElement();
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LazyValueInfo.cpp 1577 if (const APInt *SingleVal = CR.getSingleElement())
1614 if (const APInt *SingleVal = CR.getSingleElement())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SCCPSolver.cpp 512 if (CR.getSingleElement())
513 return ConstantInt::get(Ctx, *CR.getSingleElement());
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
Attributor.h 3545 if (auto *C = RangeV.getSingleElement())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 1509 if (const APInt *EqC = Intersection.getSingleElement())
1511 if (const APInt *NeC = Difference.getSingleElement())

Completed in 65 milliseconds