v8: force inlining of v8::internal::DescriptorArray methods

pull/24503/head
Bert Belder 2012-06-11 21:22:50 +02:00
parent 33be3016fb
commit 2301eb69b1
1 changed files with 2 additions and 2 deletions

View File

@ -2530,11 +2530,11 @@ class DescriptorArray: public FixedArray {
void Sort(const WhitenessWitness&); void Sort(const WhitenessWitness&);
// Search the instance descriptors for given name. // Search the instance descriptors for given name.
inline int Search(String* name); INLINE(int Search(String* name));
// As the above, but uses DescriptorLookupCache and updates it when // As the above, but uses DescriptorLookupCache and updates it when
// necessary. // necessary.
inline int SearchWithCache(String* name); INLINE(int SearchWithCache(String* name));
// Tells whether the name is present int the array. // Tells whether the name is present int the array.
bool Contains(String* name) { return kNotFound != Search(name); } bool Contains(String* name) { return kNotFound != Search(name); }