forked from OSchip/llvm-project
[FPEnv] Allow CompoundStmt to keep FP options
This is a recommit ofb822efc740
, reverted indc34d8df4c
. The commit caused fails because the test ast-print-fp-pragmas.c did not specify particular target, and it failed on targets which do not support constrained intrinsics. The original commit message is below. AST does not have special nodes for pragmas. Instead a pragma modifies some state variables of Sema, which in turn results in modified attributes of AST nodes. This technique applies to floating point operations as well. Every AST node that can depend on FP options keeps current set of them. This technique works well for options like exception behavior or fast math options. They represent instructions to the compiler how to modify code generation for the affected nodes. However treatment of FP control modes has problems with this technique. Modifying FP control mode (like rounding direction) usually requires operations on hardware, like writing to control registers. It must be done prior to the first operation that depends on the control mode. In particular, such operations are required for implementation of `pragma STDC FENV_ROUND`, compiler should set up necessary rounding direction at the beginning of compound statement where the pragma occurs. As there is no representation for pragmas in AST, the code generation becomes a complicated task in this case. To solve this issue FP options are kept inside CompoundStmt. Unlike to FP options in expressions, these does not affect any operation on FP values, but only inform the codegen about the FP options that act in the body of the statement. As all pragmas that modify FP environment may occurs only at the start of compound statement or at global level, such solution works for all relevant pragmas. The options are kept as a difference from the options in the enclosing compound statement or default options, it helps codegen to set only changed control modes. Differential Revision: https://reviews.llvm.org/D123952
This commit is contained in:
parent
1ecfc12b0c
commit
f7819ce166
|
@ -160,6 +160,7 @@ class JSONNodeDumper
|
|||
std::string createPointerRepresentation(const void *Ptr);
|
||||
llvm::json::Object createQualType(QualType QT, bool Desugar = true);
|
||||
llvm::json::Object createBareDeclRef(const Decl *D);
|
||||
llvm::json::Object createFPOptions(FPOptionsOverride FPO);
|
||||
void writeBareDeclRef(const Decl *D);
|
||||
llvm::json::Object createCXXRecordDefinitionData(const CXXRecordDecl *RD);
|
||||
llvm::json::Object createCXXBaseSpecifier(const CXXBaseSpecifier &BS);
|
||||
|
@ -317,6 +318,7 @@ public:
|
|||
void VisitGotoStmt(const GotoStmt *GS);
|
||||
void VisitWhileStmt(const WhileStmt *WS);
|
||||
void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *OACS);
|
||||
void VisitCompoundStmt(const CompoundStmt *IS);
|
||||
|
||||
void VisitNullTemplateArgument(const TemplateArgument &TA);
|
||||
void VisitTypeTemplateArgument(const TemplateArgument &TA);
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#include "clang/Basic/CapturedStmt.h"
|
||||
#include "clang/Basic/IdentifierTable.h"
|
||||
#include "clang/Basic/LLVM.h"
|
||||
#include "clang/Basic/LangOptions.h"
|
||||
#include "clang/Basic/SourceLocation.h"
|
||||
#include "clang/Basic/Specifiers.h"
|
||||
#include "llvm/ADT/ArrayRef.h"
|
||||
|
@ -128,6 +129,10 @@ protected:
|
|||
|
||||
unsigned : NumStmtBits;
|
||||
|
||||
/// True if the compound statement has one or more pragmas that set some
|
||||
/// floating-point features.
|
||||
unsigned HasFPFeatures : 1;
|
||||
|
||||
unsigned NumStmts;
|
||||
};
|
||||
|
||||
|
@ -1398,8 +1403,9 @@ public:
|
|||
};
|
||||
|
||||
/// CompoundStmt - This represents a group of statements like { stmt stmt }.
|
||||
class CompoundStmt final : public Stmt,
|
||||
private llvm::TrailingObjects<CompoundStmt, Stmt *> {
|
||||
class CompoundStmt final
|
||||
: public Stmt,
|
||||
private llvm::TrailingObjects<CompoundStmt, Stmt *, FPOptionsOverride> {
|
||||
friend class ASTStmtReader;
|
||||
friend TrailingObjects;
|
||||
|
||||
|
@ -1409,27 +1415,49 @@ class CompoundStmt final : public Stmt,
|
|||
/// The location of the closing "}".
|
||||
SourceLocation RBraceLoc;
|
||||
|
||||
CompoundStmt(ArrayRef<Stmt *> Stmts, SourceLocation LB, SourceLocation RB);
|
||||
CompoundStmt(ArrayRef<Stmt *> Stmts, FPOptionsOverride FPFeatures,
|
||||
SourceLocation LB, SourceLocation RB);
|
||||
explicit CompoundStmt(EmptyShell Empty) : Stmt(CompoundStmtClass, Empty) {}
|
||||
|
||||
void setStmts(ArrayRef<Stmt *> Stmts);
|
||||
|
||||
/// Set FPOptionsOverride in trailing storage. Used only by Serialization.
|
||||
void setStoredFPFeatures(FPOptionsOverride F) {
|
||||
assert(hasStoredFPFeatures());
|
||||
*getTrailingObjects<FPOptionsOverride>() = F;
|
||||
}
|
||||
|
||||
size_t numTrailingObjects(OverloadToken<Stmt *>) const {
|
||||
return CompoundStmtBits.NumStmts;
|
||||
}
|
||||
|
||||
public:
|
||||
static CompoundStmt *Create(const ASTContext &C, ArrayRef<Stmt *> Stmts,
|
||||
SourceLocation LB, SourceLocation RB);
|
||||
FPOptionsOverride FPFeatures, SourceLocation LB,
|
||||
SourceLocation RB);
|
||||
|
||||
// Build an empty compound statement with a location.
|
||||
explicit CompoundStmt(SourceLocation Loc)
|
||||
: Stmt(CompoundStmtClass), LBraceLoc(Loc), RBraceLoc(Loc) {
|
||||
CompoundStmtBits.NumStmts = 0;
|
||||
CompoundStmtBits.HasFPFeatures = 0;
|
||||
}
|
||||
|
||||
// Build an empty compound statement.
|
||||
static CompoundStmt *CreateEmpty(const ASTContext &C, unsigned NumStmts);
|
||||
static CompoundStmt *CreateEmpty(const ASTContext &C, unsigned NumStmts,
|
||||
bool HasFPFeatures);
|
||||
|
||||
bool body_empty() const { return CompoundStmtBits.NumStmts == 0; }
|
||||
unsigned size() const { return CompoundStmtBits.NumStmts; }
|
||||
|
||||
bool hasStoredFPFeatures() const { return CompoundStmtBits.HasFPFeatures; }
|
||||
|
||||
/// Get FPOptionsOverride from trailing storage.
|
||||
FPOptionsOverride getStoredFPFeatures() const {
|
||||
assert(hasStoredFPFeatures());
|
||||
return *getTrailingObjects<FPOptionsOverride>();
|
||||
}
|
||||
|
||||
using body_iterator = Stmt **;
|
||||
using body_range = llvm::iterator_range<body_iterator>;
|
||||
|
||||
|
|
|
@ -246,6 +246,7 @@ public:
|
|||
void VisitLabelStmt(const LabelStmt *Node);
|
||||
void VisitGotoStmt(const GotoStmt *Node);
|
||||
void VisitCaseStmt(const CaseStmt *Node);
|
||||
void VisitCompoundStmt(const CompoundStmt *Node);
|
||||
void VisitConstantExpr(const ConstantExpr *Node);
|
||||
void VisitCallExpr(const CallExpr *Node);
|
||||
void VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *Node);
|
||||
|
|
|
@ -653,6 +653,8 @@ public:
|
|||
private:
|
||||
storage_type Value;
|
||||
|
||||
FPOptionsOverride getChangesSlow(const FPOptions &Base) const;
|
||||
|
||||
public:
|
||||
FPOptions() : Value(0) {
|
||||
setFPContractMode(LangOptions::FPM_Off);
|
||||
|
@ -743,6 +745,9 @@ public:
|
|||
return Opts;
|
||||
}
|
||||
|
||||
/// Return difference with the given option set.
|
||||
FPOptionsOverride getChangesFrom(const FPOptions &Base) const;
|
||||
|
||||
// We can define most of the accessors automatically:
|
||||
#define OPTION(NAME, TYPE, WIDTH, PREVIOUS) \
|
||||
TYPE get##NAME() const { \
|
||||
|
@ -791,6 +796,8 @@ public:
|
|||
: Options(LO), OverrideMask(OverrideMaskBits) {}
|
||||
FPOptionsOverride(FPOptions FPO)
|
||||
: Options(FPO), OverrideMask(OverrideMaskBits) {}
|
||||
FPOptionsOverride(FPOptions FPO, FPOptions::storage_type Mask)
|
||||
: Options(FPO), OverrideMask(Mask) {}
|
||||
|
||||
bool requiresTrailingStorage() const { return OverrideMask != 0; }
|
||||
|
||||
|
@ -871,6 +878,12 @@ public:
|
|||
LLVM_DUMP_METHOD void dump();
|
||||
};
|
||||
|
||||
inline FPOptionsOverride FPOptions::getChangesFrom(const FPOptions &Base) const {
|
||||
if (Value == Base.Value)
|
||||
return FPOptionsOverride();
|
||||
return getChangesSlow(Base);
|
||||
}
|
||||
|
||||
/// Describes the kind of translation unit being processed.
|
||||
enum TranslationUnitKind {
|
||||
/// The translation unit is a complete translation unit.
|
||||
|
|
|
@ -74,7 +74,12 @@ public:
|
|||
/// expression.
|
||||
bool IsStmtExpr;
|
||||
|
||||
CompoundScopeInfo(bool IsStmtExpr) : IsStmtExpr(IsStmtExpr) {}
|
||||
/// FP options at the beginning of the compound statement, prior to
|
||||
/// any pragma.
|
||||
FPOptions InitialFPFeatures;
|
||||
|
||||
CompoundScopeInfo(bool IsStmtExpr, FPOptions FPO)
|
||||
: IsStmtExpr(IsStmtExpr), InitialFPFeatures(FPO) {}
|
||||
|
||||
void setHasEmptyLoopBodies() {
|
||||
HasEmptyLoopBodies = true;
|
||||
|
|
|
@ -6339,9 +6339,10 @@ ExpectedStmt ASTNodeImporter::VisitCompoundStmt(CompoundStmt *S) {
|
|||
if (!ToRBracLocOrErr)
|
||||
return ToRBracLocOrErr.takeError();
|
||||
|
||||
return CompoundStmt::Create(
|
||||
Importer.getToContext(), ToStmts,
|
||||
*ToLBracLocOrErr, *ToRBracLocOrErr);
|
||||
FPOptionsOverride FPO =
|
||||
S->hasStoredFPFeatures() ? S->getStoredFPFeatures() : FPOptionsOverride();
|
||||
return CompoundStmt::Create(Importer.getToContext(), ToStmts, FPO,
|
||||
*ToLBracLocOrErr, *ToRBracLocOrErr);
|
||||
}
|
||||
|
||||
ExpectedStmt ASTNodeImporter::VisitCaseStmt(CaseStmt *S) {
|
||||
|
|
|
@ -1692,3 +1692,18 @@ void JSONNodeDumper::visitVerbatimLineComment(
|
|||
const comments::VerbatimLineComment *C, const comments::FullComment *) {
|
||||
JOS.attribute("text", C->getText());
|
||||
}
|
||||
|
||||
llvm::json::Object JSONNodeDumper::createFPOptions(FPOptionsOverride FPO) {
|
||||
llvm::json::Object Ret;
|
||||
#define OPTION(NAME, TYPE, WIDTH, PREVIOUS) \
|
||||
if (FPO.has##NAME##Override()) \
|
||||
Ret.try_emplace(#NAME, static_cast<unsigned>(FPO.get##NAME##Override()));
|
||||
#include "clang/Basic/FPOptions.def"
|
||||
return Ret;
|
||||
}
|
||||
|
||||
void JSONNodeDumper::VisitCompoundStmt(const CompoundStmt *S) {
|
||||
VisitStmt(S);
|
||||
if (S->hasStoredFPFeatures())
|
||||
JOS.attribute("fpoptions", createFPOptions(S->getStoredFPFeatures()));
|
||||
}
|
||||
|
|
|
@ -361,11 +361,14 @@ int64_t Stmt::getID(const ASTContext &Context) const {
|
|||
return Context.getAllocator().identifyKnownAlignedObject<Stmt>(this);
|
||||
}
|
||||
|
||||
CompoundStmt::CompoundStmt(ArrayRef<Stmt *> Stmts, SourceLocation LB,
|
||||
SourceLocation RB)
|
||||
CompoundStmt::CompoundStmt(ArrayRef<Stmt *> Stmts, FPOptionsOverride FPFeatures,
|
||||
SourceLocation LB, SourceLocation RB)
|
||||
: Stmt(CompoundStmtClass), LBraceLoc(LB), RBraceLoc(RB) {
|
||||
CompoundStmtBits.NumStmts = Stmts.size();
|
||||
CompoundStmtBits.HasFPFeatures = FPFeatures.requiresTrailingStorage();
|
||||
setStmts(Stmts);
|
||||
if (hasStoredFPFeatures())
|
||||
setStoredFPFeatures(FPFeatures);
|
||||
}
|
||||
|
||||
void CompoundStmt::setStmts(ArrayRef<Stmt *> Stmts) {
|
||||
|
@ -376,18 +379,23 @@ void CompoundStmt::setStmts(ArrayRef<Stmt *> Stmts) {
|
|||
}
|
||||
|
||||
CompoundStmt *CompoundStmt::Create(const ASTContext &C, ArrayRef<Stmt *> Stmts,
|
||||
FPOptionsOverride FPFeatures,
|
||||
SourceLocation LB, SourceLocation RB) {
|
||||
void *Mem =
|
||||
C.Allocate(totalSizeToAlloc<Stmt *>(Stmts.size()), alignof(CompoundStmt));
|
||||
return new (Mem) CompoundStmt(Stmts, LB, RB);
|
||||
C.Allocate(totalSizeToAlloc<Stmt *, FPOptionsOverride>(
|
||||
Stmts.size(), FPFeatures.requiresTrailingStorage()),
|
||||
alignof(CompoundStmt));
|
||||
return new (Mem) CompoundStmt(Stmts, FPFeatures, LB, RB);
|
||||
}
|
||||
|
||||
CompoundStmt *CompoundStmt::CreateEmpty(const ASTContext &C,
|
||||
unsigned NumStmts) {
|
||||
void *Mem =
|
||||
C.Allocate(totalSizeToAlloc<Stmt *>(NumStmts), alignof(CompoundStmt));
|
||||
CompoundStmt *CompoundStmt::CreateEmpty(const ASTContext &C, unsigned NumStmts,
|
||||
bool HasFPFeatures) {
|
||||
void *Mem = C.Allocate(
|
||||
totalSizeToAlloc<Stmt *, FPOptionsOverride>(NumStmts, HasFPFeatures),
|
||||
alignof(CompoundStmt));
|
||||
CompoundStmt *New = new (Mem) CompoundStmt(EmptyShell());
|
||||
New->CompoundStmtBits.NumStmts = NumStmts;
|
||||
New->CompoundStmtBits.HasFPFeatures = HasFPFeatures;
|
||||
return New;
|
||||
}
|
||||
|
||||
|
|
|
@ -128,6 +128,7 @@ namespace {
|
|||
void PrintRawSEHFinallyStmt(SEHFinallyStmt *S);
|
||||
void PrintOMPExecutableDirective(OMPExecutableDirective *S,
|
||||
bool ForceNoStmt = false);
|
||||
void PrintFPPragmas(CompoundStmt *S);
|
||||
|
||||
void PrintExpr(Expr *E) {
|
||||
if (E)
|
||||
|
@ -174,12 +175,73 @@ namespace {
|
|||
/// with no newline after the }.
|
||||
void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) {
|
||||
OS << "{" << NL;
|
||||
PrintFPPragmas(Node);
|
||||
for (auto *I : Node->body())
|
||||
PrintStmt(I);
|
||||
|
||||
Indent() << "}";
|
||||
}
|
||||
|
||||
void StmtPrinter::PrintFPPragmas(CompoundStmt *S) {
|
||||
if (!S->hasStoredFPFeatures())
|
||||
return;
|
||||
FPOptionsOverride FPO = S->getStoredFPFeatures();
|
||||
bool FEnvAccess = false;
|
||||
if (FPO.hasAllowFEnvAccessOverride()) {
|
||||
FEnvAccess = FPO.getAllowFEnvAccessOverride();
|
||||
Indent() << "#pragma STDC FENV_ACCESS " << (FEnvAccess ? "ON" : "OFF")
|
||||
<< NL;
|
||||
}
|
||||
if (FPO.hasSpecifiedExceptionModeOverride()) {
|
||||
LangOptions::FPExceptionModeKind EM =
|
||||
FPO.getSpecifiedExceptionModeOverride();
|
||||
if (!FEnvAccess || EM != LangOptions::FPE_Strict) {
|
||||
Indent() << "#pragma clang fp exceptions(";
|
||||
switch (FPO.getSpecifiedExceptionModeOverride()) {
|
||||
default:
|
||||
break;
|
||||
case LangOptions::FPE_Ignore:
|
||||
OS << "ignore";
|
||||
break;
|
||||
case LangOptions::FPE_MayTrap:
|
||||
OS << "maytrap";
|
||||
break;
|
||||
case LangOptions::FPE_Strict:
|
||||
OS << "strict";
|
||||
break;
|
||||
}
|
||||
OS << ")\n";
|
||||
}
|
||||
}
|
||||
if (FPO.hasConstRoundingModeOverride()) {
|
||||
LangOptions::RoundingMode RM = FPO.getConstRoundingModeOverride();
|
||||
Indent() << "#pragma STDC FENV_ROUND ";
|
||||
switch (RM) {
|
||||
case llvm::RoundingMode::TowardZero:
|
||||
OS << "FE_TOWARDZERO";
|
||||
break;
|
||||
case llvm::RoundingMode::NearestTiesToEven:
|
||||
OS << "FE_TONEAREST";
|
||||
break;
|
||||
case llvm::RoundingMode::TowardPositive:
|
||||
OS << "FE_UPWARD";
|
||||
break;
|
||||
case llvm::RoundingMode::TowardNegative:
|
||||
OS << "FE_DOWNWARD";
|
||||
break;
|
||||
case llvm::RoundingMode::NearestTiesToAway:
|
||||
OS << "FE_TONEARESTFROMZERO";
|
||||
break;
|
||||
case llvm::RoundingMode::Dynamic:
|
||||
OS << "FE_DYNAMIC";
|
||||
break;
|
||||
default:
|
||||
llvm_unreachable("Invalid rounding mode");
|
||||
}
|
||||
OS << NL;
|
||||
}
|
||||
}
|
||||
|
||||
void StmtPrinter::PrintRawDecl(Decl *D) {
|
||||
D->print(OS, Policy, IndentLevel);
|
||||
}
|
||||
|
|
|
@ -2371,3 +2371,9 @@ void TextNodeDumper::VisitBlockDecl(const BlockDecl *D) {
|
|||
void TextNodeDumper::VisitConceptDecl(const ConceptDecl *D) {
|
||||
dumpName(D);
|
||||
}
|
||||
|
||||
void TextNodeDumper::VisitCompoundStmt(const CompoundStmt *S) {
|
||||
VisitStmt(S);
|
||||
if (S->hasStoredFPFeatures())
|
||||
printFPOptions(S->getStoredFPFeatures());
|
||||
}
|
||||
|
|
|
@ -134,7 +134,8 @@ BinaryOperator *ASTMaker::makeComparison(const Expr *LHS, const Expr *RHS,
|
|||
}
|
||||
|
||||
CompoundStmt *ASTMaker::makeCompound(ArrayRef<Stmt *> Stmts) {
|
||||
return CompoundStmt::Create(C, Stmts, SourceLocation(), SourceLocation());
|
||||
return CompoundStmt::Create(C, Stmts, FPOptionsOverride(), SourceLocation(),
|
||||
SourceLocation());
|
||||
}
|
||||
|
||||
DeclRefExpr *ASTMaker::makeDeclRefExpr(
|
||||
|
|
|
@ -204,6 +204,15 @@ FPOptions FPOptions::defaultWithoutTrailingStorage(const LangOptions &LO) {
|
|||
return result;
|
||||
}
|
||||
|
||||
FPOptionsOverride FPOptions::getChangesSlow(const FPOptions &Base) const {
|
||||
FPOptions::storage_type OverrideMask = 0;
|
||||
#define OPTION(NAME, TYPE, WIDTH, PREVIOUS) \
|
||||
if (get##NAME() != Base.get##NAME()) \
|
||||
OverrideMask |= NAME##Mask;
|
||||
#include "clang/Basic/FPOptions.def"
|
||||
return FPOptionsOverride(*this, OverrideMask);
|
||||
}
|
||||
|
||||
LLVM_DUMP_METHOD void FPOptions::dump() {
|
||||
#define OPTION(NAME, TYPE, WIDTH, PREVIOUS) \
|
||||
llvm::errs() << "\n " #NAME " " << get##NAME();
|
||||
|
|
|
@ -238,8 +238,8 @@ static LValueOrRValue emitSuspendExpression(CodeGenFunction &CGF, CGCoroData &Co
|
|||
auto Loc = S.getResumeExpr()->getExprLoc();
|
||||
auto *Catch = new (CGF.getContext())
|
||||
CXXCatchStmt(Loc, /*exDecl=*/nullptr, Coro.ExceptionHandler);
|
||||
auto *TryBody =
|
||||
CompoundStmt::Create(CGF.getContext(), S.getResumeExpr(), Loc, Loc);
|
||||
auto *TryBody = CompoundStmt::Create(CGF.getContext(), S.getResumeExpr(),
|
||||
FPOptionsOverride(), Loc, Loc);
|
||||
TryStmt = CXXTryStmt::Create(CGF.getContext(), Loc, TryBody, Catch);
|
||||
CGF.EnterCXXTryStmt(*TryStmt);
|
||||
}
|
||||
|
|
|
@ -2219,7 +2219,8 @@ operator()(sema::FunctionScopeInfo *Scope) const {
|
|||
}
|
||||
|
||||
void Sema::PushCompoundScope(bool IsStmtExpr) {
|
||||
getCurFunction()->CompoundScopes.push_back(CompoundScopeInfo(IsStmtExpr));
|
||||
getCurFunction()->CompoundScopes.push_back(
|
||||
CompoundScopeInfo(IsStmtExpr, getCurFPFeatures()));
|
||||
}
|
||||
|
||||
void Sema::PopCompoundScope() {
|
||||
|
|
|
@ -15353,8 +15353,8 @@ void Sema::DefineImplicitLambdaToFunctionPointerConversion(
|
|||
VK_LValue, Conv->getLocation());
|
||||
assert(FunctionRef && "Can't refer to __invoke function?");
|
||||
Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get();
|
||||
Conv->setBody(CompoundStmt::Create(Context, Return, Conv->getLocation(),
|
||||
Conv->getLocation()));
|
||||
Conv->setBody(CompoundStmt::Create(Context, Return, FPOptionsOverride(),
|
||||
Conv->getLocation(), Conv->getLocation()));
|
||||
Conv->markUsed(Context);
|
||||
Conv->setReferenced();
|
||||
|
||||
|
@ -15408,8 +15408,8 @@ void Sema::DefineImplicitLambdaToBlockPointerConversion(
|
|||
|
||||
// Set the body of the conversion function.
|
||||
Stmt *ReturnS = Return.get();
|
||||
Conv->setBody(CompoundStmt::Create(Context, ReturnS, Conv->getLocation(),
|
||||
Conv->getLocation()));
|
||||
Conv->setBody(CompoundStmt::Create(Context, ReturnS, FPOptionsOverride(),
|
||||
Conv->getLocation(), Conv->getLocation()));
|
||||
Conv->markUsed(Context);
|
||||
|
||||
// We're done; notify the mutation listener, if any.
|
||||
|
|
|
@ -7295,8 +7295,9 @@ Stmt *Sema::MaybeCreateStmtWithCleanups(Stmt *SubStmt) {
|
|||
// a StmtExpr; currently this is only used for asm statements.
|
||||
// This is hacky, either create a new CXXStmtWithTemporaries statement or
|
||||
// a new AsmStmtWithTemporaries.
|
||||
CompoundStmt *CompStmt = CompoundStmt::Create(
|
||||
Context, SubStmt, SourceLocation(), SourceLocation());
|
||||
CompoundStmt *CompStmt =
|
||||
CompoundStmt::Create(Context, SubStmt, FPOptionsOverride(),
|
||||
SourceLocation(), SourceLocation());
|
||||
Expr *E = new (Context)
|
||||
StmtExpr(CompStmt, Context.VoidTy, SourceLocation(), SourceLocation(),
|
||||
/*FIXME TemplateDepth=*/0);
|
||||
|
|
|
@ -14681,8 +14681,8 @@ StmtResult Sema::ActOnOpenMPTileDirective(ArrayRef<OMPClause *> Clauses,
|
|||
SmallVector<Stmt *, 4> BodyParts;
|
||||
BodyParts.append(LoopHelper.Updates.begin(), LoopHelper.Updates.end());
|
||||
BodyParts.push_back(Inner);
|
||||
Inner = CompoundStmt::Create(Context, BodyParts, Inner->getBeginLoc(),
|
||||
Inner->getEndLoc());
|
||||
Inner = CompoundStmt::Create(Context, BodyParts, FPOptionsOverride(),
|
||||
Inner->getBeginLoc(), Inner->getEndLoc());
|
||||
Inner = new (Context)
|
||||
ForStmt(Context, InitStmt.get(), CondExpr.get(), nullptr,
|
||||
IncrStmt.get(), Inner, LoopHelper.Init->getBeginLoc(),
|
||||
|
@ -14956,8 +14956,9 @@ StmtResult Sema::ActOnOpenMPUnrollDirective(ArrayRef<OMPClause *> Clauses,
|
|||
SmallVector<Stmt *> InnerBodyStmts;
|
||||
InnerBodyStmts.append(LoopHelper.Updates.begin(), LoopHelper.Updates.end());
|
||||
InnerBodyStmts.push_back(Body);
|
||||
CompoundStmt *InnerBody = CompoundStmt::Create(
|
||||
Context, InnerBodyStmts, Body->getBeginLoc(), Body->getEndLoc());
|
||||
CompoundStmt *InnerBody =
|
||||
CompoundStmt::Create(Context, InnerBodyStmts, FPOptionsOverride(),
|
||||
Body->getBeginLoc(), Body->getEndLoc());
|
||||
ForStmt *InnerFor = new (Context)
|
||||
ForStmt(Context, InnerInit.get(), InnerCond.get(), nullptr,
|
||||
InnerIncr.get(), InnerBody, LoopHelper.Init->getBeginLoc(),
|
||||
|
|
|
@ -442,7 +442,16 @@ StmtResult Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
|
|||
DiagnoseEmptyLoopBody(Elts[i], Elts[i + 1]);
|
||||
}
|
||||
|
||||
return CompoundStmt::Create(Context, Elts, L, R);
|
||||
// Calculate difference between FP options in this compound statement and in
|
||||
// the enclosing one. If this is a function body, take the difference against
|
||||
// default options. In this case the difference will indicate options that are
|
||||
// changed upon entry to the statement.
|
||||
FPOptions FPO = (getCurFunction()->CompoundScopes.size() == 1)
|
||||
? FPOptions(getLangOpts())
|
||||
: getCurCompoundScope().InitialFPFeatures;
|
||||
FPOptionsOverride FPDiff = getCurFPFeatures().getChangesFrom(FPO);
|
||||
|
||||
return CompoundStmt::Create(Context, Elts, FPDiff, L, R);
|
||||
}
|
||||
|
||||
ExprResult
|
||||
|
|
|
@ -152,9 +152,14 @@ void ASTStmtReader::VisitCompoundStmt(CompoundStmt *S) {
|
|||
VisitStmt(S);
|
||||
SmallVector<Stmt *, 16> Stmts;
|
||||
unsigned NumStmts = Record.readInt();
|
||||
unsigned HasFPFeatures = Record.readInt();
|
||||
assert(S->hasStoredFPFeatures() == HasFPFeatures);
|
||||
while (NumStmts--)
|
||||
Stmts.push_back(Record.readSubStmt());
|
||||
S->setStmts(Stmts);
|
||||
if (HasFPFeatures)
|
||||
S->setStoredFPFeatures(
|
||||
FPOptionsOverride::getFromOpaqueInt(Record.readInt()));
|
||||
S->LBraceLoc = readSourceLocation();
|
||||
S->RBraceLoc = readSourceLocation();
|
||||
}
|
||||
|
@ -2768,7 +2773,8 @@ Stmt *ASTReader::ReadStmtFromStream(ModuleFile &F) {
|
|||
|
||||
case STMT_COMPOUND:
|
||||
S = CompoundStmt::CreateEmpty(
|
||||
Context, /*NumStmts=*/Record[ASTStmtReader::NumStmtFields]);
|
||||
Context, /*NumStmts=*/Record[ASTStmtReader::NumStmtFields],
|
||||
/*HasFPFeatures=*/Record[ASTStmtReader::NumStmtFields + 1]);
|
||||
break;
|
||||
|
||||
case STMT_CASE:
|
||||
|
|
|
@ -81,8 +81,11 @@ void ASTStmtWriter::VisitNullStmt(NullStmt *S) {
|
|||
void ASTStmtWriter::VisitCompoundStmt(CompoundStmt *S) {
|
||||
VisitStmt(S);
|
||||
Record.push_back(S->size());
|
||||
Record.push_back(S->hasStoredFPFeatures());
|
||||
for (auto *CS : S->body())
|
||||
Record.AddStmt(CS);
|
||||
if (S->hasStoredFPFeatures())
|
||||
Record.push_back(S->getStoredFPFeatures().getAsOpaqueInt());
|
||||
Record.AddSourceLocation(S->getLBracLoc());
|
||||
Record.AddSourceLocation(S->getRBracLoc());
|
||||
Code = serialization::STMT_COMPOUND;
|
||||
|
|
|
@ -141,3 +141,49 @@ float func_15(float x, float y) {
|
|||
// CHECK: CompoundStmt
|
||||
// CHECK-NEXT: ReturnStmt
|
||||
// CHECK-NEXT: BinaryOperator {{.*}} 'float' '+' ConstRoundingMode=towardzero
|
||||
|
||||
float func_16(float x, float y) {
|
||||
#pragma STDC FENV_ROUND FE_TOWARDZERO
|
||||
if (x < 0) {
|
||||
#pragma STDC FENV_ROUND FE_UPWARD
|
||||
return x - y;
|
||||
}
|
||||
return x + y;
|
||||
}
|
||||
|
||||
// CHECK-LABEL: FunctionDecl {{.*}} func_16 'float (float, float)'
|
||||
// CHECK: CompoundStmt {{.*}} ConstRoundingMode=towardzero
|
||||
// CHECK: IfStmt
|
||||
// CHECK: CompoundStmt {{.*}} ConstRoundingMode=upward
|
||||
// CHECK: ReturnStmt
|
||||
// CHECK: BinaryOperator {{.*}} ConstRoundingMode=upward
|
||||
// CHECK: ReturnStmt
|
||||
// CHECK: BinaryOperator {{.*}} ConstRoundingMode=towardzero
|
||||
|
||||
float func_17(float x, float y) {
|
||||
#pragma STDC FENV_ROUND FE_TOWARDZERO
|
||||
if (x < 0) {
|
||||
#pragma STDC FENV_ROUND FE_TOWARDZERO
|
||||
return x - y;
|
||||
}
|
||||
return x + y;
|
||||
}
|
||||
|
||||
// CHECK-LABEL: FunctionDecl {{.*}} func_17 'float (float, float)'
|
||||
// CHECK: CompoundStmt {{.*}} ConstRoundingMode=towardzero
|
||||
// CHECK: IfStmt
|
||||
// CHECK: CompoundStmt {{.*}}
|
||||
// CHECK: ReturnStmt
|
||||
// CHECK: BinaryOperator {{.*}} ConstRoundingMode=towardzero
|
||||
// CHECK: ReturnStmt
|
||||
// CHECK: BinaryOperator {{.*}} ConstRoundingMode=towardzero
|
||||
|
||||
#pragma STDC FENV_ROUND FE_DOWNWARD
|
||||
float func_18(float x, float y) {
|
||||
return x + y;
|
||||
}
|
||||
|
||||
// CHECK-LABEL: FunctionDecl {{.*}} func_18 'float (float, float)'
|
||||
// CHECK: CompoundStmt {{.*}} ConstRoundingMode=downward
|
||||
// CHECK: ReturnStmt
|
||||
// CHECK: BinaryOperator {{.*}} ConstRoundingMode=downward
|
||||
|
|
|
@ -0,0 +1,485 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -ast-dump=json %s | FileCheck %s
|
||||
|
||||
float func_16(float x, float y) {
|
||||
#pragma STDC FENV_ROUND FE_TOWARDZERO
|
||||
if (x < 0) {
|
||||
#pragma STDC FENV_ROUND FE_UPWARD
|
||||
return x - y;
|
||||
}
|
||||
return x + y;
|
||||
}
|
||||
|
||||
// NOTE: CHECK lines have been autogenerated by gen_ast_dump_json_test.py
|
||||
// using --filters=CompoundStmt
|
||||
|
||||
|
||||
// CHECK-NOT: {{^}}Dumping
|
||||
// CHECK: "kind": "CompoundStmt",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 116,
|
||||
// CHECK-NEXT: "col": 33,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 249,
|
||||
// CHECK-NEXT: "line": 10,
|
||||
// CHECK-NEXT: "col": 1,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "fpoptions": {
|
||||
// CHECK-NEXT: "ConstRoundingMode": 0
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "IfStmt",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 160,
|
||||
// CHECK-NEXT: "line": 5,
|
||||
// CHECK-NEXT: "col": 3,
|
||||
// CHECK-NEXT: "tokLen": 2
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 231,
|
||||
// CHECK-NEXT: "line": 8,
|
||||
// CHECK-NEXT: "col": 3,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "BinaryOperator",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 164,
|
||||
// CHECK-NEXT: "line": 5,
|
||||
// CHECK-NEXT: "col": 7,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 168,
|
||||
// CHECK-NEXT: "col": 11,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "int"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "prvalue",
|
||||
// CHECK-NEXT: "opcode": "<",
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ImplicitCastExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 164,
|
||||
// CHECK-NEXT: "col": 7,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 164,
|
||||
// CHECK-NEXT: "col": 7,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "prvalue",
|
||||
// CHECK-NEXT: "castKind": "LValueToRValue",
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "DeclRefExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 164,
|
||||
// CHECK-NEXT: "col": 7,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 164,
|
||||
// CHECK-NEXT: "col": 7,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "lvalue",
|
||||
// CHECK-NEXT: "referencedDecl": {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ParmVarDecl",
|
||||
// CHECK-NEXT: "name": "x",
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ImplicitCastExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 168,
|
||||
// CHECK-NEXT: "col": 11,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 168,
|
||||
// CHECK-NEXT: "col": 11,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "prvalue",
|
||||
// CHECK-NEXT: "castKind": "IntegralToFloating",
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "IntegerLiteral",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 168,
|
||||
// CHECK-NEXT: "col": 11,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 168,
|
||||
// CHECK-NEXT: "col": 11,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "int"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "prvalue",
|
||||
// CHECK-NEXT: "value": "0"
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "CompoundStmt",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 171,
|
||||
// CHECK-NEXT: "col": 14,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 231,
|
||||
// CHECK-NEXT: "line": 8,
|
||||
// CHECK-NEXT: "col": 3,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "fpoptions": {
|
||||
// CHECK-NEXT: "ConstRoundingMode": 2
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ReturnStmt",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 215,
|
||||
// CHECK-NEXT: "line": 7,
|
||||
// CHECK-NEXT: "col": 5,
|
||||
// CHECK-NEXT: "tokLen": 6
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 226,
|
||||
// CHECK-NEXT: "col": 16,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "BinaryOperator",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 222,
|
||||
// CHECK-NEXT: "col": 12,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 226,
|
||||
// CHECK-NEXT: "col": 16,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "prvalue",
|
||||
// CHECK-NEXT: "opcode": "-",
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ImplicitCastExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 222,
|
||||
// CHECK-NEXT: "col": 12,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 222,
|
||||
// CHECK-NEXT: "col": 12,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "prvalue",
|
||||
// CHECK-NEXT: "castKind": "LValueToRValue",
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "DeclRefExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 222,
|
||||
// CHECK-NEXT: "col": 12,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 222,
|
||||
// CHECK-NEXT: "col": 12,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "lvalue",
|
||||
// CHECK-NEXT: "referencedDecl": {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ParmVarDecl",
|
||||
// CHECK-NEXT: "name": "x",
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ImplicitCastExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 226,
|
||||
// CHECK-NEXT: "col": 16,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 226,
|
||||
// CHECK-NEXT: "col": 16,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "prvalue",
|
||||
// CHECK-NEXT: "castKind": "LValueToRValue",
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "DeclRefExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 226,
|
||||
// CHECK-NEXT: "col": 16,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 226,
|
||||
// CHECK-NEXT: "col": 16,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "lvalue",
|
||||
// CHECK-NEXT: "referencedDecl": {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ParmVarDecl",
|
||||
// CHECK-NEXT: "name": "y",
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ReturnStmt",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 235,
|
||||
// CHECK-NEXT: "line": 9,
|
||||
// CHECK-NEXT: "col": 3,
|
||||
// CHECK-NEXT: "tokLen": 6
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 246,
|
||||
// CHECK-NEXT: "col": 14,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "BinaryOperator",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 242,
|
||||
// CHECK-NEXT: "col": 10,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 246,
|
||||
// CHECK-NEXT: "col": 14,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "prvalue",
|
||||
// CHECK-NEXT: "opcode": "+",
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ImplicitCastExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 242,
|
||||
// CHECK-NEXT: "col": 10,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 242,
|
||||
// CHECK-NEXT: "col": 10,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "prvalue",
|
||||
// CHECK-NEXT: "castKind": "LValueToRValue",
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "DeclRefExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 242,
|
||||
// CHECK-NEXT: "col": 10,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 242,
|
||||
// CHECK-NEXT: "col": 10,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "lvalue",
|
||||
// CHECK-NEXT: "referencedDecl": {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ParmVarDecl",
|
||||
// CHECK-NEXT: "name": "x",
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ImplicitCastExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 246,
|
||||
// CHECK-NEXT: "col": 14,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 246,
|
||||
// CHECK-NEXT: "col": 14,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "prvalue",
|
||||
// CHECK-NEXT: "castKind": "LValueToRValue",
|
||||
// CHECK-NEXT: "inner": [
|
||||
// CHECK-NEXT: {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "DeclRefExpr",
|
||||
// CHECK-NEXT: "range": {
|
||||
// CHECK-NEXT: "begin": {
|
||||
// CHECK-NEXT: "offset": 246,
|
||||
// CHECK-NEXT: "col": 14,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "end": {
|
||||
// CHECK-NEXT: "offset": 246,
|
||||
// CHECK-NEXT: "col": 14,
|
||||
// CHECK-NEXT: "tokLen": 1
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: },
|
||||
// CHECK-NEXT: "valueCategory": "lvalue",
|
||||
// CHECK-NEXT: "referencedDecl": {
|
||||
// CHECK-NEXT: "id": "0x{{.*}}",
|
||||
// CHECK-NEXT: "kind": "ParmVarDecl",
|
||||
// CHECK-NEXT: "name": "y",
|
||||
// CHECK-NEXT: "type": {
|
||||
// CHECK-NEXT: "qualType": "float"
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
// CHECK-NEXT: }
|
|
@ -0,0 +1,69 @@
|
|||
// RUN: %clang_cc1 -fsyntax-only -triple x86_64-pc-linux -ast-print %s -o - | FileCheck %s
|
||||
|
||||
float func_1(float x, float y) {
|
||||
#pragma STDC FENV_ACCESS ON
|
||||
if (x != 0) {
|
||||
return y;
|
||||
}
|
||||
return x + y;
|
||||
}
|
||||
|
||||
// CHECK-LABEL: float func_1(float x, float y) {
|
||||
// CHECK-NEXT: #pragma STDC FENV_ACCESS ON
|
||||
// CHECK-NEXT: if (x != 0) {
|
||||
// CHECK-NEXT: return y;
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: return x + y;
|
||||
// CHECK-NEXT: }
|
||||
|
||||
float func_2(float x, float y) {
|
||||
#pragma STDC FENV_ACCESS ON
|
||||
if (x != 0) {
|
||||
#pragma STDC FENV_ACCESS OFF
|
||||
return y;
|
||||
}
|
||||
return x + y;
|
||||
}
|
||||
|
||||
// CHECK-LABEL: float func_2(float x, float y) {
|
||||
// CHECK-NEXT: #pragma STDC FENV_ACCESS ON
|
||||
// CHECK-NEXT: if (x != 0) {
|
||||
// CHECK-NEXT: #pragma STDC FENV_ACCESS OFF
|
||||
// CHECK-NEXT: return y;
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: return x + y;
|
||||
// CHECK-NEXT: }
|
||||
|
||||
float func_3(float x, float y) {
|
||||
#pragma STDC FENV_ROUND FE_DOWNWARD
|
||||
return x + y;
|
||||
}
|
||||
|
||||
// CHECK-LABEL: float func_3(float x, float y) {
|
||||
// CHECK-NEXT: #pragma STDC FENV_ROUND FE_DOWNWARD
|
||||
// CHECK-NEXT: return x + y;
|
||||
// CHECK-NEXT: }
|
||||
|
||||
float func_4(float x, float y, float z) {
|
||||
#pragma STDC FENV_ACCESS ON
|
||||
#pragma clang fp exceptions(maytrap)
|
||||
#pragma STDC FENV_ROUND FE_UPWARD
|
||||
if (z != 0) {
|
||||
#pragma STDC FENV_ACCESS OFF
|
||||
#pragma STDC FENV_ROUND FE_TOWARDZERO
|
||||
return z + x;
|
||||
}
|
||||
return x + y;
|
||||
}
|
||||
|
||||
// CHECK-LABEL: float func_4(float x, float y, float z) {
|
||||
// CHECK-NEXT: #pragma STDC FENV_ACCESS ON
|
||||
// CHECK-NEXT: #pragma clang fp exceptions(maytrap)
|
||||
// CHECK-NEXT: #pragma STDC FENV_ROUND FE_UPWARD
|
||||
// CHECK-NEXT: if (z != 0) {
|
||||
// CHECK-NEXT: #pragma STDC FENV_ACCESS OFF
|
||||
// CHECK-NEXT: #pragma STDC FENV_ROUND FE_TOWARDZERO
|
||||
// CHECK-NEXT: return z + x;
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: return x + y;
|
||||
// CHECK-NEXT: }
|
Loading…
Reference in New Issue