Searched refs:TheStores (Results 1 - 3 of 3) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Dalloca-align.cpp6 int TheStores __attribute__((aligned(16))); member in struct:s0
/external/swiftshader/third_party/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:__anon23048::MemsetRange
151 if (TheStores.size() >= 8 || End-Start >= 64) 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...]
/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp146 /// TheStores - The actual stores that make up this range.
147 SmallVector<Instruction*, 16> TheStores; member in struct:__anon14746::MemsetRange
155 if (TheStores.size() >= 4 || End-Start >= 16) return true;
158 if (TheStores.size() < 2) return false;
162 for (Instruction *SI : TheStores)
168 if (TheStores.size() == 2) return false;
192 return TheStores.size() > NumPointerStores+NumByteStores;
256 R.TheStores.push_back(Inst);
261 I->TheStores.push_back(Inst);
288 I->TheStores
[all...]

Completed in 234 milliseconds