// Copyright 2011 the V8 project authors. All rights reserved.
|
// Use of this source code is governed by a BSD-style license that can be
|
// found in the LICENSE file.
|
|
#ifndef V8_PROFILER_PROFILE_GENERATOR_H_
|
#define V8_PROFILER_PROFILE_GENERATOR_H_
|
|
#include <atomic>
|
#include <deque>
|
#include <limits>
|
#include <map>
|
#include <memory>
|
#include <unordered_map>
|
#include <utility>
|
#include <vector>
|
|
#include "include/v8-profiler.h"
|
#include "src/allocation.h"
|
#include "src/log.h"
|
#include "src/profiler/strings-storage.h"
|
#include "src/source-position.h"
|
|
namespace v8 {
|
namespace internal {
|
|
struct TickSample;
|
|
// Provides a mapping from the offsets within generated code or a bytecode array
|
// to the source line.
|
class SourcePositionTable : public Malloced {
|
public:
|
SourcePositionTable() = default;
|
|
void SetPosition(int pc_offset, int line);
|
int GetSourceLineNumber(int pc_offset) const;
|
|
private:
|
struct PCOffsetAndLineNumber {
|
bool operator<(const PCOffsetAndLineNumber& other) const {
|
return pc_offset < other.pc_offset;
|
}
|
int pc_offset;
|
int line_number;
|
};
|
// This is logically a map, but we store it as a vector of pairs, sorted by
|
// the pc offset, so that we can save space and look up items using binary
|
// search.
|
std::vector<PCOffsetAndLineNumber> pc_offsets_to_lines_;
|
DISALLOW_COPY_AND_ASSIGN(SourcePositionTable);
|
};
|
|
class CodeEntry {
|
public:
|
// CodeEntry doesn't own name strings, just references them.
|
inline CodeEntry(CodeEventListener::LogEventsAndTags tag, const char* name,
|
const char* resource_name = CodeEntry::kEmptyResourceName,
|
int line_number = v8::CpuProfileNode::kNoLineNumberInfo,
|
int column_number = v8::CpuProfileNode::kNoColumnNumberInfo,
|
std::unique_ptr<SourcePositionTable> line_info = nullptr,
|
Address instruction_start = kNullAddress);
|
|
const char* name() const { return name_; }
|
const char* resource_name() const { return resource_name_; }
|
int line_number() const { return line_number_; }
|
int column_number() const { return column_number_; }
|
const SourcePositionTable* line_info() const { return line_info_.get(); }
|
int script_id() const { return script_id_; }
|
void set_script_id(int script_id) { script_id_ = script_id; }
|
int position() const { return position_; }
|
void set_position(int position) { position_ = position; }
|
void set_bailout_reason(const char* bailout_reason) {
|
EnsureRareData()->bailout_reason_ = bailout_reason;
|
}
|
const char* bailout_reason() const {
|
return rare_data_ ? rare_data_->bailout_reason_ : kEmptyBailoutReason;
|
}
|
|
void set_deopt_info(const char* deopt_reason, int deopt_id,
|
std::vector<CpuProfileDeoptFrame> inlined_frames);
|
|
CpuProfileDeoptInfo GetDeoptInfo();
|
bool has_deopt_info() const {
|
return rare_data_ && rare_data_->deopt_id_ != kNoDeoptimizationId;
|
}
|
void clear_deopt_info() {
|
if (!rare_data_) return;
|
// TODO(alph): Clear rare_data_ if that was the only field in use.
|
rare_data_->deopt_reason_ = kNoDeoptReason;
|
rare_data_->deopt_id_ = kNoDeoptimizationId;
|
}
|
void mark_used() { bit_field_ = UsedField::update(bit_field_, true); }
|
bool used() const { return UsedField::decode(bit_field_); }
|
|
void FillFunctionInfo(SharedFunctionInfo* shared);
|
|
void SetBuiltinId(Builtins::Name id);
|
Builtins::Name builtin_id() const {
|
return BuiltinIdField::decode(bit_field_);
|
}
|
|
uint32_t GetHash() const;
|
bool IsSameFunctionAs(const CodeEntry* entry) const;
|
|
int GetSourceLine(int pc_offset) const;
|
|
void AddInlineStack(int pc_offset,
|
std::vector<std::unique_ptr<CodeEntry>> inline_stack);
|
const std::vector<std::unique_ptr<CodeEntry>>* GetInlineStack(
|
int pc_offset) const;
|
|
void set_instruction_start(Address start) { instruction_start_ = start; }
|
Address instruction_start() const { return instruction_start_; }
|
|
CodeEventListener::LogEventsAndTags tag() const {
|
return TagField::decode(bit_field_);
|
}
|
|
static const char* const kWasmResourceNamePrefix;
|
static const char* const kEmptyResourceName;
|
static const char* const kEmptyBailoutReason;
|
static const char* const kNoDeoptReason;
|
|
static const char* const kProgramEntryName;
|
static const char* const kIdleEntryName;
|
static const char* const kGarbageCollectorEntryName;
|
// Used to represent frames for which we have no reliable way to
|
// detect function.
|
static const char* const kUnresolvedFunctionName;
|
|
V8_INLINE static CodeEntry* program_entry() {
|
return kProgramEntry.Pointer();
|
}
|
V8_INLINE static CodeEntry* idle_entry() { return kIdleEntry.Pointer(); }
|
V8_INLINE static CodeEntry* gc_entry() { return kGCEntry.Pointer(); }
|
V8_INLINE static CodeEntry* unresolved_entry() {
|
return kUnresolvedEntry.Pointer();
|
}
|
|
private:
|
struct RareData {
|
const char* deopt_reason_ = kNoDeoptReason;
|
const char* bailout_reason_ = kEmptyBailoutReason;
|
int deopt_id_ = kNoDeoptimizationId;
|
std::unordered_map<int, std::vector<std::unique_ptr<CodeEntry>>>
|
inline_locations_;
|
std::vector<CpuProfileDeoptFrame> deopt_inlined_frames_;
|
};
|
|
RareData* EnsureRareData();
|
|
struct ProgramEntryCreateTrait {
|
static CodeEntry* Create();
|
};
|
struct IdleEntryCreateTrait {
|
static CodeEntry* Create();
|
};
|
struct GCEntryCreateTrait {
|
static CodeEntry* Create();
|
};
|
struct UnresolvedEntryCreateTrait {
|
static CodeEntry* Create();
|
};
|
|
static base::LazyDynamicInstance<CodeEntry, ProgramEntryCreateTrait>::type
|
kProgramEntry;
|
static base::LazyDynamicInstance<CodeEntry, IdleEntryCreateTrait>::type
|
kIdleEntry;
|
static base::LazyDynamicInstance<CodeEntry, GCEntryCreateTrait>::type
|
kGCEntry;
|
static base::LazyDynamicInstance<CodeEntry, UnresolvedEntryCreateTrait>::type
|
kUnresolvedEntry;
|
|
using TagField = BitField<Logger::LogEventsAndTags, 0, 8>;
|
using BuiltinIdField = BitField<Builtins::Name, 8, 23>;
|
using UsedField = BitField<bool, 31, 1>;
|
|
uint32_t bit_field_;
|
const char* name_;
|
const char* resource_name_;
|
int line_number_;
|
int column_number_;
|
int script_id_;
|
int position_;
|
std::unique_ptr<SourcePositionTable> line_info_;
|
Address instruction_start_;
|
std::unique_ptr<RareData> rare_data_;
|
|
DISALLOW_COPY_AND_ASSIGN(CodeEntry);
|
};
|
|
struct CodeEntryAndLineNumber {
|
CodeEntry* code_entry;
|
int line_number;
|
};
|
|
typedef std::vector<CodeEntryAndLineNumber> ProfileStackTrace;
|
|
class ProfileTree;
|
|
class ProfileNode {
|
public:
|
inline ProfileNode(ProfileTree* tree, CodeEntry* entry, ProfileNode* parent,
|
int line_number = 0);
|
|
ProfileNode* FindChild(
|
CodeEntry* entry,
|
int line_number = v8::CpuProfileNode::kNoLineNumberInfo);
|
ProfileNode* FindOrAddChild(CodeEntry* entry, int line_number = 0);
|
void IncrementSelfTicks() { ++self_ticks_; }
|
void IncreaseSelfTicks(unsigned amount) { self_ticks_ += amount; }
|
void IncrementLineTicks(int src_line);
|
|
CodeEntry* entry() const { return entry_; }
|
unsigned self_ticks() const { return self_ticks_; }
|
const std::vector<ProfileNode*>* children() const { return &children_list_; }
|
unsigned id() const { return id_; }
|
unsigned function_id() const;
|
ProfileNode* parent() const { return parent_; }
|
int line_number() const {
|
return line_number_ != 0 ? line_number_ : entry_->line_number();
|
}
|
|
unsigned int GetHitLineCount() const {
|
return static_cast<unsigned int>(line_ticks_.size());
|
}
|
bool GetLineTicks(v8::CpuProfileNode::LineTick* entries,
|
unsigned int length) const;
|
void CollectDeoptInfo(CodeEntry* entry);
|
const std::vector<CpuProfileDeoptInfo>& deopt_infos() const {
|
return deopt_infos_;
|
}
|
Isolate* isolate() const;
|
|
void Print(int indent);
|
|
private:
|
struct Equals {
|
bool operator()(CodeEntryAndLineNumber lhs,
|
CodeEntryAndLineNumber rhs) const {
|
return lhs.code_entry->IsSameFunctionAs(rhs.code_entry) &&
|
lhs.line_number == rhs.line_number;
|
}
|
};
|
struct Hasher {
|
std::size_t operator()(CodeEntryAndLineNumber pair) const {
|
return pair.code_entry->GetHash() ^ ComputeIntegerHash(pair.line_number);
|
}
|
};
|
|
ProfileTree* tree_;
|
CodeEntry* entry_;
|
unsigned self_ticks_;
|
std::unordered_map<CodeEntryAndLineNumber, ProfileNode*, Hasher, Equals>
|
children_;
|
int line_number_;
|
std::vector<ProfileNode*> children_list_;
|
ProfileNode* parent_;
|
unsigned id_;
|
// maps line number --> number of ticks
|
std::unordered_map<int, int> line_ticks_;
|
|
std::vector<CpuProfileDeoptInfo> deopt_infos_;
|
|
DISALLOW_COPY_AND_ASSIGN(ProfileNode);
|
};
|
|
class ProfileTree {
|
public:
|
explicit ProfileTree(Isolate* isolate);
|
~ProfileTree();
|
|
typedef v8::CpuProfilingMode ProfilingMode;
|
|
ProfileNode* AddPathFromEnd(
|
const std::vector<CodeEntry*>& path,
|
int src_line = v8::CpuProfileNode::kNoLineNumberInfo,
|
bool update_stats = true);
|
ProfileNode* AddPathFromEnd(
|
const ProfileStackTrace& path,
|
int src_line = v8::CpuProfileNode::kNoLineNumberInfo,
|
bool update_stats = true,
|
ProfilingMode mode = ProfilingMode::kLeafNodeLineNumbers);
|
ProfileNode* root() const { return root_; }
|
unsigned next_node_id() { return next_node_id_++; }
|
unsigned GetFunctionId(const ProfileNode* node);
|
|
void Print() {
|
root_->Print(0);
|
}
|
|
Isolate* isolate() const { return isolate_; }
|
|
void EnqueueNode(const ProfileNode* node) { pending_nodes_.push_back(node); }
|
size_t pending_nodes_count() const { return pending_nodes_.size(); }
|
std::vector<const ProfileNode*> TakePendingNodes() {
|
return std::move(pending_nodes_);
|
}
|
|
private:
|
template <typename Callback>
|
void TraverseDepthFirst(Callback* callback);
|
|
std::vector<const ProfileNode*> pending_nodes_;
|
|
CodeEntry root_entry_;
|
unsigned next_node_id_;
|
ProfileNode* root_;
|
Isolate* isolate_;
|
|
unsigned next_function_id_;
|
std::unordered_map<CodeEntry*, unsigned> function_ids_;
|
|
DISALLOW_COPY_AND_ASSIGN(ProfileTree);
|
};
|
|
|
class CpuProfile {
|
public:
|
typedef v8::CpuProfilingMode ProfilingMode;
|
|
CpuProfile(CpuProfiler* profiler, const char* title, bool record_samples,
|
ProfilingMode mode);
|
|
// Add pc -> ... -> main() call path to the profile.
|
void AddPath(base::TimeTicks timestamp, const ProfileStackTrace& path,
|
int src_line, bool update_stats);
|
void FinishProfile();
|
|
const char* title() const { return title_; }
|
const ProfileTree* top_down() const { return &top_down_; }
|
|
int samples_count() const { return static_cast<int>(samples_.size()); }
|
ProfileNode* sample(int index) const { return samples_.at(index); }
|
base::TimeTicks sample_timestamp(int index) const {
|
return timestamps_.at(index);
|
}
|
|
base::TimeTicks start_time() const { return start_time_; }
|
base::TimeTicks end_time() const { return end_time_; }
|
CpuProfiler* cpu_profiler() const { return profiler_; }
|
|
void UpdateTicksScale();
|
|
void Print();
|
|
private:
|
void StreamPendingTraceEvents();
|
|
const char* title_;
|
bool record_samples_;
|
ProfilingMode mode_;
|
base::TimeTicks start_time_;
|
base::TimeTicks end_time_;
|
std::vector<ProfileNode*> samples_;
|
std::vector<base::TimeTicks> timestamps_;
|
ProfileTree top_down_;
|
CpuProfiler* const profiler_;
|
size_t streaming_next_sample_;
|
uint32_t id_;
|
|
static std::atomic<uint32_t> last_id_;
|
|
DISALLOW_COPY_AND_ASSIGN(CpuProfile);
|
};
|
|
class CodeMap {
|
public:
|
CodeMap();
|
~CodeMap();
|
|
void AddCode(Address addr, CodeEntry* entry, unsigned size);
|
void MoveCode(Address from, Address to);
|
CodeEntry* FindEntry(Address addr);
|
void Print();
|
|
private:
|
struct CodeEntryMapInfo {
|
unsigned index;
|
unsigned size;
|
};
|
|
union CodeEntrySlotInfo {
|
CodeEntry* entry;
|
unsigned next_free_slot;
|
};
|
|
static constexpr unsigned kNoFreeSlot = std::numeric_limits<unsigned>::max();
|
|
void ClearCodesInRange(Address start, Address end);
|
unsigned AddCodeEntry(Address start, CodeEntry*);
|
void DeleteCodeEntry(unsigned index);
|
|
CodeEntry* entry(unsigned index) { return code_entries_[index].entry; }
|
|
std::deque<CodeEntrySlotInfo> code_entries_;
|
std::map<Address, CodeEntryMapInfo> code_map_;
|
unsigned free_list_head_ = kNoFreeSlot;
|
|
DISALLOW_COPY_AND_ASSIGN(CodeMap);
|
};
|
|
class CpuProfilesCollection {
|
public:
|
explicit CpuProfilesCollection(Isolate* isolate);
|
|
typedef v8::CpuProfilingMode ProfilingMode;
|
|
void set_cpu_profiler(CpuProfiler* profiler) { profiler_ = profiler; }
|
bool StartProfiling(const char* title, bool record_samples,
|
ProfilingMode mode = ProfilingMode::kLeafNodeLineNumbers);
|
CpuProfile* StopProfiling(const char* title);
|
std::vector<std::unique_ptr<CpuProfile>>* profiles() {
|
return &finished_profiles_;
|
}
|
const char* GetName(Name* name) { return resource_names_.GetName(name); }
|
bool IsLastProfile(const char* title);
|
void RemoveProfile(CpuProfile* profile);
|
|
// Called from profile generator thread.
|
void AddPathToCurrentProfiles(base::TimeTicks timestamp,
|
const ProfileStackTrace& path, int src_line,
|
bool update_stats);
|
|
// Limits the number of profiles that can be simultaneously collected.
|
static const int kMaxSimultaneousProfiles = 100;
|
|
private:
|
StringsStorage resource_names_;
|
std::vector<std::unique_ptr<CpuProfile>> finished_profiles_;
|
CpuProfiler* profiler_;
|
|
// Accessed by VM thread and profile generator thread.
|
std::vector<std::unique_ptr<CpuProfile>> current_profiles_;
|
base::Semaphore current_profiles_semaphore_;
|
|
DISALLOW_COPY_AND_ASSIGN(CpuProfilesCollection);
|
};
|
|
class ProfileGenerator {
|
public:
|
explicit ProfileGenerator(CpuProfilesCollection* profiles);
|
|
void RecordTickSample(const TickSample& sample);
|
|
CodeMap* code_map() { return &code_map_; }
|
|
private:
|
CodeEntry* FindEntry(Address address);
|
CodeEntry* EntryForVMState(StateTag tag);
|
|
CpuProfilesCollection* profiles_;
|
CodeMap code_map_;
|
|
DISALLOW_COPY_AND_ASSIGN(ProfileGenerator);
|
};
|
|
} // namespace internal
|
} // namespace v8
|
|
#endif // V8_PROFILER_PROFILE_GENERATOR_H_
|