blob: da912b74698af9eff87092c05a181bf27cc27dcd [file] [log] [blame]
Steve Block6ded16b2010-05-10 14:33:55 +01001// Copyright 2010 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_VM_STATE_INL_H_
29#define V8_VM_STATE_INL_H_
30
31#include "vm-state.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010032#include "runtime-profiler.h"
Steve Block6ded16b2010-05-10 14:33:55 +010033
34namespace v8 {
35namespace internal {
36
37//
38// VMState class implementation. A simple stack of VM states held by the
39// logger and partially threaded through the call stack. States are pushed by
40// VMState construction and popped by destruction.
41//
42#ifdef ENABLE_VMSTATE_TRACKING
43inline const char* StateToString(StateTag state) {
44 switch (state) {
45 case JS:
46 return "JS";
47 case GC:
48 return "GC";
49 case COMPILER:
50 return "COMPILER";
51 case OTHER:
52 return "OTHER";
Ben Murdochb0fe1622011-05-05 13:52:32 +010053 case EXTERNAL:
54 return "EXTERNAL";
Steve Block6ded16b2010-05-10 14:33:55 +010055 default:
56 UNREACHABLE();
57 return NULL;
58 }
59}
60
Ben Murdochb0fe1622011-05-05 13:52:32 +010061VMState::VMState(StateTag tag) : previous_tag_(Top::current_vm_state()) {
Steve Block6ded16b2010-05-10 14:33:55 +010062#ifdef ENABLE_LOGGING_AND_PROFILING
63 if (FLAG_log_state_changes) {
Ben Murdochb0fe1622011-05-05 13:52:32 +010064 LOG(UncheckedStringEvent("Entering", StateToString(tag)));
65 LOG(UncheckedStringEvent("From", StateToString(previous_tag_)));
Steve Block6ded16b2010-05-10 14:33:55 +010066 }
67#endif
68
Ben Murdochb0fe1622011-05-05 13:52:32 +010069 Top::SetCurrentVMState(tag);
70
Steve Block6ded16b2010-05-10 14:33:55 +010071#ifdef ENABLE_HEAP_PROTECTION
72 if (FLAG_protect_heap) {
Ben Murdochb0fe1622011-05-05 13:52:32 +010073 if (tag == EXTERNAL) {
Steve Block6ded16b2010-05-10 14:33:55 +010074 // We are leaving V8.
Ben Murdochb0fe1622011-05-05 13:52:32 +010075 ASSERT(previous_tag_ != EXTERNAL);
Steve Block6ded16b2010-05-10 14:33:55 +010076 Heap::Protect();
Ben Murdochb0fe1622011-05-05 13:52:32 +010077 } else if (previous_tag_ = EXTERNAL) {
Steve Block6ded16b2010-05-10 14:33:55 +010078 // We are entering V8.
79 Heap::Unprotect();
80 }
81 }
82#endif
83}
84
85
86VMState::~VMState() {
Steve Block6ded16b2010-05-10 14:33:55 +010087#ifdef ENABLE_LOGGING_AND_PROFILING
88 if (FLAG_log_state_changes) {
Ben Murdochb0fe1622011-05-05 13:52:32 +010089 LOG(UncheckedStringEvent("Leaving",
90 StateToString(Top::current_vm_state())));
91 LOG(UncheckedStringEvent("To", StateToString(previous_tag_)));
Steve Block6ded16b2010-05-10 14:33:55 +010092 }
93#endif // ENABLE_LOGGING_AND_PROFILING
94
95#ifdef ENABLE_HEAP_PROTECTION
Ben Murdochb0fe1622011-05-05 13:52:32 +010096 StateTag tag = Top::current_vm_state();
97#endif
98
99 Top::SetCurrentVMState(previous_tag_);
100
101#ifdef ENABLE_HEAP_PROTECTION
Steve Block6ded16b2010-05-10 14:33:55 +0100102 if (FLAG_protect_heap) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100103 if (tag == EXTERNAL) {
Steve Block6ded16b2010-05-10 14:33:55 +0100104 // We are reentering V8.
Ben Murdochb0fe1622011-05-05 13:52:32 +0100105 ASSERT(previous_tag_ != EXTERNAL);
Steve Block6ded16b2010-05-10 14:33:55 +0100106 Heap::Unprotect();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100107 } else if (previous_tag_ == EXTERNAL) {
Steve Block6ded16b2010-05-10 14:33:55 +0100108 // We are leaving V8.
109 Heap::Protect();
110 }
111 }
112#endif // ENABLE_HEAP_PROTECTION
113}
Ben Murdochb0fe1622011-05-05 13:52:32 +0100114
Steve Block6ded16b2010-05-10 14:33:55 +0100115#endif // ENABLE_VMSTATE_TRACKING
116
Ben Murdochb0fe1622011-05-05 13:52:32 +0100117
118#ifdef ENABLE_LOGGING_AND_PROFILING
119
120ExternalCallbackScope::ExternalCallbackScope(Address callback)
121 : previous_callback_(Top::external_callback()) {
122 Top::set_external_callback(callback);
123}
124
125ExternalCallbackScope::~ExternalCallbackScope() {
126 Top::set_external_callback(previous_callback_);
127}
128
129#endif // ENABLE_LOGGING_AND_PROFILING
130
131
Steve Block6ded16b2010-05-10 14:33:55 +0100132} } // namespace v8::internal
133
134#endif // V8_VM_STATE_INL_H_