HomeSort by relevance Sort by last modified time
    Searched refs:TheStores (Results 1 - 2 of 2) sorted by null

  /external/clang/test/CodeGenCXX/
alloca-align.cpp 6 int TheStores __attribute__((aligned(16)));
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 149 /// TheStores - The actual stores that make up this range.
150 SmallVector<Instruction*, 16> TheStores;
159 if (TheStores.size() >= 4 || End-Start >= 16) return true;
162 if (TheStores.size() < 2) return false;
166 for (unsigned i = 0, e = TheStores.size(); i != e; ++i)
167 if (!isa<StoreInst>(TheStores[i]))
172 if (TheStores.size() == 2) return false;
196 return TheStores.size() > NumPointerStores+NumByteStores;
267 R.TheStores.push_back(Inst);
272 I->TheStores.push_back(Inst)
    [all...]

Completed in 172 milliseconds