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

Unified Diff: src/compiler.h

Issue 1320103002: Improve handling of debug name in CompilationInfo. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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 | « no previous file | src/compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler.h
diff --git a/src/compiler.h b/src/compiler.h
index 1b17befca070fc90852fa1065e5d8bb932dfd9a3..13ba4a71f9f7d74fc0fab7bdbdd7ed44ce318dfa 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -135,8 +135,7 @@ class CompilationInfo {
explicit CompilationInfo(ParseInfo* parse_info);
CompilationInfo(CodeStub* stub, Isolate* isolate, Zone* zone);
- CompilationInfo(const char* code_stub_debug_name, Isolate* isolate,
- Zone* zone);
+ CompilationInfo(const char* debug_name, Isolate* isolate, Zone* zone);
virtual ~CompilationInfo();
ParseInfo* parse_info() const { return parse_info_; }
@@ -433,7 +432,7 @@ class CompilationInfo {
};
CompilationInfo(ParseInfo* parse_info, CodeStub* code_stub,
- const char* code_stub_debug_name, Mode mode, Isolate* isolate,
+ const char* debug_name, Mode mode, Isolate* isolate,
Zone* zone);
Isolate* isolate_;
@@ -503,7 +502,7 @@ class CompilationInfo {
Type::FunctionType* function_type_;
- const char* code_stub_debug_name_;
+ const char* debug_name_;
DISALLOW_COPY_AND_ASSIGN(CompilationInfo);
};
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698