Searched refs:OpVal (Results 1 - 9 of 9) 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);
424 Value *OpVal = InsertPHITranslatedSubExpr(Inst->getOperand(0),
426 if (OpVal == 0) return 0;
428 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/CodeGen/
H A DCodeGenPrepare.cpp2916 /// IsOperandAMemoryOperand - Check to see if all uses of OpVal by the specified
2919 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, argument
2934 if (OpInfo.CallOperandVal == OpVal &&
3495 Value *OpVal = CS->getArgOperand(ArgNo++); local
3496 MadeChange |= OptimizeMemoryInst(CS, OpVal, OpVal->getType());
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp823 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); local
824 mergeInValue(&I, getValueState(OpVal));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp6433 const Value *OpVal = OpInfo.CallOperandVal;
6434 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
6435 isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) {
6436 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
6441 Type *Ty = OpVal->getType();
6918 SDValue OpVal = Builder.getValue(CS.getArgument(i));
6919 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(OpVal)) {
6924 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(OpVal)) {
[all...]
H A DSelectionDAG.cpp6819 SDValue OpVal = getOperand(i); local
6822 if (OpVal.getOpcode() == ISD::UNDEF)
6824 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
6827 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
H A DDAGCombiner.cpp7045 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))-> local
7049 APInt ThisVal = OpVal.trunc(DstBitSize);
7051 OpVal = OpVal.lshr(DstBitSize);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1310 SDValue OpVal(nullptr, 0);
1371 if (!OpVal.getNode())
1372 OpVal = N->getOperand(i);
1373 else if (OpVal != N->getOperand(i))
1377 if (!OpVal.getNode()) return SDValue(); // All UNDEF: use implicit def.
1381 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
1383 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {

Completed in 263 milliseconds