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 151 /// TheStores - The actual stores that make up this range.
152 SmallVector<Instruction*, 16> TheStores;
160 if (TheStores.size() >= 4 || End-Start >= 16) return true;
163 if (TheStores.size() < 2) return false;
167 for (unsigned i = 0, e = TheStores.size(); i != e; ++i)
168 if (!isa<StoreInst>(TheStores[i]))
173 if (TheStores.size() == 2) return false;
197 return TheStores.size() > NumPointerStores+NumByteStores;
268 R.TheStores.push_back(Inst);
273 I->TheStores.push_back(Inst)
    [all...]

Completed in 430 milliseconds