Searched refs:Store (Results 51 - 75 of 199) sorted by relevance

12345678

/openbsd-current/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp285 case Instruction::Store:
767 assert((Opcode == Instruction::Load || Opcode == Instruction::Store) &&
830 if (Src->isVectorTy() && Opcode == Instruction::Store)
1002 if (Opcode != Instruction::Load && Opcode != Instruction::Store)
1040 assert((Opcode == Instruction::Load || Opcode == Instruction::Store) &&
/openbsd-current/gnu/llvm/llvm/lib/Transforms/IPO/
H A DFunctionSpecialization.cpp118 if (auto *Store = dyn_cast<StoreInst>(User)) {
120 if (StoreValue || Store->isVolatile())
122 StoreValue = Store->getValueOperand();
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp71 } else if (StoreInst *Store = dyn_cast<StoreInst>(Inst)) {
73 *Store, Plan->getOrAddVPValue(getLoadStorePointerOperand(Inst)),
74 Plan->getOrAddVPValue(Store->getValueOperand()), nullptr /*Mask*/,
H A DLoadStoreVectorizer.cpp1 //===- LoadStoreVectorizer.cpp - GPU Load & Store Vectorizer --------------===//
207 return "GPU Load and Store Vectorizer";
225 "Vectorize load and Store instructions", false, false)
1125 StoreInst *Store = cast<StoreInst>(Chain[I]); local
1128 Value *Extract = Builder.CreateExtractElement(Store->getValueOperand(),
1140 StoreInst *Store = cast<StoreInst>(Chain[I]); local
1141 Value *Extract = Store->getValueOperand();
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp996 auto Store = IRB.CreateStore(Inc, CounterPtr);
998 SetNoSanitizeMetadata(Store);
1008 auto Store = ThenIRB.CreateStore(ConstantInt::getTrue(Int1Ty), FlagPtr);
1010 SetNoSanitizeMetadata(Store);
1025 auto Store = ThenIRB.CreateStore(FrameAddrInt, SanCovLowestStack);
1027 SetNoSanitizeMetadata(Store);
H A DInstrProfiling.cpp165 : LoadAndStorePromoter({L, S}, SSA), Store(S), ExitBlocks(ExitBlocks),
180 Value *Addr = cast<StoreInst>(Store)->getPointerOperand();
217 Instruction *Store; member in class:__anon3400::PGOCounterPromoterHelper
725 auto *Store = Builder.CreateStore(Count, Addr); local
727 PromotionCandidates.emplace_back(cast<Instruction>(Load), Store); local
/openbsd-current/gnu/usr.bin/gcc/gcc/config/rs6000/
H A Dtramp.asm89 /* Store correct function and static chain */
H A Ddarwin-tramp.asm85 /* Store correct function and static chain */
/openbsd-current/gnu/llvm/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp602 Instruction *Store = tryCreateIncrementingGatScat(I, Ptr, Builder); local
603 if (!Store)
604 Store = tryCreateMaskedScatterOffset(I, Ptr, Builder);
605 if (!Store)
606 Store = tryCreateMaskedScatterBase(I, Ptr, Builder);
607 if (!Store)
611 << *Store << "\n");
613 return Store;
/openbsd-current/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.cpp184 assert(Opcode == Instruction::Load || Opcode == Instruction::Store);
189 if (Opcode == Instruction::Store)
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DReturnProtectorLowering.cpp75 case Instruction::Store:
/openbsd-current/gnu/usr.bin/perl/lib/Tie/
H A DScalar.pm66 Store data I<value> in the tied scalar referenced by I<this>.
/openbsd-current/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h228 R_SExpr reduceStore(Store &Orig, R_SExpr E0, R_SExpr E1) { return E0 && E1; }
230 R_SExpr reduceArrayIndex(Store &Orig, R_SExpr E0, R_SExpr E1) {
234 R_SExpr reduceArrayAdd(Store &Orig, R_SExpr E0, R_SExpr E1) {
757 void printStore(const Store *E, StreamType &SS) {
/openbsd-current/gnu/llvm/llvm/lib/Target/ARC/
H A DARCISelLowering.cpp334 SDValue Store = local
336 MemOpChains.push_back(Store);
580 SDValue Store = local
582 MemOps.push_back(Store);
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DFunctionPropertiesAnalysis.cpp60 } else if (I.getOpcode() == Instruction::Store) {
H A DMemoryLocation.cpp82 case Instruction::Store:
H A DCaptureTracking.cpp351 case Instruction::Store:
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepot.cpp194 store_id = stackStore.Store(args, &pack);
/openbsd-current/gnu/usr.bin/perl/cpan/IO-Compress/bin/
H A Dstreamzip131 store Store without compression
209 * store Store without compression
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLICM.cpp2086 } else if (const StoreInst *Store = dyn_cast<StoreInst>(UI)) {
2091 if (!Store->isUnordered())
2094 SawUnorderedAtomic |= Store->isAtomic();
2095 SawNotAtomic |= !Store->isAtomic();
2102 Align InstAlignment = Store->getAlign();
2121 return DT->dominates(Store->getParent(), Exit);
2129 Store->getPointerOperand(), Store->getValueOperand()->getType(),
2130 Store->getAlign(), MDL, Preheader->getTerminator(), AC, DT, TLI);
H A DDeadStoreElimination.cpp1 //===- DeadStoreElimination.cpp - MemorySSA Backed Dead Store Elimination -===//
589 LLVM_DEBUG(dbgs() << "DSE: Remove Dead Store:\n OW "
1884 StoreInst *Store = dyn_cast<StoreInst>(DefI); local
1887 if (Store)
1888 StoredConstant = dyn_cast<Constant>(Store->getOperand(0));
1907 if (!Store)
1910 if (auto *LoadI = dyn_cast<LoadInst>(Store->getOperand(0))) {
1911 if (LoadI->getPointerOperand() == Store->getOperand(1)) {
2025 LLVM_DEBUG(dbgs() << "DSE: Remove No-Op Store:\n DEAD: " << *DefInst
2127 LLVM_DEBUG(dbgs() << "DSE: Remove Dead Store
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DR600ISelLowering.cpp1020 SDValue R600TargetLowering::lowerPrivateTruncStore(StoreSDNode *Store, argument
1022 SDLoc DL(Store);
1024 assert(Store->isTruncatingStore()
1025 || Store->getValue().getValueType() == MVT::i8);
1026 assert(Store->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS);
1029 if (Store->getMemoryVT() == MVT::i8) {
1030 assert(Store->getAlign() >= 1);
1032 } else if (Store->getMemoryVT() == MVT::i16) {
1033 assert(Store->getAlign() >= 2);
1039 SDValue OldChain = Store
[all...]
/openbsd-current/gnu/gcc/gcc/config/rs6000/
H A Dtramp.asm90 /* Store correct function and static chain */
H A Ddarwin-tramp.asm87 /* Store correct function and static chain */
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp220 Store OldStore = getStore();
447 Store newStoreStore = newStore.getStore();

Completed in 514 milliseconds

12345678