Searched defs:ITy (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1151 IntegerType *ITy = IntegerType::get(FuncInfo.Fn->getContext(), local
1153 MaterialReg = getRegForValue(ConstantInt::get(ITy, Imm));
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp25 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
26 if (ITy->getBitWidth() < 32)
142 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8. local
146 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
154 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
H A DInstCombineAndOrXor.cpp1383 IntegerType *ITy = dyn_cast<IntegerType>(I.getType()); local
1384 if (!ITy || ITy->getBitWidth() % 16 ||
1386 ITy->getBitWidth() > 32*8)
1392 ByteValues.resize(ITy->getBitWidth()/8);
1408 Function *F = Intrinsic::getDeclaration(M, Intrinsic::bswap, ITy);
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp1311 Type *ITy = I->getType(); local
1326 markForcedConstant(I, Constant::getNullValue(ITy));
1340 markForcedConstant(I, Constant::getNullValue(ITy));
1349 markForcedConstant(I, Constant::getNullValue(ITy));
1357 markForcedConstant(I, Constant::getAllOnesValue(ITy));
1365 markForcedConstant(I, Constant::getNullValue(ITy));
1381 markForcedConstant(I, Constant::getNullValue(ITy));
1389 markForcedConstant(I, Constant::getAllOnesValue(ITy));
1399 markForcedConstant(I, Constant::getNullValue(ITy));
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1650 Type *ITy = GetCompareTy(LHS); // The return type. local
1657 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
1706 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
1719 return ConstantInt::get(ITy, false);
1728 return ConstantInt::get(ITy, false);
1734 return ConstantInt::get(ITy, false);
1736 return ConstantInt::get(ITy, true);
1745 return ConstantInt::get(ITy, false);
1747 return ConstantInt::get(ITy, true);
1758 return getFalse(ITy);
[all...]
H A DScalarEvolution.cpp325 IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty)); local
326 return getConstant(ConstantInt::get(ITy, V, isSigned));
/external/llvm/lib/VMCore/
H A DConstants.cpp142 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
144 APInt::getAllOnesValue(ITy->getBitWidth()));
425 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth()); local
427 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
429 if (!Slot) Slot = new ConstantInt(ITy, V);
H A DCore.cpp2013 Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext()); local
2015 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2017 ITy, unwrap(Ty), AllocSize,
2024 Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext()); local
2026 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2028 ITy, unwrap(Ty), AllocSize,
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp986 llvm::Type *ITy = llvm::IntegerType::get(getLLVMContext(), local
988 Ptr = Builder.CreateBitCast(Ptr, ITy->getPointerTo());
990 Builder.CreateStore(llvm::Constant::getNullValue(ITy), Ptr);

Completed in 177 milliseconds