Searched refs:ITy (Results 1 - 22 of 22) sorted by path

/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp1033 llvm::Type *ITy = llvm::IntegerType::get(getLLVMContext(), local
1035 Ptr = Builder.CreateBitCast(Ptr, ITy->getPointerTo());
1037 Builder.CreateStore(llvm::Constant::getNullValue(ITy), Ptr);
/external/llvm/include/llvm/IR/
H A DPatternMatch.h65 template<typename ITy>
66 bool match(ITy *V) { return isa<Class>(V); }
88 template<typename ITy>
89 bool match(ITy *V) {
105 template<typename ITy>
106 bool match(ITy *V) {
127 template<typename ITy>
128 bool match(ITy *V) {
140 template<typename ITy>
141 bool match(ITy *
[all...]
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1824 Type *ITy = GetCompareTy(LHS); // The return type. local
1831 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
1876 return getFalse(ITy);
1878 return getTrue(ITy);
1882 return getFalse(ITy);
1887 return getTrue(ITy);
1892 return getTrue(ITy);
1894 return getFalse(ITy);
1899 return getTrue(ITy);
1901 return getFalse(ITy);
[all...]
H A DMemoryDependenceAnalysis.cpp426 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType()))
427 if (LI->getAlignment()*8 > ITy->getPrimitiveSizeInBits() &&
H A DScalarEvolution.cpp329 IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty)); local
330 return getConstant(ConstantInt::get(ITy, V, isSigned));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1311 IntegerType *ITy = IntegerType::get(FuncInfo.Fn->getContext(), local
1313 MaterialReg = getRegForValue(ConstantInt::get(ITy, Imm));
/external/llvm/lib/IR/
H A DConstants.cpp186 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
188 APInt::getAllOnesValue(ITy->getBitWidth()));
520 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth()); local
523 ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
524 if (!Slot) Slot = new ConstantInt(ITy, V);
H A DCore.cpp2259 Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext()); local
2261 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2263 ITy, unwrap(Ty), AllocSize,
2270 Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext()); local
2272 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2274 ITy, unwrap(Ty), AllocSize,
H A DFunction.cpp686 IntegerType *ITy = cast<IntegerType>(Ty);
687 assert(ITy->getBitWidth() % 2 == 0);
688 return IntegerType::get(Context, ITy->getBitWidth() / 2);
H A DValueTypes.cpp98 if (IntegerType *ITy = dyn_cast<IntegerType>(LLVMTy))
99 return ITy->getBitWidth();
H A DVerifier.cpp2350 else if (IntegerType *ITy = dyn_cast<IntegerType>(NewTy))
2351 NewTy = IntegerType::get(ITy->getContext(), 2 * ITy->getBitWidth());
2365 else if (IntegerType *ITy = dyn_cast<IntegerType>(NewTy))
2366 NewTy = IntegerType::get(ITy->getContext(), ITy->getBitWidth() / 2);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp722 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
723 size = ITy->getBitWidth();
H A DNVPTXISelLowering.cpp512 if (const IntegerType *ITy = dyn_cast<IntegerType>(retTy)) {
513 size = ITy->getBitWidth();
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp191 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
192 return ITy->getBitWidth() > (Is32Bit ? 32U : 64U);
/external/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp183 if (IntegerType *ITy =
185 if ((ITy->getBitWidth() == 8 || ITy->getBitWidth() == 16 ||
186 ITy->getBitWidth() == 32) &&
188 if (ITy->getBitWidth() == 8)
190 if (ITy->getBitWidth() == 16)
193 assert(ITy->getBitWidth() == 32 && "Unknown width");
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1502 IntegerType *ITy = dyn_cast<IntegerType>(I.getType()); local
1503 if (!ITy || ITy->getBitWidth() % 16 ||
1505 ITy->getBitWidth() > 32*8)
1511 ByteValues.resize(ITy->getBitWidth()/8);
1527 Function *F = Intrinsic::getDeclaration(M, Intrinsic::bswap, ITy);
H A DInstCombineCalls.cpp32 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
33 if (ITy->getBitWidth() < 32)
175 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8. local
179 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
187 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
H A DInstCombineCasts.cpp597 if (IntegerType *ITy = dyn_cast<IntegerType>(CI.getType())) {
598 uint32_t BitWidth = ITy->getBitWidth();
618 ConstantInt::get(ITy, UnknownBit));
622 Result, ConstantInt::get(ITy, UnknownBit.countTrailingZeros()));
625 Result = Builder->CreateXor(Result, ConstantInt::get(ITy, 1));
/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));
H A DSROA.cpp1017 IntegerType *ITy = nullptr; local
1046 if (!ITy || ITy->getBitWidth() < UserITy->getBitWidth())
1047 ITy = UserITy;
1058 return TyIsCommon ? Ty : ITy;
1758 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType())) {
1759 if (ITy->getBitWidth() < DL.getTypeStoreSizeInBits(ITy))
1773 if (IntegerType *ITy = dyn_cast<IntegerType>(ValueTy)) {
1774 if (ITy
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1443 Type *ITy = Val->getType()->getScalarType(); local
1451 Indices.push_back(ConstantInt::get(ITy, StartIdx + Idx, Negate));
6016 Type *ITy = Val->getType();
6017 assert(!ITy->isVectorTy() && "Val must be a scalar");
6018 Constant *C = ConstantInt::get(ITy, StartIdx, Negate);
/external/valgrind/main/memcheck/tests/
H A Dsh-mem.c130 // type or an FP type. 'ITy' is the same-sized integer type (and thus
131 // will be the same as 'Ty' if 'ITy' is an integer type). 'ITy' is used
134 #define DO(NNN, Ty, ITy, isF4) \
136 NNN, #Ty, #ITy); \
154 ITy undefN_ITy = (ITy)tmp; \
159 ITy undefN_ITyDef = undefN_ITy; \

Completed in 572 milliseconds