Searched defs:OpVal (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp383 Value *OpVal = InsertPHITranslatedSubExpr(Cast->getOperand(0),
385 if (!OpVal) return nullptr;
389 OpVal, InVal->getType(),
401 Value *OpVal = InsertPHITranslatedSubExpr(GEP->getOperand(i), local
403 if (!OpVal) return nullptr;
404 GEPOps.push_back(OpVal);
425 Value *OpVal = InsertPHITranslatedSubExpr(Inst->getOperand(0),
427 if (OpVal == 0) return 0;
429 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.cpp850 Value *OpVal = PN.getIncomingValue(InValNo); local
851 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp822 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); local
823 mergeInValue(&I, getValueState(OpVal));
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2264 /// IsOperandAMemoryOperand - Check to see if all uses of OpVal by the specified
2267 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, argument
2278 if (OpInfo.CallOperandVal == OpVal &&
2834 Value *OpVal = CS->getArgOperand(ArgNo++); local
2835 MadeChange |= OptimizeMemoryInst(CS, OpVal, OpVal->getType());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6645 SDValue OpVal = getOperand(i); local
6648 if (OpVal.getOpcode() == ISD::UNDEF)
6650 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
6653 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
H A DDAGCombiner.cpp6442 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))-> local
6446 APInt ThisVal = OpVal.trunc(DstBitSize);
6448 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
6452 OpVal = OpVal.lshr(DstBitSize);

Completed in 157 milliseconds