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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1134 IntegerType *ITy = IntegerType::get(FuncInfo.Fn->getContext(), local
1136 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)
144 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8. local
148 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
156 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
H A DInstCombineAndOrXor.cpp1379 IntegerType *ITy = dyn_cast<IntegerType>(I.getType()); local
1380 if (!ITy || ITy->getBitWidth() % 16 ||
1382 ITy->getBitWidth() > 32*8)
1388 ByteValues.resize(ITy->getBitWidth()/8);
1404 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/clang/lib/CodeGen/
H A DCGBuiltin.cpp947 llvm::Type *ITy = llvm::IntegerType::get(getLLVMContext(), local
949 Ptr = Builder.CreateBitCast(Ptr, ITy->getPointerTo());
951 Builder.CreateStore(llvm::Constant::getNullValue(ITy), Ptr);
/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);
1725 return ConstantInt::get(ITy, false);
1731 return ConstantInt::get(ITy, false);
1733 return ConstantInt::get(ITy, true);
1740 return ConstantInt::get(ITy, false);
1742 return ConstantInt::get(ITy, true);
1752 return getFalse(ITy);
[all...]
H A DScalarEvolution.cpp323 IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty)); local
324 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.cpp1994 Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext()); local
1996 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
1998 ITy, unwrap(Ty), AllocSize,
2005 Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext()); local
2007 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2009 ITy, unwrap(Ty), AllocSize,

Completed in 96 milliseconds