Sha256: 9cb28a0e012b7cf830e071e7a5171373b5cf2c41ad6097bc7592ab861d028bfb

Contents?: true

Size: 1.5 KB

Versions: 9

Compression:

Stored size: 1.5 KB

Contents

// Copyright 2006-2009 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef V8_LOG_INL_H_
#define V8_LOG_INL_H_

#include "src/log.h"
#include "src/isolate.h"
#include "src/objects-inl.h"
#include "src/tracing/trace-event.h"

namespace v8 {
namespace internal {

CodeEventListener::LogEventsAndTags Logger::ToNativeByScript(
    CodeEventListener::LogEventsAndTags tag, Script* script) {
  if (script->type() != Script::TYPE_NATIVE) return tag;
  switch (tag) {
    case CodeEventListener::FUNCTION_TAG:
      return CodeEventListener::NATIVE_FUNCTION_TAG;
    case CodeEventListener::LAZY_COMPILE_TAG:
      return CodeEventListener::NATIVE_LAZY_COMPILE_TAG;
    case CodeEventListener::SCRIPT_TAG:
      return CodeEventListener::NATIVE_SCRIPT_TAG;
    default:
      return tag;
  }
}

void Logger::CallEventLogger(Isolate* isolate, const char* name, StartEnd se,
                             bool expose_to_api) {
  if (isolate->event_logger()) {
    if (isolate->event_logger() == DefaultEventLoggerSentinel) {
      LOG(isolate, TimerEvent(se, name));
    } else if (expose_to_api) {
      isolate->event_logger()(name, se);
    }
  }
}

template <class TimerEvent>
void TimerEventScope<TimerEvent>::LogTimerEvent(Logger::StartEnd se) {
  Logger::CallEventLogger(isolate_, TimerEvent::name(), se,
                          TimerEvent::expose_to_api());
}

}  // namespace internal
}  // namespace v8

#endif  // V8_LOG_INL_H_

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
libv8-6.0.286.54.1 vendor/v8/src/log-inl.h
libv8-6.0.286.54.0 vendor/v8/src/log-inl.h
libv8-6.0.286.54.0beta2 vendor/v8/src/log-inl.h
libv8-6.0.286.54.0beta1 vendor/v8/src/log-inl.h
libv8-6.0.286.44.0beta1 vendor/v8/src/log-inl.h
node-compiler-0.9.1 vendor/node/deps/v8/src/log-inl.h
node-compiler-0.9.0 vendor/node-v7.2.1/deps/v8/src/log-inl.h
node-compiler-0.8.0 vendor/node-v7.2.0/deps/v8/src/log-inl.h
node-compiler-0.7.0 vendor/node-v7.1.0/deps/v8/src/log-inl.h