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

Side by Side Diff: src/heap.h

Issue 491004: Reapply keyed load cache probing in generated code. I introduced a... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/assembler.cc ('k') | src/heap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1282 matching lines...) Expand 10 before | Expand all | Expand 10 after
1293 class KeyedLookupCache { 1293 class KeyedLookupCache {
1294 public: 1294 public:
1295 // Lookup field offset for (map, name). If absent, -1 is returned. 1295 // Lookup field offset for (map, name). If absent, -1 is returned.
1296 static int Lookup(Map* map, String* name); 1296 static int Lookup(Map* map, String* name);
1297 1297
1298 // Update an element in the cache. 1298 // Update an element in the cache.
1299 static void Update(Map* map, String* name, int field_offset); 1299 static void Update(Map* map, String* name, int field_offset);
1300 1300
1301 // Clear the cache. 1301 // Clear the cache.
1302 static void Clear(); 1302 static void Clear();
1303
1304 static const int kLength = 64;
1305 static const int kCapacityMask = kLength - 1;
1306 static const int kMapHashShift = 2;
1307
1303 private: 1308 private:
1304 static inline int Hash(Map* map, String* name); 1309 static inline int Hash(Map* map, String* name);
1305 static const int kLength = 64; 1310
1311 // Get the address of the keys and field_offsets arrays. Used in
1312 // generated code to perform cache lookups.
1313 static Address keys_address() {
1314 return reinterpret_cast<Address>(&keys_);
1315 }
1316
1317 static Address field_offsets_address() {
1318 return reinterpret_cast<Address>(&field_offsets_);
1319 }
1320
1306 struct Key { 1321 struct Key {
1307 Map* map; 1322 Map* map;
1308 String* name; 1323 String* name;
1309 }; 1324 };
1310 static Key keys_[kLength]; 1325 static Key keys_[kLength];
1311 static int field_offsets_[kLength]; 1326 static int field_offsets_[kLength];
1327
1328 friend class ExternalReference;
1312 }; 1329 };
1313 1330
1314 1331
1315
1316 // Cache for mapping (array, property name) into descriptor index. 1332 // Cache for mapping (array, property name) into descriptor index.
1317 // The cache contains both positive and negative results. 1333 // The cache contains both positive and negative results.
1318 // Descriptor index equals kNotFound means the property is absent. 1334 // Descriptor index equals kNotFound means the property is absent.
1319 // Cleared at startup and prior to any gc. 1335 // Cleared at startup and prior to any gc.
1320 class DescriptorLookupCache { 1336 class DescriptorLookupCache {
1321 public: 1337 public:
1322 // Lookup descriptor index for (map, name). 1338 // Lookup descriptor index for (map, name).
1323 // If absent, kAbsent is returned. 1339 // If absent, kAbsent is returned.
1324 static int Lookup(DescriptorArray* array, String* name) { 1340 static int Lookup(DescriptorArray* array, String* name) {
1325 if (!StringShape(name).IsSymbol()) return kAbsent; 1341 if (!StringShape(name).IsSymbol()) return kAbsent;
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
1659 1675
1660 // To speed up scavenge collections new space string are kept 1676 // To speed up scavenge collections new space string are kept
1661 // separate from old space strings. 1677 // separate from old space strings.
1662 static List<Object*> new_space_strings_; 1678 static List<Object*> new_space_strings_;
1663 static List<Object*> old_space_strings_; 1679 static List<Object*> old_space_strings_;
1664 }; 1680 };
1665 1681
1666 } } // namespace v8::internal 1682 } } // namespace v8::internal
1667 1683
1668 #endif // V8_HEAP_H_ 1684 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698