Home
last modified time | relevance | path

Searched refs:TheStores (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp142 SmallVector<Instruction*, 16> TheStores; member
151 if (TheStores.size() >= 8 || End-Start >= 64) return true; in isProfitableToUseMemset()
154 if (TheStores.size() < 2) return false; in isProfitableToUseMemset()
158 for (unsigned i = 0, e = TheStores.size(); i != e; ++i) in isProfitableToUseMemset()
159 if (!isa<StoreInst>(TheStores[i])) in isProfitableToUseMemset()
164 if (TheStores.size() == 2) return false; in isProfitableToUseMemset()
185 return TheStores.size() > NumPointerStores+NumByteStores; in isProfitableToUseMemset()
256 R.TheStores.push_back(Inst); in addRange()
261 I->TheStores.push_back(Inst); in addRange()
288 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end()); in addRange()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp182 SmallVector<Instruction*, 16> TheStores; member
191 if (TheStores.size() >= 4 || End-Start >= 16) return true; in isProfitableToUseMemset()
194 if (TheStores.size() < 2) return false; in isProfitableToUseMemset()
198 for (Instruction *SI : TheStores) in isProfitableToUseMemset()
204 if (TheStores.size() == 2) return false; in isProfitableToUseMemset()
228 return TheStores.size() > NumPointerStores+NumByteStores; in isProfitableToUseMemset()
294 R.TheStores.push_back(Inst); in addRange()
299 I->TheStores.push_back(Inst); in addRange()
326 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end()); in addRange()
461 if (Range.TheStores.size() == 1) continue; in INITIALIZE_PASS_DEPENDENCY()
[all …]
/external/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp147 SmallVector<Instruction*, 16> TheStores; member
155 if (TheStores.size() >= 4 || End-Start >= 16) return true; in isProfitableToUseMemset()
158 if (TheStores.size() < 2) return false; in isProfitableToUseMemset()
162 for (Instruction *SI : TheStores) in isProfitableToUseMemset()
168 if (TheStores.size() == 2) return false; in isProfitableToUseMemset()
192 return TheStores.size() > NumPointerStores+NumByteStores; in isProfitableToUseMemset()
256 R.TheStores.push_back(Inst); in addRange()
261 I->TheStores.push_back(Inst); in addRange()
288 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end()); in addRange()
436 if (Range.TheStores.size() == 1) continue; in INITIALIZE_PASS_DEPENDENCY()
[all …]
/external/clang/test/CodeGenCXX/
Dalloca-align.cpp6 int TheStores __attribute__((aligned(16))); member