statistics-extension.cc 7.88 KB
Newer Older
1
// Copyright 2012 the V8 project authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
// 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 "statistics-extension.h"

namespace v8 {
namespace internal {

const char* const StatisticsExtension::kSource =
    "native function getV8Statistics();";


37 38
v8::Handle<v8::FunctionTemplate> StatisticsExtension::GetNativeFunctionTemplate(
    v8::Isolate* isolate,
39
    v8::Handle<v8::String> str) {
40
  ASSERT(strcmp(*v8::String::Utf8Value(str), "getV8Statistics") == 0);
41
  return v8::FunctionTemplate::New(isolate, StatisticsExtension::GetCounters);
42 43 44
}


45 46
static void AddCounter(v8::Isolate* isolate,
                       v8::Local<v8::Object> object,
47 48
                       StatsCounter* counter,
                       const char* name) {
49
  if (counter->Enabled()) {
50
    object->Set(v8::String::NewFromUtf8(isolate, name),
51
                v8::Number::New(isolate, *counter->GetInternalPointer()));
52 53 54
  }
}

55 56
static void AddNumber(v8::Isolate* isolate,
                      v8::Local<v8::Object> object,
57
                      intptr_t value,
58
                      const char* name) {
59
  object->Set(v8::String::NewFromUtf8(isolate, name),
60
              v8::Number::New(isolate, static_cast<double>(value)));
61 62
}

63

64 65
static void AddNumber64(v8::Isolate* isolate,
                        v8::Local<v8::Object> object,
66 67
                        int64_t value,
                        const char* name) {
68
  object->Set(v8::String::NewFromUtf8(isolate, name),
69
              v8::Number::New(isolate, static_cast<double>(value)));
70 71 72
}


73 74
void StatisticsExtension::GetCounters(
    const v8::FunctionCallbackInfo<v8::Value>& args) {
75
  Isolate* isolate = reinterpret_cast<Isolate*>(args.GetIsolate());
76
  Heap* heap = isolate->heap();
77

78 79 80 81 82 83 84
  if (args.Length() > 0) {  // GC if first argument evaluates to true.
    if (args[0]->IsBoolean() && args[0]->ToBoolean()->Value()) {
      heap->CollectAllGarbage(Heap::kNoGCFlags, "counters extension");
    }
  }

  Counters* counters = isolate->counters();
85
  v8::Local<v8::Object> result = v8::Object::New(args.GetIsolate());
86

87
#define ADD_COUNTER(name, caption)                                            \
88
  AddCounter(args.GetIsolate(), result, counters->name(), #name);
89 90 91 92

  STATS_COUNTER_LIST_1(ADD_COUNTER)
  STATS_COUNTER_LIST_2(ADD_COUNTER)
#undef ADD_COUNTER
93 94 95 96 97
#define ADD_COUNTER(name)                                                      \
  AddCounter(args.GetIsolate(), result, counters->count_of_##name(),           \
             "count_of_" #name);                                               \
  AddCounter(args.GetIsolate(), result, counters->size_of_##name(),            \
             "size_of_" #name);
98 99 100

  INSTANCE_TYPE_LIST(ADD_COUNTER)
#undef ADD_COUNTER
101 102 103 104
#define ADD_COUNTER(name)                                                      \
  AddCounter(args.GetIsolate(), result, counters->count_of_CODE_TYPE_##name(), \
             "count_of_CODE_TYPE_" #name);                                     \
  AddCounter(args.GetIsolate(), result, counters->size_of_CODE_TYPE_##name(),  \
105
             "size_of_CODE_TYPE_" #name);
106 107 108

  CODE_KIND_LIST(ADD_COUNTER)
#undef ADD_COUNTER
109 110 111 112 113 114
#define ADD_COUNTER(name)                                                      \
  AddCounter(args.GetIsolate(), result,                                        \
             counters->count_of_FIXED_ARRAY_##name(),                          \
             "count_of_FIXED_ARRAY_" #name);                                   \
  AddCounter(args.GetIsolate(), result,                                        \
             counters->size_of_FIXED_ARRAY_##name(),                           \
115
             "size_of_FIXED_ARRAY_" #name);
116 117 118

  FIXED_ARRAY_SUB_INSTANCE_TYPE_LIST(ADD_COUNTER)
#undef ADD_COUNTER
119

120
  AddNumber(args.GetIsolate(), result, isolate->memory_allocator()->Size(),
121
            "total_committed_bytes");
122
  AddNumber(args.GetIsolate(), result, heap->new_space()->Size(),
123
            "new_space_live_bytes");
124
  AddNumber(args.GetIsolate(), result, heap->new_space()->Available(),
125
            "new_space_available_bytes");
126
  AddNumber(args.GetIsolate(), result, heap->new_space()->CommittedMemory(),
127
            "new_space_commited_bytes");
128
  AddNumber(args.GetIsolate(), result, heap->old_pointer_space()->Size(),
129
            "old_pointer_space_live_bytes");
130
  AddNumber(args.GetIsolate(), result, heap->old_pointer_space()->Available(),
131
            "old_pointer_space_available_bytes");
132 133
  AddNumber(args.GetIsolate(), result,
            heap->old_pointer_space()->CommittedMemory(),
134
            "old_pointer_space_commited_bytes");
135
  AddNumber(args.GetIsolate(), result, heap->old_data_space()->Size(),
136
            "old_data_space_live_bytes");
137
  AddNumber(args.GetIsolate(), result, heap->old_data_space()->Available(),
138
            "old_data_space_available_bytes");
139 140
  AddNumber(args.GetIsolate(), result,
            heap->old_data_space()->CommittedMemory(),
141
            "old_data_space_commited_bytes");
142
  AddNumber(args.GetIsolate(), result, heap->code_space()->Size(),
143
            "code_space_live_bytes");
144
  AddNumber(args.GetIsolate(), result, heap->code_space()->Available(),
145
            "code_space_available_bytes");
146
  AddNumber(args.GetIsolate(), result, heap->code_space()->CommittedMemory(),
147
            "code_space_commited_bytes");
148
  AddNumber(args.GetIsolate(), result, heap->cell_space()->Size(),
149
            "cell_space_live_bytes");
150
  AddNumber(args.GetIsolate(), result, heap->cell_space()->Available(),
151
            "cell_space_available_bytes");
152
  AddNumber(args.GetIsolate(), result, heap->cell_space()->CommittedMemory(),
153
            "cell_space_commited_bytes");
154
  AddNumber(args.GetIsolate(), result, heap->property_cell_space()->Size(),
155
            "property_cell_space_live_bytes");
156
  AddNumber(args.GetIsolate(), result, heap->property_cell_space()->Available(),
157
            "property_cell_space_available_bytes");
158 159
  AddNumber(args.GetIsolate(), result,
            heap->property_cell_space()->CommittedMemory(),
160
            "property_cell_space_commited_bytes");
161
  AddNumber(args.GetIsolate(), result, heap->lo_space()->Size(),
162
            "lo_space_live_bytes");
163
  AddNumber(args.GetIsolate(), result, heap->lo_space()->Available(),
164
            "lo_space_available_bytes");
165
  AddNumber(args.GetIsolate(), result, heap->lo_space()->CommittedMemory(),
166
            "lo_space_commited_bytes");
167 168
  AddNumber64(args.GetIsolate(), result,
              heap->amount_of_external_allocated_memory(),
169
              "amount_of_external_allocated_memory");
170
  args.GetReturnValue().Set(result);
171 172 173
}

} }  // namespace v8::internal