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

/external/llvm/lib/Analysis/
H A DConstantFolding.cpp390 IntegerType *IntType = dyn_cast<IntegerType>(LoadTy); local
393 if (!IntType) {
416 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
435 return UndefValue::get(IntType);
442 APInt ResultVal = APInt(IntType->getBitWidth(), RawBytes[BytesLoaded-1]);
448 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.h113 enum IntType { enum in class:clang::TargetInfo
132 IntType SizeType, IntMaxType, UIntMaxType, PtrDiffType, IntPtrType, WCharType,
158 IntType getSizeType() const { return SizeType; }
159 IntType getIntMaxType() const { return IntMaxType; }
160 IntType getUIntMaxType() const { return UIntMaxType; }
161 IntType getPtrDiffType(unsigned AddrSpace) const {
164 IntType getIntPtrType() const { return IntPtrType; }
165 IntType getWCharType() const { return WCharType; }
166 IntType getWIntType() const { return WIntType; }
167 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);
878 llvm::IntegerType *IntType local
55 EmitToInt(CodeGenFunction &CGF, llvm::Value *V, QualType T, llvm::IntegerType *IntType) argument
906 llvm::IntegerType *IntType = local
[all...]

Completed in 615 milliseconds