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 11366132: Rollback of r12868, r12849 in trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 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
« no previous file with comments | « src/heap.cc ('k') | src/objects-inl.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
880 public: 880 public:
881 // Type testing. 881 // Type testing.
882 bool IsObject() { return true; } 882 bool IsObject() { return true; }
883 883
884 #define IS_TYPE_FUNCTION_DECL(type_) inline bool Is##type_(); 884 #define IS_TYPE_FUNCTION_DECL(type_) inline bool Is##type_();
885 OBJECT_TYPE_LIST(IS_TYPE_FUNCTION_DECL) 885 OBJECT_TYPE_LIST(IS_TYPE_FUNCTION_DECL)
886 HEAP_OBJECT_TYPE_LIST(IS_TYPE_FUNCTION_DECL) 886 HEAP_OBJECT_TYPE_LIST(IS_TYPE_FUNCTION_DECL)
887 #undef IS_TYPE_FUNCTION_DECL 887 #undef IS_TYPE_FUNCTION_DECL
888 888
889 inline bool IsFixedArrayBase(); 889 inline bool IsFixedArrayBase();
890 inline bool IsExternal();
891 890
892 // Returns true if this object is an instance of the specified 891 // Returns true if this object is an instance of the specified
893 // function template. 892 // function template.
894 inline bool IsInstanceOf(FunctionTemplateInfo* type); 893 inline bool IsInstanceOf(FunctionTemplateInfo* type);
895 894
896 inline bool IsStruct(); 895 inline bool IsStruct();
897 #define DECLARE_STRUCT_PREDICATE(NAME, Name, name) inline bool Is##Name(); 896 #define DECLARE_STRUCT_PREDICATE(NAME, Name, name) inline bool Is##Name();
898 STRUCT_LIST(DECLARE_STRUCT_PREDICATE) 897 STRUCT_LIST(DECLARE_STRUCT_PREDICATE)
899 #undef DECLARE_STRUCT_PREDICATE 898 #undef DECLARE_STRUCT_PREDICATE
900 899
(...skipping 1503 matching lines...) Expand 10 before | Expand all | Expand 10 after
2404 Object* value); 2403 Object* value);
2405 2404
2406 // Set operation on FixedArray without incremental write barrier. Can 2405 // Set operation on FixedArray without incremental write barrier. Can
2407 // only be used if the object is guaranteed to be white (whiteness witness 2406 // only be used if the object is guaranteed to be white (whiteness witness
2408 // is present). 2407 // is present).
2409 static inline void NoIncrementalWriteBarrierSet(FixedArray* array, 2408 static inline void NoIncrementalWriteBarrierSet(FixedArray* array,
2410 int index, 2409 int index,
2411 Object* value); 2410 Object* value);
2412 2411
2413 private: 2412 private:
2414 STATIC_CHECK(kHeaderSize == Internals::kFixedArrayHeaderSize);
2415
2416 DISALLOW_IMPLICIT_CONSTRUCTORS(FixedArray); 2413 DISALLOW_IMPLICIT_CONSTRUCTORS(FixedArray);
2417 }; 2414 };
2418 2415
2419 2416
2420 // FixedDoubleArray describes fixed-sized arrays with element type double. 2417 // FixedDoubleArray describes fixed-sized arrays with element type double.
2421 class FixedDoubleArray: public FixedArrayBase { 2418 class FixedDoubleArray: public FixedArrayBase {
2422 public: 2419 public:
2423 // Setter and getter for elements. 2420 // Setter and getter for elements.
2424 inline double get_scalar(int index); 2421 inline double get_scalar(int index);
2425 inline int64_t get_representation(int index); 2422 inline int64_t get_representation(int index);
(...skipping 6532 matching lines...) Expand 10 before | Expand all | Expand 10 after
8958 } else { 8955 } else {
8959 value &= ~(1 << bit_position); 8956 value &= ~(1 << bit_position);
8960 } 8957 }
8961 return value; 8958 return value;
8962 } 8959 }
8963 }; 8960 };
8964 8961
8965 } } // namespace v8::internal 8962 } } // namespace v8::internal
8966 8963
8967 #endif // V8_OBJECTS_H_ 8964 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/heap.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698