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

Unified Diff: src/flag-definitions.h

Issue 10828066: Inline simple getter calls. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Deactivate accessor inlining by default. Created 8 years, 5 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
Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index 51918a505d2ad8c5f2cb4cd568649bacec63dff4..de1dd57da77304a4597befd235e1c717c98ec954 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -170,6 +170,8 @@ DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis")
DEFINE_bool(use_gvn, true, "use hydrogen global value numbering")
DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
DEFINE_bool(use_inlining, true, "use function inlining")
+DEFINE_bool(inline_accessors, false,
+ "inline JavaScript accessors (not fully functional yet)")
Michael Starzinger 2012/07/30 09:38:43 Can we move that down to the other inline flags li
Sven Panne 2012/07/30 10:41:55 Done.
DEFINE_int(max_inlined_source_size, 600,
"maximum source size in bytes considered for a single inlining")
DEFINE_int(max_inlined_nodes, 196,

Powered by Google App Engine
This is Rietveld 408576698