Searched refs:StWidth (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp3594 unsigned StWidth = StVT.getSizeInBits(); local
3603 while (StWidth != 0) {
3605 EVT NewVT = FindMemType(DAG, TLI, StWidth, ValVT);
3618 StWidth -= NewVTWidth;
3624 } while (StWidth != 0 && StWidth >= NewVTWidth);
3641 StWidth -= NewVTWidth;
3646 } while (StWidth != 0 && StWidth >= NewVTWidth);
H A DLegalizeDAG.cpp786 unsigned StWidth = StVT.getSizeInBits(); local
789 if (StWidth != StVT.getStoreSizeInBits()) {
800 } else if (StWidth & (StWidth - 1)) {
803 unsigned RoundWidth = 1 << Log2_32(StWidth);
804 assert(RoundWidth < StWidth);
805 unsigned ExtraWidth = StWidth - RoundWidth;

Completed in 40 milliseconds