| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #ifndef V8_PROFILE_GENERATOR_INL_H_ | 28 #ifndef V8_PROFILE_GENERATOR_INL_H_ |
| 29 #define V8_PROFILE_GENERATOR_INL_H_ | 29 #define V8_PROFILE_GENERATOR_INL_H_ |
| 30 | 30 |
| 31 #include "profile-generator.h" | 31 #include "profile-generator.h" |
| 32 | 32 |
| 33 namespace v8 { | 33 namespace v8 { |
| 34 namespace internal { | 34 namespace internal { |
| 35 | 35 |
| 36 | 36 |
| 37 CodeEntry::CodeEntry(Logger::LogEventsAndTags tag, |
| 38 const char* name, |
| 39 const char* resource_name, |
| 40 int line_number) |
| 41 : tag_(tag), |
| 42 name_(name), |
| 43 resource_name_(resource_name), |
| 44 line_number_(line_number) { |
| 45 } |
| 46 |
| 47 |
| 37 bool CodeEntry::is_js_function() { | 48 bool CodeEntry::is_js_function() { |
| 38 return tag_ == Logger::FUNCTION_TAG | 49 return tag_ == Logger::FUNCTION_TAG |
| 39 || tag_ == Logger::LAZY_COMPILE_TAG | 50 || tag_ == Logger::LAZY_COMPILE_TAG |
| 40 || tag_ == Logger::SCRIPT_TAG; | 51 || tag_ == Logger::SCRIPT_TAG; |
| 41 } | 52 } |
| 42 | 53 |
| 43 | 54 |
| 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) | 55 ProfileNode::ProfileNode(CodeEntry* entry) |
| 63 : entry_(entry), | 56 : entry_(entry), |
| 64 total_ticks_(0), | 57 total_ticks_(0), |
| 65 self_ticks_(0), | 58 self_ticks_(0), |
| 66 children_(CodeEntriesMatch) { | 59 children_(CodeEntriesMatch) { |
| 67 } | 60 } |
| 68 | 61 |
| 69 | 62 |
| 70 void CodeMap::AddCode(Address addr, CodeEntry* entry, unsigned size) { | 63 void CodeMap::AddCode(Address addr, CodeEntry* entry, unsigned size) { |
| 71 CodeTree::Locator locator; | 64 CodeTree::Locator locator; |
| 72 tree_.Insert(addr, &locator); | 65 tree_.Insert(addr, &locator); |
| 73 locator.set_value(CodeEntryInfo(entry, size)); | 66 locator.set_value(CodeEntryInfo(entry, size)); |
| 74 } | 67 } |
| 75 | 68 |
| 76 | 69 |
| 77 void CodeMap::MoveCode(Address from, Address to) { | 70 void CodeMap::MoveCode(Address from, Address to) { |
| 78 tree_.Move(from, to); | 71 tree_.Move(from, to); |
| 79 } | 72 } |
| 80 | 73 |
| 81 void CodeMap::DeleteCode(Address addr) { | 74 void CodeMap::DeleteCode(Address addr) { |
| 82 tree_.Remove(addr); | 75 tree_.Remove(addr); |
| 83 } | 76 } |
| 84 | 77 |
| 85 | 78 |
| 86 } } // namespace v8::internal | 79 } } // namespace v8::internal |
| 87 | 80 |
| 88 #endif // V8_PROFILE_GENERATOR_INL_H_ | 81 #endif // V8_PROFILE_GENERATOR_INL_H_ |
| OLD | NEW |