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

Side by Side Diff: src/objects.h

Issue 8620: Allow inline caching for getting the length of string wrapper objects. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 1 month 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
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 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 inline bool IsMap(); 619 inline bool IsMap();
620 inline bool IsFixedArray(); 620 inline bool IsFixedArray();
621 inline bool IsDescriptorArray(); 621 inline bool IsDescriptorArray();
622 inline bool IsContext(); 622 inline bool IsContext();
623 inline bool IsGlobalContext(); 623 inline bool IsGlobalContext();
624 inline bool IsJSFunction(); 624 inline bool IsJSFunction();
625 inline bool IsCode(); 625 inline bool IsCode();
626 inline bool IsOddball(); 626 inline bool IsOddball();
627 inline bool IsSharedFunctionInfo(); 627 inline bool IsSharedFunctionInfo();
628 inline bool IsJSValue(); 628 inline bool IsJSValue();
629 inline bool IsStringWrapper();
629 inline bool IsProxy(); 630 inline bool IsProxy();
630 inline bool IsBoolean(); 631 inline bool IsBoolean();
631 inline bool IsJSArray(); 632 inline bool IsJSArray();
632 inline bool IsJSRegExp(); 633 inline bool IsJSRegExp();
633 inline bool IsHashTable(); 634 inline bool IsHashTable();
634 inline bool IsDictionary(); 635 inline bool IsDictionary();
635 inline bool IsSymbolTable(); 636 inline bool IsSymbolTable();
636 inline bool IsCompilationCacheTable(); 637 inline bool IsCompilationCacheTable();
637 inline bool IsMapCache(); 638 inline bool IsMapCache();
638 inline bool IsLookupCache(); 639 inline bool IsLookupCache();
(...skipping 3481 matching lines...) Expand 10 before | Expand all | Expand 10 after
4120 } else { 4121 } else {
4121 value &= ~(1 << bit_position); 4122 value &= ~(1 << bit_position);
4122 } 4123 }
4123 return value; 4124 return value;
4124 } 4125 }
4125 }; 4126 };
4126 4127
4127 } } // namespace v8::internal 4128 } } // namespace v8::internal
4128 4129
4129 #endif // V8_OBJECTS_H_ 4130 #endif // V8_OBJECTS_H_
OLDNEW
« src/ic-arm.cc ('K') | « src/ic-arm.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698