Home
last modified time | relevance | path

Searched refs:toAPValue (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DEvaluationResult.cpp18 APValue EvaluationResult::toAPValue() const { in toAPValue() function in clang::interp::EvaluationResult
24 return P->toAPValue(); in toAPValue()
26 return FP->toAPValue(); in toAPValue()
41 return toAPValue(); in toRValue()
49 return FP->toAPValue(); in toRValue()
183 P->toAPValue().printPretty(OS, ASTCtx, SourceType); in dump()
185 FP->toAPValue().printPretty(OS, ASTCtx, SourceType); in dump()
H A DPointer.cpp83 APValue Pointer::toAPValue() const { in toAPValue() function in Pointer
157 return toAPValue().getAsString(Ctx, getType()); in toDiagnosticString()
249 R = Ptr.toAPValue(); in toRValue()
251 TYPE_SWITCH(*T, R = Ptr.deref<T>().toAPValue()); in toRValue()
269 TYPE_SWITCH(*T, Value = FP.deref<T>().toAPValue()); in toRValue()
291 TYPE_SWITCH(*T, Value = FP.deref<T>().toAPValue()); in toRValue()
329 TYPE_SWITCH(*T, Slot = EP.deref<T>().toAPValue()); in toRValue()
H A DFunctionPointer.h30 APValue toAPValue() const { in toAPValue() function
52 return toAPValue().getAsString(Ctx, Func->getDecl()->getType()); in toDiagnosticString()
H A DContext.cpp70 Result = Res.toAPValue(); in evaluateAsRValue()
92 Result = Res.toAPValue(); in evaluate()
129 Result = Res.toAPValue(); in evaluateAsInitializer()
H A DEvaluationResult.h93 APValue toAPValue() const;
H A DBoolean.h64 APValue toAPValue() const { return APValue(toAPSInt()); } in toAPValue() function
H A DEvalEmitter.cpp115 EvalResult.setValue(S.Stk.pop<T>().toAPValue()); in emitRet()
H A DFloating.h72 APValue toAPValue() const { return APValue(F); } in toAPValue() function
H A DPointer.h91 APValue toAPValue() const;
H A DIntegral.h115 APValue toAPValue() const { return APValue(toAPSInt()); }
H A DIntegralAP.h136 APValue toAPValue() const { return APValue(toAPSInt()); } in toAPValue() function
H A DInterp.h44 R = V.toAPValue(); in ReturnValue()
1044 APValue APV = Value.toAPValue(); in InitGlobalTemp()