Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: src/api.cc

Issue 16578008: Improved function entry hook coverage (Closed) Base URL: https://chromium.googlesource.com/external/v8.git@post_fix
Patch Set: Remove reliance on space->Contains check, which is only valid for V8-allocated memory. Go to unsign… Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 } 289 }
290 290
291 291
292 static inline bool EmptyCheck(const char* location, const v8::Data* obj) { 292 static inline bool EmptyCheck(const char* location, const v8::Data* obj) {
293 return (obj == 0) ? ReportEmptyHandle(location) : false; 293 return (obj == 0) ? ReportEmptyHandle(location) : false;
294 } 294 }
295 295
296 // --- S t a t i c s --- 296 // --- S t a t i c s ---
297 297
298 298
299 static bool InitializeHelper() { 299 static bool InitializeHelper(i::Isolate* isolate) {
300 if (i::Snapshot::Initialize()) return true; 300 // If the isolate has a function entry hook, it needs to re-build all its
301 // code stubs with entry hooks embedded, so let's deserialize a snapshot.
302 if (isolate == NULL || isolate->function_entry_hook() == NULL) {
303 if (i::Snapshot::Initialize())
304 return true;
305 }
301 return i::V8::Initialize(NULL); 306 return i::V8::Initialize(NULL);
302 } 307 }
303 308
304 309
305 static inline bool EnsureInitializedForIsolate(i::Isolate* isolate, 310 static inline bool EnsureInitializedForIsolate(i::Isolate* isolate,
306 const char* location) { 311 const char* location) {
307 if (IsDeadCheck(isolate, location)) return false; 312 if (IsDeadCheck(isolate, location)) return false;
308 if (isolate != NULL) { 313 if (isolate != NULL) {
309 if (isolate->IsInitialized()) return true; 314 if (isolate->IsInitialized()) return true;
310 } 315 }
311 ASSERT(isolate == i::Isolate::Current()); 316 ASSERT(isolate == i::Isolate::Current());
312 return ApiCheck(InitializeHelper(), location, "Error initializing V8"); 317 return ApiCheck(InitializeHelper(isolate), location, "Error initializing V8");
313 } 318 }
314 319
315 // Some initializing API functions are called early and may be 320 // Some initializing API functions are called early and may be
316 // called on a thread different from static initializer thread. 321 // called on a thread different from static initializer thread.
317 // If Isolate API is used, Isolate::Enter() will initialize TLS so 322 // If Isolate API is used, Isolate::Enter() will initialize TLS so
318 // Isolate::Current() works. If it's a legacy case, then the thread 323 // Isolate::Current() works. If it's a legacy case, then the thread
319 // may not have TLS initialized yet. However, in initializing APIs it 324 // may not have TLS initialized yet. However, in initializing APIs it
320 // may be too early to call EnsureInitialized() - some pre-init 325 // may be too early to call EnsureInitialized() - some pre-init
321 // parameters still have to be configured. 326 // parameters still have to be configured.
322 static inline i::Isolate* EnterIsolateIfNeeded() { 327 static inline i::Isolate* EnterIsolateIfNeeded() {
(...skipping 4802 matching lines...) Expand 10 before | Expand all | Expand 10 after
5125 5130
5126 5131
5127 // --- E n v i r o n m e n t --- 5132 // --- E n v i r o n m e n t ---
5128 5133
5129 5134
5130 bool v8::V8::Initialize() { 5135 bool v8::V8::Initialize() {
5131 i::Isolate* isolate = i::Isolate::UncheckedCurrent(); 5136 i::Isolate* isolate = i::Isolate::UncheckedCurrent();
5132 if (isolate != NULL && isolate->IsInitialized()) { 5137 if (isolate != NULL && isolate->IsInitialized()) {
5133 return true; 5138 return true;
5134 } 5139 }
5135 return InitializeHelper(); 5140 return InitializeHelper(isolate);
5136 } 5141 }
5137 5142
5138 5143
5139 void v8::V8::SetEntropySource(EntropySource source) { 5144 void v8::V8::SetEntropySource(EntropySource source) {
5140 i::V8::SetEntropySource(source); 5145 i::V8::SetEntropySource(source);
5141 } 5146 }
5142 5147
5143 5148
5144 void v8::V8::SetReturnAddressLocationResolver( 5149 void v8::V8::SetReturnAddressLocationResolver(
5145 ReturnAddressLocationResolver return_address_resolver) { 5150 ReturnAddressLocationResolver return_address_resolver) {
5146 i::V8::SetReturnAddressLocationResolver(return_address_resolver); 5151 i::V8::SetReturnAddressLocationResolver(return_address_resolver);
5147 } 5152 }
5148 5153
5149 5154
5150 bool v8::V8::SetFunctionEntryHook(FunctionEntryHook entry_hook) { 5155 bool v8::V8::SetFunctionEntryHook(FunctionEntryHook entry_hook) {
5151 return i::ProfileEntryHookStub::SetFunctionEntryHook(entry_hook); 5156 return SetFunctionEntryHook(Isolate::GetCurrent(), entry_hook);
5152 } 5157 }
5153 5158
5154 5159
5160 bool v8::V8::SetFunctionEntryHook(Isolate* ext_isolate,
5161 FunctionEntryHook entry_hook) {
5162 ASSERT(ext_isolate != NULL);
5163 ASSERT(entry_hook != NULL);
5164
5165 i::Isolate* isolate = reinterpret_cast<i::Isolate*>(ext_isolate);
5166
5167 // The entry hook can only be set before the Isolate is initialized, as
5168 // otherwise the Isolate's code stubs generated at initialization won't
5169 // contain entry hooks.
5170 if (isolate->IsInitialized())
5171 return false;
5172
5173 // Setting an entry hook is a one-way operation, once set, it cannot be
5174 // changed or unset.
5175 if (isolate->function_entry_hook() != NULL)
5176 return false;
5177
5178 isolate->set_function_entry_hook(entry_hook);
5179 return true;
5180 }
5181
5182
5155 void v8::V8::SetJitCodeEventHandler( 5183 void v8::V8::SetJitCodeEventHandler(
5156 JitCodeEventOptions options, JitCodeEventHandler event_handler) { 5184 JitCodeEventOptions options, JitCodeEventHandler event_handler) {
5157 i::Isolate* isolate = i::Isolate::Current(); 5185 i::Isolate* isolate = i::Isolate::Current();
5158 // Ensure that logging is initialized for our isolate. 5186 // Ensure that logging is initialized for our isolate.
5159 isolate->InitializeLoggingAndCounters(); 5187 isolate->InitializeLoggingAndCounters();
5160 isolate->logger()->SetCodeEventHandler(options, event_handler); 5188 isolate->logger()->SetCodeEventHandler(options, event_handler);
5161 } 5189 }
5162 5190
5163 void v8::V8::SetArrayBufferAllocator( 5191 void v8::V8::SetArrayBufferAllocator(
5164 ArrayBuffer::Allocator* allocator) { 5192 ArrayBuffer::Allocator* allocator) {
(...skipping 2831 matching lines...) Expand 10 before | Expand all | Expand 10 after
7996 8024
7997 v->VisitPointers(blocks_.first(), first_block_limit_); 8025 v->VisitPointers(blocks_.first(), first_block_limit_);
7998 8026
7999 for (int i = 1; i < blocks_.length(); i++) { 8027 for (int i = 1; i < blocks_.length(); i++) {
8000 v->VisitPointers(blocks_[i], &blocks_[i][kHandleBlockSize]); 8028 v->VisitPointers(blocks_[i], &blocks_[i][kHandleBlockSize]);
8001 } 8029 }
8002 } 8030 }
8003 8031
8004 8032
8005 } } // namespace v8::internal 8033 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/arm/builtins-arm.cc » ('j') | src/bootstrapper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698