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

Unified Diff: src/codegen.h

Issue 11817017: Additional work to get array literal allocation tracking working, even with --always-opt (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Code cleanup Created 7 years, 11 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/codegen.h
diff --git a/src/codegen.h b/src/codegen.h
index 0ac68c2eac7c52bf493b93de0c0bac4e722f6378..adcac14ecd5532deb2b1739e03e6939a33b059f4 100644
--- a/src/codegen.h
+++ b/src/codegen.h
@@ -96,7 +96,9 @@ UnaryMathFunction CreateSqrtFunction();
class ElementsTransitionGenerator : public AllStatic {
public:
- static void GenerateMapChangeElementsTransition(MacroAssembler* masm);
+ // If fail is not null, then allocation site info checking is enabled
+ static void GenerateMapChangeElementsTransition(MacroAssembler* masm,
+ Label* fail = NULL);
danno 2013/01/10 22:58:59 Maybe it makes sense to not provide a default valu
mvstanton 2013/01/11 13:43:01 Done.
static void GenerateSmiToDouble(MacroAssembler* masm, Label* fail);
static void GenerateDoubleToObject(MacroAssembler* masm, Label* fail);

Powered by Google App Engine
This is Rietveld 408576698