| 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 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 995 | 995 |
| 996 ExternalReference ExternalReference::compare_doubles(Isolate* isolate) { | 996 ExternalReference ExternalReference::compare_doubles(Isolate* isolate) { |
| 997 return ExternalReference(Redirect(isolate, | 997 return ExternalReference(Redirect(isolate, |
| 998 FUNCTION_ADDR(native_compare_doubles), | 998 FUNCTION_ADDR(native_compare_doubles), |
| 999 BUILTIN_CALL)); | 999 BUILTIN_CALL)); |
| 1000 } | 1000 } |
| 1001 | 1001 |
| 1002 | 1002 |
| 1003 #ifdef ENABLE_DEBUGGER_SUPPORT | 1003 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 1004 ExternalReference ExternalReference::debug_break(Isolate* isolate) { | 1004 ExternalReference ExternalReference::debug_break(Isolate* isolate) { |
| 1005 return ExternalReference(Redirect(isolate, FUNCTION_ADDR(Debug::Break))); | 1005 return ExternalReference(Redirect(isolate, FUNCTION_ADDR(Debug_Break))); |
| 1006 } | 1006 } |
| 1007 | 1007 |
| 1008 | 1008 |
| 1009 ExternalReference ExternalReference::debug_step_in_fp_address( | 1009 ExternalReference ExternalReference::debug_step_in_fp_address( |
| 1010 Isolate* isolate) { | 1010 Isolate* isolate) { |
| 1011 return ExternalReference(isolate->debug()->step_in_fp_addr()); | 1011 return ExternalReference(isolate->debug()->step_in_fp_addr()); |
| 1012 } | 1012 } |
| 1013 #endif | 1013 #endif |
| 1014 | 1014 |
| 1015 | 1015 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1058 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); | 1058 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); |
| 1059 state_.written_position = state_.current_position; | 1059 state_.written_position = state_.current_position; |
| 1060 written = true; | 1060 written = true; |
| 1061 } | 1061 } |
| 1062 | 1062 |
| 1063 // Return whether something was written. | 1063 // Return whether something was written. |
| 1064 return written; | 1064 return written; |
| 1065 } | 1065 } |
| 1066 | 1066 |
| 1067 } } // namespace v8::internal | 1067 } } // namespace v8::internal |
| OLD | NEW |