Searched refs:OpVal (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp385 Value *OpVal = InsertPHITranslatedSubExpr(Cast->getOperand(0),
387 if (!OpVal) return nullptr;
390 CastInst *New = CastInst::Create(Cast->getOpcode(), OpVal, InVal->getType(),
403 Value *OpVal = InsertPHITranslatedSubExpr(GEP->getOperand(i), local
405 if (!OpVal) return nullptr;
406 GEPOps.push_back(OpVal);
427 Value *OpVal = InsertPHITranslatedSubExpr(Inst->getOperand(0),
429 if (OpVal == 0) return 0;
431 BinaryOperator *Res = BinaryOperator::CreateAdd(OpVal, Inst->getOperand(1),
H A DSparsePropagation.cpp264 LatticeVal OpVal = getOrInitValueState(PN.getIncomingValue(i)); local
265 if (OpVal != PNIV)
266 PNIV = LatticeFunc->MergeValues(PNIV, OpVal);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp943 Value *OpVal = PN.getIncomingValue(InValNo); local
944 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp831 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); local
832 mergeInValue(&I, getValueState(OpVal));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp6250 const Value *OpVal = OpInfo.CallOperandVal;
6251 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
6252 isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) {
6254 cast<Constant>(OpVal), TLI.getPointerTy(DAG.getDataLayout()));
6258 Type *Ty = OpVal->getType();
6739 SDValue OpVal = Builder.getValue(CS.getArgument(i));
6740 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(OpVal)) {
6745 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(OpVal)) {
[all...]
H A DSelectionDAG.cpp7188 SDValue OpVal = getOperand(i); local
7191 if (OpVal.getOpcode() == ISD::UNDEF)
7193 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
7196 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
H A DDAGCombiner.cpp7613 APInt OpVal = cast<ConstantSDNode>(Op)-> local
7617 APInt ThisVal = OpVal.trunc(DstBitSize);
7619 OpVal = OpVal.lshr(DstBitSize);
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp3402 /// Check to see if all uses of OpVal by the specified inline asm call are due
3404 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, argument
3420 if (OpInfo.CallOperandVal == OpVal &&
3981 Value *OpVal = CS->getArgOperand(ArgNo++); local
3982 MadeChange |= optimizeMemoryInst(CS, OpVal, OpVal->getType(), ~0u);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1500 SDValue OpVal(nullptr, 0);
1561 if (!OpVal.getNode())
1562 OpVal = N->getOperand(i);
1563 else if (OpVal != N->getOperand(i))
1567 if (!OpVal.getNode()) return SDValue(); // All UNDEF: use implicit def.
1571 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
1573 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {

Completed in 568 milliseconds