Home
last modified time | relevance | path

Searched refs:OpV (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DDCE.cpp103 Value *OpV = I->getOperand(i); in DCEInstruction() local
106 if (!OpV->use_empty() || I == OpV) in DCEInstruction()
112 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) in DCEInstruction()
/external/llvm/lib/Transforms/Utils/
DLocal.cpp361 Value *OpV = I->getOperand(i); in RecursivelyDeleteTriviallyDeadInstructions() local
364 if (!OpV->use_empty()) continue; in RecursivelyDeleteTriviallyDeadInstructions()
369 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) in RecursivelyDeleteTriviallyDeadInstructions()
432 Value *OpV = I->getOperand(i); in simplifyAndDCEInstruction() local
435 if (!OpV->use_empty() || I == OpV) in simplifyAndDCEInstruction()
441 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) in simplifyAndDCEInstruction()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp6278 const SCEV *OpV = getSCEVAtScope(OrigV, L); in computeSCEVAtScope() local
6279 MadeImprovement |= OrigV != OpV; in computeSCEVAtScope()
6281 Constant *C = BuildConstantFromSCEV(OpV); in computeSCEVAtScope()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp8793 static SDValue tryMatchAcrossLaneShuffleForReduction(SDNode *N, SDValue OpV, in tryMatchAcrossLaneShuffleForReduction() argument
8796 EVT VTy = OpV->getOperand(0).getValueType(); in tryMatchAcrossLaneShuffleForReduction()
8810 SDValue PreOp = OpV; in tryMatchAcrossLaneShuffleForReduction()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp6912 for (const SDValue &OpV : M->op_values()) { in hasPredecessorHelper() local
6913 SDNode *Op = OpV.getNode(); in hasPredecessorHelper()
DDAGCombiner.cpp1336 SDValue OpV = RV; in Run() local
1337 DAG.ReplaceAllUsesWith(N, &OpV); in Run()