Lines Matching refs:VarT
2365 std::optional<PrimType> VarT = classify(VD->getType()); in visitDecl() local
2370 if (VarT) { in visitDecl()
2371 if (!this->emitGetGlobalUnchecked(*VarT, *GlobalIndex, VD)) in visitDecl()
2380 if (VarT) { in visitDecl()
2381 if (!this->emitGetLocal(*VarT, Local->second.Offset, VD)) in visitDecl()
2390 if (VarT) in visitDecl()
2391 return this->emitRet(*VarT, VD); in visitDecl()
2404 std::optional<PrimType> VarT = classify(VD->getType()); in visitVarDecl() local
2420 if (VarT) { in visitVarDecl()
2423 return this->emitInitGlobal(*VarT, *GlobalIndex, VD); in visitVarDecl()
2429 if (VarT) { in visitVarDecl()
2431 VD, *VarT, VD->getType().isConstQualified()); in visitVarDecl()
2438 return this->emitSetLocal(*VarT, Offset, VD); in visitVarDecl()