Searched defs:IntType (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp382 APSIntType IntType = BV.getAPSIntType(T); local
383 Result = Result.Intersect(BV, F, ++IntType.getZeroValue(),
384 --IntType.getZeroValue());
H A DSimpleSValBuilder.cpp373 APSIntType IntType = BasicVals.getAPSIntType(resultTy); local
374 IntType.apply(LHSValue);
375 IntType.apply(RHSValue);
484 APSIntType IntType = BasicVals.getAPSIntType(resultTy); local
485 const llvm::APSInt &first = IntType.convert(symIntExpr->getRHS());
486 const llvm::APSInt &second = IntType.convert(*RHSValue);
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp393 IntegerType *IntType = dyn_cast<IntegerType>(LoadTy); local
396 if (!IntType) {
419 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
438 return UndefValue::get(IntType);
445 APInt ResultVal = APInt(IntType->getBitWidth(), RawBytes[BytesLoaded-1]);
451 return ConstantInt::get(IntType->getContext(), ResultVal);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp66 IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3); local
67 Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp);
68 Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
/external/clang/include/clang/Basic/
H A DTargetInfo.h115 enum IntType { enum in class:clang::TargetInfo
157 IntType SizeType, IntMaxType, UIntMaxType, PtrDiffType, IntPtrType, WCharType,
186 IntType getSizeType() const { return SizeType; }
187 IntType getIntMaxType() const { return IntMaxType; }
188 IntType getUIntMaxType() const { return UIntMaxType; }
189 IntType getPtrDiffType(unsigned AddrSpace) const {
192 IntType getIntPtrType() const { return IntPtrType; }
193 IntType getWCharType() const { return WCharType; }
194 IntType getWIntType() const { return WIntType; }
195 IntType getChar16Typ
[all...]
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp56 QualType T, llvm::IntegerType *IntType) {
60 return CGF.Builder.CreatePtrToInt(V, IntType);
62 assert(V->getType() == IntType);
92 llvm::IntegerType *IntType = local
95 llvm::Type *IntPtrType = IntType->getPointerTo(AddrSpace);
101 Args[1] = EmitToInt(CGF, Args[1], T, IntType);
127 llvm::IntegerType *IntType = local
130 llvm::Type *IntPtrType = IntType->getPointerTo(AddrSpace);
135 Args[1] = EmitToInt(CGF, Args[1], T, IntType);
917 llvm::IntegerType *IntType local
55 EmitToInt(CodeGenFunction &CGF, llvm::Value *V, QualType T, llvm::IntegerType *IntType) argument
945 llvm::IntegerType *IntType = local
[all...]

Completed in 237 milliseconds