Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DTextNodeDumper.cpp1005 if (Node->hasStoredFPFeatures()) in VisitCallExpr()
1025 if (Node->hasStoredFPFeatures()) in VisitCastExpr()
1130 if (Node->hasStoredFPFeatures()) in VisitUnaryOperator()
1160 if (Node->hasStoredFPFeatures()) in VisitBinaryOperator()
1171 if (Node->hasStoredFPFeatures()) in VisitCompoundAssignOperator()
1202 if (Node->hasStoredFPFeatures()) in VisitCXXFunctionalCastExpr()
1208 if (Node->hasStoredFPFeatures()) in VisitCXXStaticCastExpr()
2380 if (S->hasStoredFPFeatures()) in VisitCompoundStmt()
H A DExpr.cpp1378 if (hasStoredFPFeatures()) in CallExpr()
1961 assert(hasStoredFPFeatures()); in getTrailingFPFeatures()
4514 if (hasStoredFPFeatures()) in BinaryOperator()
4531 if (hasStoredFPFeatures()) in BinaryOperator()
4596 if (hasStoredFPFeatures()) in UnaryOperator()
H A DStmt.cpp370 if (hasStoredFPFeatures()) in CompoundStmt()
H A DJSONNodeDumper.cpp1707 if (S->hasStoredFPFeatures()) in VisitCompoundStmt()
H A DStmtPrinter.cpp186 if (!S->hasStoredFPFeatures()) in PrintFPPragmas()
H A DASTImporter.cpp6372 S->hasStoredFPFeatures() ? S->getStoredFPFeatures() : FPOptionsOverride(); in VisitCompoundStmt()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DExpr.h2852 assert(hasStoredFPFeatures()); in getOffsetOfTrailingFPFeatures()
2898 assert(hasStoredFPFeatures()); in getTrailingFPFeatures()
2904 assert(hasStoredFPFeatures()); in getTrailingFPFeatures()
3070 assert(hasStoredFPFeatures()); in getStoredFPFeatures()
3082 if (hasStoredFPFeatures()) in getFPFeaturesInEffect()
3088 if (hasStoredFPFeatures()) in getFPFeatures()
3573 if (hasStoredFPFeatures()) in getFPFeaturesInEffect()
3579 if (hasStoredFPFeatures()) in getFPFeatures()
3630 if (hasStoredFPFeatures()) in ImplicitCastExpr()
3649 if (hasStoredFPFeatures()) in ImplicitCastExpr()
[all …]
H A DStmt.h1426 assert(hasStoredFPFeatures()); in setStoredFPFeatures()
1453 bool hasStoredFPFeatures() const { return CompoundStmtBits.HasFPFeatures; } in hasStoredFPFeatures() function
1457 assert(hasStoredFPFeatures()); in getStoredFPFeatures()
H A DExprCXX.h442 if (hasStoredFPFeatures()) in CXXStaticCastExpr()
1741 if (hasStoredFPFeatures()) in CXXFunctionalCastExpr()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriterStmt.cpp84 Record.push_back(S->hasStoredFPFeatures()); in VisitCompoundStmt()
87 if (S->hasStoredFPFeatures()) in VisitCompoundStmt()
732 bool HasFPFeatures = E->hasStoredFPFeatures(); in VisitUnaryOperator()
865 Record.push_back(E->hasStoredFPFeatures()); in VisitCallExpr()
872 if (E->hasStoredFPFeatures()) in VisitCallExpr()
959 Record.push_back(E->hasStoredFPFeatures()); in VisitCastExpr()
967 if (E->hasStoredFPFeatures()) in VisitCastExpr()
973 bool HasFPFeatures = E->hasStoredFPFeatures(); in VisitBinaryOperator()
1020 if (E->path_size() == 0 && !E->hasStoredFPFeatures()) in VisitImplicitCastExpr()
H A DASTReaderStmt.cpp156 assert(S->hasStoredFPFeatures() == HasFPFeatures); in VisitCompoundStmt()
706 assert(hasFP_Features == E->hasStoredFPFeatures()); in VisitUnaryOperator()
1083 assert(E->hasStoredFPFeatures() == HasFPFeatures); in VisitCastExpr()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h11071 if (E->hasStoredFPFeatures()) { in TransformCallExpr()