Home
last modified time | relevance | path

Searched refs:LoadVal (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/Target/R600/
DAMDGPUISelLowering.cpp2319 static bool usesAllNormalStores(SDNode *LoadVal) { in usesAllNormalStores() argument
2320 for (SDNode::use_iterator I = LoadVal->use_begin(); !I.atEnd(); ++I) { in usesAllNormalStores()
2345 LoadSDNode *LoadVal = cast<LoadSDNode>(Value); in performStoreCombine() local
2346 if (LoadVal->isVolatile() || !usesAllNormalStores(LoadVal)) in performStoreCombine()
2349 EVT MemVT = LoadVal->getMemoryVT(); in performStoreCombine()
2357 LoadVal->getChain(), in performStoreCombine()
2358 LoadVal->getBasePtr(), in performStoreCombine()
2359 LoadVal->getOffset(), in performStoreCombine()
2361 LoadVal->getMemOperand()); in performStoreCombine()
2364 DCI.CombineTo(LoadVal, CastLoad, NewLoad.getValue(1), false); in performStoreCombine()
/external/llvm/lib/Target/Mips/
DMipsISelLowering.cpp3638 SDValue LoadVal = DAG.getLoad(RegTy, DL, Chain, LoadPtr, in passByValArg() local
3641 MemOpChains.push_back(LoadVal.getValue(1)); in passByValArg()
3643 RegsToPass.push_back(std::make_pair(ArgReg, LoadVal)); in passByValArg()
3664 SDValue LoadVal = DAG.getExtLoad( in passByValArg() local
3668 MemOpChains.push_back(LoadVal.getValue(1)); in passByValArg()
3678 SDValue Shift = DAG.getNode(ISD::SHL, DL, RegTy, LoadVal, in passByValArg()
/external/llvm/lib/Transforms/Scalar/
DGVN.cpp515 LoadVal, // A value produced by a load. enumerator
552 Res.Val.setInt(LoadVal); in getLoad()
567 bool isCoercedLoadValue() const { return Val.getInt() == LoadVal; } in isCoercedLoadValue()
/external/clang/lib/CodeGen/
DCGExpr.cpp1146 llvm::Value *LoadVal = Builder.CreateLoad(Cast, Volatile, "loadVec4"); in EmitLoadOfScalar() local
1156 V = Builder.CreateShuffleVector(LoadVal, in EmitLoadOfScalar()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp5621 SDValue LoadVal = Builder.DAG.getLoad(LoadVT, Builder.getCurSDLoc(), Root, in getMemCmpLoad() local
5628 Builder.PendingLoads.push_back(LoadVal.getValue(1)); in getMemCmpLoad()
5629 return LoadVal; in getMemCmpLoad()