Searched refs:VoidPtrTy (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/lib/CodeGen/
H A DCGCUDANV.cpp35 llvm::PointerType *CharPtrTy, *VoidPtrTy; member in class:__anon19::CGNVCUDARuntime
56 VoidPtrTy = cast<llvm::PointerType>(Types.ConvertType(Ctx.VoidPtrTy));
62 Params.push_back(VoidPtrTy);
101 Args[0] = CGF.Builder.CreatePointerCast(ArgValues[I], VoidPtrTy);
H A DCGBlocks.cpp65 llvm::Type *i8p = CGM.getTypes().ConvertType(C.VoidPtrTy);
254 llvm::tie(ptrSize, ptrAlign) = C.getTypeInfoInChars(C.VoidPtrTy);
269 llvm::Type *i8p = CGM.getTypes().ConvertType(C.VoidPtrTy);
333 QualType byRefPtrTy = C.VoidPtrTy;
636 blockFn = llvm::ConstantExpr::getBitCast(blockFn, VoidPtrTy);
645 isa = llvm::ConstantExpr::getBitCast(isa, VoidPtrTy);
728 src = Builder.CreateBitCast(src, VoidPtrTy);
837 VoidPtrTy, IntTy, IntTy, VoidPtrTy,
862 BlockLiteral = Builder.CreateBitCast(BlockLiteral, VoidPtrTy);
[all...]
H A DCGObjC.cpp498 llvm::Value *dest = CGF.Builder.CreateBitCast(CGF.ReturnValue, CGF.VoidPtrTy);
499 args.add(RValue::get(dest), Context.VoidPtrTy);
501 src = CGF.Builder.CreateBitCast(src, CGF.VoidPtrTy);
502 args.add(RValue::get(src), Context.VoidPtrTy);
762 args.add(RValue::get(returnAddr), CGF.getContext().VoidPtrTy);
769 args.add(RValue::get(ivarAddr), CGF.getContext().VoidPtrTy);
772 args.add(RValue::get(AtomicHelperFn), CGF.getContext().VoidPtrTy);
852 llvm::Value *self = Builder.CreateBitCast(LoadObjCSelf(), VoidPtrTy);
946 args.add(RValue::get(ivarAddr), CGF.getContext().VoidPtrTy);
954 args.add(RValue::get(argAddr), CGF.getContext().VoidPtrTy);
[all...]
H A DItaniumCXXABI.cpp692 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
716 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
745 QualType T = Context.getPointerType(Context.VoidPtrTy);
H A DCGDeclCXX.cpp397 ImplicitParamDecl dst(0, SourceLocation(), 0, getContext().VoidPtrTy);
H A DCGExprCXX.cpp49 QualType T = getContext().getPointerType(getContext().VoidPtrTy);
1470 QualType VoidPtrTy = DeleteFTy->getArgType(0); local
1472 = CGF.Builder.CreateBitCast(Ptr, CGF.ConvertType(VoidPtrTy));
1473 Args.add(RValue::get(DeletePtr), VoidPtrTy); local
H A DCGObjCRuntime.cpp322 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
H A DCGExpr.cpp3143 getContext().VoidPtrTy);
3160 getContext().VoidPtrTy);
3162 getContext().VoidPtrTy);
3174 getContext().VoidPtrTy);
3176 getContext().VoidPtrTy);
3184 getContext().VoidPtrTy);
3192 getContext().VoidPtrTy);
H A DCGDebugInfo.cpp374 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1156 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
1190 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
2497 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2506 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2573 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
H A DCodeGenModule.h123 llvm::PointerType *VoidPtrTy; member in union:clang::CodeGen::CodeGenTypeCache::__anon73
H A DCGObjCMac.cpp311 Params.push_back(Ctx.VoidPtrTy);
312 Params.push_back(Ctx.VoidPtrTy);
332 Params.push_back(Ctx.VoidPtrTy);
333 Params.push_back(Ctx.VoidPtrTy);
334 Params.push_back(Ctx.VoidPtrTy);
4771 Ctx.VoidPtrTy, 0, 0, false, ICIS_NoInit));
H A DCGBuiltin.cpp1019 getContext().VoidPtrTy);
1021 Args.add(RValue::get(llvm::Constant::getNullValue(VoidPtrTy)),
1022 getContext().VoidPtrTy);
H A DCGClass.cpp1343 QualType VoidPP = getContext().getPointerType(getContext().VoidPtrTy);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h153 return getValue(0, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
157 return getValue(X, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
/external/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp93 Type *VoidPtrTy = Type::getInt8PtrTy(M.getContext()); local
96 StructType::get(VoidPtrTy, // __prev
99 VoidPtrTy, // __personality
100 VoidPtrTy, // __lsda
101 ArrayType::get(VoidPtrTy, 5), // __jbuf
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp358 Type *VoidPtrTy = Type::getInt8PtrTy(Context); local
375 Type *Tys[3] = {VoidPtrTy, VoidPtrTy, Type::getInt64Ty(Context)};
379 Value *DestCast = new BitCastInst(NewAlloca, VoidPtrTy, "tmp", TheCall);
380 Value *SrcCast = new BitCastInst(Arg, VoidPtrTy, "tmp", TheCall);
H A DLowerInvoke.cpp122 Type *VoidPtrTy = Type::getInt8PtrTy(M.getContext()); local
127 Type *JmpBufTy = ArrayType::get(VoidPtrTy, JBSize);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp413 const uint64_t voidPtrSize = Ctx.getTypeSize(Ctx.VoidPtrTy);
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp343 BasicVals.getAPSIntType(Context.VoidPtrTy).apply(i);
862 if (ctx.getTypeSize(ctx.VoidPtrTy) == x->getBitWidth()) {
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp2726 Context->getPointerType(Context->VoidPtrTy), 0,
2872 Context->getPointerType(Context->VoidPtrTy), 0,
4566 Context->VoidPtrTy, 0,
4614 Context->VoidPtrTy, 0,
4625 Context->VoidPtrTy, 0,
4926 static_cast<unsigned>(Context->getTypeSize(Context->VoidPtrTy));
5145 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy);
5238 CastExpr *castExpr = NoTypeInfoCStyleCastExpr(Context, Context->VoidPtrTy,
5248 Context->VoidPtrTy, 0,
5252 Context->VoidPtrTy,
[all...]
H A DRewriteObjC.cpp3900 Context->VoidPtrTy, 0,
3948 Context->VoidPtrTy, 0,
3959 Context->VoidPtrTy, 0,
4243 static_cast<unsigned>(Context->getTypeSize(Context->VoidPtrTy));
4462 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy);
4538 CastExpr *castExpr = NoTypeInfoCStyleCastExpr(Context, Context->VoidPtrTy,
4548 Context->VoidPtrTy, 0,
4552 Context->VoidPtrTy,
4556 Context->getPointerType(Context->VoidPtrTy),
4582 Exp = NoTypeInfoCStyleCastExpr(Context, Context->VoidPtrTy,
[all...]
/external/clang/lib/Analysis/
H A DFormatString.cpp407 Res = C.VoidPtrTy;
/external/clang/lib/AST/
H A DASTContext.cpp827 VoidPtrTy = getPointerType(VoidTy);
4247 getPointerType(VoidPtrTy),
4248 getPointerType(VoidPtrTy)
4314 getPointerType(VoidPtrTy),
4318 getPointerType(VoidPtrTy),
4319 getPointerType(VoidPtrTy),
4385 sz = getTypeSizeInChars(VoidPtrTy);
4408 CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
4517 CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
5168 CurOffs += getTypeSize(VoidPtrTy);
[all...]
/external/clang/include/clang/AST/
H A DASTContext.h688 CanQualType VoidPtrTy, NullPtrTy; member in class:clang::ASTContext
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp1616 ArgTypes.push_back(Context.VoidPtrTy);
2027 CXXNullPtrLiteralExpr Null(Context.VoidPtrTy, SourceLocation());
2223 if (!Context.hasSameType(Arg->getType(), Context.VoidPtrTy))
2224 Arg = ImplicitCastExpr::Create(Context, Context.VoidPtrTy,

Completed in 327 milliseconds

12