Searched refs:CStyleCastPtrExpr (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Interpreter/ |
H A D | InterpreterUtils.h | 39 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, Expr *E); 41 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, uintptr_t Ptr);
|
H A D | InterpreterUtils.cpp | 22 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, Expr *E) { in CStyleCastPtrExpr() function 34 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, uintptr_t Ptr) { in CStyleCastPtrExpr() function 36 return CStyleCastPtrExpr(S, Ty, IntegerLiteralExpr(Ctx, (uint64_t)Ptr)); in CStyleCastPtrExpr()
|
H A D | Interpreter.cpp | 748 Expr *TypeArg = CStyleCastPtrExpr(B->S, B->Ctx.VoidPtrTy, in transformForValuePrinting() 854 auto *ThisInterp = CStyleCastPtrExpr(S, Ctx.VoidPtrTy, (uintptr_t)this); in SynthesizeExpr() 857 auto *OutValue = CStyleCastPtrExpr(S, Ctx.VoidPtrTy, (uintptr_t)&LastValue); in SynthesizeExpr()
|