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

Unified Diff: src/arm/regexp-macro-assembler-arm.h

Issue 14429003: Refactor ExternalReference::isolate_address() to not rely on Isolate::Current(). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comments Created 7 years, 8 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
Index: src/arm/regexp-macro-assembler-arm.h
diff --git a/src/arm/regexp-macro-assembler-arm.h b/src/arm/regexp-macro-assembler-arm.h
index c45669ae899f0f709cc4dc3bfa6ab0f71efd57bf..70b7fe211f44d9cab935e6813ce937f888b6c29f 100644
--- a/src/arm/regexp-macro-assembler-arm.h
+++ b/src/arm/regexp-macro-assembler-arm.h
@@ -30,6 +30,7 @@
#include "arm/assembler-arm.h"
#include "arm/assembler-arm-inl.h"
+#include "macro-assembler.h"
namespace v8 {
namespace internal {
@@ -223,6 +224,7 @@ class RegExpMacroAssemblerARM: public NativeRegExpMacroAssembler {
inline void CallCFunctionUsingStub(ExternalReference function,
int num_arguments);
+ inline Isolate* isolate() { return masm_->isolate(); }
Sven Panne 2013/04/24 06:29:46 Remove "inline", add "const".
MacroAssembler* masm_;

Powered by Google App Engine
This is Rietveld 408576698