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

Unified Diff: src/debug/debug.h

Issue 1474763008: Always pass an Isolate to AssemblerBase (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 5 years, 1 month 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/debug/arm64/debug-arm64.cc ('k') | src/debug/debug.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug.h
diff --git a/src/debug/debug.h b/src/debug/debug.h
index 44f0a6fe8b957c93cd85d3481f06f2473d26b845..009070b2957600e1069797e85a4c9ea9b8d0a08d 100644
--- a/src/debug/debug.h
+++ b/src/debug/debug.h
@@ -783,8 +783,9 @@ class DebugCodegen : public AllStatic {
static void GenerateSlot(MacroAssembler* masm, RelocInfo::Mode mode,
int call_argc = -1);
- static void PatchDebugBreakSlot(Address pc, Handle<Code> code);
- static void ClearDebugBreakSlot(Address pc);
+ static void PatchDebugBreakSlot(Isolate* isolate, Address pc,
+ Handle<Code> code);
+ static void ClearDebugBreakSlot(Isolate* isolate, Address pc);
};
« no previous file with comments | « src/debug/arm64/debug-arm64.cc ('k') | src/debug/debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698