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

1 2 3 4 5

  /external/llvm/lib/Analysis/
Loads.cpp 115 } else if (StoreInst *SI = dyn_cast<StoreInst>(BBI)) {
176 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
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))
CostModel.cpp 137 const StoreInst *SI = cast<StoreInst>(I);
MemDepPrinter.cpp 132 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
  /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)));
302 StoreInst *OnlyStore;
331 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
373 if (isa<LoadInst>(I) || isa<StoreInst>(I))
467 StoreInst *SI = cast<StoreInst>(AI->use_back());
703 if (StoreInst *SI = dyn_cast<StoreInst>(I))
    [all...]
SSAUpdater.cpp 371 SomeVal = cast<StoreInst>(Insts[0])->getOperand(0);
410 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
423 if (isa<StoreInst>(BlockUses[i])) {
462 if (StoreInst *SI = dyn_cast<StoreInst>(II)) {
DemoteRegToStack.cpp 102 new StoreInst(&I, Slot, InsertPt);
132 new StoreInst(P->getIncomingValue(i), Slot,
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/IR/
Instruction.cpp 289 if (const StoreInst *SI = dyn_cast<StoreInst>(this))
290 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile() &&
291 SI->getAlignment() == cast<StoreInst>(I)->getAlignment() &&
292 SI->getOrdering() == cast<StoreInst>(I)->getOrdering() &&
293 SI->getSynchScope() == cast<StoreInst>(I)->getSynchScope();
361 if (const StoreInst *SI = dyn_cast<StoreInst>(this))
362 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile() &&
363 (SI->getAlignment() == cast<StoreInst>(I)->getAlignment() |
    [all...]
Instructions.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 103 static bool LowerStoreInst(StoreInst *SI) {
127 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
DeadStoreElimination.cpp 151 if (isa<StoreInst>(I))
193 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
247 if (StoreInst *SI = dyn_cast<StoreInst>(I))
280 if (isa<StoreInst>(I))
300 if (StoreInst *SI = dyn_cast<StoreInst>(I))
517 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 180 void RewriteStoreUserOfWholeAlloca(StoreInst *SI, AllocaInst *AI,
484 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
638 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
727 StoreInst *NewStore = Builder.CreateStore(SrcVal, DstPtr);
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.cpp 131 if (StoreInst * store = dyn_cast<StoreInst>(use)) {
169 StoreInst *store = dyn_cast<StoreInst>(*load->use_begin());
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 270 if (StoreInst *Store = dyn_cast<StoreInst>(I)) {
293 if (StoreInst *SI = dyn_cast<StoreInst>(I))
323 else if (isa<LoadInst>(BI) || isa<StoreInst>(BI))
369 bool IsWrite = isa<StoreInst>(*I);
371 ? cast<StoreInst>(I)->getPointerOperand()
378 Value *StoredValue = cast<StoreInst>(I)->getValueOperand();
451 } else if (StoreInst *SI = dyn_cast<StoreInst>(I))
    [all...]
BoundsChecking.cpp 184 if (isa<LoadInst>(I) || isa<StoreInst>(I) || isa<AtomicCmpXchgInst>(I) ||
197 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
  /external/llvm/lib/CodeGen/
GCStrategy.cpp 190 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
200 StoreInst* SI = new StoreInst(ConstantPointerNull::get(cast<PointerType>(
240 isa<StoreInst>(I) || isa<LoadInst>(I))
297 Value *St = new StoreInst(CI->getArgOperand(0),
StackProtector.cpp 160 if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 31 class StoreInst;
240 StoreInst *SI, DIBuilder &Builder);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 379 new StoreInst(UndefValue::get(LI.getType()),
392 new StoreInst(UndefValue::get(LI.getType()),
449 static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) {
562 Instruction *InstCombiner::visitStoreInst(StoreInst &SI) {
613 if (StoreInst *PrevSI = dyn_cast<StoreInst>(BBI)) {
692 bool InstCombiner::SimplifyStoreAtEndOfBlock(StoreInst &SI) {
734 StoreInst *OtherStore = 0;
746 OtherStore = dyn_cast<StoreInst>(BBI);
762 if ((OtherStore = dyn_cast<StoreInst>(BBI)))
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 46 class StoreInst;
145 Location getLocation(const StoreInst *SI);
358 case Instruction::Store: return getModRefInfo((const StoreInst*)I, Loc);
422 ModRefResult getModRefInfo(const StoreInst *S, const Location &Loc);
425 ModRefResult getModRefInfo(const StoreInst *S, const Value *P, uint64_t Size){
AliasSetTracker.h 31 class StoreInst;
327 bool add(StoreInst *SI);
340 bool remove(StoreInst *SI);
  /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)) {
456 } else if (StoreInst *SI = dyn_cast<StoreInst>(&*II)) {
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 218 } else if (const StoreInst *SI = dyn_cast<StoreInst>(I)) {
404 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
483 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
560 if (StoreInst *SI = dyn_cast<StoreInst>(I))
813 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U))
    [all...]

Completed in 3659 milliseconds

1 2 3 4 5