/external/llvm/include/llvm/Transforms/Utils/ |
Local.h | 26 class StoreInst; 170 StoreInst *SI, DIBuilder &Builder);
|
/external/llvm/lib/VMCore/ |
Instruction.cpp | 199 if (const StoreInst *SI = dyn_cast<StoreInst>(this)) 200 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile() && 201 SI->getAlignment() == cast<StoreInst>(I)->getAlignment() && 202 SI->getOrdering() == cast<StoreInst>(I)->getOrdering() && 203 SI->getSynchScope() == cast<StoreInst>(I)->getSynchScope(); 254 if (const StoreInst *SI = dyn_cast<StoreInst>(this)) 255 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile() && 256 SI->getAlignment() == cast<StoreInst>(I)->getAlignment() & [all...] |
Instructions.cpp | [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineLoadStoreAlloca.cpp | 67 StoreInst *SI = cast<StoreInst>(I); 255 new StoreInst(UndefValue::get(LI.getType()), 268 new StoreInst(UndefValue::get(LI.getType()), 325 static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) { 438 Instruction *InstCombiner::visitStoreInst(StoreInst &SI) { 489 if (StoreInst *PrevSI = dyn_cast<StoreInst>(BBI)) { 568 bool InstCombiner::SimplifyStoreAtEndOfBlock(StoreInst &SI) { 610 StoreInst *OtherStore = 0 [all...] |
/external/llvm/lib/Transforms/Utils/ |
PromoteMemoryToRegister.cpp | 95 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) { 163 (isa<StoreInst>(I) && isa<AllocaInst>(I->getOperand(1))); 298 StoreInst *OnlyStore; 327 if (StoreInst *SI = dyn_cast<StoreInst>(User)) { 369 if (isa<LoadInst>(I) || isa<StoreInst>(I)) 463 StoreInst *SI = cast<StoreInst>(AI->use_back()); 695 if (StoreInst *SI = dyn_cast<StoreInst>(I)) [all...] |
DemoteRegToStack.cpp | 92 new StoreInst(&I, Slot, InsertPt); 122 new StoreInst(P->getIncomingValue(i), Slot,
|
SSAUpdater.cpp | 368 SomeVal = cast<StoreInst>(Insts[0])->getOperand(0); 407 if (StoreInst *SI = dyn_cast<StoreInst>(User)) { 420 if (isa<StoreInst>(BlockUses[i])) { 459 if (StoreInst *SI = dyn_cast<StoreInst>(II)) {
|
LowerInvoke.cpp | 221 new StoreInst(InvokeNoC, InvokeNum, true, II); // volatile 226 new StoreInst(StackSaveRet, StackPtr, true, II); // volatile 230 new StoreInst(Constant::getNullValue(Type::getInt32Ty(II->getContext())), 446 new StoreInst(OldBuf, OldJmpBufPtr, true, EntryBB->getTerminator()); 449 new StoreInst(JmpBuf, JBListHead, true, EntryBB->getTerminator()); 466 new StoreInst(ConstantInt::get(Type::getInt32Ty(F.getContext()), 0), 526 new StoreInst(BufPtr, JBListHead, UnwindHandler); 570 new StoreInst(OldBuf, JBListHead, true, R);
|
/external/llvm/lib/Transforms/Scalar/ |
LowerAtomic.cpp | 103 static bool LowerStoreInst(StoreInst *SI) { 127 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
|
DeadStoreElimination.cpp | 147 if (isa<StoreInst>(I)) 169 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) 222 if (StoreInst *SI = dyn_cast<StoreInst>(I)) 249 if (isa<StoreInst>(I)) 264 if (StoreInst *SI = dyn_cast<StoreInst>(I)) 499 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) [all...] |
MemCpyOptimizer.cpp | 159 if (!isa<StoreInst>(TheStores[i])) 205 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) 211 void addStore(int64_t OffsetFromFirst, StoreInst *SI) { 330 bool processStore(StoreInst *SI, BasicBlock::iterator &BBI); 376 if (!isa<StoreInst>(BI) && !isa<MemSetInst>(BI)) { 385 if (StoreInst *NextStore = dyn_cast<StoreInst>(BI)) { 481 bool MemCpyOpt::processStore(StoreInst *SI, BasicBlock::iterator &BBI) { [all...] |
ScalarReplAggregates.cpp | 154 void RewriteStoreUserOfWholeAlloca(StoreInst *SI, AllocaInst *AI, 430 if (StoreInst *SI = dyn_cast<StoreInst>(User)) { 558 if (StoreInst *SI = dyn_cast<StoreInst>(User)) { 645 StoreInst *NewStore = Builder.CreateStore(SrcVal, DstPtr); [all...] |
LoopIdiomRecognize.cpp | 82 bool processLoopStore(StoreInst *SI, const SCEV *BECount); 90 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize, 238 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) { 269 bool LoopIdiomRecognize::processLoopStore(StoreInst *SI, const SCEV *BECount) { 549 processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
|
SimplifyCFGPass.cpp | 143 if (StoreInst *SI = dyn_cast<StoreInst>(BBI)) {
|
/external/llvm/lib/Transforms/Instrumentation/ |
ThreadSanitizer.cpp | 208 if (StoreInst *Store = dyn_cast<StoreInst>(I)) { 243 if (isa<LoadInst>(BI) || isa<StoreInst>(BI)) 282 bool IsWrite = isa<StoreInst>(*I); 284 ? cast<StoreInst>(I)->getPointerOperand() 297 Value *StoredValue = cast<StoreInst>(I)->getValueOperand();
|
/external/llvm/lib/Analysis/ |
Loads.cpp | 144 } else if (StoreInst *SI = dyn_cast<StoreInst>(BBI)) { 205 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
|
LoopDependenceAnalysis.cpp | 83 else if (StoreInst *SI = dyn_cast<StoreInst>(I)) 91 if (StoreInst *i = dyn_cast<StoreInst>(I))
|
AliasSetTracker.cpp | 312 bool AliasSetTracker::add(StoreInst *SI) { 356 if (StoreInst *SI = dyn_cast<StoreInst>(I)) 441 bool AliasSetTracker::remove(StoreInst *SI) { 473 if (StoreInst *SI = dyn_cast<StoreInst>(I))
|
MemDepPrinter.cpp | 132 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
|
/external/llvm/include/llvm/Analysis/ |
AliasAnalysis.h | 46 class StoreInst; 137 Location getLocation(const StoreInst *SI); 345 case Instruction::Store: return getModRefInfo((const StoreInst*)I, Loc); 409 ModRefResult getModRefInfo(const StoreInst *S, const Location &Loc); 412 ModRefResult getModRefInfo(const StoreInst *S, const Value *P, uint64_t Size){
|
AliasSetTracker.h | 31 class StoreInst; 328 bool add(StoreInst *SI); 341 bool remove(StoreInst *SI);
|
/external/llvm/lib/CodeGen/ |
GCStrategy.cpp | 189 if (StoreInst *SI = dyn_cast<StoreInst>(IP)) 199 StoreInst* SI = new StoreInst(ConstantPointerNull::get(cast<PointerType>( 239 isa<StoreInst>(I) || isa<LoadInst>(I)) 296 Value *St = new StoreInst(CI->getArgOperand(0),
|
/external/llvm/lib/Transforms/Vectorize/ |
BBVectorize.cpp | 378 if (!Config.NoMemOpBoost && (isa<LoadInst>(V) || isa<StoreInst>(V))) 400 IPtr = cast<StoreInst>(I)->getPointerOperand(); 401 JPtr = cast<StoreInst>(J)->getPointerOperand(); 402 IAlignment = cast<StoreInst>(I)->getAlignment(); 403 JAlignment = cast<StoreInst>(J)->getAlignment(); 550 } else if (StoreInst *S = dyn_cast<StoreInst>(I)) { 587 if (isa<StoreInst>(I)) { 591 Value *IVal = cast<StoreInst>(I)->getValueOperand(); 639 StoreInst *SI, *SJ [all...] |
/external/llvm/lib/Analysis/IPA/ |
GlobalsModRef.cpp | 255 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) { 321 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) { 463 } else if (isa<StoreInst>(*II)) { 465 if (cast<StoreInst>(*II).isVolatile())
|
/external/llvm/lib/Transforms/IPO/ |
GlobalOpt.cpp | 222 } else if (const StoreInst *SI = dyn_cast<StoreInst>(I)) { 314 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) { 391 if (StoreInst *SI = dyn_cast<StoreInst>(I)) 644 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) { 691 } else if (isa<StoreInst>(U)) { 709 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) [all...] |