| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 MaybeObject* scheduled_exception_; | 98 MaybeObject* scheduled_exception_; |
| 99 bool external_caught_exception_; | 99 bool external_caught_exception_; |
| 100 SaveContext* save_context_; | 100 SaveContext* save_context_; |
| 101 v8::TryCatch* catcher_; | 101 v8::TryCatch* catcher_; |
| 102 | 102 |
| 103 // Stack. | 103 // Stack. |
| 104 Address c_entry_fp_; // the frame pointer of the top c entry frame | 104 Address c_entry_fp_; // the frame pointer of the top c entry frame |
| 105 Address handler_; // try-blocks are chained through the stack | 105 Address handler_; // try-blocks are chained through the stack |
| 106 | 106 |
| 107 #ifdef USE_SIMULATOR | 107 #ifdef USE_SIMULATOR |
| 108 #ifdef V8_TARGET_ARCH_ARM |
| 108 assembler::arm::Simulator* simulator_; | 109 assembler::arm::Simulator* simulator_; |
| 110 #elif V8_TARGET_ARCH_MIPS |
| 111 assembler::mips::Simulator* simulator_; |
| 112 #endif |
| 109 #endif // USE_SIMULATOR | 113 #endif // USE_SIMULATOR |
| 110 | 114 |
| 111 #ifdef ENABLE_LOGGING_AND_PROFILING | 115 #ifdef ENABLE_LOGGING_AND_PROFILING |
| 112 Address js_entry_sp_; // the stack pointer of the bottom js entry frame | 116 Address js_entry_sp_; // the stack pointer of the bottom js entry frame |
| 113 #endif | 117 #endif |
| 114 | 118 |
| 115 #ifdef ENABLE_VMSTATE_TRACKING | 119 #ifdef ENABLE_VMSTATE_TRACKING |
| 116 VMState* current_vm_state_; | 120 VMState* current_vm_state_; |
| 117 #endif | 121 #endif |
| 118 | 122 |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 | 471 |
| 468 class ExecutionAccess BASE_EMBEDDED { | 472 class ExecutionAccess BASE_EMBEDDED { |
| 469 public: | 473 public: |
| 470 ExecutionAccess(); | 474 ExecutionAccess(); |
| 471 ~ExecutionAccess(); | 475 ~ExecutionAccess(); |
| 472 }; | 476 }; |
| 473 | 477 |
| 474 } } // namespace v8::internal | 478 } } // namespace v8::internal |
| 475 | 479 |
| 476 #endif // V8_TOP_H_ | 480 #endif // V8_TOP_H_ |
| OLD | NEW |