OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 Address HandleScope::current_next_address(Isolate* isolate) { | 117 Address HandleScope::current_next_address(Isolate* isolate) { |
118 return reinterpret_cast<Address>(&isolate->handle_scope_data()->next); | 118 return reinterpret_cast<Address>(&isolate->handle_scope_data()->next); |
119 } | 119 } |
120 | 120 |
121 | 121 |
122 Address HandleScope::current_limit_address(Isolate* isolate) { | 122 Address HandleScope::current_limit_address(Isolate* isolate) { |
123 return reinterpret_cast<Address>(&isolate->handle_scope_data()->limit); | 123 return reinterpret_cast<Address>(&isolate->handle_scope_data()->limit); |
124 } | 124 } |
125 | 125 |
126 | 126 |
127 Handle<JSGlobalProxy> ReinitializeJSGlobalProxy( | |
128 Handle<JSFunction> constructor, | |
129 Handle<JSGlobalProxy> global) { | |
130 CALL_HEAP_FUNCTION( | |
131 constructor->GetIsolate(), | |
132 constructor->GetHeap()->ReinitializeJSGlobalProxy(*constructor, *global), | |
133 JSGlobalProxy); | |
134 } | |
135 | |
136 | |
137 MaybeHandle<Object> GetProperty(Handle<JSReceiver> obj, | 127 MaybeHandle<Object> GetProperty(Handle<JSReceiver> obj, |
138 const char* name) { | 128 const char* name) { |
139 Isolate* isolate = obj->GetIsolate(); | 129 Isolate* isolate = obj->GetIsolate(); |
140 Handle<String> str = isolate->factory()->InternalizeUtf8String(name); | 130 Handle<String> str = isolate->factory()->InternalizeUtf8String(name); |
141 ASSERT(!str.is_null()); | 131 ASSERT(!str.is_null()); |
142 return Object::GetPropertyOrElement(obj, str); | 132 return Object::GetPropertyOrElement(obj, str); |
143 } | 133 } |
144 | 134 |
145 | 135 |
146 // Wrappers for scripts are kept alive and cached in weak global | 136 // Wrappers for scripts are kept alive and cached in weak global |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 Handle<Code> code) { | 684 Handle<Code> code) { |
695 heap->EnsureWeakObjectToCodeTable(); | 685 heap->EnsureWeakObjectToCodeTable(); |
696 Handle<DependentCode> dep(heap->LookupWeakObjectToCodeDependency(*object)); | 686 Handle<DependentCode> dep(heap->LookupWeakObjectToCodeDependency(*object)); |
697 dep = DependentCode::Insert(dep, DependentCode::kWeakCodeGroup, code); | 687 dep = DependentCode::Insert(dep, DependentCode::kWeakCodeGroup, code); |
698 CALL_HEAP_FUNCTION_VOID(heap->isolate(), | 688 CALL_HEAP_FUNCTION_VOID(heap->isolate(), |
699 heap->AddWeakObjectToCodeDependency(*object, *dep)); | 689 heap->AddWeakObjectToCodeDependency(*object, *dep)); |
700 } | 690 } |
701 | 691 |
702 | 692 |
703 } } // namespace v8::internal | 693 } } // namespace v8::internal |
OLD | NEW |