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

Unified Diff: src/profiler/profile-generator.h

Issue 1376333003: Eliminate no_frame_range data (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/profiler/cpu-profiler.cc ('k') | src/profiler/profile-generator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/profiler/profile-generator.h
diff --git a/src/profiler/profile-generator.h b/src/profiler/profile-generator.h
index cd79dfa97975f9bf9920ddfa476d6fefce2d1a34..a0f4d843341347cf6cfbbcdaa66c31a03989215b 100644
--- a/src/profiler/profile-generator.h
+++ b/src/profiler/profile-generator.h
@@ -15,8 +15,6 @@
namespace v8 {
namespace internal {
-struct OffsetRange;
-
// Provides a mapping from the offsets within generated code to
// the source line.
class JITLineInfoTable : public Malloced {
@@ -83,10 +81,6 @@ class CodeEntry {
void FillFunctionInfo(SharedFunctionInfo* shared);
- List<OffsetRange>* no_frame_ranges() const { return no_frame_ranges_; }
- void set_no_frame_ranges(List<OffsetRange>* ranges) {
- no_frame_ranges_ = ranges;
- }
void set_inlined_function_infos(
const std::vector<InlinedFunctionInfo>& infos) {
inlined_function_infos_ = infos;
@@ -125,7 +119,6 @@ class CodeEntry {
int column_number_;
int script_id_;
int position_;
- List<OffsetRange>* no_frame_ranges_;
const char* bailout_reason_;
const char* deopt_reason_;
SourcePosition deopt_position_;
« no previous file with comments | « src/profiler/cpu-profiler.cc ('k') | src/profiler/profile-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698