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

Side by Side Diff: tools/generate-ten-powers.scm

Issue 619005: Fast algorithm for double->string conversion. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 ;; Copyright 2010 the V8 project authors. All rights reserved.
2 ;; Redistribution and use in source and binary forms, with or without
3 ;; modification, are permitted provided that the following conditions are
4 ;; met:
5 ;;
6 ;; * Redistributions of source code must retain the above copyright
7 ;; notice, this list of conditions and the following disclaimer.
8 ;; * Redistributions in binary form must reproduce the above
9 ;; copyright notice, this list of conditions and the following
10 ;; disclaimer in the documentation and/or other materials provided
11 ;; with the distribution.
12 ;; * Neither the name of Google Inc. nor the names of its
13 ;; contributors may be used to endorse or promote products derived
14 ;; from this software without specific prior written permission.
15 ;;
16 ;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 ;; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 ;; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 ;; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 ;; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 ;; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 ;; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 ;; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 ;; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 ;; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 ;; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 ;; Generate approximations of 10^k.
29
30 (module gen-ten-powers
31 (static (class Cached-Fast
32 v::bignum
33 e::bint
34 exact?::bool))
35 (main my-main))
36
37
38 ;;----------------bignum shifts -----------------------------------------------
39 (define (bit-lshbx::bignum x::bignum by::bint)
40 (if (<fx by 0)
41 #z0
42 (*bx x (exptbx #z2 (fixnum->bignum by)))))
43
44 (define (bit-rshbx::bignum x::bignum by::bint)
45 (if (<fx by 0)
46 #z0
47 (/bx x (exptbx #z2 (fixnum->bignum by)))))
48
49 ;;----------------the actual power generation -------------------------------
50
51 ;; e should be an indication. it might be too small.
52 (define (round-n-cut n e nb-bits)
53 (define max-container (- (bit-lshbx #z1 nb-bits) 1))
54 (define (round n)
55 (case *round*
56 ((down) n)
57 ((up)
58 (+bx n
59 ;; with the -1 it will only round up if the cut off part is
60 ;; non-zero
61 (-bx (bit-lshbx #z1
62 (-fx (+fx e nb-bits) 1))
63 #z1)))
64 ((round)
65 (+bx n
66 (bit-lshbx #z1
67 (-fx (+fx e nb-bits) 2))))))
68 (let* ((shift (-fx (+fx e nb-bits) 1))
69 (cut (bit-rshbx (round n) shift))
70 (exact? (=bx n (bit-lshbx cut shift))))
71 (if (<=bx cut max-container)
72 (values cut e exact?)
73 (round-n-cut n (+fx e 1) nb-bits))))
74
75 (define (rounded-/bx x y)
76 (case *round*
77 ((down) (/bx x y))
78 ((up) (+bx (/bx x y) #z1))
79 ((round) (let ((tmp (/bx (*bx #z2 x) y)))
80 (if (zerobx? (remainderbx tmp #z2))
81 (/bx tmp #z2)
82 (+bx (/bx tmp #z2) #z1))))))
83
84 (define (generate-powers from to mantissa-size)
85 (let* ((nb-bits mantissa-size)
86 (offset (- from))
87 (nb-elements (+ (- from) to 1))
88 (vec (make-vector nb-elements))
89 (max-container (- (bit-lshbx #z1 nb-bits) 1)))
90 ;; the negative ones. 10^-1, 10^-2, etc.
91 ;; We already know, that we can't be exact, so exact? will always be #f.
92 ;; Basically we will have a ten^i that we will *10 at each iteration. We
93 ;; want to create the matissa of 1/ten^i. However the mantissa must be
94 ;; normalized (start with a 1). -> we have to shift the number.
95 ;; We shift by multiplying with two^e. -> We encode two^e*(1/ten^i) ==
96 ;; two^e/ten^i.
97 (let loop ((i 1)
98 (ten^i #z10)
99 (two^e #z1)
100 (e 0))
101 (unless (< (- i) from)
102 (if (>bx (/bx (*bx #z2 two^e) ten^i) max-container)
103 ;; another shift would make the number too big. We are
104 ;; hence normalized now.
105 (begin
106 (vector-set! vec (-fx offset i)
107 (instantiate::Cached-Fast
108 (v (rounded-/bx two^e ten^i))
109 (e (negfx e))
110 (exact? #f)))
111 (loop (+fx i 1) (*bx ten^i #z10) two^e e))
112 (loop i ten^i (bit-lshbx two^e 1) (+fx e 1)))))
113 ;; the positive ones 10^0, 10^1, etc.
114 ;; start with 1.0. mantissa: 10...0 (1 followed by nb-bits-1 bits)
115 ;; -> e = -(nb-bits-1)
116 ;; exact? is true when the container can still hold the complete 10^i
117 (let loop ((i 0)
118 (n (bit-lshbx #z1 (-fx nb-bits 1)))
119 (e (-fx 1 nb-bits)))
120 (when (<= i to)
121 (receive (cut e exact?)
122 (round-n-cut n e nb-bits)
123 (vector-set! vec (+fx i offset)
124 (instantiate::Cached-Fast
125 (v cut)
126 (e e)
127 (exact? exact?)))
128 (loop (+fx i 1) (*bx n #z10) e))))
129 vec))
130
131 (define (print-c powers from to struct-type
132 cache-name max-distance-name offset-name macro64)
133 (define (display-power power k)
134 (with-access::Cached-Fast power (v e exact?)
135 (let ((tmp-p (open-output-string)))
136 ;; really hackish way of getting the digits
137 (display (format "~x" v) tmp-p)
138 (let ((str (close-output-port tmp-p)))
139 (printf "{~a(0x~a,~a), ~a, ~a}, "
140 macro64
141 (substring str 0 8)
142 (substring str 8 16)
143 e
144 k)))))
145 (define (print-powers-reduced n)
146 (display* "static const " struct-type " " cache-name
147 "(" n ")"
148 "[] = {")
149 (let loop ((i 0)
150 (nb-elements 0)
151 (last-e 0)
152 (max-distance 0))
153 (cond
154 ((>= i (vector-length powers))
155 (print "};")
156 (print "static const int " max-distance-name "(" n ") = "
157 max-distance ";")
158 (print "// nb elements (" n ")" nb-elements))
159 (else
160 (let* ((power (vector-ref powers i))
161 (e (Cached-Fast-e power)))
162 (display-power power (+ i from))
163 (loop (+ i n)
164 (+ nb-elements 1)
165 e
166 (cond
167 ((=fx i 0) max-distance)
168 ((> (- e last-e) max-distance) (- e last-e))
169 (else max-distance))))))))
170 (print "// ------------ GENERATED FILE ----------------")
171 (print "// command used: "
172 (apply string-append (map (lambda (str)
173 (string-append " " str))
174 *main-args*)))
175 (print)
176 (print-powers-reduced 1)
177 (print-powers-reduced 2)
178 (print-powers-reduced 3)
179 (print-powers-reduced 4)
180 (print-powers-reduced 5)
181 (print-powers-reduced 6)
182 (print-powers-reduced 7)
183 (print-powers-reduced 8)
184 (print-powers-reduced 9)
185 (print-powers-reduced 10)
186 (print-powers-reduced 11)
187 (print-powers-reduced 12)
188 (print-powers-reduced 13)
189 (print-powers-reduced 14)
190 (print-powers-reduced 15)
191 (print-powers-reduced 16)
192 (print-powers-reduced 17)
193 (print-powers-reduced 18)
194 (print-powers-reduced 19)
195 (print-powers-reduced 20)
196 (print "static const int GRISU_CACHE_OFFSET = " (- from) ";"))
197
198 ;;----------------main --------------------------------------------------------
199 (define *main-args* #f)
200 (define *mantissa-size* #f)
201 (define *dest* #f)
202 (define *round* #f)
203 (define *from* #f)
204 (define *to* #f)
205
206 (define (my-main args)
207 (set! *main-args* args)
208 (args-parse (cdr args)
209 (section "Help")
210 (("?") (args-parse-usage #f))
211 ((("-h" "--help") (help "?, -h, --help" "This help message"))
212 (args-parse-usage #f))
213 (section "Misc")
214 (("-o" ?file (help "The output file"))
215 (set! *dest* file))
216 (("--mantissa-size" ?size (help "Container-size in bits"))
217 (set! *mantissa-size* (string->number size)))
218 (("--round" ?direction (help "Round bignums (down, round or up)"))
219 (set! *round* (string->symbol direction)))
220 (("--from" ?from (help "start at 10^from"))
221 (set! *from* (string->number from)))
222 (("--to" ?to (help "go up to 10^to"))
223 (set! *to* (string->number to)))
224 (else
225 (print "Illegal argument `" else "'. Usage:")
226 (args-parse-usage #f)))
227 (when (not *from*)
228 (error "generate-ten-powers"
229 "Missing from"
230 #f))
231 (when (not *to*)
232 (error "generate-ten-powers"
233 "Missing to"
234 #f))
235 (when (not *mantissa-size*)
236 (error "generate-ten-powers"
237 "Missing mantissa size"
238 #f))
239 (when (not (memv *round* '(up down round)))
240 (error "generate-ten-powers"
241 "Missing round-method"
242 *round*))
243
244 (let ((dividers (generate-powers *from* *to* *mantissa-size*))
245 (p (if (not *dest*)
246 (current-output-port)
247 (open-output-file *dest*))))
248 (unwind-protect
249 (with-output-to-port p
250 (lambda ()
251 (print-c dividers *from* *to*
252 "GRISU_CACHE_STRUCT" "GRISU_CACHE_NAME"
253 "GRISU_CACHE_MAX_DISTANCE" "GRISU_CACHE_OFFSET"
254 "GRISU_UINT64_C"
255 )))
256 (if *dest*
257 (close-output-port p)))))
OLDNEW
« src/powers_ten.h ('K') | « test/cctest/test-grisu3.cc ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698