OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #include <stdlib.h> | 5 #include <stdlib.h> |
6 | 6 |
7 #include "src/v8.h" | 7 #include "src/v8.h" |
8 | 8 |
9 #include "src/ast.h" | 9 #include "src/ast.h" |
10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
(...skipping 2325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2336 v8::MicrotaskCallback callback = | 2336 v8::MicrotaskCallback callback = |
2337 v8::ToCData<v8::MicrotaskCallback>(callback_info->callback()); | 2337 v8::ToCData<v8::MicrotaskCallback>(callback_info->callback()); |
2338 void* data = v8::ToCData<void*>(callback_info->data()); | 2338 void* data = v8::ToCData<void*>(callback_info->data()); |
2339 callback(data); | 2339 callback(data); |
2340 } | 2340 } |
2341 } | 2341 } |
2342 } | 2342 } |
2343 } | 2343 } |
2344 | 2344 |
2345 | 2345 |
2346 void Isolate::SetUseCounterCallback(v8::Isolate::UseCounterCallback callback) { | |
2347 ASSERT(!use_counter_callback_); | |
2348 use_counter_callback_ = callback; | |
2349 } | |
2350 | |
2351 | |
2352 void Isolate::CountUsage(v8::Isolate::UseCounterFeature feature) { | |
2353 if (use_counter_callback_) | |
Sven Panne
2014/06/23 09:29:39
Following the good example of the Heartbleed bug h
| |
2354 use_counter_callback_(reinterpret_cast<v8::Isolate*>(this), feature); | |
2355 } | |
2356 | |
2357 | |
2346 bool StackLimitCheck::JsHasOverflowed() const { | 2358 bool StackLimitCheck::JsHasOverflowed() const { |
2347 StackGuard* stack_guard = isolate_->stack_guard(); | 2359 StackGuard* stack_guard = isolate_->stack_guard(); |
2348 #ifdef USE_SIMULATOR | 2360 #ifdef USE_SIMULATOR |
2349 // The simulator uses a separate JS stack. | 2361 // The simulator uses a separate JS stack. |
2350 Address jssp_address = Simulator::current(isolate_)->get_sp(); | 2362 Address jssp_address = Simulator::current(isolate_)->get_sp(); |
2351 uintptr_t jssp = reinterpret_cast<uintptr_t>(jssp_address); | 2363 uintptr_t jssp = reinterpret_cast<uintptr_t>(jssp_address); |
2352 if (jssp < stack_guard->real_jslimit()) return true; | 2364 if (jssp < stack_guard->real_jslimit()) return true; |
2353 #endif // USE_SIMULATOR | 2365 #endif // USE_SIMULATOR |
2354 return reinterpret_cast<uintptr_t>(this) < stack_guard->real_climit(); | 2366 return reinterpret_cast<uintptr_t>(this) < stack_guard->real_climit(); |
2355 } | 2367 } |
2356 | 2368 |
2357 | 2369 |
2358 } } // namespace v8::internal | 2370 } } // namespace v8::internal |
OLD | NEW |