| Index: src/isolate.h
|
| diff --git a/src/isolate.h b/src/isolate.h
|
| index a82b02c8403ba61c3e282f8478fcedf2cc95573c..7d6bcc83f21d38bdfff7d6f907c70466b5619364 100644
|
| --- a/src/isolate.h
|
| +++ b/src/isolate.h
|
| @@ -102,6 +102,7 @@ class DebuggerAgent;
|
| #endif
|
|
|
| #if !defined(__arm__) && V8_TARGET_ARCH_ARM || \
|
| + !defined(__aarch64__) && V8_TARGET_ARCH_A64 || \
|
| !defined(__mips__) && V8_TARGET_ARCH_MIPS
|
| class Redirection;
|
| class Simulator;
|
| @@ -388,6 +389,7 @@ class Isolate {
|
| stack_limit_(0),
|
| thread_state_(NULL),
|
| #if !defined(__arm__) && V8_TARGET_ARCH_ARM || \
|
| + !defined(__aarch64__) && V8_TARGET_ARCH_A64 || \
|
| !defined(__mips__) && V8_TARGET_ARCH_MIPS
|
| simulator_(NULL),
|
| #endif
|
| @@ -400,6 +402,7 @@ class Isolate {
|
| FIELD_ACCESSOR(ThreadState*, thread_state)
|
|
|
| #if !defined(__arm__) && V8_TARGET_ARCH_ARM || \
|
| + !defined(__aarch64__) && V8_TARGET_ARCH_A64 || \
|
| !defined(__mips__) && V8_TARGET_ARCH_MIPS
|
| FIELD_ACCESSOR(Simulator*, simulator)
|
| #endif
|
| @@ -415,6 +418,7 @@ class Isolate {
|
| ThreadState* thread_state_;
|
|
|
| #if !defined(__arm__) && V8_TARGET_ARCH_ARM || \
|
| + !defined(__aarch64__) && V8_TARGET_ARCH_A64 || \
|
| !defined(__mips__) && V8_TARGET_ARCH_MIPS
|
| Simulator* simulator_;
|
| #endif
|
| @@ -978,6 +982,7 @@ class Isolate {
|
| #endif
|
|
|
| #if V8_TARGET_ARCH_ARM && !defined(__arm__) || \
|
| + V8_TARGET_ARCH_A64 && !defined(__aarch64__) || \
|
| V8_TARGET_ARCH_MIPS && !defined(__mips__)
|
| FIELD_ACCESSOR(bool, simulator_initialized)
|
| FIELD_ACCESSOR(HashMap*, simulator_i_cache)
|
| @@ -1279,6 +1284,7 @@ class Isolate {
|
| double time_millis_at_init_;
|
|
|
| #if V8_TARGET_ARCH_ARM && !defined(__arm__) || \
|
| + V8_TARGET_ARCH_A64 && !defined(__aarch64__) || \
|
| V8_TARGET_ARCH_MIPS && !defined(__mips__)
|
| bool simulator_initialized_;
|
| HashMap* simulator_i_cache_;
|
|
|