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

Unified Diff: src/a64/debug-a64.cc

Issue 153773002: A64: Synchronize with r16679. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/a64/code-stubs-a64.cc ('k') | src/a64/ic-a64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/a64/debug-a64.cc
diff --git a/src/a64/debug-a64.cc b/src/a64/debug-a64.cc
index 1ffa933a899b34af003038e9383780a035646b84..b25e6ecae44eaaed3ecb3001929c3e002e4b2746 100644
--- a/src/a64/debug-a64.cc
+++ b/src/a64/debug-a64.cc
@@ -66,7 +66,8 @@ void BreakLocationIterator::SetDebugBreakAtReturn() {
// sequence.
STATIC_ASSERT(Assembler::kJSRetSequenceInstructions >= 5);
PatchingAssembler patcher(reinterpret_cast<Instruction*>(rinfo()->pc()), 5);
- byte* entry = Isolate::Current()->debug()->debug_break_return()->entry();
+ byte* entry =
+ debug_info_->GetIsolate()->debug()->debug_break_return()->entry();
// The first instruction of a patched return sequence must be a load literal
// loading the address of the debug break return code.
@@ -124,7 +125,8 @@ void BreakLocationIterator::SetDebugBreakAtSlot() {
// sequence.
STATIC_ASSERT(Assembler::kDebugBreakSlotInstructions >= 4);
PatchingAssembler patcher(reinterpret_cast<Instruction*>(rinfo()->pc()), 4);
- byte* entry = Isolate::Current()->debug()->debug_break_slot()->entry();
+ byte* entry =
+ debug_info_->GetIsolate()->debug()->debug_break_slot()->entry();
// The first instruction of a patched debug break slot must be a load literal
// loading the address of the debug break slot code.
« no previous file with comments | « src/a64/code-stubs-a64.cc ('k') | src/a64/ic-a64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698