Chromium Code Reviews| 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 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 527 // Static variables for RegExp. | 527 // Static variables for RegExp. |
| 528 static ExternalReference address_of_static_offsets_vector(); | 528 static ExternalReference address_of_static_offsets_vector(); |
| 529 static ExternalReference address_of_regexp_stack_memory_address(); | 529 static ExternalReference address_of_regexp_stack_memory_address(); |
| 530 static ExternalReference address_of_regexp_stack_memory_size(); | 530 static ExternalReference address_of_regexp_stack_memory_size(); |
| 531 | 531 |
| 532 // Static variable Heap::NewSpaceStart() | 532 // Static variable Heap::NewSpaceStart() |
| 533 static ExternalReference new_space_start(); | 533 static ExternalReference new_space_start(); |
| 534 static ExternalReference new_space_mask(); | 534 static ExternalReference new_space_mask(); |
| 535 static ExternalReference heap_always_allocate_scope_depth(); | 535 static ExternalReference heap_always_allocate_scope_depth(); |
| 536 | 536 |
| 537 // Write barrier. | |
|
Vyacheslav Egorov (Chromium)
2010/12/14 22:40:14
barrier -> buffer.
Erik Corry
2010/12/15 08:00:13
The write barrier is implemented using a write buf
| |
| 538 static ExternalReference write_buffer_top(); | |
| 539 | |
| 537 // Used for fast allocation in generated code. | 540 // Used for fast allocation in generated code. |
| 538 static ExternalReference new_space_allocation_top_address(); | 541 static ExternalReference new_space_allocation_top_address(); |
| 539 static ExternalReference new_space_allocation_limit_address(); | 542 static ExternalReference new_space_allocation_limit_address(); |
| 540 | 543 |
| 541 static ExternalReference double_fp_operation(Token::Value operation); | 544 static ExternalReference double_fp_operation(Token::Value operation); |
| 542 static ExternalReference compare_doubles(); | 545 static ExternalReference compare_doubles(); |
| 543 static ExternalReference power_double_double_function(); | 546 static ExternalReference power_double_double_function(); |
| 544 static ExternalReference power_double_int_function(); | 547 static ExternalReference power_double_int_function(); |
| 545 | 548 |
| 546 static ExternalReference handle_scope_next_address(); | 549 static ExternalReference handle_scope_next_address(); |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 714 return num_bits_set; | 717 return num_bits_set; |
| 715 } | 718 } |
| 716 | 719 |
| 717 // Computes pow(x, y) with the special cases in the spec for Math.pow. | 720 // Computes pow(x, y) with the special cases in the spec for Math.pow. |
| 718 double power_double_int(double x, int y); | 721 double power_double_int(double x, int y); |
| 719 double power_double_double(double x, double y); | 722 double power_double_double(double x, double y); |
| 720 | 723 |
| 721 } } // namespace v8::internal | 724 } } // namespace v8::internal |
| 722 | 725 |
| 723 #endif // V8_ASSEMBLER_H_ | 726 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |