Searched refs:LoadVal (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelLowering.cpp | 2341 static bool usesAllNormalStores(SDNode *LoadVal) { in usesAllNormalStores() argument 2342 for (SDNode::use_iterator I = LoadVal->use_begin(); !I.atEnd(); ++I) { in usesAllNormalStores() 2367 LoadSDNode *LoadVal = cast<LoadSDNode>(Value); in performStoreCombine() local 2368 if (LoadVal->isVolatile() || !usesAllNormalStores(LoadVal)) in performStoreCombine() 2371 EVT MemVT = LoadVal->getMemoryVT(); in performStoreCombine() 2379 LoadVal->getChain(), in performStoreCombine() 2380 LoadVal->getBasePtr(), in performStoreCombine() 2381 LoadVal->getOffset(), in performStoreCombine() 2383 LoadVal->getMemOperand()); in performStoreCombine() 2386 DCI.CombineTo(LoadVal, CastLoad, NewLoad.getValue(1), false); in performStoreCombine()
|
/external/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 520 LoadVal, // A value produced by a load. enumerator 557 Res.Val.setInt(LoadVal); in getLoad() 572 bool isCoercedLoadValue() const { return Val.getInt() == LoadVal; } in isCoercedLoadValue()
|
/external/llvm/lib/Target/Mips/ |
D | MipsISelLowering.cpp | 3714 SDValue LoadVal = DAG.getLoad(RegTy, DL, Chain, LoadPtr, in passByValArg() local 3717 MemOpChains.push_back(LoadVal.getValue(1)); in passByValArg() 3719 RegsToPass.push_back(std::make_pair(ArgReg, LoadVal)); in passByValArg() 3741 SDValue LoadVal = DAG.getExtLoad( in passByValArg() local 3745 MemOpChains.push_back(LoadVal.getValue(1)); in passByValArg() 3755 SDValue Shift = DAG.getNode(ISD::SHL, DL, RegTy, LoadVal, in passByValArg()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 5435 SDValue LoadVal = Builder.DAG.getLoad(LoadVT, Builder.getCurSDLoc(), Root, in getMemCmpLoad() local 5442 Builder.PendingLoads.push_back(LoadVal.getValue(1)); in getMemCmpLoad() 5443 return LoadVal; in getMemCmpLoad()
|