| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_ISOLATE_H_ | 5 #ifndef V8_ISOLATE_H_ |
| 6 #define V8_ISOLATE_H_ | 6 #define V8_ISOLATE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <queue> | 9 #include <queue> |
| 10 | 10 |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 | 354 |
| 355 private: | 355 private: |
| 356 void InitializeInternal(); | 356 void InitializeInternal(); |
| 357 | 357 |
| 358 v8::TryCatch* try_catch_handler_; | 358 v8::TryCatch* try_catch_handler_; |
| 359 }; | 359 }; |
| 360 | 360 |
| 361 | 361 |
| 362 #if USE_SIMULATOR | 362 #if USE_SIMULATOR |
| 363 | 363 |
| 364 #define ISOLATE_INIT_SIMULATOR_LIST(V) \ | 364 #define ISOLATE_INIT_SIMULATOR_LIST(V) \ |
| 365 V(bool, simulator_initialized, false) \ | 365 V(bool, simulator_initialized, false) \ |
| 366 V(base::HashMap*, simulator_i_cache, NULL) \ | 366 V(base::CustomMatcherHashMap*, simulator_i_cache, NULL) \ |
| 367 V(Redirection*, simulator_redirection, NULL) | 367 V(Redirection*, simulator_redirection, NULL) |
| 368 #else | 368 #else |
| 369 | 369 |
| 370 #define ISOLATE_INIT_SIMULATOR_LIST(V) | 370 #define ISOLATE_INIT_SIMULATOR_LIST(V) |
| 371 | 371 |
| 372 #endif | 372 #endif |
| 373 | 373 |
| 374 | 374 |
| 375 #ifdef DEBUG | 375 #ifdef DEBUG |
| 376 | 376 |
| (...skipping 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1672 | 1672 |
| 1673 EmbeddedVector<char, 128> filename_; | 1673 EmbeddedVector<char, 128> filename_; |
| 1674 FILE* file_; | 1674 FILE* file_; |
| 1675 int scope_depth_; | 1675 int scope_depth_; |
| 1676 }; | 1676 }; |
| 1677 | 1677 |
| 1678 } // namespace internal | 1678 } // namespace internal |
| 1679 } // namespace v8 | 1679 } // namespace v8 |
| 1680 | 1680 |
| 1681 #endif // V8_ISOLATE_H_ | 1681 #endif // V8_ISOLATE_H_ |
| OLD | NEW |