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

Unified Diff: src/field-index-inl.h

Issue 898283003: Remove unused path in FieldIndex code (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/field-index-inl.h
diff --git a/src/field-index-inl.h b/src/field-index-inl.h
index b2307cd0bd5aff15837629d4d90a21b624b6f077..c151ab1072463317d5f4b56445077a01a9038a5e 100644
--- a/src/field-index-inl.h
+++ b/src/field-index-inl.h
@@ -14,9 +14,10 @@ namespace internal {
inline FieldIndex FieldIndex::ForInObjectOffset(int offset, Map* map) {
DCHECK((offset % kPointerSize) == 0);
int index = offset / kPointerSize;
- return (map == NULL || offset < map->GetInObjectPropertyOffset(0))
- ? FieldIndex(true, index, false, 0, 0, true)
- : FieldIndex::ForPropertyIndex(map, index);
+ DCHECK(map == NULL ||
+ index < (map->GetInObjectPropertyOffset(0) / kPointerSize +
+ map->inobject_properties()));
+ return FieldIndex(true, index, false, 0, 0, true);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698