| 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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 ExternalReference ExternalReference::random_positive_smi_function() { | 556 ExternalReference ExternalReference::random_positive_smi_function() { |
| 557 return ExternalReference(Redirect(FUNCTION_ADDR(V8::RandomPositiveSmi))); | 557 return ExternalReference(Redirect(FUNCTION_ADDR(V8::RandomPositiveSmi))); |
| 558 } | 558 } |
| 559 | 559 |
| 560 | 560 |
| 561 ExternalReference ExternalReference::the_hole_value_location() { | 561 ExternalReference ExternalReference::the_hole_value_location() { |
| 562 return ExternalReference(Factory::the_hole_value().location()); | 562 return ExternalReference(Factory::the_hole_value().location()); |
| 563 } | 563 } |
| 564 | 564 |
| 565 | 565 |
| 566 ExternalReference ExternalReference::roots_address() { | |
| 567 return ExternalReference(Heap::roots_address()); | |
| 568 } | |
| 569 | |
| 570 | |
| 571 ExternalReference ExternalReference::address_of_stack_guard_limit() { | 566 ExternalReference ExternalReference::address_of_stack_guard_limit() { |
| 572 return ExternalReference(StackGuard::address_of_jslimit()); | 567 return ExternalReference(StackGuard::address_of_jslimit()); |
| 573 } | 568 } |
| 574 | 569 |
| 575 | 570 |
| 576 ExternalReference ExternalReference::address_of_regexp_stack_limit() { | 571 ExternalReference ExternalReference::address_of_regexp_stack_limit() { |
| 577 return ExternalReference(RegExpStack::limit_address()); | 572 return ExternalReference(RegExpStack::limit_address()); |
| 578 } | 573 } |
| 579 | 574 |
| 580 | 575 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); | 666 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); |
| 672 } | 667 } |
| 673 | 668 |
| 674 | 669 |
| 675 ExternalReference ExternalReference::debug_step_in_fp_address() { | 670 ExternalReference ExternalReference::debug_step_in_fp_address() { |
| 676 return ExternalReference(Debug::step_in_fp_addr()); | 671 return ExternalReference(Debug::step_in_fp_addr()); |
| 677 } | 672 } |
| 678 #endif | 673 #endif |
| 679 | 674 |
| 680 } } // namespace v8::internal | 675 } } // namespace v8::internal |
| OLD | NEW |