HomeSort by relevance Sort by last modified time
    Searched refs:Stores (Results 1 - 25 of 31) sorted by null

1 2

  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 59 bool SinkInstruction(Instruction *I, SmallPtrSetImpl<Instruction*> &Stores);
135 SmallPtrSet<Instruction *, 8> Stores;
148 if (SinkInstruction(Inst, Stores))
158 SmallPtrSetImpl<Instruction *> &Stores) {
161 Stores.insert(Inst);
167 for (Instruction *S : Stores)
195 // We cannot sink a load across a critical edge - there may be stores in
220 SmallPtrSetImpl<Instruction *> &Stores) {
229 if (!isSafeToMove(Inst, AA, Stores))
Scalarizer.cpp 154 // This is disabled by default because having separate loads and stores
626 ValueVector Stores;
627 Stores.resize(NumElems);
630 Stores[I] = Builder.CreateAlignedStore(Val[I], Ptr[I], Align);
632 transferMetadata(&SI, Stores);
SROA.cpp 136 /// stores both the begin and end offsets of this use, a pointer to the use
739 // We allow splitting of non-volatile loads and stores where the type is an
786 "All simple FCA stores should have been pre-split");
    [all...]
  /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) {
LoopAccessAnalysis.cpp 638 // The stores to a[i:i+1] don't align with the stores to a[i-3:i-2] and
    [all...]
  /external/skia/tools/lua/
bbh_filter.lua 32 output = {} -- Stores {fileName, {verb, count}} tables.
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 171 // Track all of the stores.
172 SmallVector<StoreInst *, 16> Stores;
185 Stores.push_back(Store);
192 for (StoreInst *Store : Stores)
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 10 // stores that can be put together into vector-stores. Next, it attempts to
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 655 SmallVector<SDValue, 8> Stores;
669 Stores.push_back(Store);
671 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
    [all...]
LegalizeDAG.cpp 289 /// Expands an unaligned store to 2 half-size stores.
294 "unaligned indexed stores not implemented!");
309 // FIXME: Does not handle truncating floating point stores!
317 // to the final destination using (unaligned) integer loads and stores.
335 SmallVector<SDValue, 8> Stores;
345 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
367 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
374 // The order of the stores doesn't matter - say it with a TokenFactor.
375 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
442 // loads and stores, then do a (aligned) load from the stack slot
    [all...]
  /external/libvpx/libvpx/tools/
cpplint.py     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 252 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
    [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp 118 // Legalize loads and stores to the private address space.
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
cpplint.py     [all...]
  /external/cblas/testing/
c_cblat2.f     [all...]
c_cblat3.f     [all...]
c_dblat2.f     [all...]
c_dblat3.f     [all...]
c_sblat2.f     [all...]
c_sblat3.f     [all...]
c_zblat2.f     [all...]
c_zblat3.f     [all...]
  /external/eigen/blas/testing/
cblat2.f     [all...]
dblat2.f     [all...]
dblat3.f     [all...]

Completed in 2214 milliseconds

1 2