Searched refs:ITy (Results 1 - 17 of 17) sorted by relevance

/external/valgrind/main/memcheck/tests/
H A Dsh-mem.c129 // type or an FP type. 'ITy' is the same-sized integer type (and thus
130 // will be the same as 'Ty' if 'ITy' is an integer type). 'ITy' is used
133 #define DO(NNN, Ty, ITy, isF4) \
134 fprintf(stderr, "-- NNN: %d %s %s ------------------------\n", NNN, #Ty, #ITy); \
152 ITy undefN_ITy = (ITy)tmp; \
157 ITy undefN_ITyDef = undefN_ITy; \
/external/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp168 if (IntegerType *ITy =
170 if ((ITy->getBitWidth() == 8 || ITy->getBitWidth() == 16 ||
171 ITy->getBitWidth() == 32) &&
173 if (ITy->getBitWidth() == 8)
175 if (ITy->getBitWidth() == 16)
178 assert(ITy->getBitWidth() == 32 && "Unknown width");
/external/llvm/include/llvm/Support/
H A DPatternMatch.h63 template<typename ITy>
64 bool match(ITy *V) { return isa<Class>(V); }
79 template<typename ITy>
80 bool match(ITy *V) {
95 template<typename ITy>
96 bool match(ITy *V) {
125 template<typename ITy>
126 bool match(ITy *V) {
150 template<typename ITy>
151 bool match(ITy *
[all...]
/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 DMemoryDependenceAnalysis.cpp407 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType()))
408 if (LI->getAlignment()*8 > ITy->getPrimitiveSizeInBits() &&
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 DValueTypes.cpp90 if (IntegerType *ITy = dyn_cast<IntegerType>(LLVMTy))
91 return ITy->getBitWidth();
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,
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);
/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/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 DInstCombineCasts.cpp585 if (IntegerType *ITy = dyn_cast<IntegerType>(CI.getType())) {
586 uint32_t BitWidth = ITy->getBitWidth();
606 ConstantInt::get(ITy, UnknownBit));
610 Result, ConstantInt::get(ITy, UnknownBit.countTrailingZeros()));
613 Result = Builder->CreateXor(Result, ConstantInt::get(ITy, 1));
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/CodeGen/SelectionDAG/
H A DFastISel.cpp1151 IntegerType *ITy = IntegerType::get(FuncInfo.Fn->getContext(), local
1153 MaterialReg = getRegForValue(ConstantInt::get(ITy, Imm));
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp288 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
289 size = ITy->getBitWidth();
H A DNVPTXISelLowering.cpp299 if (const IntegerType *ITy = dyn_cast<IntegerType>(retTy)) {
300 size = ITy->getBitWidth();
/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 323 milliseconds