Searched defs:UsedBits (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8190 APInt UsedBits(Inst->getValueSizeInBits(0), 0);
8191 UsedBits.setAllBits();
8192 UsedBits = UsedBits.zext(BitWidth);
8193 UsedBits <<= Shift;
8194 return UsedBits;
8372 /// \brief Check that all bits set in \p UsedBits form a dense region, i.e.,
8373 /// \p UsedBits looks like 0..0 1..1 0..0.
8374 static bool areUsedBitsDense(const APInt &UsedBits) { argument
8376 if (UsedBits
8395 APInt UsedBits = First.getUsedBits(); local
8474 isSlicingProfitable(SmallVectorImpl<LoadedSlice> &LoadedSlices, const APInt &UsedBits, bool ForCodeSize) argument
[all...]

Completed in 93 milliseconds