HomeSort by relevance Sort by last modified time
    Searched refs:VoidPtrTy (Results 1 - 25 of 31) sorted by null

1 2

  /external/clang/lib/CodeGen/
CGCUDANV.cpp 34 llvm::PointerType *CharPtrTy, *VoidPtrTy;
55 VoidPtrTy = cast<llvm::PointerType>(Types.ConvertType(Ctx.VoidPtrTy));
61 Params.push_back(VoidPtrTy);
100 Args[0] = CGF.Builder.CreatePointerCast(ArgValues[I], VoidPtrTy);
CGAtomic.cpp 435 getContext().VoidPtrTy);
452 getContext().VoidPtrTy);
454 getContext().VoidPtrTy);
466 getContext().VoidPtrTy);
468 getContext().VoidPtrTy);
476 getContext().VoidPtrTy);
484 getContext().VoidPtrTy);
693 getContext().VoidPtrTy);
695 getContext().VoidPtrTy);
850 getContext().VoidPtrTy);
    [all...]
CGBlocks.cpp 79 llvm::Type *i8p = CGM.getTypes().ConvertType(C.VoidPtrTy);
301 llvm::tie(ptrSize, ptrAlign) = C.getTypeInfoInChars(C.VoidPtrTy);
316 llvm::Type *i8p = CGM.getTypes().ConvertType(C.VoidPtrTy);
385 QualType byRefPtrTy = C.VoidPtrTy;
700 blockFn = llvm::ConstantExpr::getBitCast(blockFn, VoidPtrTy);
709 isa = llvm::ConstantExpr::getBitCast(isa, VoidPtrTy);
801 src = Builder.CreateBitCast(src, VoidPtrTy);
    [all...]
CGObjC.cpp 498 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);
    [all...]
ItaniumCXXABI.cpp 744 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
768 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
797 QualType T = Context.getPointerType(Context.VoidPtrTy);
    [all...]
CGDeclCXX.cpp 441 ImplicitParamDecl dst(0, SourceLocation(), 0, getContext().VoidPtrTy);
CGObjCRuntime.cpp 327 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
CGDebugInfo.cpp 391 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
668 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
    [all...]
CGExprCXX.cpp     [all...]
CodeGenModule.h 130 llvm::PointerType *VoidPtrTy;
    [all...]
CGObjCMac.cpp 312 Params.push_back(Ctx.VoidPtrTy);
313 Params.push_back(Ctx.VoidPtrTy);
333 Params.push_back(Ctx.VoidPtrTy);
334 Params.push_back(Ctx.VoidPtrTy);
335 Params.push_back(Ctx.VoidPtrTy);
    [all...]
CGClass.cpp     [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 115 llvm::Type *VoidPtrTy = llvm::Type::getInt8PtrTy(*C);
116 if (mEnableStepOpt && T != VoidPtrTy && PT) {
176 llvm::Type *VoidPtrTy = llvm::Type::getInt8PtrTy(*C);
196 StructTys.push_back(VoidPtrTy); // const void *in
197 StructTys.push_back(VoidPtrTy); // void *out
198 StructTys.push_back(VoidPtrTy); // const void *usr
396 llvm::Type *VoidPtrTy = llvm::Type::getInt8PtrTy(*C);
416 StructTys.push_back(VoidPtrTy); // const void *in
417 StructTys.push_back(VoidPtrTy); // void *out
418 StructTys.push_back(VoidPtrTy); // const void *us
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 154 return getValue(0, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
158 return getValue(X, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 93 Type *VoidPtrTy = Type::getInt8PtrTy(M.getContext());
96 StructType::get(VoidPtrTy, // __prev
99 VoidPtrTy, // __personality
100 VoidPtrTy, // __lsda
101 ArrayType::get(VoidPtrTy, 5), // __jbuf
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 358 Type *VoidPtrTy = Type::getInt8PtrTy(Context);
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);
    [all...]
LowerInvoke.cpp 122 Type *VoidPtrTy = Type::getInt8PtrTy(M.getContext());
127 Type *JmpBufTy = ArrayType::get(VoidPtrTy, JBSize);
  /external/clang/lib/StaticAnalyzer/Checkers/
CallAndMessageChecker.cpp 418 const uint64_t voidPtrSize = Ctx.getTypeSize(Ctx.VoidPtrTy);
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 349 BasicVals.getAPSIntType(Context.VoidPtrTy).apply(i);
869 if (ctx.getTypeSize(ctx.VoidPtrTy) == x->getBitWidth()) {
    [all...]
  /external/clang/lib/Analysis/
FormatString.cpp 407 Res = C.VoidPtrTy;
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/clang/include/clang/AST/
ASTContext.h 753 CanQualType VoidPtrTy, NullPtrTy;
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]

Completed in 514 milliseconds

1 2