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

/external/clang/test/CodeGenCXX/
H A Dalloca-align.cpp6 int TheStores __attribute__((aligned(16))); member in struct:s0
/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp141 /// TheStores - The actual stores that make up this range.
142 SmallVector<Instruction*, 16> TheStores; member in struct:__anon9707::MemsetRange
151 if (TheStores.size() >= 4 || End-Start >= 16) return true;
154 if (TheStores.size() < 2) return false;
158 for (unsigned i = 0, e = TheStores.size(); i != e; ++i)
159 if (!isa<StoreInst>(TheStores[i]))
164 if (TheStores.size() == 2) return false;
185 return TheStores.size() > NumPointerStores+NumByteStores;
256 R.TheStores.push_back(Inst);
261 I->TheStores
[all...]

Completed in 93 milliseconds