Home | History | Annotate | Download | only in src

Lines Matching defs:isolate

55   explicit SlidingStateWindow(Isolate* isolate);
86 explicit Profiler(Isolate* isolate);
148 void StackTracer::Trace(Isolate* isolate, TickSample* sample) {
149 ASSERT(isolate->IsInitialized());
159 Isolate::js_entry_sp(isolate->thread_local_top());
165 const Address callback = isolate->external_callback();
176 SafeStackTraceFrameIterator it(isolate,
194 Ticker(Isolate* isolate, int interval):
195 Sampler(isolate, interval),
231 StackTracer::Trace(isolate(), sample);
243 SlidingStateWindow::SlidingStateWindow(Isolate* isolate)
244 : counters_(isolate->counters()), current_index_(0), is_full_(false) {
248 isolate->logger()->ticker_->SetWindow(this);
273 Profiler::Profiler(Isolate* isolate)
274 : Thread(isolate, "v8:Profiler"),
322 LOG(ISOLATE, UncheckedStringEvent("profiler", "end"));
329 i::Isolate* isolate = ISOLATE;
331 LOG(isolate, TickEvent(&sample, overflow));
792 if (code == Isolate::Current()->builtins()->builtin(
1182 LOG(ISOLATE, UncheckedStringEvent("profiler", "pause"));
1210 LOG(ISOLATE, UncheckedStringEvent("profiler", "resume"));
1365 PROFILE(ISOLATE, CodeCreateEvent(tag, code_object, description));
1419 if (*code_objects[i] == Isolate::Current()->builtins()->builtin(
1430 PROFILE(ISOLATE,
1437 PROFILE(ISOLATE,
1443 PROFILE(ISOLATE,
1456 PROFILE(ISOLATE, CallbackEvent(*func_name, entry_point));
1459 PROFILE(ISOLATE,
1471 i::Isolate* isolate = ISOLATE;
1479 PROFILE(isolate, GetterCallbackEvent(name, getter_entry));
1483 PROFILE(isolate, SetterCallbackEvent(name, setter_entry));
1517 ticker_ = new Ticker(Isolate::Current(), kSamplingIntervalMs);
1519 Isolate* isolate = Isolate::Current();
1521 sliding_state_window_ = new SlidingStateWindow(isolate);
1533 profiler_ = new Profiler(isolate);
1608 sliding_state_window_ = new SlidingStateWindow(Isolate::Current());