2009-05-28 07:08:09 +00:00
|
|
|
// Copyright 2009 the V8 project authors. All rights reserved.
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#include "v8.h"
|
|
|
|
|
|
|
|
#include "log-utils.h"
|
2011-03-18 20:35:07 +00:00
|
|
|
#include "string-stream.h"
|
2009-05-28 07:08:09 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
2009-05-28 13:56:32 +00:00
|
|
|
|
2011-08-05 11:32:46 +00:00
|
|
|
const char* const Log::kLogToTemporaryFile = "&";
|
2009-05-28 13:56:32 +00:00
|
|
|
|
2011-03-18 20:35:07 +00:00
|
|
|
|
|
|
|
Log::Log(Logger* logger)
|
2011-07-13 11:31:22 +00:00
|
|
|
: is_stopped_(false),
|
2011-03-18 20:35:07 +00:00
|
|
|
output_handle_(NULL),
|
2011-04-29 16:06:25 +00:00
|
|
|
ll_output_handle_(NULL),
|
2011-03-18 20:35:07 +00:00
|
|
|
mutex_(NULL),
|
|
|
|
message_buffer_(NULL),
|
|
|
|
logger_(logger) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void AddIsolateIdIfNeeded(StringStream* stream) {
|
|
|
|
Isolate* isolate = Isolate::Current();
|
|
|
|
if (isolate->IsDefaultIsolate()) return;
|
|
|
|
stream->Add("isolate-%p-", isolate);
|
|
|
|
}
|
2009-05-28 07:08:09 +00:00
|
|
|
|
|
|
|
|
2011-03-18 20:35:07 +00:00
|
|
|
void Log::Initialize() {
|
2009-05-28 07:08:09 +00:00
|
|
|
mutex_ = OS::CreateMutex();
|
|
|
|
message_buffer_ = NewArray<char>(kMessageBufferSize);
|
2011-03-18 20:35:07 +00:00
|
|
|
|
|
|
|
// --log-all enables all the log flags.
|
|
|
|
if (FLAG_log_all) {
|
|
|
|
FLAG_log_runtime = true;
|
|
|
|
FLAG_log_api = true;
|
|
|
|
FLAG_log_code = true;
|
|
|
|
FLAG_log_gc = true;
|
|
|
|
FLAG_log_suspect = true;
|
|
|
|
FLAG_log_handles = true;
|
|
|
|
FLAG_log_regexp = true;
|
2012-12-05 16:22:14 +00:00
|
|
|
FLAG_log_internal_timer_events = true;
|
2011-03-18 20:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// --prof implies --log-code.
|
|
|
|
if (FLAG_prof) FLAG_log_code = true;
|
|
|
|
|
|
|
|
// --prof_lazy controls --log-code, implies --noprof_auto.
|
|
|
|
if (FLAG_prof_lazy) {
|
|
|
|
FLAG_log_code = false;
|
|
|
|
FLAG_prof_auto = false;
|
|
|
|
}
|
|
|
|
|
2011-07-13 11:31:22 +00:00
|
|
|
bool open_log_file = FLAG_log || FLAG_log_runtime || FLAG_log_api
|
2011-03-18 20:35:07 +00:00
|
|
|
|| FLAG_log_code || FLAG_log_gc || FLAG_log_handles || FLAG_log_suspect
|
2012-11-22 13:04:11 +00:00
|
|
|
|| FLAG_log_regexp || FLAG_log_state_changes || FLAG_ll_prof
|
2012-12-05 16:22:14 +00:00
|
|
|
|| FLAG_log_internal_timer_events;
|
2011-03-18 20:35:07 +00:00
|
|
|
|
|
|
|
// If we're logging anything, we need to open the log file.
|
|
|
|
if (open_log_file) {
|
|
|
|
if (strcmp(FLAG_logfile, "-") == 0) {
|
|
|
|
OpenStdout();
|
2011-07-13 11:31:22 +00:00
|
|
|
} else if (strcmp(FLAG_logfile, kLogToTemporaryFile) == 0) {
|
|
|
|
OpenTemporaryFile();
|
|
|
|
} else {
|
2011-03-18 20:35:07 +00:00
|
|
|
if (strchr(FLAG_logfile, '%') != NULL ||
|
|
|
|
!Isolate::Current()->IsDefaultIsolate()) {
|
|
|
|
// If there's a '%' in the log file name we have to expand
|
|
|
|
// placeholders.
|
|
|
|
HeapStringAllocator allocator;
|
|
|
|
StringStream stream(&allocator);
|
|
|
|
AddIsolateIdIfNeeded(&stream);
|
|
|
|
for (const char* p = FLAG_logfile; *p; p++) {
|
|
|
|
if (*p == '%') {
|
|
|
|
p++;
|
|
|
|
switch (*p) {
|
|
|
|
case '\0':
|
|
|
|
// If there's a % at the end of the string we back up
|
|
|
|
// one character so we can escape the loop properly.
|
|
|
|
p--;
|
|
|
|
break;
|
2013-03-07 16:19:51 +00:00
|
|
|
case 'p':
|
|
|
|
stream.Add("%d", OS::GetCurrentProcessId());
|
|
|
|
break;
|
2011-03-18 20:35:07 +00:00
|
|
|
case 't': {
|
|
|
|
// %t expands to the current time in milliseconds.
|
|
|
|
double time = OS::TimeCurrentMillis();
|
|
|
|
stream.Add("%.0f", FmtElm(time));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case '%':
|
|
|
|
// %% expands (contracts really) to %.
|
|
|
|
stream.Put('%');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// All other %'s expand to themselves.
|
|
|
|
stream.Put('%');
|
|
|
|
stream.Put(*p);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
stream.Put(*p);
|
|
|
|
}
|
|
|
|
}
|
2011-09-09 22:39:47 +00:00
|
|
|
SmartArrayPointer<const char> expanded = stream.ToCString();
|
2011-03-18 20:35:07 +00:00
|
|
|
OpenFile(*expanded);
|
|
|
|
} else {
|
|
|
|
OpenFile(FLAG_logfile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-05-28 07:08:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Log::OpenStdout() {
|
|
|
|
ASSERT(!IsEnabled());
|
|
|
|
output_handle_ = stdout;
|
2011-07-13 11:31:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Log::OpenTemporaryFile() {
|
|
|
|
ASSERT(!IsEnabled());
|
|
|
|
output_handle_ = i::OS::OpenTemporaryFile();
|
2009-05-28 07:08:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-29 16:06:25 +00:00
|
|
|
// Extension added to V8 log file name to get the low-level log name.
|
|
|
|
static const char kLowLevelLogExt[] = ".ll";
|
|
|
|
|
|
|
|
// File buffer size of the low-level log. We don't use the default to
|
|
|
|
// minimize the associated overhead.
|
|
|
|
static const int kLowLevelLogBufferSize = 2 * MB;
|
2010-10-19 16:45:11 +00:00
|
|
|
|
|
|
|
|
2009-05-28 07:08:09 +00:00
|
|
|
void Log::OpenFile(const char* name) {
|
|
|
|
ASSERT(!IsEnabled());
|
|
|
|
output_handle_ = OS::FOpen(name, OS::LogFileOpenMode);
|
2010-10-19 16:45:11 +00:00
|
|
|
if (FLAG_ll_prof) {
|
2011-04-29 16:06:25 +00:00
|
|
|
// Open the low-level log file.
|
|
|
|
size_t len = strlen(name);
|
|
|
|
ScopedVector<char> ll_name(static_cast<int>(len + sizeof(kLowLevelLogExt)));
|
2013-04-16 12:30:51 +00:00
|
|
|
OS::MemCopy(ll_name.start(), name, len);
|
|
|
|
OS::MemCopy(ll_name.start() + len,
|
|
|
|
kLowLevelLogExt, sizeof(kLowLevelLogExt));
|
2011-04-29 16:06:25 +00:00
|
|
|
ll_output_handle_ = OS::FOpen(ll_name.start(), OS::LogFileOpenMode);
|
|
|
|
setvbuf(ll_output_handle_, NULL, _IOFBF, kLowLevelLogBufferSize);
|
2010-10-19 16:45:11 +00:00
|
|
|
}
|
2009-05-28 07:08:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-13 11:31:22 +00:00
|
|
|
FILE* Log::Close() {
|
|
|
|
FILE* result = NULL;
|
|
|
|
if (output_handle_ != NULL) {
|
|
|
|
if (strcmp(FLAG_logfile, kLogToTemporaryFile) != 0) {
|
|
|
|
fclose(output_handle_);
|
|
|
|
} else {
|
|
|
|
result = output_handle_;
|
|
|
|
}
|
2009-05-28 07:08:09 +00:00
|
|
|
}
|
2011-07-13 11:31:22 +00:00
|
|
|
output_handle_ = NULL;
|
|
|
|
if (ll_output_handle_ != NULL) fclose(ll_output_handle_);
|
|
|
|
ll_output_handle_ = NULL;
|
2009-05-28 07:08:09 +00:00
|
|
|
|
2009-06-11 14:08:34 +00:00
|
|
|
DeleteArray(message_buffer_);
|
|
|
|
message_buffer_ = NULL;
|
|
|
|
|
2009-05-28 07:08:09 +00:00
|
|
|
delete mutex_;
|
|
|
|
mutex_ = NULL;
|
2009-05-28 13:56:32 +00:00
|
|
|
|
|
|
|
is_stopped_ = false;
|
2011-07-13 11:31:22 +00:00
|
|
|
return result;
|
2009-05-28 07:08:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-18 20:35:07 +00:00
|
|
|
LogMessageBuilder::LogMessageBuilder(Logger* logger)
|
|
|
|
: log_(logger->log_),
|
|
|
|
sl(log_->mutex_),
|
|
|
|
pos_(0) {
|
|
|
|
ASSERT(log_->message_buffer_ != NULL);
|
2009-05-28 07:08:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LogMessageBuilder::Append(const char* format, ...) {
|
2011-03-18 20:35:07 +00:00
|
|
|
Vector<char> buf(log_->message_buffer_ + pos_,
|
2009-05-28 07:08:09 +00:00
|
|
|
Log::kMessageBufferSize - pos_);
|
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
2009-06-15 15:49:03 +00:00
|
|
|
AppendVA(format, args);
|
2009-05-28 07:08:09 +00:00
|
|
|
va_end(args);
|
|
|
|
ASSERT(pos_ <= Log::kMessageBufferSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-15 15:49:03 +00:00
|
|
|
void LogMessageBuilder::AppendVA(const char* format, va_list args) {
|
2011-03-18 20:35:07 +00:00
|
|
|
Vector<char> buf(log_->message_buffer_ + pos_,
|
2009-05-28 07:08:09 +00:00
|
|
|
Log::kMessageBufferSize - pos_);
|
|
|
|
int result = v8::internal::OS::VSNPrintF(buf, format, args);
|
|
|
|
|
|
|
|
// Result is -1 if output was truncated.
|
|
|
|
if (result >= 0) {
|
|
|
|
pos_ += result;
|
|
|
|
} else {
|
|
|
|
pos_ = Log::kMessageBufferSize;
|
|
|
|
}
|
|
|
|
ASSERT(pos_ <= Log::kMessageBufferSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LogMessageBuilder::Append(const char c) {
|
|
|
|
if (pos_ < Log::kMessageBufferSize) {
|
2011-03-18 20:35:07 +00:00
|
|
|
log_->message_buffer_[pos_++] = c;
|
2009-05-28 07:08:09 +00:00
|
|
|
}
|
|
|
|
ASSERT(pos_ <= Log::kMessageBufferSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LogMessageBuilder::Append(String* str) {
|
|
|
|
AssertNoAllocation no_heap_allocation; // Ensure string stay valid.
|
|
|
|
int length = str->length();
|
|
|
|
for (int i = 0; i < length; i++) {
|
|
|
|
Append(static_cast<char>(str->Get(i)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-15 09:37:50 +00:00
|
|
|
void LogMessageBuilder::AppendAddress(Address addr) {
|
2010-12-07 13:24:22 +00:00
|
|
|
Append("0x%" V8PRIxPTR, addr);
|
2009-06-15 09:37:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-28 07:08:09 +00:00
|
|
|
void LogMessageBuilder::AppendDetailed(String* str, bool show_impl_info) {
|
2011-04-29 16:06:25 +00:00
|
|
|
if (str == NULL) return;
|
2009-05-28 07:08:09 +00:00
|
|
|
AssertNoAllocation no_heap_allocation; // Ensure string stay valid.
|
|
|
|
int len = str->length();
|
|
|
|
if (len > 0x1000)
|
|
|
|
len = 0x1000;
|
|
|
|
if (show_impl_info) {
|
2012-11-21 10:01:05 +00:00
|
|
|
Append(str->IsOneByteRepresentation() ? 'a' : '2');
|
2009-05-28 07:08:09 +00:00
|
|
|
if (StringShape(str).IsExternal())
|
|
|
|
Append('e');
|
2013-02-28 17:03:34 +00:00
|
|
|
if (StringShape(str).IsInternalized())
|
2009-05-28 07:08:09 +00:00
|
|
|
Append('#');
|
|
|
|
Append(":%i:", str->length());
|
|
|
|
}
|
|
|
|
for (int i = 0; i < len; i++) {
|
|
|
|
uc32 c = str->Get(i);
|
|
|
|
if (c > 0xff) {
|
|
|
|
Append("\\u%04x", c);
|
|
|
|
} else if (c < 32 || c > 126) {
|
|
|
|
Append("\\x%02x", c);
|
|
|
|
} else if (c == ',') {
|
|
|
|
Append("\\,");
|
|
|
|
} else if (c == '\\') {
|
|
|
|
Append("\\\\");
|
2011-02-22 16:31:24 +00:00
|
|
|
} else if (c == '\"') {
|
|
|
|
Append("\"\"");
|
2009-05-28 07:08:09 +00:00
|
|
|
} else {
|
|
|
|
Append("%lc", c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-18 12:05:18 +00:00
|
|
|
void LogMessageBuilder::AppendStringPart(const char* str, int len) {
|
|
|
|
if (pos_ + len > Log::kMessageBufferSize) {
|
|
|
|
len = Log::kMessageBufferSize - pos_;
|
|
|
|
ASSERT(len >= 0);
|
|
|
|
if (len == 0) return;
|
|
|
|
}
|
2011-03-18 20:35:07 +00:00
|
|
|
Vector<char> buf(log_->message_buffer_ + pos_,
|
2009-09-18 13:23:58 +00:00
|
|
|
Log::kMessageBufferSize - pos_);
|
|
|
|
OS::StrNCpy(buf, str, len);
|
2009-09-18 12:05:18 +00:00
|
|
|
pos_ += len;
|
|
|
|
ASSERT(pos_ <= Log::kMessageBufferSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-28 07:08:09 +00:00
|
|
|
void LogMessageBuilder::WriteToLogFile() {
|
|
|
|
ASSERT(pos_ <= Log::kMessageBufferSize);
|
2011-07-13 11:31:22 +00:00
|
|
|
const int written = log_->WriteToFile(log_->message_buffer_, pos_);
|
2011-03-18 20:35:07 +00:00
|
|
|
if (written != pos_) {
|
|
|
|
log_->stop();
|
|
|
|
log_->logger_->LogFailure();
|
2009-05-28 13:56:32 +00:00
|
|
|
}
|
2009-05-28 07:08:09 +00:00
|
|
|
}
|
|
|
|
|
2011-03-18 20:35:07 +00:00
|
|
|
|
2009-05-28 07:08:09 +00:00
|
|
|
} } // namespace v8::internal
|