HomeSort by relevance Sort by last modified time
    Searched refs:StoreInst (Results 1 - 25 of 110) 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))
AliasAnalysisEvaluator.cpp 159 if (EvalTBAA && isa<StoreInst>(&*I))
224 AA.getLocation(cast<StoreInst>(*I2)))) {
249 switch (AA.alias(AA.getLocation(cast<StoreInst>(*I1)),
250 AA.getLocation(cast<StoreInst>(*I2)))) {
  /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 127 if (StoreInst *store = dyn_cast<StoreInst>(use)) {
166 StoreInst *store = dyn_cast<StoreInst>(*load->use_begin());
  /external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 71 StoreInst *OnlyStore;
149 bool visitStoreInst(StoreInst &SI) {
243 (isa<StoreInst>(I) && isa<AllocaInst>(I->getOperand(1)));
410 StoreInst *OnlyStore = Info.OnlyStore;
492 bool operator()(const std::pair<unsigned, StoreInst *> &LHS,
493 const std::pair<unsigned, StoreInst *> &RHS) {
521 typedef SmallVector<std::pair<unsigned, StoreInst *>, 64> StoresByIndexTy;
526 if (StoreInst *SI = dyn_cast<StoreInst>(*UI))
546 std::make_pair(LoadIdx, static_cast<StoreInst *>(0))
    [all...]
SSAUpdater.cpp 333 SomeVal = cast<StoreInst>(Insts[0])->getOperand(0);
372 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
385 if (isa<StoreInst>(BlockUses[i])) {
424 if (StoreInst *SI = dyn_cast<StoreInst>(II)) {
DemoteRegToStack.cpp 103 new StoreInst(&I, Slot, InsertPt);
133 new StoreInst(P->getIncomingValue(i), Slot,
LowerInvoke.cpp 218 new StoreInst(InvokeNoC, InvokeNum, true, II); // volatile
223 new StoreInst(StackSaveRet, StackPtr, true, II); // volatile
227 new StoreInst(Constant::getNullValue(Type::getInt32Ty(II->getContext())),
444 new StoreInst(OldBuf, OldJmpBufPtr, true, EntryBB->getTerminator());
447 new StoreInst(JmpBuf, JBListHead, true, EntryBB->getTerminator());
464 new StoreInst(ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
524 new StoreInst(BufPtr, JBListHead, UnwindHandler);
568 new StoreInst(OldBuf, JBListHead, true, R);
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 292 if (StoreInst *Store = dyn_cast<StoreInst>(I)) {
315 if (StoreInst *SI = dyn_cast<StoreInst>(I))
346 else if (isa<LoadInst>(BI) || isa<StoreInst>(BI))
399 bool IsWrite = isa<StoreInst>(*I);
401 ? cast<StoreInst>(I)->getPointerOperand()
408 Value *StoredValue = cast<StoreInst>(I)->getValueOperand();
513 } 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),
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 31 class StoreInst;
248 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 30 class StoreInst;
326 bool add(StoreInst *SI);
339 bool remove(StoreInst *SI);
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 225 typedef SmallVector<StoreInst *, 8> StoreList;
474 if (StoreInst *SI = dyn_cast<StoreInst>(VL[0]))
798 if (StoreInst *SI = dyn_cast<StoreInst>(VL[0]))
950 if (StoreInst *SI = dyn_cast<StoreInst>(VL[0]))
958 if (StoreInst *SI = dyn_cast<StoreInst>(I))
968 if (StoreInst *SI = dyn_cast<StoreInst>(I)
    [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)) {
456 } else if (StoreInst *SI = dyn_cast<StoreInst>(&*II)) {
  /art/compiler/llvm/
ir_builder.h 85 ::llvm::StoreInst* CreateStore(::llvm::Value* val, ::llvm::Value* ptr, ::llvm::MDNode* tbaa_info) {
86 ::llvm::StoreInst* inst = LLVMIRBuilder::CreateStore(val, ptr);
119 ::llvm::StoreInst* CreateStore(::llvm::Value* val, ::llvm::Value* ptr, TBAASpecialType special_ty) {
128 ::llvm::StoreInst* CreateStore(::llvm::Value* val, ::llvm::Value* ptr,
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 219 } else if (const StoreInst *SI = dyn_cast<StoreInst>(I)) {
405 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
485 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
561 if (StoreInst *SI = dyn_cast<StoreInst>(I))
814 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U))
    [all...]

Completed in 734 milliseconds

1 2 3 4 5