Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: src/conversions.cc

Issue 1032007: Rename grisu to fast_dtoa. Get rid of template. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/SConscript ('k') | src/fast-dtoa.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/conversions.cc
===================================================================
--- src/conversions.cc (revision 4170)
+++ src/conversions.cc (working copy)
@@ -31,7 +31,7 @@
#include "conversions-inl.h"
#include "factory.h"
-#include "grisu3.h"
+#include "fast-dtoa.h"
#include "scanner.h"
namespace v8 {
@@ -384,14 +384,14 @@
int sign;
char* decimal_rep;
- bool used_dtoa = false;
- char grisu_buffer[kGrisu3MaximalLength + 1];
+ bool used_gay_dtoa = false;
+ char fast_dtoa_buffer[kFastDtoaMaximalLength + 1];
int length;
- if (grisu3(v, grisu_buffer, &sign, &length, &decimal_point)) {
- decimal_rep = grisu_buffer;
+ if (FastDtoa(v, fast_dtoa_buffer, &sign, &length, &decimal_point)) {
+ decimal_rep = fast_dtoa_buffer;
} else {
decimal_rep = dtoa(v, 0, 0, &decimal_point, &sign, NULL);
- used_dtoa = true;
+ used_gay_dtoa = true;
length = StrLength(decimal_rep);
}
@@ -428,7 +428,7 @@
builder.AddFormatted("%d", exponent);
}
- if (used_dtoa) freedtoa(decimal_rep);
+ if (used_gay_dtoa) freedtoa(decimal_rep);
}
}
return builder.Finalize();
« no previous file with comments | « src/SConscript ('k') | src/fast-dtoa.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698