| Index: src/ppc/macro-assembler-ppc.h
|
| diff --git a/src/ppc/macro-assembler-ppc.h b/src/ppc/macro-assembler-ppc.h
|
| index d911509918d8acf3f91db6cfba2fa484c9849bbb..8354caffebf869018e0a284236bc744953b5b5fd 100644
|
| --- a/src/ppc/macro-assembler-ppc.h
|
| +++ b/src/ppc/macro-assembler-ppc.h
|
| @@ -111,6 +111,7 @@ class MacroAssembler : public Assembler {
|
| MacroAssembler(Isolate* isolate, void* buffer, int size,
|
| CodeObjectRequired create_code_object);
|
|
|
| + Isolate* isolate() const { return isolate_; }
|
|
|
| // Returns the size of a call in instructions. Note, the value returned is
|
| // only valid as long as no entries are added to the constant pool between
|
| @@ -1509,6 +1510,7 @@ class MacroAssembler : public Assembler {
|
|
|
| bool generating_stub_;
|
| bool has_frame_;
|
| + Isolate* isolate_;
|
| // This handle will be patched with the code object on installation.
|
| Handle<Object> code_object_;
|
|
|
| @@ -1517,7 +1519,6 @@ class MacroAssembler : public Assembler {
|
| friend class StandardFrame;
|
| };
|
|
|
| -
|
| // The code patcher is used to patch (typically) small parts of code e.g. for
|
| // debugging and other types of instrumentation. When using the code patcher
|
| // the exact number of bytes specified must be emitted. It is not legal to emit
|
|
|