blob: 8f4bc6c1f23f2c87255ed65eed5166326dec4b55 [file] [log] [blame]
fschneider@chromium.org086aac62010-03-17 13:18:24 +00001// Copyright 2010 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_PROFILE_GENERATOR_INL_H_
29#define V8_PROFILE_GENERATOR_INL_H_
30
31#include "profile-generator.h"
32
33namespace v8 {
34namespace internal {
35
erik.corry@gmail.com145eff52010-08-23 11:36:18 +000036const char* StringsStorage::GetFunctionName(String* name) {
37 return GetFunctionName(GetName(name));
38}
39
40
41const char* StringsStorage::GetFunctionName(const char* name) {
42 return strlen(name) > 0 ? name : ProfileGenerator::kAnonymousFunctionName;
43}
44
45
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000046CodeEntry::CodeEntry(Logger::LogEventsAndTags tag,
lrn@chromium.org25156de2010-04-06 13:10:27 +000047 const char* name_prefix,
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000048 const char* name,
49 const char* resource_name,
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000050 int line_number,
51 int security_token_id)
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +000052 : tag_(tag),
lrn@chromium.org25156de2010-04-06 13:10:27 +000053 name_prefix_(name_prefix),
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000054 name_(name),
55 resource_name_(resource_name),
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000056 line_number_(line_number),
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +000057 shared_id_(0),
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000058 security_token_id_(security_token_id) {
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000059}
60
61
ager@chromium.org357bf652010-04-12 11:30:10 +000062bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) {
63 return tag == Logger::FUNCTION_TAG
64 || tag == Logger::LAZY_COMPILE_TAG
65 || tag == Logger::SCRIPT_TAG
66 || tag == Logger::NATIVE_FUNCTION_TAG
67 || tag == Logger::NATIVE_LAZY_COMPILE_TAG
68 || tag == Logger::NATIVE_SCRIPT_TAG;
fschneider@chromium.org086aac62010-03-17 13:18:24 +000069}
70
71
ricow@chromium.orgc9c80822010-04-21 08:22:37 +000072ProfileNode::ProfileNode(ProfileTree* tree, CodeEntry* entry)
73 : tree_(tree),
74 entry_(entry),
fschneider@chromium.org086aac62010-03-17 13:18:24 +000075 total_ticks_(0),
76 self_ticks_(0),
77 children_(CodeEntriesMatch) {
78}
79
80
81void CodeMap::AddCode(Address addr, CodeEntry* entry, unsigned size) {
82 CodeTree::Locator locator;
83 tree_.Insert(addr, &locator);
84 locator.set_value(CodeEntryInfo(entry, size));
85}
86
87
88void CodeMap::MoveCode(Address from, Address to) {
89 tree_.Move(from, to);
90}
91
92void CodeMap::DeleteCode(Address addr) {
93 tree_.Remove(addr);
94}
95
96
ager@chromium.org357bf652010-04-12 11:30:10 +000097CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) {
98 switch (tag) {
99 case GC:
100 return gc_entry_;
101 case JS:
102 case COMPILER:
103 // DOM events handlers are reported as OTHER / EXTERNAL entries.
104 // To avoid confusing people, let's put all these entries into
105 // one bucket.
106 case OTHER:
107 case EXTERNAL:
108 return program_entry_;
109 default: return NULL;
110 }
111}
112
vegorov@chromium.org21b5e952010-11-23 10:24:40 +0000113
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000114uint64_t HeapEntry::id() {
vegorov@chromium.org21b5e952010-11-23 10:24:40 +0000115 union {
116 Id stored_id;
117 uint64_t returned_id;
118 } id_adaptor = {id_};
119 return id_adaptor.returned_id;
120}
121
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000122} } // namespace v8::internal
123
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000124#endif // V8_PROFILE_GENERATOR_INL_H_