Searched refs:Stores (Results 1 - 15 of 15) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DSink.cpp59 bool SinkInstruction(Instruction *I, SmallPtrSet<Instruction *, 8> &Stores);
137 SmallPtrSet<Instruction *, 8> Stores; local
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)
223 SmallPtrSet<Instruction *, 8> &Stores) {
232 if (!isSafeToMove(Inst, AA, Stores))
159 isSafeToMove(Instruction *Inst, AliasAnalysis *AA, SmallPtrSet<Instruction *, 8> &Stores) argument
222 SinkInstruction(Instruction *Inst, SmallPtrSet<Instruction *, 8> &Stores) argument
H A DScalarizer.cpp619 ValueVector Stores; local
620 Stores.resize(NumElems);
623 Stores[I] = Builder.CreateAlignedStore(Val[I], Ptr[I], Align);
625 transferMetadata(&SI, Stores);
/external/oprofile/events/mips/r10000/
H A Devents11 event:0x03 counters:0 um:zero minimum:500 name:STORES_ISSUED : Stores issued
12 event:0x03 counters:1 um:zero minimum:500 name:STORES_GRADUATED : Stores graduated
34 event:0x0e counters:1 um:zero minimum:500 name:STORES_OR_STORE_PREF_TO_CLEANEXCLUSIVE_SCACHE_BLOCKS : Stores or prefetches with store hint to CleanExclusive secondary cache blocks
36 event:0x0f counters:1 um:zero minimum:500 name:STORES_OR_STORE_PREF_TO_SHD_SCACHE_BLOCKS : Stores or prefetches with store hint to Shared secondary cache blocks
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp147 SetVector<Value *> Stores; local
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/oprofile/events/mips/5K/
H A Devents10 event:0x3 counters:0,1 um:zero minimum:500 name:STORES_EXECED : Stores (including conditional stores) executed
/external/chromium_org/third_party/skia/tools/lua/
H A Dbbh_filter.lua32 output = {} -- Stores {fileName, {verb, count}} tables.
/external/skia/tools/lua/
H A Dbbh_filter.lua32 output = {} -- Stores {fileName, {verb, count}} tables.
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp616 SmallVector<SDValue, 8> Stores; local
629 Stores.push_back(Store);
631 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
H A DLegalizeDAG.cpp350 SmallVector<SDValue, 8> Stores; local
360 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
382 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
390 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
467 SmallVector<SDValue, 8> Stores; local
481 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
502 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
507 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
863 "Vector Stores are handled in LegalizeVectorOps");
1507 SmallVector<SDValue, 8> Stores;
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp2252 bool vectorizeStores(ArrayRef<StoreInst *> Stores, int costThreshold,
2320 bool SLPVectorizer::vectorizeStores(ArrayRef<StoreInst *> Stores, argument
2332 for (unsigned i = 0, e = Stores.size(); i < e; ++i) {
2337 if (R.isConsecutiveAccess(Stores[i], Stores[j])) {
2338 Tails.insert(Stores[j]);
2339 Heads.insert(Stores[i]);
2340 ConsecutiveChain[Stores[i]] = Stores[j];
H A DLoopVectorize.cpp1697 // Handle Stores:
4547 ValueVector Stores;
4605 Stores.push_back(St);
4616 if (!Stores.size()) {
4632 for (I = Stores.begin(), IE = Stores.end(); I != IE; ++I) {
5283 // Only examine Loads, Stores and PHINodes.
/external/oprofile/events/mips/24K/
H A Devents97 event:0x40f counters:1 um:zero minimum:500 name:STORE_INSNS : 15-1 Stores completed (including FP)
/external/oprofile/events/mips/34K/
H A Devents105 event:0x40f counters:1 um:zero minimum:500 name:STORE_INSNS : 15-1 Stores completed (including FP)
/external/oprofile/events/mips/1004K/
H A Devents113 event:0x40f counters:1 um:zero minimum:500 name:STORE_INSNS : 15-1 Stores completed (including FP)
/external/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp1427 SmallVector<SDValue, 4> Stores(NumElemVT);
1440 Stores[i] = DAG.getNode(AMDGPUISD::REGISTER_STORE, DL, MVT::Other,
1444 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Stores);

Completed in 696 milliseconds