| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 } | 48 } |
| 49 | 49 |
| 50 | 50 |
| 51 // Give V8 the opportunity to override the default fmod behavior. | 51 // Give V8 the opportunity to override the default fmod behavior. |
| 52 double modulo(double x, double y) { | 52 double modulo(double x, double y) { |
| 53 UNIMPLEMENTED(); | 53 UNIMPLEMENTED(); |
| 54 return 0; | 54 return 0; |
| 55 } | 55 } |
| 56 | 56 |
| 57 | 57 |
| 58 double fast_sin(double x) { | |
| 59 UNIMPLEMENTED(); | |
| 60 return 0; | |
| 61 } | |
| 62 | |
| 63 | |
| 64 double fast_cos(double x) { | |
| 65 UNIMPLEMENTED(); | |
| 66 return 0; | |
| 67 } | |
| 68 | |
| 69 | |
| 70 double fast_tan(double x) { | |
| 71 UNIMPLEMENTED(); | |
| 72 return 0; | |
| 73 } | |
| 74 | |
| 75 | |
| 76 double fast_log(double x) { | |
| 77 UNIMPLEMENTED(); | |
| 78 return 0; | |
| 79 } | |
| 80 | |
| 81 | |
| 82 // Initialize OS class early in the V8 startup. | 58 // Initialize OS class early in the V8 startup. |
| 83 void OS::SetUp() { | 59 void OS::SetUp() { |
| 84 // Seed the random number generator. | 60 // Seed the random number generator. |
| 85 UNIMPLEMENTED(); | 61 UNIMPLEMENTED(); |
| 86 } | 62 } |
| 87 | 63 |
| 88 | 64 |
| 89 // Returns the accumulated user time for thread. | 65 // Returns the accumulated user time for thread. |
| 90 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { | 66 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { |
| 91 UNIMPLEMENTED(); | 67 UNIMPLEMENTED(); |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 UNIMPLEMENTED(); | 463 UNIMPLEMENTED(); |
| 488 } | 464 } |
| 489 | 465 |
| 490 | 466 |
| 491 void ProfileSampler::Stop() { | 467 void ProfileSampler::Stop() { |
| 492 UNIMPLEMENTED(); | 468 UNIMPLEMENTED(); |
| 493 } | 469 } |
| 494 | 470 |
| 495 | 471 |
| 496 } } // namespace v8::internal | 472 } } // namespace v8::internal |
| OLD | NEW |