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

Unified Diff: src/compiler.h

Issue 1011733002: CpuProfiler: convert List<InlinedFunctionInfo> into std::vector<InlinedFunctionInfo> (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: win64 fix Created 5 years, 9 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 b3f49931cc3acc8807ab68f7dcdfc9d6d64b2a84..8019e9360a161e0ef7a001cae9c6d20f43187e04 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -337,7 +337,7 @@ class CompilationInfo {
return result;
}
- List<InlinedFunctionInfo>* inlined_function_infos() {
+ std::vector<InlinedFunctionInfo>* inlined_function_infos() {
return inlined_function_infos_;
}
int TraceInlinedFunction(Handle<SharedFunctionInfo> shared,
@@ -448,7 +448,7 @@ class CompilationInfo {
int prologue_offset_;
List<OffsetRange>* no_frame_ranges_;
- List<InlinedFunctionInfo>* inlined_function_infos_;
+ std::vector<InlinedFunctionInfo>* inlined_function_infos_;
// A copy of shared_info()->opt_count() to avoid handle deref
// during graph optimization.
« 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