Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBuiltin.cpp670 PrimType LHST = *S.getContext().classify(Call->getArg(0)->getType()); in interp__builtin_overflowop() local
673 APSInt LHS = peekToAPSInt(S.Stk, LHST, in interp__builtin_overflowop()
675 align(primSize(LHST))); in interp__builtin_overflowop()
772 PrimType LHST = *S.getContext().classify(Call->getArg(0)->getType()); in interp__builtin_carryop() local
779 peekToAPSInt(S.Stk, LHST, in interp__builtin_carryop()
781 align(primSize(CarryT)) + align(primSize(LHST))); in interp__builtin_carryop()
783 S.Stk, LHST, align(primSize(PT_Ptr)) + align(primSize(CarryT))); in interp__builtin_carryop()
H A DCompiler.cpp1066 PrimType LHST = classifyPrim(LHSType); in VisitComplexBinOp() local
1067 LHSOffset = this->allocateLocalPrimitive(LHS, LHST, true, false); in VisitComplexBinOp()
1070 if (!this->emitSetLocal(LHST, LHSOffset, E)) in VisitComplexBinOp()
2002 PrimType LHST = classifyPrim(LHSType); in VisitFloatCompoundAssignOperator() local
2017 if (!this->emitLoad(LHST, E)) in VisitFloatCompoundAssignOperator()
2021 if (!this->emitPrimCast(LHST, classifyPrim(LHSComputationType), in VisitFloatCompoundAssignOperator()
2051 if (!this->emitPrimCast(classifyPrim(ResultType), LHST, LHS->getType(), E)) in VisitFloatCompoundAssignOperator()
2055 return this->emitStorePop(LHST, E); in VisitFloatCompoundAssignOperator()
2056 return this->emitStore(LHST, E); in VisitFloatCompoundAssignOperator()
5426 PrimType LHST = classifyPrim(LHS->getType()); in emitComplexComparison() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCheckExprLifetime.cpp412 QualType LHST; in implicitObjectParamIsLifetimeBound() local
415 LHST = Ctx.getLValueReferenceType(MD->getFunctionObjectParameterType()); in implicitObjectParamIsLifetimeBound()
417 LHST = MD->getParamDecl(0)->getType(); in implicitObjectParamIsLifetimeBound()
418 if (Ctx.hasSameType(RetT, LHST)) in implicitObjectParamIsLifetimeBound()