HomeSort by: relevance | last modified time | path
    Searched defs:computeKnownBits (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 469 void computeKnownBits(const Value *V, KnownBits &Known,
471 llvm::computeKnownBits(V, Known, DL, Depth, &AC, CxtI, &DT);
474 KnownBits computeKnownBits(const Value *V, unsigned Depth,
476 return llvm::computeKnownBits(V, DL, Depth, &AC, CxtI, &DT);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/InstCombine/
InstCombiner.h 456 void computeKnownBits(const Value *V, KnownBits &Known, unsigned Depth,
458 llvm::computeKnownBits(V, Known, DL, Depth, &AC, CxtI, &DT);
461 KnownBits computeKnownBits(const Value *V, unsigned Depth,
463 return llvm::computeKnownBits(V, DL, Depth, &AC, CxtI, &DT);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 194 static void computeKnownBits(const Value *V, const APInt &DemandedElts,
197 static void computeKnownBits(const Value *V, KnownBits &Known, unsigned Depth,
209 computeKnownBits(V, DemandedElts, Known, Depth, Q);
212 void llvm::computeKnownBits(const Value *V, KnownBits &Known,
217 ::computeKnownBits(V, Known, Depth,
221 void llvm::computeKnownBits(const Value *V, const APInt &DemandedElts,
226 ::computeKnownBits(V, DemandedElts, Known, Depth,
230 static KnownBits computeKnownBits(const Value *V, const APInt &DemandedElts,
233 static KnownBits computeKnownBits(const Value *V, unsigned Depth,
236 KnownBits llvm::computeKnownBits(const Value *V, const DataLayout &DL
    [all...]

Completed in 32 milliseconds