| Index: src/isolate.h
|
| diff --git a/src/isolate.h b/src/isolate.h
|
| index f5a94aa5eba0afeea570ddcd7621de36b8b48f06..f6974ce14f7e007a0d6a37c5ee01bbd347a54a84 100644
|
| --- a/src/isolate.h
|
| +++ b/src/isolate.h
|
| @@ -101,8 +101,8 @@ class Debugger;
|
| class DebuggerAgent;
|
| #endif
|
|
|
| -#if !defined(__arm__) && V8_TARGET_ARCH_A64 || \
|
| - !defined(__arm__) && V8_TARGET_ARCH_ARM || \
|
| +#if !defined(__arm__) && V8_TARGET_ARCH_ARM || \
|
| + !defined(__aarch64__) && V8_TARGET_ARCH_A64 || \
|
| !defined(__mips__) && V8_TARGET_ARCH_MIPS
|
| class Redirection;
|
| class Simulator;
|
| @@ -394,7 +394,7 @@ class Isolate {
|
| stack_limit_(0),
|
| thread_state_(NULL),
|
| #if !defined(__arm__) && V8_TARGET_ARCH_ARM || \
|
| - !defined(__arm__) && V8_TARGET_ARCH_A64 || \
|
| + !defined(__aarch64__) && V8_TARGET_ARCH_A64 || \
|
| !defined(__mips__) && V8_TARGET_ARCH_MIPS
|
| simulator_(NULL),
|
| #endif
|
| @@ -408,7 +408,7 @@ class Isolate {
|
| void set_thread_state(ThreadState* value) { thread_state_ = value; }
|
|
|
| #if !defined(__arm__) && V8_TARGET_ARCH_ARM || \
|
| - !defined(__arm__) && V8_TARGET_ARCH_A64 || \
|
| + !defined(__aarch64__) && V8_TARGET_ARCH_A64 || \
|
| !defined(__mips__) && V8_TARGET_ARCH_MIPS
|
| Simulator* simulator() const { return simulator_; }
|
| void set_simulator(Simulator* simulator) {
|
| @@ -427,7 +427,7 @@ class Isolate {
|
| ThreadState* thread_state_;
|
|
|
| #if !defined(__arm__) && V8_TARGET_ARCH_ARM || \
|
| - !defined(__arm__) && V8_TARGET_ARCH_A64 || \
|
| + !defined(__aarch64__) && V8_TARGET_ARCH_A64 || \
|
| !defined(__mips__) && V8_TARGET_ARCH_MIPS
|
| Simulator* simulator_;
|
| #endif
|
| @@ -1004,7 +1004,7 @@ class Isolate {
|
| #endif
|
|
|
| #if V8_TARGET_ARCH_ARM && !defined(__arm__) || \
|
| - V8_TARGET_ARCH_A64 && !defined(__arm__) || \
|
| + V8_TARGET_ARCH_A64 && !defined(__aarch64__) || \
|
| V8_TARGET_ARCH_MIPS && !defined(__mips__)
|
| bool simulator_initialized() { return simulator_initialized_; }
|
| void set_simulator_initialized(bool initialized) {
|
| @@ -1313,7 +1313,7 @@ class Isolate {
|
| double time_millis_at_init_;
|
|
|
| #if V8_TARGET_ARCH_ARM && !defined(__arm__) || \
|
| - V8_TARGET_ARCH_A64 && !defined(__arm__) || \
|
| + V8_TARGET_ARCH_A64 && !defined(__aarch64__) || \
|
| V8_TARGET_ARCH_MIPS && !defined(__mips__)
|
| bool simulator_initialized_;
|
| HashMap* simulator_i_cache_;
|
|
|