/external/valgrind/main/memcheck/tests/ |
H A D | sh-mem.c | 129 // 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 D | TargetLoweringObjectFile.cpp | 168 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 D | PatternMatch.h | 63 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 D | InstructionSimplify.cpp | 1650 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 D | MemoryDependenceAnalysis.cpp | 484 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType())) 485 if (LI->getAlignment()*8 > ITy->getPrimitiveSizeInBits() &&
|
H A D | ScalarEvolution.cpp | 323 IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty)); local 324 return getConstant(ConstantInt::get(ITy, V, isSigned));
|
/external/llvm/lib/VMCore/ |
H A D | ValueTypes.cpp | 86 if (IntegerType *ITy = dyn_cast<IntegerType>(LLVMTy)) 87 return ITy->getBitWidth();
|
H A D | Core.cpp | 1994 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,
|
H A D | Constants.cpp | 142 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 D | SCCP.cpp | 1311 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 D | InstCombineCalls.cpp | 25 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 D | InstCombineCasts.cpp | 585 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 D | InstCombineAndOrXor.cpp | 1379 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/CodeGen/SelectionDAG/ |
H A D | FastISel.cpp | 1134 IntegerType *ITy = IntegerType::get(FuncInfo.Fn->getContext(), local 1136 MaterialReg = getRegForValue(ConstantInt::get(ITy, Imm));
|
/external/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 947 llvm::Type *ITy = llvm::IntegerType::get(getLLVMContext(), local 949 Ptr = Builder.CreateBitCast(Ptr, ITy->getPointerTo()); 951 Builder.CreateStore(llvm::Constant::getNullValue(ITy), Ptr);
|