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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp2942 unsigned StWidth = StVT.getSizeInBits(); local
2951 while (StWidth != 0) {
2953 EVT NewVT = FindMemType(DAG, TLI, StWidth, ValVT);
2965 StWidth -= NewVTWidth;
2970 } while (StWidth != 0 && StWidth >= NewVTWidth);
2985 StWidth -= NewVTWidth;
2989 } while (StWidth != 0 && StWidth >= NewVTWidth);
H A DLegalizeDAG.cpp768 unsigned StWidth = StVT.getSizeInBits(); local
770 if (StWidth != StVT.getStoreSizeInBits()) {
782 } else if (StWidth & (StWidth - 1)) {
785 unsigned RoundWidth = 1 << Log2_32(StWidth);
786 assert(RoundWidth < StWidth);
787 unsigned ExtraWidth = StWidth - RoundWidth;

Completed in 124 milliseconds