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(), this); | 76 return handle(context()->global_object(), this); |
| 77 } |
| 78 |
| 79 Handle<JSObject> Isolate::global_proxy() { |
| 80 return handle(context()->global_proxy(), this); |
77 } | 81 } |
78 | 82 |
79 | 83 |
80 Isolate::ExceptionScope::ExceptionScope(Isolate* isolate) | 84 Isolate::ExceptionScope::ExceptionScope(Isolate* isolate) |
81 : isolate_(isolate), | 85 : isolate_(isolate), |
82 pending_exception_(isolate_->pending_exception(), isolate_) {} | 86 pending_exception_(isolate_->pending_exception(), isolate_) {} |
83 | 87 |
84 | 88 |
85 Isolate::ExceptionScope::~ExceptionScope() { | 89 Isolate::ExceptionScope::~ExceptionScope() { |
86 isolate_->set_pending_exception(*pending_exception_); | 90 isolate_->set_pending_exception(*pending_exception_); |
87 } | 91 } |
88 | 92 |
89 | 93 |
90 #define NATIVE_CONTEXT_FIELD_ACCESSOR(index, type, name) \ | 94 #define NATIVE_CONTEXT_FIELD_ACCESSOR(index, type, name) \ |
91 Handle<type> Isolate::name() { \ | 95 Handle<type> Isolate::name() { \ |
92 return Handle<type>(native_context()->name(), this); \ | 96 return Handle<type>(native_context()->name(), this); \ |
93 } \ | 97 } \ |
94 bool Isolate::is_##name(type* value) { \ | 98 bool Isolate::is_##name(type* value) { \ |
95 return native_context()->is_##name(value); \ | 99 return native_context()->is_##name(value); \ |
96 } | 100 } |
97 NATIVE_CONTEXT_FIELDS(NATIVE_CONTEXT_FIELD_ACCESSOR) | 101 NATIVE_CONTEXT_FIELDS(NATIVE_CONTEXT_FIELD_ACCESSOR) |
98 #undef NATIVE_CONTEXT_FIELD_ACCESSOR | 102 #undef NATIVE_CONTEXT_FIELD_ACCESSOR |
99 | 103 |
100 | 104 |
101 } // namespace internal | 105 } // namespace internal |
102 } // namespace v8 | 106 } // namespace v8 |
103 | 107 |
104 #endif // V8_ISOLATE_INL_H_ | 108 #endif // V8_ISOLATE_INL_H_ |
OLD | NEW |