Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DDCE.cpp101 Value *OpV = I->getOperand(i); in DCEInstruction() local
104 if (!OpV->use_empty() || I == OpV) in DCEInstruction()
110 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) in DCEInstruction()
DSimpleLoopUnswitch.cpp136 for (Value *OpV : I.operand_values()) { in collectHomogenousInstGraphLoopInvariants()
138 if (isa<Constant>(OpV)) in collectHomogenousInstGraphLoopInvariants()
142 if (L.isLoopInvariant(OpV)) { in collectHomogenousInstGraphLoopInvariants()
143 Invariants.push_back(OpV); in collectHomogenousInstGraphLoopInvariants()
148 Instruction *OpI = dyn_cast<Instruction>(OpV); in collectHomogenousInstGraphLoopInvariants()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DLocal.cpp568 Value *OpV = OpU.get(); in RecursivelyDeleteTriviallyDeadInstructions() local
571 if (!OpV->use_empty()) in RecursivelyDeleteTriviallyDeadInstructions()
577 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) in RecursivelyDeleteTriviallyDeadInstructions()
653 Value *OpV = I->getOperand(i); in simplifyAndDCEInstruction() local
656 if (!OpV->use_empty() || I == OpV) in simplifyAndDCEInstruction()
662 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) in simplifyAndDCEInstruction()
DScalarEvolutionExpander.cpp2642 auto *OpV = User->getOperand(OpIdx); in fixupLCSSAFormFor() local
2643 auto *OpI = dyn_cast<Instruction>(OpV); in fixupLCSSAFormFor()
2645 return OpV; in fixupLCSSAFormFor()
2650 return OpV; in fixupLCSSAFormFor()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86FlagsCopyLowering.cpp316 MachineOperand &OpV = MI.getOperand(OpIdx); in splitBlock() local
332 MI.addOperand(MF, OpV); in splitBlock()
DX86SpeculativeLoadHardening.cpp292 MachineOperand &OpV = MI.getOperand(OpIdx); in splitEdge() local
305 MI.addOperand(MF, OpV); in splitEdge()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonISelDAGToDAGHVX.cpp619 OpRef(SDValue V) : OpV(V) {} in OpRef()
620 bool isValue() const { return OpV.getNode() != nullptr; } in isValue()
636 SDValue OpV = SDValue(); member
712 OpV.getNode()->print(OS, &G); in print()
1061 Ops.push_back(R.OpV); in materialize()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h858 for (const SDValue &OpV : M->op_values()) {
859 SDNode *Op = OpV.getNode();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DAttributorAttributes.cpp8311 Value *OpV = CastI->getOperand(0); in calculateCastInst() local
8316 A.getAssumedSimplified(IRPosition::value(*OpV, getCallBaseContext()), in calculateCastInst()
8322 OpV = *SimplifiedOpV; in calculateCastInst()
8324 if (!OpV->getType()->isIntegerTy()) in calculateCastInst()
8328 *this, IRPosition::value(*OpV, getCallBaseContext()), in calculateCastInst()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DScalarEvolution.cpp8927 const SCEV *OpV = getSCEVAtScope(OrigV, L); in computeSCEVAtScope() local
8928 MadeImprovement |= OrigV != OpV; in computeSCEVAtScope()
8930 Constant *C = BuildConstantFromSCEV(OpV); in computeSCEVAtScope()