OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
6 // met: | 6 // met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 | 545 |
546 static ExternalReference double_fp_operation(Token::Value operation); | 546 static ExternalReference double_fp_operation(Token::Value operation); |
547 static ExternalReference compare_doubles(); | 547 static ExternalReference compare_doubles(); |
548 static ExternalReference power_double_double_function(); | 548 static ExternalReference power_double_double_function(); |
549 static ExternalReference power_double_int_function(); | 549 static ExternalReference power_double_int_function(); |
550 | 550 |
551 static ExternalReference handle_scope_next_address(); | 551 static ExternalReference handle_scope_next_address(); |
552 static ExternalReference handle_scope_limit_address(); | 552 static ExternalReference handle_scope_limit_address(); |
553 static ExternalReference handle_scope_level_address(); | 553 static ExternalReference handle_scope_level_address(); |
554 | 554 |
| 555 static ExternalReference pending_exception_address(); |
555 static ExternalReference scheduled_exception_address(); | 556 static ExternalReference scheduled_exception_address(); |
556 | 557 |
557 // Static variables containing common double constants. | 558 // Static variables containing common double constants. |
558 static ExternalReference address_of_min_int(); | 559 static ExternalReference address_of_min_int(); |
559 static ExternalReference address_of_one_half(); | 560 static ExternalReference address_of_one_half(); |
560 static ExternalReference address_of_minus_zero(); | 561 static ExternalReference address_of_minus_zero(); |
561 static ExternalReference address_of_negative_infinity(); | 562 static ExternalReference address_of_negative_infinity(); |
562 | 563 |
563 Address address() const {return reinterpret_cast<Address>(address_);} | 564 Address address() const {return reinterpret_cast<Address>(address_);} |
564 | 565 |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
745 return num_bits_set; | 746 return num_bits_set; |
746 } | 747 } |
747 | 748 |
748 // Computes pow(x, y) with the special cases in the spec for Math.pow. | 749 // Computes pow(x, y) with the special cases in the spec for Math.pow. |
749 double power_double_int(double x, int y); | 750 double power_double_int(double x, int y); |
750 double power_double_double(double x, double y); | 751 double power_double_double(double x, double y); |
751 | 752 |
752 } } // namespace v8::internal | 753 } } // namespace v8::internal |
753 | 754 |
754 #endif // V8_ASSEMBLER_H_ | 755 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |