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

Side by Side Diff: src/assembler.cc

Issue 2622863003: [debugger] infrastructure for side-effect-free debug-evaluate. (Closed)
Patch Set: fix mips one more time Created 3 years, 11 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/builtins/arm/builtins-arm.cc » ('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 1566 matching lines...) Expand 10 before | Expand all | Expand 10 after
1577 1577
1578 ExternalReference ExternalReference::promise_hook_address(Isolate* isolate) { 1578 ExternalReference ExternalReference::promise_hook_address(Isolate* isolate) {
1579 return ExternalReference(isolate->promise_hook_address()); 1579 return ExternalReference(isolate->promise_hook_address());
1580 } 1580 }
1581 1581
1582 ExternalReference ExternalReference::debug_is_active_address( 1582 ExternalReference ExternalReference::debug_is_active_address(
1583 Isolate* isolate) { 1583 Isolate* isolate) {
1584 return ExternalReference(isolate->debug()->is_active_address()); 1584 return ExternalReference(isolate->debug()->is_active_address());
1585 } 1585 }
1586 1586
1587 ExternalReference ExternalReference::debug_hook_on_function_call_address(
1588 Isolate* isolate) {
1589 return ExternalReference(isolate->debug()->hook_on_function_call_address());
1590 }
1587 1591
1588 ExternalReference ExternalReference::debug_after_break_target_address( 1592 ExternalReference ExternalReference::debug_after_break_target_address(
1589 Isolate* isolate) { 1593 Isolate* isolate) {
1590 return ExternalReference(isolate->debug()->after_break_target_address()); 1594 return ExternalReference(isolate->debug()->after_break_target_address());
1591 } 1595 }
1592 1596
1593 1597
1594 ExternalReference ExternalReference::runtime_function_table_address( 1598 ExternalReference ExternalReference::runtime_function_table_address(
1595 Isolate* isolate) { 1599 Isolate* isolate) {
1596 return ExternalReference( 1600 return ExternalReference(
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
1932 1936
1933 1937
1934 void Assembler::DataAlign(int m) { 1938 void Assembler::DataAlign(int m) {
1935 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); 1939 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m));
1936 while ((pc_offset() & (m - 1)) != 0) { 1940 while ((pc_offset() & (m - 1)) != 0) {
1937 db(0); 1941 db(0);
1938 } 1942 }
1939 } 1943 }
1940 } // namespace internal 1944 } // namespace internal
1941 } // namespace v8 1945 } // namespace v8
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/builtins/arm/builtins-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698