Lines Matching refs:ISOLATE
54 explicit SlidingStateWindow(Isolate* isolate);
85 explicit Profiler(Isolate* isolate);
124 Isolate* isolate_;
148 void StackTracer::Trace(Isolate* isolate, TickSample* sample) {
149 ASSERT(isolate->IsInitialized());
155 Isolate::js_entry_sp(isolate->thread_local_top());
161 const Address callback = isolate->external_callback();
172 SafeStackTraceFrameIterator it(isolate,
190 Ticker(Isolate* isolate, int interval):
191 Sampler(isolate, interval),
227 StackTracer::Trace(isolate(), sample);
239 SlidingStateWindow::SlidingStateWindow(Isolate* isolate)
240 : counters_(isolate->counters()), current_index_(0), is_full_(false) {
244 isolate->logger()->ticker_->SetWindow(this);
269 Profiler::Profiler(Isolate* isolate)
271 isolate_(isolate),
319 LOG(ISOLATE, UncheckedStringEvent("profiler", "end"));
958 if (code == Isolate::Current()->builtins()->builtin(
1287 LOG(ISOLATE, UncheckedStringEvent("profiler", "pause"));
1302 LOG(ISOLATE, UncheckedStringEvent("profiler", "resume"));
1443 PROFILE(ISOLATE, CodeCreateEvent(tag, code_object, description));
1546 PROFILE(ISOLATE,
1553 PROFILE(ISOLATE,
1559 PROFILE(ISOLATE,
1572 PROFILE(ISOLATE, CallbackEvent(*func_name, entry_point));
1575 PROFILE(ISOLATE,
1594 if (*code_objects[i] == Isolate::Current()->builtins()->builtin(
1614 PROFILE(ISOLATE, GetterCallbackEvent(name, getter_entry));
1618 PROFILE(ISOLATE, SetterCallbackEvent(name, setter_entry));
1648 Isolate* isolate = Isolate::Current();
1649 ticker_ = new Ticker(isolate, kSamplingIntervalMs);
1652 sliding_state_window_ = new SlidingStateWindow(isolate);
1664 profiler_ = new Profiler(isolate);
1728 sliding_state_window_ = new SlidingStateWindow(Isolate::Current());