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

Side by Side Diff: src/assembler.cc

Issue 1491743005: [debugger] do not predict step in target for liveedit. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@liveeditstep
Patch Set: do not prepare stepping if we are not in the debugger Created 5 years 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/builtins.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 1399 matching lines...) Expand 10 before | Expand all | Expand 10 after
1410 return ExternalReference(isolate->debug()->is_active_address()); 1410 return ExternalReference(isolate->debug()->is_active_address());
1411 } 1411 }
1412 1412
1413 1413
1414 ExternalReference ExternalReference::debug_after_break_target_address( 1414 ExternalReference ExternalReference::debug_after_break_target_address(
1415 Isolate* isolate) { 1415 Isolate* isolate) {
1416 return ExternalReference(isolate->debug()->after_break_target_address()); 1416 return ExternalReference(isolate->debug()->after_break_target_address());
1417 } 1417 }
1418 1418
1419 1419
1420 ExternalReference
1421 ExternalReference::debug_restarter_frame_function_pointer_address(
1422 Isolate* isolate) {
1423 return ExternalReference(
1424 isolate->debug()->restarter_frame_function_pointer_address());
1425 }
1426
1427
1428 ExternalReference ExternalReference::virtual_handler_register( 1420 ExternalReference ExternalReference::virtual_handler_register(
1429 Isolate* isolate) { 1421 Isolate* isolate) {
1430 return ExternalReference(isolate->virtual_handler_register_address()); 1422 return ExternalReference(isolate->virtual_handler_register_address());
1431 } 1423 }
1432 1424
1433 1425
1434 ExternalReference ExternalReference::virtual_slot_register(Isolate* isolate) { 1426 ExternalReference ExternalReference::virtual_slot_register(Isolate* isolate) {
1435 return ExternalReference(isolate->virtual_slot_register_address()); 1427 return ExternalReference(isolate->virtual_slot_register_address());
1436 } 1428 }
1437 1429
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
1878 1870
1879 1871
1880 void Assembler::DataAlign(int m) { 1872 void Assembler::DataAlign(int m) {
1881 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); 1873 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m));
1882 while ((pc_offset() & (m - 1)) != 0) { 1874 while ((pc_offset() & (m - 1)) != 0) {
1883 db(0); 1875 db(0);
1884 } 1876 }
1885 } 1877 }
1886 } // namespace internal 1878 } // namespace internal
1887 } // namespace v8 1879 } // namespace v8
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/builtins.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698