Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: src/profile-generator-inl.h

Issue 910002: Start migrating profiles processing to C++. (Closed)
Patch Set: Comments addressed Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // 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
33 namespace v8 {
34 namespace internal {
35
36
37 bool CodeEntry::is_js_function() {
38 return tag_ == Logger::FUNCTION_TAG
39 || tag_ == Logger::LAZY_COMPILE_TAG
40 || tag_ == Logger::SCRIPT_TAG;
41 }
42
43
44 StaticNameCodeEntry::StaticNameCodeEntry(Logger::LogEventsAndTags tag,
45 const char* name)
46 : CodeEntry(tag),
47 name_(name) {
48 }
49
50
51 ManagedNameCodeEntry::ManagedNameCodeEntry(Logger::LogEventsAndTags tag,
52 String* name,
53 const char* resource_name,
54 int line_number)
55 : CodeEntry(tag),
56 name_(name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL).Detach()),
57 resource_name_(resource_name),
58 line_number_(line_number) {
59 }
60
61
62 ProfileNode::ProfileNode(CodeEntry* entry)
63 : entry_(entry),
64 total_ticks_(0),
65 self_ticks_(0),
66 children_(CodeEntriesMatch) {
67 }
68
69
70 void CodeMap::AddCode(Address addr, CodeEntry* entry, unsigned size) {
71 CodeTree::Locator locator;
72 tree_.Insert(addr, &locator);
73 locator.set_value(CodeEntryInfo(entry, size));
74 }
75
76
77 void CodeMap::MoveCode(Address from, Address to) {
78 tree_.Move(from, to);
79 }
80
81 void CodeMap::DeleteCode(Address addr) {
82 tree_.Remove(addr);
83 }
84
85
86 } } // namespace v8::internal
87
88 #endif // V8_PROFILE_GENERATOR_INL_H_
OLDNEW
« src/profile-generator.cc ('K') | « src/profile-generator.cc ('k') | src/splay-tree.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698