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

/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp2787 unsigned StWidth = StVT.getSizeInBits(); local
2796 while (StWidth != 0) {
2798 EVT NewVT = FindMemType(DAG, TLI, StWidth, ValVT);
2810 StWidth -= NewVTWidth;
2815 } while (StWidth != 0 && StWidth >= NewVTWidth);
2830 StWidth -= NewVTWidth;
2834 } 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 110 milliseconds