| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2014 the V8 project authors. All rights reserved. | 2 # Copyright 2014 the V8 project authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import itertools | 6 import itertools |
| 7 import js2c | 7 import js2c |
| 8 import multiprocessing | 8 import multiprocessing |
| 9 import optparse | 9 import optparse |
| 10 import os | 10 import os |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 # functions they define are so trivial that it's unclear how much benefit | 40 # functions they define are so trivial that it's unclear how much benefit |
| 41 # that would provide: | 41 # that would provide: |
| 42 # ELEMENTS_KIND_CHECK_RUNTIME_FUNCTION | 42 # ELEMENTS_KIND_CHECK_RUNTIME_FUNCTION |
| 43 # FIXED_TYPED_ARRAYS_CHECK_RUNTIME_FUNCTION | 43 # FIXED_TYPED_ARRAYS_CHECK_RUNTIME_FUNCTION |
| 44 # TYPED_ARRAYS_CHECK_RUNTIME_FUNCTION | 44 # TYPED_ARRAYS_CHECK_RUNTIME_FUNCTION |
| 45 | 45 |
| 46 # Counts of functions in each detection state. These are used to assert | 46 # Counts of functions in each detection state. These are used to assert |
| 47 # that the parser doesn't bit-rot. Change the values as needed when you add, | 47 # that the parser doesn't bit-rot. Change the values as needed when you add, |
| 48 # remove or change runtime functions, but make sure we don't lose our ability | 48 # remove or change runtime functions, but make sure we don't lose our ability |
| 49 # to parse them! | 49 # to parse them! |
| 50 EXPECTED_FUNCTION_COUNT = 420 | 50 EXPECTED_FUNCTION_COUNT = 421 |
| 51 EXPECTED_FUZZABLE_COUNT = 335 | 51 EXPECTED_FUZZABLE_COUNT = 335 |
| 52 EXPECTED_CCTEST_COUNT = 8 | 52 EXPECTED_CCTEST_COUNT = 8 |
| 53 EXPECTED_UNKNOWN_COUNT = 4 | 53 EXPECTED_UNKNOWN_COUNT = 4 |
| 54 EXPECTED_BUILTINS_COUNT = 813 | 54 EXPECTED_BUILTINS_COUNT = 813 |
| 55 | 55 |
| 56 | 56 |
| 57 # Don't call these at all. | 57 # Don't call these at all. |
| 58 BLACKLISTED = [ | 58 BLACKLISTED = [ |
| 59 "Abort", # Kills the process. | 59 "Abort", # Kills the process. |
| 60 "AbortJS", # Kills the process. | 60 "AbortJS", # Kills the process. |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 | 117 |
| 118 # Harmony | 118 # Harmony |
| 119 "CreateJSGeneratorObject", | 119 "CreateJSGeneratorObject", |
| 120 "SuspendJSGeneratorObject", | 120 "SuspendJSGeneratorObject", |
| 121 "ResumeJSGeneratorObject", | 121 "ResumeJSGeneratorObject", |
| 122 "ThrowGeneratorStateError", | 122 "ThrowGeneratorStateError", |
| 123 | 123 |
| 124 # Arrays | 124 # Arrays |
| 125 "ArrayConstructor", | 125 "ArrayConstructor", |
| 126 "InternalArrayConstructor", | 126 "InternalArrayConstructor", |
| 127 "NormalizeElements", |
| 127 | 128 |
| 128 # Literals | 129 # Literals |
| 129 "MaterializeRegExpLiteral", | 130 "MaterializeRegExpLiteral", |
| 130 "CreateObjectLiteral", | 131 "CreateObjectLiteral", |
| 131 "CreateArrayLiteral", | 132 "CreateArrayLiteral", |
| 132 "CreateArrayLiteralStubBailout", | 133 "CreateArrayLiteralStubBailout", |
| 133 | 134 |
| 134 # Statements | 135 # Statements |
| 135 "NewClosure", | 136 "NewClosure", |
| 136 "NewClosureFromStubFailure", | 137 "NewClosureFromStubFailure", |
| (...skipping 1263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1400 for i in range(len(processes)): | 1401 for i in range(len(processes)): |
| 1401 processes[i].join() | 1402 processes[i].join() |
| 1402 except KeyboardInterrupt: | 1403 except KeyboardInterrupt: |
| 1403 stop_running.set() | 1404 stop_running.set() |
| 1404 for i in range(len(processes)): | 1405 for i in range(len(processes)): |
| 1405 processes[i].join() | 1406 processes[i].join() |
| 1406 return 0 | 1407 return 0 |
| 1407 | 1408 |
| 1408 if __name__ == "__main__": | 1409 if __name__ == "__main__": |
| 1409 sys.exit(Main()) | 1410 sys.exit(Main()) |
| OLD | NEW |