OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <stdlib.h> | 5 #include <stdlib.h> |
6 #include <limits> | 6 #include <limits> |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/accessors.h" | 10 #include "src/accessors.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 #include "src/prototype.h" | 37 #include "src/prototype.h" |
38 #include "src/runtime.h" | 38 #include "src/runtime.h" |
39 #include "src/runtime-profiler.h" | 39 #include "src/runtime-profiler.h" |
40 #include "src/scopeinfo.h" | 40 #include "src/scopeinfo.h" |
41 #include "src/smart-pointers.h" | 41 #include "src/smart-pointers.h" |
42 #include "src/string-search.h" | 42 #include "src/string-search.h" |
43 #include "src/stub-cache.h" | 43 #include "src/stub-cache.h" |
44 #include "src/uri.h" | 44 #include "src/uri.h" |
45 #include "src/v8threads.h" | 45 #include "src/v8threads.h" |
46 #include "src/vm-state-inl.h" | 46 #include "src/vm-state-inl.h" |
| 47 #include "third_party/fdlibm/fdlibm.h" |
47 | 48 |
48 #ifdef V8_I18N_SUPPORT | 49 #ifdef V8_I18N_SUPPORT |
49 #include "src/i18n.h" | 50 #include "src/i18n.h" |
50 #include "unicode/brkiter.h" | 51 #include "unicode/brkiter.h" |
51 #include "unicode/calendar.h" | 52 #include "unicode/calendar.h" |
52 #include "unicode/coll.h" | 53 #include "unicode/coll.h" |
53 #include "unicode/curramt.h" | 54 #include "unicode/curramt.h" |
54 #include "unicode/datefmt.h" | 55 #include "unicode/datefmt.h" |
55 #include "unicode/dcfmtsym.h" | 56 #include "unicode/dcfmtsym.h" |
56 #include "unicode/decimfmt.h" | 57 #include "unicode/decimfmt.h" |
(...skipping 7572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7629 RUNTIME_FUNCTION(Runtime_ConstructDouble) { | 7630 RUNTIME_FUNCTION(Runtime_ConstructDouble) { |
7630 HandleScope scope(isolate); | 7631 HandleScope scope(isolate); |
7631 ASSERT(args.length() == 2); | 7632 ASSERT(args.length() == 2); |
7632 CONVERT_NUMBER_CHECKED(uint32_t, hi, Uint32, args[0]); | 7633 CONVERT_NUMBER_CHECKED(uint32_t, hi, Uint32, args[0]); |
7633 CONVERT_NUMBER_CHECKED(uint32_t, lo, Uint32, args[1]); | 7634 CONVERT_NUMBER_CHECKED(uint32_t, lo, Uint32, args[1]); |
7634 uint64_t result = (static_cast<uint64_t>(hi) << 32) | lo; | 7635 uint64_t result = (static_cast<uint64_t>(hi) << 32) | lo; |
7635 return *isolate->factory()->NewNumber(uint64_to_double(result)); | 7636 return *isolate->factory()->NewNumber(uint64_to_double(result)); |
7636 } | 7637 } |
7637 | 7638 |
7638 | 7639 |
| 7640 RUNTIME_FUNCTION(Runtime_RemPiO2) { |
| 7641 HandleScope handle_scope(isolate); |
| 7642 ASSERT(args.length() == 1); |
| 7643 CONVERT_DOUBLE_ARG_CHECKED(x, 0); |
| 7644 Factory* factory = isolate->factory(); |
| 7645 double y[2]; |
| 7646 int n = rempio2(x, y); |
| 7647 Handle<FixedArray> array = factory->NewFixedArray(3); |
| 7648 array->set(0, Smi::FromInt(n)); |
| 7649 array->set(1, *factory->NewHeapNumber(y[0])); |
| 7650 array->set(2, *factory->NewHeapNumber(y[1])); |
| 7651 return *factory->NewJSArrayWithElements(array); |
| 7652 } |
| 7653 |
| 7654 |
7639 static const double kPiDividedBy4 = 0.78539816339744830962; | 7655 static const double kPiDividedBy4 = 0.78539816339744830962; |
7640 | 7656 |
7641 | 7657 |
7642 RUNTIME_FUNCTION(Runtime_MathAtan2) { | 7658 RUNTIME_FUNCTION(Runtime_MathAtan2) { |
7643 HandleScope scope(isolate); | 7659 HandleScope scope(isolate); |
7644 ASSERT(args.length() == 2); | 7660 ASSERT(args.length() == 2); |
7645 isolate->counters()->math_atan2()->Increment(); | 7661 isolate->counters()->math_atan2()->Increment(); |
7646 | 7662 |
7647 CONVERT_DOUBLE_ARG_CHECKED(x, 0); | 7663 CONVERT_DOUBLE_ARG_CHECKED(x, 0); |
7648 CONVERT_DOUBLE_ARG_CHECKED(y, 1); | 7664 CONVERT_DOUBLE_ARG_CHECKED(y, 1); |
(...skipping 7369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
15018 } | 15034 } |
15019 return NULL; | 15035 return NULL; |
15020 } | 15036 } |
15021 | 15037 |
15022 | 15038 |
15023 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) { | 15039 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) { |
15024 return &(kIntrinsicFunctions[static_cast<int>(id)]); | 15040 return &(kIntrinsicFunctions[static_cast<int>(id)]); |
15025 } | 15041 } |
15026 | 15042 |
15027 } } // namespace v8::internal | 15043 } } // namespace v8::internal |
OLD | NEW |