diff options
author | Chris Lattner <sabre@nondot.org> | 2008-06-07 22:13:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-06-07 22:13:43 +0000 |
commit | a0173131fa60510bcf8d9f6d7df8cc258e9efd5b (patch) | |
tree | 27b7ebfe75352627fc48249f162957035efd6dcd /clang | |
parent | f09c3721911d9af4e39764b5c474427384929fe0 (diff) | |
download | bcm5719-llvm-a0173131fa60510bcf8d9f6d7df8cc258e9efd5b.tar.gz bcm5719-llvm-a0173131fa60510bcf8d9f6d7df8cc258e9efd5b.zip |
Fix ast dumping to work with long double literals, e.g. we dump:
long double X() { return 1.0L; }
as:
long double X()
(CompoundStmt 0xb06a00 <t.c:2:17, col:32>
(ReturnStmt 0xb068d0 <col:19, col:26>
(FloatingLiteral 0xb02cf0 <col:26> 'long double' 1.000000)))
llvm-svn: 52080
Diffstat (limited to 'clang')
-rw-r--r-- | clang/include/clang/AST/Expr.h | 16 | ||||
-rw-r--r-- | clang/lib/AST/Expr.cpp | 10 | ||||
-rw-r--r-- | clang/lib/AST/StmtDumper.cpp | 2 | ||||
-rw-r--r-- | clang/lib/AST/StmtPrinter.cpp | 2 |
4 files changed, 17 insertions, 13 deletions
diff --git a/clang/include/clang/AST/Expr.h b/clang/include/clang/AST/Expr.h index 38134558646..9a76823ff26 100644 --- a/clang/include/clang/AST/Expr.h +++ b/clang/include/clang/AST/Expr.h @@ -271,17 +271,11 @@ public: bool isExact() const { return IsExact; } - /// getValueAsDouble - This returns the value as an inaccurate double. Note - /// that this may cause loss of precision, but is useful for debugging dumps - /// etc. - double getValueAsDouble() const { - // FIXME: We need something for long double here. - if (cast<BuiltinType>(getType())->getKind() == BuiltinType::Float) - return Value.convertToFloat(); - else - return Value.convertToDouble(); - } - + /// getValueAsApproximateDouble - This returns the value as an inaccurate + /// double. Note that this may cause loss of precision, but is useful for + /// debugging dumps, etc. + double getValueAsApproximateDouble() const; + virtual SourceRange getSourceRange() const { return SourceRange(Loc); } static bool classof(const Stmt *T) { diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp index a89fbd621a5..78c305051ee 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp @@ -22,6 +22,16 @@ using namespace clang; // Primary Expressions. //===----------------------------------------------------------------------===// +/// getValueAsApproximateDouble - This returns the value as an inaccurate +/// double. Note that this may cause loss of precision, but is useful for +/// debugging dumps, etc. +double FloatingLiteral::getValueAsApproximateDouble() const { + llvm::APFloat V = getValue(); + V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven); + return V.convertToDouble(); +} + + StringLiteral::StringLiteral(const char *strData, unsigned byteLength, bool Wide, QualType t, SourceLocation firstLoc, SourceLocation lastLoc) : diff --git a/clang/lib/AST/StmtDumper.cpp b/clang/lib/AST/StmtDumper.cpp index 082d2a22595..ae6ca40460a 100644 --- a/clang/lib/AST/StmtDumper.cpp +++ b/clang/lib/AST/StmtDumper.cpp @@ -335,7 +335,7 @@ void StmtDumper::VisitIntegerLiteral(IntegerLiteral *Node) { } void StmtDumper::VisitFloatingLiteral(FloatingLiteral *Node) { DumpExpr(Node); - fprintf(F, " %f", Node->getValueAsDouble()); + fprintf(F, " %f", Node->getValueAsApproximateDouble()); } void StmtDumper::VisitStringLiteral(StringLiteral *Str) { diff --git a/clang/lib/AST/StmtPrinter.cpp b/clang/lib/AST/StmtPrinter.cpp index a740facf76f..5e347435b63 100644 --- a/clang/lib/AST/StmtPrinter.cpp +++ b/clang/lib/AST/StmtPrinter.cpp @@ -577,7 +577,7 @@ void StmtPrinter::VisitIntegerLiteral(IntegerLiteral *Node) { } void StmtPrinter::VisitFloatingLiteral(FloatingLiteral *Node) { // FIXME: print value more precisely. - OS << Node->getValueAsDouble(); + OS << Node->getValueAsApproximateDouble(); } void StmtPrinter::VisitImaginaryLiteral(ImaginaryLiteral *Node) { |