| Index: src/profile-generator.h
|
| diff --git a/src/profile-generator.h b/src/profile-generator.h
|
| index 2783a08806e1b00fe73db35e2dcc761225429c8b..38451d11b7579d09866960888bd7191d38d03fb0 100644
|
| --- a/src/profile-generator.h
|
| +++ b/src/profile-generator.h
|
| @@ -120,9 +120,6 @@ class CodeEntry {
|
| no_frame_ranges_ = ranges;
|
| }
|
|
|
| - void SetBuiltinId(Builtins::Name id);
|
| - Builtins::Name builtin_id() const { return builtin_id_; }
|
| -
|
| void CopyData(const CodeEntry& source);
|
| uint32_t GetCallUid() const;
|
| bool IsSameAs(CodeEntry* entry) const;
|
| @@ -131,8 +128,7 @@ class CodeEntry {
|
| static const char* const kEmptyResourceName;
|
|
|
| private:
|
| - Logger::LogEventsAndTags tag_ : 8;
|
| - Builtins::Name builtin_id_ : 8;
|
| + Logger::LogEventsAndTags tag_;
|
| const char* name_prefix_;
|
| const char* name_;
|
| const char* resource_name_;
|
| @@ -426,9 +422,6 @@ class ProfileGenerator {
|
| static const char* const kAnonymousFunctionName;
|
| static const char* const kProgramEntryName;
|
| static const char* const kGarbageCollectorEntryName;
|
| - // Used to represent frames for which we have no reliable way to
|
| - // detect function.
|
| - static const char* const kUnresolvedFunctionName;
|
|
|
| private:
|
| INLINE(CodeEntry* EntryForVMState(StateTag tag));
|
| @@ -437,7 +430,6 @@ class ProfileGenerator {
|
| CodeMap code_map_;
|
| CodeEntry* program_entry_;
|
| CodeEntry* gc_entry_;
|
| - CodeEntry* unresolved_entry_;
|
| SampleRateCalculator sample_rate_calc_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ProfileGenerator);
|
|
|