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

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp386 Value *OpVal = InsertPHITranslatedSubExpr(Cast->getOperand(0),
388 if (OpVal == 0) return 0;
392 OpVal, InVal->getType(),
404 Value *OpVal = InsertPHITranslatedSubExpr(GEP->getOperand(i), local
406 if (OpVal == 0) return 0;
407 GEPOps.push_back(OpVal);
428 Value *OpVal = InsertPHITranslatedSubExpr(Inst->getOperand(0),
430 if (OpVal == 0) return 0;
432 BinaryOperator *Res = BinaryOperator::CreateAdd(OpVal, Inst->getOperand(1),
H A DSparsePropagation.cpp263 LatticeVal OpVal = getOrInitValueState(PN.getIncomingValue(i)); local
264 if (OpVal != PNIV)
265 PNIV = LatticeFunc->MergeValues(PNIV, OpVal);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp854 Value *OpVal = PN.getIncomingValue(InValNo); local
855 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp820 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); local
821 mergeInValue(&I, getValueState(OpVal));
H A DCodeGenPrepare.cpp1250 /// IsOperandAMemoryOperand - Check to see if all uses of OpVal by the specified
1253 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, argument
1264 if (OpInfo.CallOperandVal == OpVal &&
1681 Value *OpVal = CS->getArgOperand(ArgNo++); local
1682 MadeChange |= OptimizeMemoryInst(CS, OpVal, OpVal->getType());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6308 SDValue OpVal = getOperand(i); local
6311 if (OpVal.getOpcode() == ISD::UNDEF)
6313 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
6316 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
H A DSelectionDAGBuilder.cpp6009 const Value *OpVal = OpInfo.CallOperandVal; local
6010 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
6011 isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) {
6012 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
6017 Type *Ty = OpVal->getType();
H A DDAGCombiner.cpp5873 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))-> local
5877 APInt ThisVal = OpVal.trunc(DstBitSize);
5879 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
5883 OpVal = OpVal.lshr(DstBitSize);

Completed in 211 milliseconds