| 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 static ExternalReference address_of_static_offsets_vector(); | 531 static ExternalReference address_of_static_offsets_vector(); |
| 532 static ExternalReference address_of_regexp_stack_memory_address(); | 532 static ExternalReference address_of_regexp_stack_memory_address(); |
| 533 static ExternalReference address_of_regexp_stack_memory_size(); | 533 static ExternalReference address_of_regexp_stack_memory_size(); |
| 534 | 534 |
| 535 // Static variable Heap::NewSpaceStart() | 535 // Static variable Heap::NewSpaceStart() |
| 536 static ExternalReference new_space_start(); | 536 static ExternalReference new_space_start(); |
| 537 static ExternalReference new_space_mask(); | 537 static ExternalReference new_space_mask(); |
| 538 static ExternalReference heap_always_allocate_scope_depth(); | 538 static ExternalReference heap_always_allocate_scope_depth(); |
| 539 | 539 |
| 540 // Write barrier. | 540 // Write barrier. |
| 541 static ExternalReference write_buffer_top(); | 541 static ExternalReference store_buffer_top(); |
| 542 | 542 |
| 543 // Used for fast allocation in generated code. | 543 // Used for fast allocation in generated code. |
| 544 static ExternalReference new_space_allocation_top_address(); | 544 static ExternalReference new_space_allocation_top_address(); |
| 545 static ExternalReference new_space_allocation_limit_address(); | 545 static ExternalReference new_space_allocation_limit_address(); |
| 546 | 546 |
| 547 static ExternalReference double_fp_operation(Token::Value operation); | 547 static ExternalReference double_fp_operation(Token::Value operation); |
| 548 static ExternalReference compare_doubles(); | 548 static ExternalReference compare_doubles(); |
| 549 static ExternalReference power_double_double_function(); | 549 static ExternalReference power_double_double_function(); |
| 550 static ExternalReference power_double_int_function(); | 550 static ExternalReference power_double_int_function(); |
| 551 | 551 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 return num_bits_set; | 720 return num_bits_set; |
| 721 } | 721 } |
| 722 | 722 |
| 723 // Computes pow(x, y) with the special cases in the spec for Math.pow. | 723 // Computes pow(x, y) with the special cases in the spec for Math.pow. |
| 724 double power_double_int(double x, int y); | 724 double power_double_int(double x, int y); |
| 725 double power_double_double(double x, double y); | 725 double power_double_double(double x, double y); |
| 726 | 726 |
| 727 } } // namespace v8::internal | 727 } } // namespace v8::internal |
| 728 | 728 |
| 729 #endif // V8_ASSEMBLER_H_ | 729 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |