OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_INL_H_ | 5 #ifndef V8_ISOLATE_INL_H_ |
6 #define V8_ISOLATE_INL_H_ | 6 #define V8_ISOLATE_INL_H_ |
7 | 7 |
8 #include "src/isolate.h" | 8 #include "src/isolate.h" |
9 #include "src/objects-inl.h" | 9 #include "src/objects-inl.h" |
10 | 10 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 thread_local_top_.scheduled_exception_ = heap_.the_hole_value(); | 66 thread_local_top_.scheduled_exception_ = heap_.the_hole_value(); |
67 } | 67 } |
68 | 68 |
69 | 69 |
70 bool Isolate::is_catchable_by_javascript(Object* exception) { | 70 bool Isolate::is_catchable_by_javascript(Object* exception) { |
71 return exception != heap()->termination_exception(); | 71 return exception != heap()->termination_exception(); |
72 } | 72 } |
73 | 73 |
74 | 74 |
75 Handle<JSGlobalObject> Isolate::global_object() { | 75 Handle<JSGlobalObject> Isolate::global_object() { |
76 return Handle<JSGlobalObject>(context()->global_object()); | 76 return Handle<JSGlobalObject>(context()->global_object(), this); |
77 } | 77 } |
78 | 78 |
79 | 79 |
80 Isolate::ExceptionScope::ExceptionScope(Isolate* isolate) | 80 Isolate::ExceptionScope::ExceptionScope(Isolate* isolate) |
81 : isolate_(isolate), | 81 : isolate_(isolate), |
82 pending_exception_(isolate_->pending_exception(), isolate_) {} | 82 pending_exception_(isolate_->pending_exception(), isolate_) {} |
83 | 83 |
84 | 84 |
85 Isolate::ExceptionScope::~ExceptionScope() { | 85 Isolate::ExceptionScope::~ExceptionScope() { |
86 isolate_->set_pending_exception(*pending_exception_); | 86 isolate_->set_pending_exception(*pending_exception_); |
87 } | 87 } |
88 | 88 |
89 | 89 |
90 #define NATIVE_CONTEXT_FIELD_ACCESSOR(index, type, name) \ | 90 #define NATIVE_CONTEXT_FIELD_ACCESSOR(index, type, name) \ |
91 Handle<type> Isolate::name() { \ | 91 Handle<type> Isolate::name() { \ |
92 return Handle<type>(native_context()->name(), this); \ | 92 return Handle<type>(native_context()->name(), this); \ |
93 } \ | 93 } \ |
94 bool Isolate::is_##name(type* value) { \ | 94 bool Isolate::is_##name(type* value) { \ |
95 return native_context()->is_##name(value); \ | 95 return native_context()->is_##name(value); \ |
96 } | 96 } |
97 NATIVE_CONTEXT_FIELDS(NATIVE_CONTEXT_FIELD_ACCESSOR) | 97 NATIVE_CONTEXT_FIELDS(NATIVE_CONTEXT_FIELD_ACCESSOR) |
98 #undef NATIVE_CONTEXT_FIELD_ACCESSOR | 98 #undef NATIVE_CONTEXT_FIELD_ACCESSOR |
99 | 99 |
100 | 100 |
101 } // namespace internal | 101 } // namespace internal |
102 } // namespace v8 | 102 } // namespace v8 |
103 | 103 |
104 #endif // V8_ISOLATE_INL_H_ | 104 #endif // V8_ISOLATE_INL_H_ |
OLD | NEW |