Home
last modified time | relevance | path

Searched refs:CStyleCastPtrExpr (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreterUtils.h39 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, Expr *E);
41 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, uintptr_t Ptr);
H A DInterpreterUtils.cpp22 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 DInterpreter.cpp576 CStyleCastPtrExpr(S, Ctx.VoidPtrTy, (uintptr_t)Ty.getAsOpaquePtr()); in getCall()
738 auto *ThisInterp = CStyleCastPtrExpr(S, Ctx.VoidPtrTy, (uintptr_t)this); in SynthesizeExpr()
741 auto *OutValue = CStyleCastPtrExpr(S, Ctx.VoidPtrTy, (uintptr_t)&LastValue); in SynthesizeExpr()