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

Unified Diff: src/stub-cache.h

Issue 7901016: Basic support for tracking smi-only arrays on ia32. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: deactivate by default Created 9 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
Index: src/stub-cache.h
diff --git a/src/stub-cache.h b/src/stub-cache.h
index f21015a2635235bfd4627862d3a90eecc4659094..01bb8ea7369e17adfb9f3ec28b1895865a214a09 100644
--- a/src/stub-cache.h
+++ b/src/stub-cache.h
@@ -718,8 +718,14 @@ class KeyedStoreStubCompiler: public StubCompiler {
MapList* receiver_maps,
CodeList* handler_ics);
+ enum StoreObjectAction {
+ kObjectStoreCausesWriteBarrier,
+ kObjectStoreForcesGeneric
+ };
+
static void GenerateStoreFastElement(MacroAssembler* masm,
- bool is_js_array);
+ bool is_js_array,
+ StoreObjectAction store_objet_action);
Sven Panne 2011/09/16 09:19:32 Missing 'c', unless we want to switch to french na
danno 2011/09/21 14:32:04 Done.
static void GenerateStoreFastDoubleElement(MacroAssembler* masm,
bool is_js_array);

Powered by Google App Engine
This is Rietveld 408576698