Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprComplex.cpp220 QualType PromotionType = QualType());
221 ComplexPairTy VisitPlus(const UnaryOperator *E, QualType PromotionType);
223 QualType PromotionType = QualType());
224 ComplexPairTy VisitMinus(const UnaryOperator *E, QualType PromotionType);
651 QualType PromotionType) { in VisitUnaryPlus() argument
654 PromotionType.isNull() in VisitUnaryPlus()
657 : PromotionType; in VisitUnaryPlus()
665 QualType PromotionType) { in VisitPlus() argument
668 if (!PromotionType.isNull()) in VisitPlus()
669 return CGF.EmitPromotedComplexExpr(E->getSubExpr(), PromotionType); in VisitPlus()
[all …]
H A DCGExprScalar.cpp644 QualType PromotionType = QualType());
645 Value *VisitPlus(const UnaryOperator *E, QualType PromotionType);
647 QualType PromotionType = QualType());
648 Value *VisitMinus(const UnaryOperator *E, QualType PromotionType);
653 QualType PromotionType = QualType());
654 Value *VisitReal(const UnaryOperator *E, QualType PromotionType);
656 QualType PromotionType = QualType());
657 Value *VisitImag(const UnaryOperator *E, QualType PromotionType);
824 Value *EmitPromotedValue(Value *result, QualType PromotionType);
826 Value *EmitPromoted(const Expr *E, QualType PromotionType);
[all …]
H A DCodeGenFunction.h4866 ComplexPairTy EmitPromotedComplexExpr(const Expr *E, QualType PromotionType);
4867 llvm::Value *EmitPromotedScalarExpr(const Expr *E, QualType PromotionType);
4868 ComplexPairTy EmitPromotedValue(ComplexPairTy result, QualType PromotionType);
4869 ComplexPairTy EmitUnPromotedValue(ComplexPairTy result, QualType PromotionType);
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3864 QualType PromotionType; variable
3964 QualType PromotionType,
3992 QualType getPromotionType() const { return PromotionType; } in getPromotionType()
3995 void setPromotionType(QualType T) { PromotionType = T; } in setPromotionType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp4877 PromotionType = NewPromotionType; in completeDefinition()