/external/llvm/lib/Analysis/ |
H A D | PHITransAddr.cpp | 386 Value *OpVal = InsertPHITranslatedSubExpr(Cast->getOperand(0), 388 if (!OpVal) return nullptr; 391 CastInst *New = CastInst::Create(Cast->getOpcode(), OpVal, InVal->getType(), 404 Value *OpVal = InsertPHITranslatedSubExpr(GEP->getOperand(i), local 406 if (!OpVal) return nullptr; 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 D | SparsePropagation.cpp | 264 LatticeVal OpVal = getOrInitValueState(PN.getIncomingValue(i)); local 265 if (OpVal != PNIV) 266 PNIV = LatticeFunc->MergeValues(PNIV, OpVal);
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
H A D | PHITransAddr.cpp | 385 Value *OpVal = InsertPHITranslatedSubExpr(Cast->getOperand(0), 387 if (OpVal == 0) return 0; 391 OpVal, InVal->getType(), 403 Value *OpVal = InsertPHITranslatedSubExpr(GEP->getOperand(i), local 405 if (OpVal == 0) return 0; 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 D | SparsePropagation.cpp | 263 LatticeVal OpVal = getOrInitValueState(PN.getIncomingValue(i)); local 264 if (OpVal != PNIV) 265 PNIV = LatticeFunc->MergeValues(PNIV, OpVal);
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
H A D | AddrModeMatcher.cpp | 378 /// IsOperandAMemoryOperand - Check to see if all uses of OpVal by the specified 381 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, argument 392 if (OpInfo.CallOperandVal == OpVal &&
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombinePHI.cpp | 952 Value *OpVal = PN.getIncomingValue(InValNo); local 953 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
H A D | InstCombinePHI.cpp | 854 Value *OpVal = PN.getIncomingValue(InValNo); local 855 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
H A D | CodeGenPrepare.cpp | 936 Value *OpVal = CS->getArgOperand(ArgNo++); local 937 MadeChange |= OptimizeMemoryInst(CS, OpVal, OpVal->getType());
|
H A D | SCCP.cpp | 884 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); local 885 mergeInValue(&I, getValueState(OpVal));
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | SCCP.cpp | 852 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); local 853 mergeInValue(&I, getValueState(OpVal));
|
/external/llvm/lib/CodeGen/ |
H A D | CodeGenPrepare.cpp | 3460 /// Check to see if all uses of OpVal by the specified inline asm call are due 3462 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, argument 3478 if (OpInfo.CallOperandVal == OpVal && 4065 Value *OpVal = CS->getArgOperand(ArgNo++); local 4066 MadeChange |= optimizeMemoryInst(CS, OpVal, OpVal->getType(), ~0u);
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 7144 SDValue OpVal = getOperand(i); local 7147 if (OpVal.isUndef()) 7149 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) 7152 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
|
H A D | DAGCombiner.cpp | 7743 APInt OpVal = cast<ConstantSDNode>(Op)-> local 7747 APInt ThisVal = OpVal.trunc(DstBitSize); 7749 OpVal = OpVal.lshr(DstBitSize);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 5208 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))-> local 5212 APInt ThisVal = OpVal.trunc(DstBitSize); 5214 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal) 5218 OpVal = OpVal.lshr(DstBitSize);
|
H A D | SelectionDAG.cpp | 6674 SDValue OpVal = getOperand(i); local 6677 if (OpVal.getOpcode() == ISD::UNDEF) 6679 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) 6682 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
|
H A D | SelectionDAGBuilder.cpp | 5957 const Value *OpVal = OpInfo.CallOperandVal; local 5958 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) || 5959 isa<ConstantVector>(OpVal)) { 5960 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal), 5965 Type *Ty = OpVal->getType();
|