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

Side by Side Diff: tools/generate-trig-table.py

Issue 110573004: Merge bleeding_edge 17696:18016. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years 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
1 #!/usr/bin/env python
2 #
1 # Copyright 2013 the V8 project authors. All rights reserved. 3 # Copyright 2013 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
4 # met: 6 # met:
5 # 7 #
6 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 11 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 12 # disclaimer in the documentation and/or other materials provided
11 # with the distribution. 13 # with the distribution.
12 # * Neither the name of Google Inc. nor the names of its 14 # * Neither the name of Google Inc. nor the names of its
13 # contributors may be used to endorse or promote products derived 15 # contributors may be used to endorse or promote products derived
14 # from this software without specific prior written permission. 16 # from this software without specific prior written permission.
15 # 17 #
16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 # (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. 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 29
28 from unittest import TestLoader, TextTestRunner, TestSuite 30 # This is a utility for populating the lookup table for the
31 # approximation of trigonometric functions.
29 32
30 from automata_test import * 33 import sys, math
31 from code_generator_test import * 34
32 from lexer_test import * 35 SAMPLES = 1800
33 from rule_parser_test import * 36
34 from transition_key_test import * 37 TEMPLATE = """\
38 // Copyright 2013 Google Inc. All Rights Reserved.
39
40 // This file was generated from a python script.
41
42 #include "v8.h"
43 #include "trig-table.h"
44
45 namespace v8 {
46 namespace internal {
47
48 const double TrigonometricLookupTable::kSinTable[] =
49 { %(sine_table)s };
50 const double TrigonometricLookupTable::kCosXIntervalTable[] =
51 { %(cosine_table)s };
52 const int TrigonometricLookupTable::kSamples = %(samples)i;
53 const int TrigonometricLookupTable::kTableSize = %(table_size)i;
54 const double TrigonometricLookupTable::kSamplesOverPiHalf =
55 %(samples_over_pi_half)s;
56
57 } } // v8::internal
58 """
59
60 def main():
61 pi_half = math.pi / 2
62 interval = pi_half / SAMPLES
63 sin = []
64 cos_times_interval = []
65 table_size = SAMPLES + 2
66
67 for i in range(0, table_size):
68 sample = i * interval
69 sin.append(repr(math.sin(sample)))
70 cos_times_interval.append(repr(math.cos(sample) * interval))
71
72 output_file = sys.argv[1]
73 output = open(str(output_file), "w")
74 output.write(TEMPLATE % {
75 'sine_table': ','.join(sin),
76 'cosine_table': ','.join(cos_times_interval),
77 'samples': SAMPLES,
78 'table_size': table_size,
79 'samples_over_pi_half': repr(SAMPLES / pi_half)
80 })
35 81
36 if __name__ == "__main__": 82 if __name__ == "__main__":
37 loader = TestLoader() 83 main()
38 suite = TestSuite(( 84
39 loader.loadTestsFromTestCase(TransitionKeyTestCase),
40 loader.loadTestsFromTestCase(AutomataTestCase),
41 loader.loadTestsFromTestCase(RuleParserTestCase),
42 loader.loadTestsFromTestCase(LexerTestCase),
43 loader.loadTestsFromTestCase(CodeGeneratorTestCase),
44 ))
45 runner = TextTestRunner(verbosity = 2)
46 runner.run(suite)
OLDNEW
« include/v8-platform.h ('K') | « test/mozilla/mozilla.status ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698