Searched refs:StoredVal (Results 1 - 10 of 10) sorted by relevance

/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp94 Value *StoredVal = SI->getOperand(0); local
96 if (Constant *C = dyn_cast<Constant>(StoredVal)) {
103 if (StoredVal == GV->getInitializer()) {
106 } else if (isa<LoadInst>(StoredVal) &&
107 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
112 GS.StoredOnceValue = StoredVal;
114 GS.StoredOnceValue == StoredVal) {
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/
H A DGVN.cpp831 static bool CanCoerceMustAliasedValueToLoad(Value *StoredVal, argument
837 StoredVal->getType()->isStructTy() ||
838 StoredVal->getType()->isArrayTy())
842 if (TD.getTypeSizeInBits(StoredVal->getType()) <
855 static Value *CoerceAvailableValueToLoadType(Value *StoredVal, argument
859 if (!CanCoerceMustAliasedValueToLoad(StoredVal, LoadedTy, TD))
863 Type *StoredValTy = StoredVal->getType();
873 return new BitCastInst(StoredVal, LoadedTy, "", InsertPt);
878 StoredVal = new PtrToIntInst(StoredVal, StoredValT
1916 Value *StoredVal = DepSI->getValueOperand(); local
[all...]
H A DLoopIdiomRecognize.cpp776 Value *StoredVal = SI->getValueOperand();
780 uint64_t SizeInBits = TD->getTypeSizeInBits(StoredVal->getType());
811 StoredVal, SI, StoreEv, BECount))
817 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
945 unsigned StoreAlignment, Value *StoredVal,
953 Value *SplatValue = isBytewiseValue(StoredVal);
968 (PatternValue = getMemSetPatternValue(StoredVal, *TD))) {
944 processLoopStridedStore(Value *DestPtr, unsigned StoreSize, unsigned StoreAlignment, Value *StoredVal, Instruction *TheStore, const SCEVAddRecExpr *Ev, const SCEV *BECount) argument
H A DScalarReplAggregates.cpp322 Value *ConvertScalar_InsertValue(Value *StoredVal, Value *ExistingVal,
/freebsd-10-stable/contrib/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp1926 SDValue StoredVal, SelectionDAG *CurDAG,
1933 if (StoredVal.getResNo() != 0) return false;
1936 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1942 SDValue Load = StoredVal->getOperand(0);
2747 SDValue StoredVal = StoreNode->getOperand(1); local
2748 unsigned Opc = StoredVal->getOpcode();
2752 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2773 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
1925 isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc, SDValue StoredVal, SelectionDAG *CurDAG, LoadSDNode* &LoadNode, SDValue &InputChain) argument
H A DX86ISelLowering.cpp18275 SDValue StoredVal = St->getOperand(1); local
18290 SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18291 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1108 Instruction *StoredVal) {
1132 if (InVal == StoredVal) continue;
1661 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0)); local
1663 // If we've already replaced the input, StoredVal will be a cast or
1666 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1672 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1674 StoreVal = StoredVal->getOperand(0);
1107 AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV, Instruction *StoredVal) argument
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1860 SVal StoredVal = State->getSVal(regionLoc->getRegion()); local
1861 if (StoredVal != Val)
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1288 // another expression. So don't use a reference type for "StoredVal".
1289 VectorParts StoredVal = getVectorValue(SI->getValueOperand()); local
1298 StoredVal[Part] = reverseVector(StoredVal[Part]);
1307 Builder.CreateStore(StoredVal[Part], VecPtr)->setAlignment(Alignment);
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8569 SDValue StoredVal = St->getValue();
8570 bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
8571 if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
8716 SDValue StoredVal = St->getValue(); local
8718 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
8720 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
8736 TLI.getTypeToTransformTo(*DAG.getContext(), StoredVal.getValueType());
8777 SDValue StoredVal; local
8782 StoredVal
[all...]

Completed in 519 milliseconds