Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: src/assembler.cc

Issue 2068603002: [debugger] simplify debug stepping. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix completion callback Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/assembler.h ('k') | src/debug/debug.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1752 matching lines...) Expand 10 before | Expand all | Expand 10 after
1763 } 1763 }
1764 1764
1765 1765
1766 ExternalReference ExternalReference::mod_two_doubles_operation( 1766 ExternalReference ExternalReference::mod_two_doubles_operation(
1767 Isolate* isolate) { 1767 Isolate* isolate) {
1768 return ExternalReference(Redirect(isolate, 1768 return ExternalReference(Redirect(isolate,
1769 FUNCTION_ADDR(modulo), 1769 FUNCTION_ADDR(modulo),
1770 BUILTIN_FP_FP_CALL)); 1770 BUILTIN_FP_FP_CALL));
1771 } 1771 }
1772 1772
1773 1773 ExternalReference ExternalReference::debug_last_step_action_address(
1774 ExternalReference ExternalReference::debug_step_in_enabled_address(
1775 Isolate* isolate) { 1774 Isolate* isolate) {
1776 return ExternalReference(isolate->debug()->step_in_enabled_address()); 1775 return ExternalReference(isolate->debug()->last_step_action_address());
1777 } 1776 }
1778 1777
1779 ExternalReference ExternalReference::debug_suspended_generator_address( 1778 ExternalReference ExternalReference::debug_suspended_generator_address(
1780 Isolate* isolate) { 1779 Isolate* isolate) {
1781 return ExternalReference(isolate->debug()->suspended_generator_address()); 1780 return ExternalReference(isolate->debug()->suspended_generator_address());
1782 } 1781 }
1783 1782
1784 ExternalReference ExternalReference::fixed_typed_array_base_data_offset() { 1783 ExternalReference ExternalReference::fixed_typed_array_base_data_offset() {
1785 return ExternalReference(reinterpret_cast<void*>( 1784 return ExternalReference(reinterpret_cast<void*>(
1786 FixedTypedArrayBase::kDataOffset - kHeapObjectTag)); 1785 FixedTypedArrayBase::kDataOffset - kHeapObjectTag));
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
2094 2093
2095 2094
2096 void Assembler::DataAlign(int m) { 2095 void Assembler::DataAlign(int m) {
2097 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); 2096 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m));
2098 while ((pc_offset() & (m - 1)) != 0) { 2097 while ((pc_offset() & (m - 1)) != 0) {
2099 db(0); 2098 db(0);
2100 } 2099 }
2101 } 2100 }
2102 } // namespace internal 2101 } // namespace internal
2103 } // namespace v8 2102 } // namespace v8
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/debug/debug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698