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 141 /// TheStores - The actual stores that make up this range.
142 SmallVector<Instruction*, 16> TheStores;
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.push_back(Inst)
    [all...]

Completed in 80 milliseconds