HomeSort by relevance Sort by last modified time
    Searched defs:Stores (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 57 bool SinkInstruction(Instruction *I, SmallPtrSet<Instruction *, 8> &Stores);
134 SmallPtrSet<Instruction *, 8> Stores;
147 if (SinkInstruction(Inst, Stores))
157 SmallPtrSet<Instruction *, 8> &Stores) {
160 Stores.insert(Inst);
166 for (SmallPtrSet<Instruction *, 8>::iterator I = Stores.begin(),
167 E = Stores.end(); I != E; ++I)
195 // We cannot sink a load across a critical edge - there may be stores in
220 SmallPtrSet<Instruction *, 8> &Stores) {
222 if (!isSafeToMove(Inst, AA, Stores))
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 148 SetVector<Value *> Stores;
160 Stores.insert(&*I);
221 for (SetVector<Value *>::iterator I2 = Stores.begin(), E2 = Stores.end();
246 for (SetVector<Value *>::iterator I1 = Stores.begin(), E = Stores.end();
248 for (SetVector<Value *>::iterator I2 = Stores.begin(); I2 != I1; ++I2) {
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 303 /// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
308 "unaligned indexed stores not implemented!");
321 // FIXME: Does not handle truncating floating point stores!
329 // to the final destination using (unaligned) integer loads and stores.
347 SmallVector<SDValue, 8> Stores;
357 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
379 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
385 // The order of the stores doesn't matter - say it with a TokenFactor.
387 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
388 Stores.size())
    [all...]
LegalizeVectorOps.cpp 551 SmallVector<SDValue, 8> Stores;
564 Stores.push_back(Store);
567 &Stores[0], Stores.size());
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp 75 // Legalize loads and stores to the private address space.
    [all...]

Completed in 154 milliseconds