/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LoadStoreOpt.cpp | 416 auto NewStore = in doSingleStoreMerge() local 418 (void) NewStore; in doSingleStoreMerge() 420 << " stores into merged store: " << *NewStore); in doSingleStoreMerge() 778 GStore *NewStore; in mergeTruncStore() local 779 if ((NewStore = dyn_cast<GStore>(&*II))) { in mergeTruncStore() 780 if (NewStore->getMMO().getMemoryType() != MemTy || !NewStore->isSimple()) in mergeTruncStore() 791 if (!mi_match(NewStore->getPointerReg(), *MRI, in mergeTruncStore() 793 NewBaseReg = NewStore->getPointerReg(); in mergeTruncStore() 799 auto ShiftByteOffset = getTruncStoreByteOffset(*NewStore, WideSrcVal, *MRI); in mergeTruncStore() 804 LowestIdxStore = NewStore; in mergeTruncStore() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86AvoidStoreForwardingBlocks.cpp | 413 MachineInstr *NewStore = in buildCopy() local 424 getBaseOperand(NewStore).setIsKill(false); in buildCopy() 427 NewStore->getOperand(X86::AddrNumOperands).setIsKill(StoreSrcVReg.isKill()); in buildCopy() 428 LLVM_DEBUG(NewStore->dump()); in buildCopy()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/FuzzMutate/ |
H A D | RandomIRBuilder.h | 89 NewStore, enumerator
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ExpandVectorPredication.cpp | 589 StoreInst *NewStore = in expandPredicationInMemoryIntrinsic() local 592 NewStore->setAlignment(*AlignOpt); in expandPredicationInMemoryIntrinsic() 593 NewMemoryInst = NewStore; in expandPredicationInMemoryIntrinsic()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineLoadStoreAlloca.cpp | 587 StoreInst *NewStore = in combineStoreToNewValue() local 589 NewStore->setAtomic(SI.getOrdering(), SI.getSyncScopeID()); in combineStoreToNewValue() 614 NewStore->setMetadata(ID, N); in combineStoreToNewValue() 628 return NewStore; in combineStoreToNewValue()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | ProgramState.cpp | 246 const StoreRef &NewStore = in enterStackFrame() local 248 return makeWithStore(NewStore); in enterStackFrame()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | R600ISelLowering.cpp | 1093 SDValue NewStore = DAG.getStore(Chain, DL, Value, Ptr, PtrInfo); in lowerPrivateTruncStore() local 1098 Chain = DAG.getNode(AMDGPUISD::DUMMY_CHAIN, DL, MVT::Other, NewStore); in lowerPrivateTruncStore() 1101 return NewStore; in lowerPrivateTruncStore() 1128 SDValue NewStore = DAG.getTruncStore( in LowerSTORE() local 1132 StoreNode = cast<StoreSDNode>(NewStore); in LowerSTORE()
|
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/ |
H A D | RandomIRBuilder.cpp | 347 case NewStore: in connectToSink()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | InstrProfiling.cpp | 454 auto *NewStore = Builder.CreateStore(NewVal, Addr); in doExtraRewritesBeforeFinalDeletion() local 460 LoopToCandidates[TargetLoop].emplace_back(OldVal, NewStore); in doExtraRewritesBeforeFinalDeletion()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 9065 SDValue NewStore = in mergeTruncStores() local 9070 DAG.ReplaceAllUsesWith(N, NewStore.getNode()); in mergeTruncStores() 9071 return NewStore; in mergeTruncStores() 20349 SDValue NewStore; in mergeStoresOfConstantsOrVecElts() local 20351 NewStore = DAG.getStore( in mergeStoresOfConstantsOrVecElts() 20365 NewStore = DAG.getTruncStore( in mergeStoresOfConstantsOrVecElts() 20376 CombineTo(StoreNodes[i].MemNode, NewStore); in mergeStoresOfConstantsOrVecElts() 21094 SDValue NewLoad, NewStore; in tryStoreMergeOfLoads() local 21109 NewStore = DAG.getStore( in tryStoreMergeOfLoads() 21121 NewStore = DAG.getTruncStore( in tryStoreMergeOfLoads() [all …]
|
H A D | SelectionDAG.cpp | 7795 SDValue NewStore = DAG.getTruncStore(LoadToken, dl, ST->getValue(), in chainLoadsAndStoresForMemcpy() local 7798 OutChains.push_back(NewStore); in chainLoadsAndStoresForMemcpy()
|