// Copyright 2010 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. #ifndef V8_PROFILE_GENERATOR_H_ #define V8_PROFILE_GENERATOR_H_ #ifdef ENABLE_CPP_PROFILES_PROCESSOR #include "hashmap.h" namespace v8 { namespace internal { class CodeEntry { public: // CodeEntry doesn't own name strings, just references them. INLINE(CodeEntry(Logger::LogEventsAndTags tag, const char* name_prefix, const char* name, const char* resource_name, int line_number)); INLINE(bool is_js_function() const) { return is_js_function_tag(tag_); } INLINE(const char* name_prefix() const) { return name_prefix_; } INLINE(bool has_name_prefix() const) { return name_prefix_[0] != '\0'; } INLINE(const char* name() const) { return name_; } INLINE(const char* resource_name() const) { return resource_name_; } INLINE(int line_number() const) { return line_number_; } INLINE(unsigned call_uid() const) { return call_uid_; } INLINE(static bool is_js_function_tag(Logger::LogEventsAndTags tag)); static const char* kEmptyNamePrefix; private: const unsigned call_uid_; Logger::LogEventsAndTags tag_; const char* name_prefix_; const char* name_; const char* resource_name_; int line_number_; static unsigned next_call_uid_; DISALLOW_COPY_AND_ASSIGN(CodeEntry); }; class ProfileNode { public: INLINE(explicit ProfileNode(CodeEntry* entry)); ProfileNode* FindChild(CodeEntry* entry); ProfileNode* FindOrAddChild(CodeEntry* entry); INLINE(void IncrementSelfTicks()) { ++self_ticks_; } INLINE(void IncreaseTotalTicks(unsigned amount)) { total_ticks_ += amount; } INLINE(CodeEntry* entry() const) { return entry_; } INLINE(unsigned total_ticks() const) { return total_ticks_; } INLINE(unsigned self_ticks() const) { return self_ticks_; } INLINE(const List* children() const) { return &children_list_; } void Print(int indent); private: INLINE(static bool CodeEntriesMatch(void* entry1, void* entry2)) { return entry1 == entry2; } INLINE(static uint32_t CodeEntryHash(CodeEntry* entry)) { return static_cast(reinterpret_cast(entry)); } CodeEntry* entry_; unsigned total_ticks_; unsigned self_ticks_; // CodeEntry* -> ProfileNode* HashMap children_; List children_list_; DISALLOW_COPY_AND_ASSIGN(ProfileNode); }; class ProfileTree { public: ProfileTree(); ~ProfileTree(); void AddPathFromEnd(const Vector& path); void AddPathFromStart(const Vector& path); void CalculateTotalTicks(); ProfileNode* root() const { return root_; } void ShortPrint(); void Print() { root_->Print(0); } private: template void TraverseBreadthFirstPostOrder(Callback* callback); CodeEntry root_entry_; ProfileNode* root_; DISALLOW_COPY_AND_ASSIGN(ProfileTree); }; class CpuProfile { public: CpuProfile(const char* title, unsigned uid) : title_(title), uid_(uid) { } // Add pc -> ... -> main() call path to the profile. void AddPath(const Vector& path); void CalculateTotalTicks(); INLINE(const char* title() const) { return title_; } INLINE(unsigned uid() const) { return uid_; } INLINE(const ProfileTree* top_down() const) { return &top_down_; } INLINE(const ProfileTree* bottom_up() const) { return &bottom_up_; } void ShortPrint(); void Print(); private: const char* title_; unsigned uid_; ProfileTree top_down_; ProfileTree bottom_up_; DISALLOW_COPY_AND_ASSIGN(CpuProfile); }; class CodeMap { public: CodeMap() { } INLINE(void AddCode(Address addr, CodeEntry* entry, unsigned size)); INLINE(void MoveCode(Address from, Address to)); INLINE(void DeleteCode(Address addr)); void AddAlias(Address alias, Address addr); CodeEntry* FindEntry(Address addr); void Print(); private: struct CodeEntryInfo { CodeEntryInfo(CodeEntry* an_entry, unsigned a_size) : entry(an_entry), size(a_size) { } CodeEntry* entry; unsigned size; }; struct CodeTreeConfig { typedef Address Key; typedef CodeEntryInfo Value; static const Key kNoKey; static const Value kNoValue; static int Compare(const Key& a, const Key& b) { return a < b ? -1 : (a > b ? 1 : 0); } }; typedef SplayTree CodeTree; class CodeTreePrinter { public: void Call(const Address& key, const CodeEntryInfo& value); }; CodeTree tree_; DISALLOW_COPY_AND_ASSIGN(CodeMap); }; class CpuProfilesCollection { public: CpuProfilesCollection(); ~CpuProfilesCollection(); bool StartProfiling(const char* title, unsigned uid); bool StartProfiling(String* title, unsigned uid); CpuProfile* StopProfiling(const char* title); CpuProfile* StopProfiling(String* title); INLINE(List* profiles()) { return &profiles_; } CpuProfile* GetProfile(unsigned uid); inline bool is_last_profile(); CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, String* name, String* resource_name, int line_number); CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, const char* name); CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, const char* name_prefix, String* name); CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, int args_count); // Called from profile generator thread. void AddPathToCurrentProfiles(const Vector& path); private: INLINE(const char* GetFunctionName(String* name)); INLINE(const char* GetFunctionName(const char* name)); const char* GetName(String* name); const char* GetName(int args_count); INLINE(static bool StringsMatch(void* key1, void* key2)) { return strcmp(reinterpret_cast(key1), reinterpret_cast(key2)) == 0; } INLINE(static bool CpuProfilesMatch(void* key1, void* key2)) { return key1 == key2; } // String::Hash -> const char* HashMap function_and_resource_names_; // args_count -> char* List args_count_names_; List code_entries_; List profiles_; // uid -> CpuProfile* HashMap profiles_uids_; // Accessed by VM thread and profile generator thread. List current_profiles_; Semaphore* current_profiles_semaphore_; DISALLOW_COPY_AND_ASSIGN(CpuProfilesCollection); }; class ProfileGenerator { public: explicit ProfileGenerator(CpuProfilesCollection* profiles); INLINE(CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, String* name, String* resource_name, int line_number)) { return profiles_->NewCodeEntry(tag, name, resource_name, line_number); } INLINE(CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, const char* name)) { return profiles_->NewCodeEntry(tag, name); } INLINE(CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, const char* name_prefix, String* name)) { return profiles_->NewCodeEntry(tag, name_prefix, name); } INLINE(CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, int args_count)) { return profiles_->NewCodeEntry(tag, args_count); } void RecordTickSample(const TickSample& sample); INLINE(CodeMap* code_map()) { return &code_map_; } static const char* kAnonymousFunctionName; static const char* kProgramEntryName; static const char* kGarbageCollectorEntryName; private: INLINE(CodeEntry* EntryForVMState(StateTag tag)); CpuProfilesCollection* profiles_; CodeMap code_map_; CodeEntry* program_entry_; CodeEntry* gc_entry_; DISALLOW_COPY_AND_ASSIGN(ProfileGenerator); }; } } // namespace v8::internal #endif // ENABLE_CPP_PROFILES_PROCESSOR #endif // V8_PROFILE_GENERATOR_H_