Searched defs:StoredVal (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp274 Value *StoredVal = SI->getValueOperand();
278 uint64_t SizeInBits = TD->getTypeSizeInBits(StoredVal->getType());
309 StoredVal, SI, StoreEv, BECount))
315 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
443 unsigned StoreAlignment, Value *StoredVal,
451 Value *SplatValue = isBytewiseValue(StoredVal);
463 (PatternValue = getMemSetPatternValue(StoredVal, *TD))) {
442 processLoopStridedStore(Value *DestPtr, unsigned StoreSize, unsigned StoreAlignment, Value *StoredVal, Instruction *TheStore, const SCEVAddRecExpr *Ev, const SCEV *BECount) argument
H A DGVN.cpp731 static bool CanCoerceMustAliasedValueToLoad(Value *StoredVal, argument
737 StoredVal->getType()->isStructTy() ||
738 StoredVal->getType()->isArrayTy())
742 if (TD.getTypeSizeInBits(StoredVal->getType()) <
756 static Value *CoerceAvailableValueToLoadType(Value *StoredVal, argument
760 if (!CanCoerceMustAliasedValueToLoad(StoredVal, LoadedTy, TD))
764 Type *StoredValTy = StoredVal->getType();
773 return new BitCastInst(StoredVal, LoadedTy, "", InsertPt);
778 StoredVal = new PtrToIntInst(StoredVal, StoredValT
1896 Value *StoredVal = DepSI->getValueOperand(); local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp1253 SVal StoredVal = state->getSVal(regionLoc->getRegion()); local
1254 if (StoredVal != val)
H A DRetainCountChecker.cpp3405 SVal StoredVal = state->getSVal(regionLoc->getRegion()); local
3406 if (StoredVal != val)
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp1858 SDValue StoredVal, SelectionDAG *CurDAG,
1865 if (StoredVal.getResNo() != 0) return false;
1868 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1874 SDValue Load = StoredVal->getOperand(0);
2582 SDValue StoredVal = StoreNode->getOperand(1); local
2583 unsigned Opc = StoredVal->getOpcode();
2587 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2609 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
1857 isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc, SDValue StoredVal, SelectionDAG *CurDAG, LoadSDNode* &LoadNode, SDValue &InputChain) argument
H A DX86ISelLowering.cpp15194 SDValue StoredVal = St->getOperand(1); local
15202 StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
15203 StoredVal.getNumOperands() == 2) {
15204 SDValue Value0 = StoredVal.getOperand(0);
15205 SDValue Value1 = StoredVal.getOperand(1);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp236 Value *StoredVal = SI->getOperand(0); local
237 if (StoredVal == GV->getInitializer()) {
240 } else if (isa<LoadInst>(StoredVal) &&
241 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
246 GS.StoredOnceValue = StoredVal;
248 GS.StoredOnceValue == StoredVal) {
1296 Instruction *StoredVal) {
1320 if (InVal == StoredVal) continue;
1849 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0)); local
1851 // If we've already replaced the input, StoredVal wil
1295 AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV, Instruction *StoredVal) argument
[all...]

Completed in 1550 milliseconds