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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1195 IntegerType *ITy = IntegerType::get(FuncInfo.Fn->getContext(), local
1197 MaterialReg = getRegForValue(ConstantInt::get(ITy, Imm));
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp30 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
31 if (ITy->getBitWidth() < 32)
173 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8. local
177 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
185 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
H A DInstCombineAndOrXor.cpp1403 IntegerType *ITy = dyn_cast<IntegerType>(I.getType()); local
1404 if (!ITy || ITy->getBitWidth() % 16 ||
1406 ITy->getBitWidth() > 32*8)
1412 ByteValues.resize(ITy->getBitWidth()/8);
1428 Function *F = Intrinsic::getDeclaration(M, Intrinsic::bswap, ITy);
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp1301 Type *ITy = I->getType(); local
1316 markForcedConstant(I, Constant::getNullValue(ITy));
1330 markForcedConstant(I, Constant::getNullValue(ITy));
1339 markForcedConstant(I, Constant::getNullValue(ITy));
1347 markForcedConstant(I, Constant::getAllOnesValue(ITy));
1355 markForcedConstant(I, Constant::getNullValue(ITy));
1371 markForcedConstant(I, Constant::getNullValue(ITy));
1379 markForcedConstant(I, Constant::getAllOnesValue(ITy));
1389 markForcedConstant(I, Constant::getNullValue(ITy));
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp1019 llvm::Type *ITy = llvm::IntegerType::get(getLLVMContext(), local
1021 Ptr = Builder.CreateBitCast(Ptr, ITy->getPointerTo());
1023 Builder.CreateStore(llvm::Constant::getNullValue(ITy), Ptr);
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1862 Type *ITy = GetCompareTy(LHS); // The return type. local
1869 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
1914 return getFalse(ITy);
1916 return getTrue(ITy);
1920 return getFalse(ITy);
1925 return getTrue(ITy);
1930 return getTrue(ITy);
1932 return getFalse(ITy);
1937 return getTrue(ITy);
1939 return getFalse(ITy);
[all...]
H A DScalarEvolution.cpp331 IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty)); local
332 return getConstant(ConstantInt::get(ITy, V, isSigned));
/external/llvm/lib/IR/
H A DConstants.cpp164 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
166 APInt::getAllOnesValue(ITy->getBitWidth()));
484 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth()); local
487 ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
488 if (!Slot) Slot = new ConstantInt(ITy, V);
H A DCore.cpp2119 Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext()); local
2121 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2123 ITy, unwrap(Ty), AllocSize,
2130 Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext()); local
2132 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2134 ITy, unwrap(Ty), AllocSize,
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1002 Type *ITy = Val->getType()->getScalarType(); local
1010 Indices.push_back(ConstantInt::get(ITy, StartIdx + Idx, Negate));

Completed in 1678 milliseconds