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

  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 147 SetVector<Value *> Stores;
159 Stores.insert(&*I);
220 for (SetVector<Value *>::iterator I2 = Stores.begin(), E2 = Stores.end();
245 for (SetVector<Value *>::iterator I1 = Stores.begin(), E = Stores.end();
247 for (SetVector<Value *>::iterator I2 = Stores.begin(); I2 != I1; ++I2) {
  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 59 bool SinkInstruction(Instruction *I, SmallPtrSet<Instruction *, 8> &Stores);
137 SmallPtrSet<Instruction *, 8> Stores;
150 if (SinkInstruction(Inst, Stores))
160 SmallPtrSet<Instruction *, 8> &Stores) {
163 Stores.insert(Inst);
169 for (SmallPtrSet<Instruction *, 8>::iterator I = Stores.begin(),
170 E = Stores.end(); I != E; ++I)
198 // We cannot sink a load across a critical edge - there may be stores in
223 SmallPtrSet<Instruction *, 8> &Stores) {
232 if (!isSafeToMove(Inst, AA, Stores))
    [all...]
Scalarizer.cpp 172 // This is disabled by default because having separate loads and stores makes
619 ValueVector Stores;
620 Stores.resize(NumElems);
623 Stores[I] = Builder.CreateAlignedStore(Val[I], Ptr[I], Align);
625 transferMetadata(&SI, Stores);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 304 /// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
309 "unaligned indexed stores not implemented!");
324 // FIXME: Does not handle truncating floating point stores!
332 // to the final destination using (unaligned) integer loads and stores.
350 SmallVector<SDValue, 8> Stores;
360 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
382 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
389 // The order of the stores doesn't matter - say it with a TokenFactor.
390 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
457 // loads and stores, then do a (aligned) load from the stack slot
    [all...]
LegalizeVectorOps.cpp 616 SmallVector<SDValue, 8> Stores;
629 Stores.push_back(Store);
631 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
    [all...]

Completed in 234 milliseconds