Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DCompiler.cpp3619 std::optional<PrimType> VarT = classify(VD->getType()); in visitDeclAndReturn() local
3627 return this->emitRet(VarT.value_or(PT_Ptr), VD) && LS.destroyLocals(); in visitDeclAndReturn()
3637 if (VarT) { in visitDeclAndReturn()
3638 if (!this->emitGetGlobalUnchecked(*VarT, *GlobalIndex, VD)) in visitDeclAndReturn()
3647 if (VarT) { in visitDeclAndReturn()
3648 if (!this->emitGetLocal(*VarT, Local->second.Offset, VD)) in visitDeclAndReturn()
3657 if (!this->emitRet(VarT.value_or(PT_Ptr), VD)) { in visitDeclAndReturn()
3688 std::optional<PrimType> VarT = classify(VD->getType()); in visitVarDecl() local
3700 if (VarT) { in visitVarDecl()
3704 return checkDecl() && this->emitInitGlobal(*VarT, GlobalIndex, VD); in visitVarDecl()
[all …]