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

Unified Diff: src/objects.cc

Issue 1322803002: Adding ElementsAccessor::Unshift (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2015-08-28_elements_accessor_pop
Patch Set: less indirections 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
« src/elements.cc ('K') | « src/objects.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index 8d572712d9cc52923f57ba3d26ba9c2933a9da33..5f2cf5c986c196e48b5c8b38c4d05258cdd5f940 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -14274,9 +14274,17 @@ size_t JSTypedArray::element_size() {
void FixedArray::SetValue(uint32_t index, Object* value) { set(index, value); }
+void FixedArray::SetValue(uint32_t index, Object* value,
+ WriteBarrierMode mode) {
+ set(index, value, mode);
+}
+
+
void FixedDoubleArray::SetValue(uint32_t index, Object* value) {
set(index, value->Number());
}
+
+
void GlobalObject::InvalidatePropertyCell(Handle<GlobalObject> global,
Handle<Name> name) {
DCHECK(!global->HasFastProperties());
« src/elements.cc ('K') | « src/objects.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698